@charset "UTF-8";

/* languge
---------------------------------------- */
.language {
	position: fixed;
	background: rgb(var(--wht));
	width: 126px;
	font-size: min(1.4rem, 1.094vw);
	line-height: 1;
	border: solid 1px rgb(var(--light-beg));
	position: fixed;
	top: 7px;
	right: 70px;
	z-index: 3;
	cursor: pointer;
	padding: 0 15px;
}

.language__title {
	height: 37px;
	font-family: var(--cardo);
	font-weight: bold;
	border-radius: 18px 18px 0 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}

.language__title::before {
	background: url(../img/arrow01.svg) center no-repeat;
	background-size: 100% auto;
	width: 12px;
	height: 12px;
	position: absolute;
	top: 56%;
	right: 8px;
	transform: translateY(-50%);
	transition: all 0.5s ease 0s;
	content: "";
}

.language__title.active::before {
	transform: translateY(-50%) rotate(-180deg);
}

.language__select {
	text-align: center;
	border-radius: 0 0 18px 18px;
	display: none;
}

.select__list--item {
	font-weight: normal;
}

.language__link {
	height: 32px;
	color: rgb(var(--blk));
	text-decoration: none;
	display: flex;
	align-items: center;
}

span.language__link {
	cursor: default;
}

.select__list--item:not(:last-of-type) .language__link {
	border-bottom: solid 1px rgb(var(--light-beg));
}

@media screen and (max-width: 768px) {
	.language {
		font-size: min(1.4rem, 3.733vw);
		right: 40px;
		z-index: 10;
	}
}


/* バーガーメニュー
---------------------------------------- */
.header {
	height: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	right: 10px;
	z-index: 10;
}

.logo {
	font-weight: 700;
	padding-left: 14px;
}

.hamburger-menu {
	width: 50px;
	height: 50px;
	position: absolute;
	right: 0;
	border: none;
	background: transparent;
	appearance: none;
	padding: 0;
	cursor: pointer;
	z-index: 11;
}

.hamburger-menu__bar {
	display: inline-block;
	width: 44%;
	height: 3px;
	background: #CAB7A0;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	transition: .5s;
}

.hamburger-menu__bar:first-child {
	top: 16px;
}

.hamburger-menu__bar:nth-child(2) {
	top: 24px;
}

.hamburger-menu__bar:last-child {
	top: 32px;
}

.hamburger-menu--open .hamburger-menu__bar {
	top: 50%;
}

.hamburger-menu--open .hamburger-menu__bar:first-child {
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
	background: #fff;
}

.hamburger-menu--open .hamburger-menu__bar:last-child {
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	background: #fff;
}

.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
	display: none;
}

.navigation {
	display: none;
	background: #CAB7A0;
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
	z-index: 10;
}

.navigation__list {
	text-align: right;
	list-style: none;
	padding: 60px 20px 40px;
	margin: 0;
}

.navigation__link {
	color: var(--d-9-d-9-d-9, #FFF);
	text-decoration: none;
	display: block;
	padding: 7px 0;
	transition: .5s;
	text-align: right;
	font-family: "Noto Sans JP";
	font-size: min(1.9rem, 1.484vw);
	font-style: normal;
	font-weight: 600;
}

@media (hover: hover) and (pointer: fine) {
	.navigation__link:hover {
		opacity: 0.8;
	}
}

@media screen and (max-width: 768px) {
	.header {
		right: 0;
	}

	.navigation__link {
		font-size: min(1.6rem, 4.255vw);
	}
}

/* アコーディオン
---------------------------------------- */
.accordion_one {
	max-width: 1024px;
	margin: 0 auto;
}

.accordion_one.mt20 {
	margin-top: 20px;
}

.accordion_one .accordion_header {
	background-color: #CAB7A0;
	padding: 12px 39px;
	text-align: left;
	position: relative;
	z-index: +1;
	cursor: pointer;
	transition-duration: 0.2s;
	color: #FFF;
	font-family: "Noto Sans JP";
	font-size: min(2.5rem, 1.953vw);
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
	display: flex;
	align-items: center;
}

.accordion_one .accordion_header:hover {
	opacity: .8;
}

.accordion_one .accordion_header .icon {
	width: 68px;
	margin-right: 20px;
}

.accordion_one .accordion_header .i_box {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 5%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	box-sizing: border-box;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: center center;
	transition-duration: 0.2s;
}

.accordion_one .accordion_header .i_box .one_i {
	display: block;
	width: 18px;
	height: 18px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: center center;
	transition-duration: 0.2s;
	position: relative;
}

.accordion_one .accordion_header.open .i_box {
	-webkit-transform: rotate(-360deg);
	transform: rotate(-360deg);
}

.accordion_one .accordion_header .i_box .one_i:before,
.accordion_one .accordion_header .i_box .one_i:after {
	display: flex;
	content: '';
	background-color: #fff;
	border-radius: 10px;
	width: 18px;
	height: 2px;
	position: absolute;
	top: 8px;
	left: 0;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	transform-origin: center center;
}

.accordion_one .accordion_header .i_box .one_i:before {
	width: 2px;
	height: 18px;
	top: 0;
	left: 8px;
}

.accordion_one .accordion_header.open .i_box .one_i:before {
	content: none;
}

.accordion_one .accordion_header.open .i_box .one_i:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.accordion_one .accordion_inner {
	display: none;
	padding: 30px 0;
}

.accordion_one .accordion_inner .box_one {
	height: 100%;
}

.accordion_one .accordion_inner p.txt_a_ac {
	margin: 0;
}

@media screen and (max-width: 1024px) {
	.accordion_one .accordion_header {
		font-size: 18px;
	}

	.accordion_one .accordion_header .i_box {
		width: 30px;
		height: 30px;
		margin-top: -15px;
	}
}

@media screen and (max-width: 767px) {
	.accordion_one .accordion_header {
		font-size: min(1.6rem, 4.255vw);
		text-align: left;
		padding: 15px 60px 15px 15px;
		line-height: 24px;
	}
}

.accordion_one .accordion_inner .box_one .wrep {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.accordion_one .accordion_inner .box_one .wrep .box_a,
.accordion_one .accordion_inner .box_one .wrep .box_c {
	width: 48%;
	display: flex;
	margin-bottom: 105px;
}

.accordion_one .accordion_inner .box_one .wrep .box_c {
	width: 100%;
}

.accordion_one .accordion_inner .box_one .wrep .box_a .no,
.accordion_one .accordion_inner .box_one .wrep .box_c .no,
.accordion_one .accordion_inner .box_one .wrep .box_d .no {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	flex-shrink: 0;
	background: var(--earth-brown, #2E2617);
	color: var(--d-9-d-9-d-9, #FFF);
	text-align: center;
	font-family: "Helvetica Neue";
	font-size: min(2.3rem, 1.797vw);
	font-style: normal;
	font-weight: 500;
	margin-right: 27px;
	margin-bottom: 0;
	line-height: normal;
}

.accordion_one .accordion_inner .box_one .wrep .box_a .text {
	margin-bottom: 20px;
}

.accordion_one .accordion_inner .box_one .wrep .box_a .text2 {
	height: 130px;
	margin-bottom: 20px;
}

.accordion_one .accordion_inner .box_one .wrep .box_a .text3 {
	height: 170px;
	margin-bottom: 20px;
}

.en .accordion_one .accordion_inner .box_one .wrep .box_a .text3 {
	height: 220px;
}

.accordion_one .accordion_inner .box_one .wrep .box_a .text4 {
	height: 190px;
	margin-bottom: 20px;
}

.accordion_one .accordion_inner .box_one .wrep .box_a .text5 {
	height: 90px;
	margin-bottom: 20px;
}

.accordion_one .accordion_inner .box_one .wrep .box_a .text6 {
	/* height: 220px; */
	height: 240px;
	margin-bottom: 20px;
}

.accordion_one .accordion_inner .box_one .wrep .box_a .text7 {
	height: 240px;
	margin-bottom: 20px;
}

.accordion_one .accordion_inner .box_one .wrep .box_a .text8 {
	height: 260px;
	margin-bottom: 20px;
}

.accordion_one .accordion_inner .box_one .wrep .box_a p {
	color: var(--earth-brown, #2E2617);
	font-family: "Noto Sans JP";
	/* font-size: min(1.7rem, 1.328vw); */
	font-size: min(1.6rem, 1.25vw);
	font-style: normal;
	font-weight: 400;
	line-height: 29px;
}

.accordion_one .accordion_inner .box_one .wrep .box_a p span.note {
	color: var(--earth-brown, #2E2617);
	font-family: "Noto Sans";
	font-size: min(1.3rem, 1.016vw);
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	margin-top: 10px;
}

.accordion_one .accordion_inner .box_one .wrep .box_a p span.note.note2 {
	margin-top: 0;
}


.accordion_one .accordion_inner .box_one .wrep .box_a p span {
	display: block;
	color: var(--eae-6-d-4, #CAB7A0);
	font-family: "Noto Sans JP";
	font-size: min(1.9rem, 1.484vw);
	font-style: normal;
	font-weight: 700;
	line-height: 29px;
}

.accordion_one .accordion_inner .box_one .wrep .box_a p a {
	display: block;
	color: var(--earth-brown, #2E2617);
	font-family: "Noto Sans JP";
	font-size: min(1.4rem, 1.094vw);
	font-style: normal;
	font-weight: 700;
	line-height: 29px;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.accordion_one .accordion_inner .box_one .wrep .box_a p a::before {
	content: '>';
}

.accordion_one .accordion_inner .box_one .wrep .box_a .img {
	width: 193px;
}

.accordion_one .accordion_inner .box_one .wrep .box_a .img2 {
	width: 410px;
}

.accordion_one .accordion_inner .box_one .wrep .box_a .img3 {
	width: 60%;
	margin: 0 auto;
	margin-top: 35px;
}

.accordion_one .accordion_inner .box_one .wrep .box_a .img4 {
	width: 125px;
}

.accordion_one .accordion_inner .box_one .wrep .box_a .img5 {
	width: 270px;
}

.accordion_one .accordion_inner .box_one .wrep .box_a ul.wrap {
	display: flex;
	/* justify-content: space-between; */
	justify-content: space-evenly;
	width: 97%;
}

.accordion_one .accordion_inner .box_one .wrep .box_a ul.wrap li {
	/* width: 48%; */
	width: 30%;
}

.accordion_one .accordion_inner .box_one .wrep .box_a ul.wrap li p {
	background: var(--gray, #EFEFEF);
	color: var(--earth-brown, #2E2617);
	text-align: center;
	font-family: "Noto Sans JP";
	font-size: min(1.8rem, 1.406vw);
	font-style: normal;
	font-weight: 700;
	line-height: 29px;
	padding: 3px;
	margin-bottom: 23px;
}

.en .accordion_one .accordion_inner .box_one .wrep .box_a ul.wrap li p {
	font-size: min(1.6rem, 1.25vw);
}

.accordion_one .accordion_inner .box_one .box_b {
	border: 1px solid var(--earth-brown, #2E2617);
	padding: 35px 43px 74px;
	margin-top: 50px;
}

.accordion_one .accordion_inner .box_one .box_b p,
.accordion_one .accordion_inner .box_one .box_e p {
	color: var(--earth-brown, #2E2617);
	font-family: "Noto Sans";
	font-size: min(1.6rem, 1.25vw);
	font-style: normal;
	font-weight: 500;
	line-height: 28px;
}

.accordion_one .accordion_inner .box_one .box_b p span,
.accordion_one .accordion_inner .box_one .box_e p span {
	display: block;
	color: var(--eae-6-d-4, #CAB7A0);
	font-family: "Noto Sans";
	font-size: min(2.2rem, 1.719vw);
	font-style: normal;
	font-weight: 700;
	line-height: 28px;
}

.accordion_one .accordion_inner .box_one .box_b .note,
.accordion_one .accordion_inner .box_one .box_e p span.note {
	color: #44403F;
	font-family: "Noto Sans";
	font-size: min(1.2rem, 0.938vw);
	font-style: normal;
	font-weight: 400;
	line-height: 18px;
}

.accordion_one .accordion_inner .box_one .box_b .wrap {
	max-width: 697px;
	margin: 0 auto;
	margin-top: 43px;
	display: flex;
	justify-content: space-between;
}

.accordion_one .accordion_inner .box_one .box_b .wrap2 {
	max-width: 904px;
	margin: 0 auto;
	margin-top: 43px;
	display: flex;
	justify-content: space-between;
}

.accordion_one .accordion_inner .box_one .box_b .wrap3 {
	max-width: 720px;
	margin: 0 auto;
	margin-top: 43px;
	display: flex;
	/* justify-content: space-between; */
	justify-content: center;
}

.accordion_one .accordion_inner .box_one .box_b .wrap li,
.accordion_one .accordion_inner .box_one .box_b .wrap2 li {
	width: 157px;
}

.accordion_one .accordion_inner .box_one .box_b .wrap li:last-child,
.accordion_one .accordion_inner .box_one .box_b .wrap2 li:last-child {
	width: 502px;
}

.accordion_one .accordion_inner .box_one .box_b .wrap3 li {
	width: 48%;
}

.accordion_one .accordion_inner .box_one .box_b .wrap3 li p {
	color: #44403F;
	font-family: "Noto Sans JP";
	font-size: min(1.3rem, 1.016vw);
	font-style: normal;
	font-weight: 400;
	line-height: 29px;
}

.accordion_one .accordion_inner .box_one .box_b .wrap p,
.accordion_one .accordion_inner .box_one .box_b .wrap2 p,
.accordion_one .accordion_inner .box_one .box_c .wrap p {
	background: var(--gray, #EFEFEF);
	color: var(--earth-brown, #2E2617);
	text-align: center;
	font-family: "Noto Sans JP";
	font-size: min(1.8rem, 1.406vw);
	font-style: normal;
	font-weight: 700;
	line-height: 29px;
	padding: 3px;
	margin-bottom: 23px;
}

.accordion_one .accordion_inner .box_one .box_b .wrap .img,
.accordion_one .accordion_inner .box_one .box_b .wrap2 .img,
.accordion_one .accordion_inner .box_one .box_c .wrap .img {
	width: 100%;
}


.accordion_one .accordion_inner .box_one .box_c .wrap {
	max-width: 624px;
	margin: 0 auto;
	margin-top: 43px;
	display: flex;
	justify-content: space-between;
}

.accordion_one .accordion_inner .box_one .box_c .wrap li {
	width: 178px;
}

.accordion_one .accordion_inner .box_one .box_d {
	width: 48%;
	margin-bottom: 105px;
}

.accordion_one .accordion_inner .box_one .box_d .wrap {
	display: flex;
	/* align-items: center; */
	margin: 0;
	margin-bottom: 1em;
}

.accordion_one .accordion_inner .box_one .box_d .wrap.h90 {
	height: 90px;
}

.accordion_one .accordion_inner .box_one .box_e {
	border: 1px solid var(--earth-brown, #2E2617);
	padding: 35px 43px;
}

.accordion_one .accordion_inner .box_one .box_e p:first-child {
	margin-bottom: 40px;
}

.accordion_one .accordion_inner .box_one .box_e p.mb0 {
	margin-bottom: 0;
}

.accordion_one .accordion_inner .box_one a.btn {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 446px;
	height: 86px;
	background: var(--eae-6-d-4, #CAB7A0);
	color: var(--d-9-d-9-d-9, #FFF);
	font-family: "Noto Sans JP";
	font-size: min(1.9rem, 1.484vw);
	font-style: normal;
	font-weight: 600;
	line-height: 32px;
	margin: 119px auto;
	padding-left: 23px;
	position: relative;
}

.accordion_one .accordion_inner .box_one a.btn::before,
.accordion_one .accordion_inner .box_one a.btn::after {
	display: flex;
	content: '';
	background-color: #fff;
	border-radius: 10px;
	width: 18px;
	height: 2px;
	position: absolute;
	top: 38px;
	right: 20px;
	-webkit-transform: rotate(40deg);
	transform: rotate(40deg);
	transform-origin: center center;
}

.accordion_one .accordion_inner .box_one a.btn::after {
	top: 49px;
	-webkit-transform: rotate(-40deg);
	transform: rotate(-40deg);
	transform-origin: center center;
}

@media screen and (max-width: 768px) {
	.accordion_one .accordion_header .icon {
		width: 51px;
		margin-right: 10px;
	}

	.accordion_one .accordion_inner .box_one .wrep {
		display: block;
	}

	.accordion_one .accordion_inner .box_one .wrep .box_a,
	.accordion_one .accordion_inner .box_one .wrep .box_c {
		width: 100%;
		margin-bottom: 60px;
	}

	.accordion_one .accordion_inner .box_one .wrep .box_a .no,
	.accordion_one .accordion_inner .box_one .wrep .box_c .no,
	.accordion_one .accordion_inner .box_one .wrep .box_d .no {
		width: 25px;
		height: 25px;
		font-size: min(1.7rem, 4.521vw);
		line-height: 24px;
		margin-right: 10px;
	}

	.accordion_one .accordion_inner .box_one .wrep .box_a p span {
		font-size: min(1.7rem, 4.521vw);
	}

	.accordion_one .accordion_inner .box_one .wrep .box_a p a {
		font-size: min(1.2rem, 3.191vw);
	}

	.accordion_one .accordion_inner .box_one .wrep .box_a .img {
		width: 34%;
	}

	.accordion_one .accordion_inner .box_one .wrep .box_a p,
	.accordion_one .accordion_inner .box_one .wrep .box_c p {
		font-size: min(1.5rem, 3.989vw);
	}

	.accordion_one .accordion_inner .box_one .wrep .box_a .img2 {
		width: 80%;
	}

	.accordion_one .accordion_inner .box_one .wrep .box_a .text2 {
		height: auto;
	}

	.accordion_one .accordion_inner .box_one .wrep .box_a .text3,
	.en .accordion_one .accordion_inner .box_one .wrep .box_a .text3 {
		height: auto;
	}

	.accordion_one .accordion_inner .box_one .wrep .box_a .img3 {
		width: 80%;
		margin: 0;
		margin-top: 15px;
	}

	.accordion_one .accordion_inner .box_one .box_b {
		padding: 15px 20px;
		margin-top: 0;
	}

	.accordion_one .accordion_inner .box_one .box_b p span,
	.accordion_one .accordion_inner .box_one .box_e p span {
		font-size: min(1.7rem, 4.521vw);
	}

	.accordion_one .accordion_inner .box_one .box_b p,
	.accordion_one .accordion_inner .box_one .box_e p {
		font-size: min(1.4rem, 3.723vw);
		line-height: 22px;
	}

	.accordion_one .accordion_inner .box_one .box_b .wrap {
		max-width: 100%;
		margin-top: 43px;
		display: block;
	}

	.accordion_one .accordion_inner .box_one .box_b .wrap2 {
		max-width: 100%;
		margin-top: 43px;
		display: block;
	}

	.accordion_one .accordion_inner .box_one .box_b .wrap li,
	.accordion_one .accordion_inner .box_one .box_b .wrap2 li {
		width: 100%;
		margin: 0 auto 20px;
	}

	.accordion_one .accordion_inner .box_one .box_b .wrap .img,
	.accordion_one .accordion_inner .box_one .box_b .wrap2 .img,
	.accordion_one .accordion_inner .box_one .box_c .wrap .img {
		width: 30%;
		margin: 0 auto;
	}

	.accordion_one .accordion_inner .box_one .box_c .wrap .img {
		width: 100%;
	}

	.accordion_one .accordion_inner .box_one .box_b .wrap li:last-child .img,
	.accordion_one .accordion_inner .box_one .box_b .wrap2 li:last-child .img {
		width: 100%;
	}

	.accordion_one .accordion_inner .box_one .box_b .wrap li:last-child,
	.accordion_one .accordion_inner .box_one .box_b .wrap2 li:last-child {
		width: 100%;
	}

	.accordion_one .accordion_inner .box_one .box_b .wrap p,
	.accordion_one .accordion_inner .box_one .box_b .wrap2 p,
	.accordion_one .accordion_inner .box_one .box_c .wrap p {
		font-size: min(1.5rem, 3.989vw);
		padding: 1px;
	}

	.accordion_one .accordion_inner .box_one .box_c .wrap p {
		font-size: min(1rem, 2.66vw);
		padding: 1px;
	}

	.en .accordion_one .accordion_inner .box_one .box_c .wrap p {
		font-size: min(0.9rem, 2.394vw);
		padding: 1px;
	}

	.accordion_one .accordion_inner .box_one .box_c .wrap {
		max-width: 100%;
		/* display: block; */
	}

	.accordion_one .accordion_inner .box_one .box_c .wrap li {
		/* width: 100%; */
		width: 30%;
		margin-bottom: 20px;
	}

	.accordion_one .accordion_inner .box_one .box_d {
		width: 100%;
		margin-bottom: 55px;
	}

	.accordion_one .accordion_inner .box_one .box_d .wrap {
		margin-bottom: 20px;
	}

	.accordion_one .accordion_inner .box_one .box_d .wrap.h90 {
		height: auto;
	}

	.accordion_one .accordion_inner .box_one .box_e {
		padding: 15px 20px;
	}

	.accordion_one .accordion_inner .box_one .box_e p:first-child {
		margin-bottom: 20px;
	}

	.accordion_one .accordion_inner .box_one .box_e p.mb0 {
		margin-bottom: 0;
	}

	.accordion_one .accordion_inner .box_one .wrep .box_a p span.note {
		font-size: min(1rem, 2.66vw);
	}

	.accordion_one .accordion_inner .box_one .wrep .box_a ul.wrap {
		/* display: block; */
		width: 100%;
		justify-content: flex-start;
	}

	.accordion_one .accordion_inner .box_one .wrep .box_a ul.wrap li {
		/* width: 47%; */
		width: 26%;
		margin-bottom: 20px;
		margin-right: 20px;
	}

	.en .accordion_one .accordion_inner .box_one .wrep .box_a ul.wrap li {
		width: 31%;
	}

	.accordion_one .accordion_inner .box_one .wrep .box_a ul.wrap li p {
		font-size: min(1.2rem, 3.191vw);
	}

	.en .accordion_one .accordion_inner .box_one .wrep .box_a ul.wrap li p  {
		font-size: min(1rem, 2.66vw);
	}

	.accordion_one .accordion_inner .box_one .wrep .box_a ul.wrap li .img {
		width: 100%;
	}

	.accordion_one .accordion_inner .box_one .wrep .box_a .text4 {
		height: auto;
	}

	.accordion_one .accordion_inner .box_one .box_b .note {
		font-size: min(1rem, 2.66vw);
	}

	.accordion_one .accordion_inner .box_one .box_b .wrap3 li p {
		font-size: min(1.1rem, 2.926vw);
		line-height: 21px;
	}

	.accordion_one .accordion_inner .box_one .box_b .wrap3 {
		max-width: 100%;
		margin-top: 23px;
	}

	.accordion_one .accordion_inner .box_one .box_b .wrap3 li {
		width: 100%;
	}

	.accordion_one .accordion_inner .box_one a.btn {
		width: 100%;
		height: 66px;
		font-size: min(1.6rem, 4.255vw);
		margin: 39px auto 0;
		padding-left: 15px;
	}

	.en .accordion_one .accordion_inner .box_one a.btn {
		line-height: 23px;
	}

	.accordion_one .accordion_inner .box_one a.btn::before,
	.accordion_one .accordion_inner .box_one a.btn::after {
		width: 13px;
		height: 2px;
		top: 30px;
		right: 13px;
	}

	.accordion_one .accordion_inner .box_one a.btn::after {
		top: 38px;
	}

	.accordion_one .accordion_inner .box_one .wrep .box_a .img4 {
		width: 100%;
	}
	
	.accordion_one .accordion_inner .box_one .wrep .box_a .img5 {
		width: 54%;
	}

	.accordion_one .accordion_inner .box_one .wrep .box_a .text7 {
		height: auto;
	}

	.accordion_one .accordion_inner .box_one .box_b .note,
	.accordion_one .accordion_inner .box_one .box_e p span.note {
		font-size: min(1.2rem, 3.2vw);
	}
}

/* ----------------------------------------------------
	mv
---------------------------------------------------- */
.mv .w1300 {
	width: 100%;
	height: 460px;
	margin-top: 52px;
	padding: 0 114px;
	padding-top: 100px;
	position: relative;
}

.mv h1 {
	color: var(--earth-brown, #2E2617);
	font-family: "Noto Sans JP";
	font-size: min(5.2rem, 4.063vw);
	font-style: normal;
	font-weight: 600;
	/* line-height: 37px; */
}

.mv p {
	color: var(--earth-brown, #2E2617);
	font-family: "Noto Sans JP";
	font-size: min(2.8rem, 2.188vw);
	font-style: normal;
	font-weight: 600;
	/* line-height: 37px; */
}

.mv .icon {
	width: 352px;
	position: relative;
	top: 50px;
}


.mv .box {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	right: 6%;
}

.mv .box .img01 {
	width: 198.317px;
	height: 379.793px;
	flex-shrink: 0;
	z-index: 1;
}

.mv .box .img02 {
	width: 255px;
	height: 255px;
	flex-shrink: 0;
	margin-left: -20px;
}

.en .mv .box .img02 {
	margin-left: -10px;
}


@media screen and (max-width: 1190px) {
	.mv .w1300 {
		padding: 0 24px;
		padding-top: 100px;
	}
}

@media screen and (max-width: 1095px) {
	.mv .box {
		top: 50px;
	}

	.mv .box .img01 {
		width: 158.317px;
		height: 319.793px;
	}

	.mv .box .img02 {
		width: 215px;
		height: 215px;
	}
}

@media screen and (max-width: 1010px) {
	.mv .box {
		top: 100px;
	}

	.mv .box .img01 {
		width: 128.317px;
		height: 279.793px;
	}

	.mv .box .img02 {
		width: 165px;
		height: 165px;
	}
}

@media screen and (max-width: 768px) {
	.mv .w1300 {
		height: auto;
		margin-top: 20px;
		padding: 50px 20px;
	}

	.mv h1 {
		font-size: min(2.6rem, 6.915vw);
	}

	.mv p {
		font-size: min(1.7rem, 4.521vw);
		padding-top: 20px;
	}

	.mv .icon {
		width: 70%;
		margin: 0 auto;
		top: 0;
	}

	.mv .box {
		position: relative;
		top: 0;
		right: 0;
	}

	.mv .box .img01 {
		width: 38%;
		height: auto;
		order: 1;
		position: relative;
		top: -50px;
	}

	.mv .box .img02 {
		width: 60%;
		height: auto;
		margin-left: 0;
		padding-right: 30px;
	}

	.en .mv .box .img02 {
		margin-left: 0;
	}
}


/* ----------------------------------------------------
	about
---------------------------------------------------- */
.about {
	background: #fff;
	margin-top: 38px;
	margin-bottom: 124px;
}

.about .text {
	color: var(--earth-brown, #2E2617);
	text-align: center;
	font-family: "Noto Sans JP";
	font-size: min(2.2rem, 1.719vw);
	font-style: normal;
	font-weight: 500;
	line-height: 40px;
	margin: 48px auto;
}

.about .text span {
	color: var(--earth-brown, #2E2617);
	font-family: "Noto Sans JP";
	font-size: min(1.2rem, 0.938vw);
	font-style: normal;
	font-weight: 400;
	line-height: 49px;
}

.about .text span.note::before {
	content: '※';
}

.en .about .text span.note::before {
	content: '';
}

.about .box_border {
	border: 1px solid var(--earth-brown, #2E2617);
	position: relative;
	padding: 40px;
	display: flex;
	justify-content: space-evenly;
}

.about .box_border .img {
	width: 12.8%;
}

.about .box_border .text {
	width: 74%;
	text-align: left;
	margin: 0;
}

.about .box_border .text h3 {
	color: var(--earth-brown, #2E2617);
	font-family: "Noto Sans";
	font-size: min(2.2rem, 1.719vw);
	font-style: normal;
	font-weight: 700;
	line-height: 35px;
	margin-bottom: 11px;
}

.about .box_border .text p {
	color: var(--earth-brown, #2E2617);
	font-family: "Noto Sans";
	font-size: min(1.8rem, 1.406vw);
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
	margin-bottom: 23px;
}

.about .box_border .text .link a {
	display: block;
	color: var(--earth-brown, #2E2617);
	font-family: "Noto Sans JP";
	font-size: min(1.4rem, 1.094vw);
	font-style: normal;
	font-weight: 700;
	line-height: 35px;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.about .box_border .text .link a::before {
	content: '＞';
}

@media screen and (max-width: 768px) {
	.about {
		margin-bottom: 60px;
	}

	.about .text {
		font-size: min(1.6rem, 4.255vw);
		line-height: 32px;
		margin: 25px auto;
	}

	.en .about .text {
		margin: 25px 20px;
	}

	.about .box_border {
		margin: 0 20px;
		padding: 20px;
		display: block;
	}

	.about .box_border .img {
		width: 25%;
	}

	.about .box_border .text {
		width: 100%;
		text-align: left;
		margin: 0;
	}

	.about .box_border .text .wrap {
		display: flex;
		justify-content: space-between;
	}

	.about .box_border .text h3 {
		font-size: min(1.7rem, 4.521vw);
		line-height: 30px;
		margin-bottom: 11px;
	}

	.about .box_border .text p {
		width: 67%;
		font-size: min(1.4rem, 3.723vw);
		line-height: 23px;
		margin-bottom: 23px;
	}

	.about .box_border .text .link a {
		font-size: min(1.4rem, 3.733vw);
	}
}

/* ----------------------------------------------------
	overview
---------------------------------------------------- */
.overview {
	background: #EDE8E3;
	padding-top: 38px;
	padding-bottom: 115px;
}

.overview .contents {
	display: flex;
	justify-content: space-between;
	max-width: 1000px;
	margin: 0 auto;
	margin-top: 60px;
}

.overview .contents .box {
	width: 31.33333%;
}

.overview .contents .box .text {
	color: var(--earth-brown, #2E2617);
	font-family: "Noto Sans";
	font-size: min(2.4rem, 1.875vw);
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.en .overview .contents .box .text {
	font-size: min(2.1rem, 1.641vw);
}

.overview .contents .box a,
.overview .contents2 a {
	color: #000;
	text-decoration: none;
}

.overview .contents .box a h3 {
	background: var(--earth-brown, #2E2617);
	color: var(--d-9-d-9-d-9, #FFF);
	font-family: Inter;
	font-size: min(2.2rem, 1.719vw);
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
	padding: 15px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.overview .contents .box a .wrap {
	background: #fff;
	padding: 8px;
	position: relative;
}

.overview .contents .box a .wrap::after {
	content: '';
	background: url(../img/arrow.svg) 100% no-repeat;
	width: 20px;
	height: 30px;
	position: absolute;
	bottom: 10px;
	right: 20px;
}


.overview .contents .box a .wrap .text {
	padding: 13px;
	height: 190px;
}

.overview .contents .box a .wrap p {
	color: var(--earth-brown, #2E2617);
	font-family: Inter;
	font-size: min(1.8rem, 1.406vw);
	font-style: normal;
	font-weight: 700;
	line-height: 26px;
	margin-bottom: 10px;
	padding-left:1em;
	text-indent:-1em;
}

.overview .contents .box a .wrap p span {
	font-size: min(1.6rem, 1.25vw);
}

.en .overview .contents .box a .wrap .text {
	height: 260px;
}

.overview .contents2 {
	max-width: 1000px;
	margin: 0 auto;
	margin-top: 42px;
}

.overview .contents2 .text {
	color: var(--earth-brown, #2E2617);
	font-family: "Noto Sans";
	font-size: min(2.4rem, 1.875vw);
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 0;
}

.en .overview .contents2 .text {
	font-size: min(2.1rem, 1.641vw);
}


.overview .contents2 a .wrap {
	display: flex;
	/* height: 111px; */
	position: relative;
}

.overview .contents2 a .wrap::after {
	content: '';
	background: url(../img/arrow.svg) 100% no-repeat;
	width: 20px;
	height: 30px;
	position: absolute;
	bottom: 10px;
	right: 20px;
}

.overview .contents2 a .wrap h3 {
	background: var(--earth-brown, #2E2617);
	padding: 21px;
	color: var(--d-9-d-9-d-9, #FFF);
	font-family: Inter;
	font-size: min(2.2rem, 1.719vw);
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
	width: 35%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.overview .contents2 a .wrap .text {
	background: #fff;
	width: 100%;
	padding: 20px 25px;
}

.overview .contents2 a .wrap p {
	color: var(--000000, #000);
	font-family: "Noto Sans";
	font-size: min(1.8rem, 1.406vw);
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	display: flex;
	align-items: center;
}

.overview .contents2 a .wrap p.txt-s {
	font-size: min(1.5rem, 1.172vw);
}

.overview .contents2 .note {
	margin-top: 58px;
}

@media screen and (max-width: 768px) {
	.overview {
		padding-bottom: 20px;
	}

	.overview .contents {
		display: block;
		max-width: 100%;
		margin: 0 20px;
		margin-top: 30px;
	}

	.overview .contents .box {
		width: 100%;
	}

	.overview .contents .box:nth-child(2),
	.overview .contents .box:nth-child(3) {
		margin-top: 30px;
	}

	.overview .contents .box .text {
		font-size: min(1.9rem, 5.053vw);
	}

	.overview .contents .box a h3 {
		font-size: min(2rem, 5.319vw);
		line-height: 20px;
		padding: 10px 0;
	}

	.overview .contents .box a .wrap {
		display: flex;
		justify-content: space-between;
		background: #fff;
		padding: 8px;
		position: relative;
	}

	.overview .contents .box a .wrap div {
		width: 30%;
	}

	.overview .contents .box a .wrap .text {
		width: 70%;
		padding: 0 13px;
		height: 150px;
	}

	.overview .contents .box a .wrap p {
		width: 100%;
		font-size: min(1.6rem, 4.255vw);
		line-height: 26px;
		height: auto;
		margin-bottom: 0px;
	}

	.overview .contents .box a .wrap p span {
		font-size: min(1.2rem, 3.2vw);
	}

	.en .overview .contents .box a .wrap p {
		height: auto;
	}

	.overview .contents2 {
		max-width: 100%;
		margin: 0 20px;
		margin-top: 30px;
	}

	.overview .contents2 .text {
		font-size: min(1.9rem, 5.053vw);
	}

	.overview .contents2 a .wrap {
		display: block;
		height: auto;
	}

	.overview .contents2 a .wrap h3 {
		width: 100%;
		padding: 10px 0 10px 15px;
		font-size: min(2rem, 5.319vw);
		line-height: 20px;
	}

	.overview .contents2 a .wrap .text {
		background: #fff;
		width: 100%;
		padding: 10px 10px 30px;
	}

	.overview .contents2 a .wrap p {
		font-size: min(1.6rem, 4.255vw);
	}

	.overview .contents2 a .wrap p.txt-s {
		font-size: min(1.3rem, 3.467vw);
	}

	.en .overview .contents .box a .wrap::after {
		right: 10px;
	}

	.en .overview .contents .box .text,
	.en .overview .contents2 .text {
		font-size: min(1.6rem, 4.267vw);
	}
}

/* ----------------------------------------------------
	how-to
---------------------------------------------------- */
.how-to {
	padding: 40px 0;
}

.how-to .box {
	max-width: 1000px;
	margin: 0 auto;
	margin-bottom: 155px;
}

.how-to .box h3 {
	color: var(--earth-brown, #2E2617);
	text-align: center;
	font-family: Inter;
	font-size: min(4.2rem, 3.281vw);
	font-style: normal;
	font-weight: 700;
	line-height: 31px;
	margin-bottom: 36px;
}

.how-to .box h3 span {
	display: block;
	font-size: min(2.5rem, 1.953vw);
	font-weight: 600;
	line-height: 50px;
	margin-bottom: 12px;
}

.how-to .box h4 {
	color: var(--earth-brown, #2E2617);
	text-align: center;
	font-family: Inter;
	font-size: min(2.4rem, 1.875vw);
	font-style: normal;
	font-weight: 700;
	line-height: 31px;
	border-top: 3px solid rgba(202, 183, 160, 0.50);
	border-bottom: 3px solid rgba(202, 183, 160, 0.50);
	padding: 8px 0;
}

.how-to .box h4 span {
	font-size: min(1.8rem, 1.406vw);
	font-style: normal;
	font-weight: 500;
	line-height: 31px;
}

.how-to .box h4 span.text,
.how-to .box h4 span.text2 {
	font-weight: 700;
	line-height: 1.5;
}

.how-to .box .wrap {
	display: flex;
	margin-top: 36px;
	margin-bottom: 44px;
}

.how-to .box .wrap .img {
	width: 26%;
}

.how-to .box .wrap .text {
	width: 74%;
	padding-left: 18px;
}

.how-to .box .wrap .text ul {
	color: var(--earth-brown, #2E2617);
	font-family: "Noto Sans JP";
	font-size: min(1.8rem, 1.406vw);
	font-style: normal;
	font-weight: 500;
	line-height: 30px;
}

.how-to .box .wrap .text ul li {
	padding-left: 1em;
	text-indent: -1em;
}

.how-to .box .wrap .text ul li::before {
	content: '⚫︎';
	color: var(--eae-6-d-4, #CAB7A0);
	font-family: "Noto Sans JP";
	font-size: min(1.8rem, 1.406vw);
	font-style: normal;
	font-weight: 500;
	line-height: 30px;
}

.how-to .box .wrap .text .note {
	margin-bottom: 0;
}

.how-to .box .wrap .text a.link {
	display: block;
	color: var(--earth-brown, #2E2617);
	font-family: "Noto Sans";
	font-size: min(1.4rem, 1.094vw);
	font-style: normal;
	font-weight: 700;
	line-height: 28px;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
	margin-top: 5px;
}

.how-to .box .wrap .text a.link::before {
	content: '＞';
}

.how-to .box .wrap .text h5 {
	color: var(--earth-brown, #2E2617);
	font-family: "Noto Sans";
	font-size: min(1.3rem, 1.016vw);
	font-style: normal;
	font-weight: 700;
	line-height: 20px;
	margin-top: 20px;
}

.how-to .box .wrap .text p {
	color: var(--earth-brown, #2E2617);
	font-family: "Noto Sans";
	font-size: min(1.3rem, 1.016vw);
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
}

.how-to #entry {
	margin-top: 36px;
}

@media screen and (max-width: 768px) {
	.how-to {
		padding: 40px 0 0;
	}

	.how-to .box {
		max-width: 100%;
		margin: 0 20px;
		margin-bottom: 55px;
	}

	.how-to .box h3 {
		font-size: min(2.4rem, 6.383vw);
		line-height: 10px;
		margin-bottom: 22px;
	}

	.how-to .box h3 span {
		font-size: min(1.8rem, 4.787vw);
		line-height: 30px;
		margin-bottom: 14px;
	}

	.how-to .box h4 {
		font-size: min(1.6rem, 4.255vw);
		line-height: 25px;
		padding: 8px 0;
	}

	.how-to .box h4 span {
		font-size: min(1.2rem, 3.191vw);
		line-height: 0;
	}

	.how-to .box .wrap {
		display: block;
		margin-top: 26px;
		margin-bottom: 24px;
	}

	.how-to .box .wrap .img {
		width: 90%;
		margin: 0 auto;
	}

	.how-to .box .wrap .text {
		width: 100%;
		padding-left: 0;
	}

	.how-to .box .wrap .text ul {
		font-size: min(1.4rem, 3.723vw);
		line-height: 18px;
		margin: 10px auto;
	}

	.how-to .box .wrap .text ul li {
		padding-left: 1em;
		text-indent: -1em;
		margin-bottom: 5px;
	}

	.how-to .box .wrap .text ul li::before {
		font-size: min(1.4rem, 3.723vw);
		line-height: 18px;
	}

	.how-to .box .wrap .text .note {
		font-size: min(1.2rem, 3.191vw);
		margin-bottom: 0;
	}

	.how-to .box .wrap .text a.link {
		font-size: min(1.2rem, 3.191vw);
	}

	.how-to .box .wrap .text h5 {
		font-size: min(1.2rem, 3.191vw);
	}

	.how-to .box .wrap .text p {
		font-size: min(1.2rem, 3.191vw);
	}

	.how-to #entry {
		margin-top: 36px;
	}

	.how-to .box h4 span.text {
		display: block;
	}
}

/* ----------------------------------------------------
	info
---------------------------------------------------- */
.info {
	background: #EDE8E3;
	padding-top: 38px;
	padding-bottom: 115px;
}

.info .box {
	max-width: 887px;
	margin: 0 auto;
	padding-top: 72px;
}

.info .box:last-child {
	padding-top: 0;
}


.info .box h3 {
	border-radius: 24.5px;
	background: var(--d-9-d-9-d-9, #FFF);
	color: var(--earth-brown, #2E2617);
	font-family: "Noto Sans";
	font-size: min(2.3rem, 1.797vw);
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-align: center;
	padding: 5px 0;
}

.info .box h3 span {
	display: block;
	color: var(--eae-6-d-4, #CAB7A0);
	text-align: center;
	font-family: "Noto Sans";
	font-size: min(2.3rem, 1.797vw);
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.info .box .contents {
	margin-top: 34px;
	margin-bottom: 114px;
}

.info .box .contents h4 {
	color: var(--earth-brown, #2E2617);
	font-family: "Noto Sans";
	font-size: min(3.3rem, 2.578vw);
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.info .box .contents h4 span {
	display: block;
	color: var(--earth-brown, #44403F);
	font-family: "Noto Sans JP";
	font-size: min(2.2rem, 1.719vw);
	font-style: normal;
	font-weight: 600;
	line-height: 32px;
	margin-bottom: 10px;
}

.info .box .contents .wrap {
	position: relative;
}

.info .box .contents .wrap p {
	width: 665px;
	color: var(--earth-brown, #2E2617);
	font-family: "Noto Sans";
	font-size: min(1.6rem, 1.25vw);
	font-style: normal;
	font-weight: 500;
	line-height: 28px;
	margin: 30px 0;
}

.info .box .contents .wrap .img,
.info .box .contents .wrap .img2 {
	width: 134px;
	position: absolute;
	top: -120px;
	right: 0;
}

.info .box .contents .wrap .img2 {
	top: -70px;
	right: 0;
}

.info .box .contents .wrap .img2 .icon {
	width: 65px;
	position: absolute;
	top: 14px;
	right: -20px;
}

.info .box .contents a.btn {
	display: block;
	width: 370px;
	background: var(--eae-6-d-4, #CAB7A0);
	color: var(--d-9-d-9-d-9, #FFF);
	font-family: "Noto Sans JP";
	font-size: min(1.9rem, 1.484vw);
	font-style: normal;
	font-weight: 600;
	line-height: 32px;
	padding: 14px 19px;
	position: relative;
}

.info .box .contents a.btn::before,
.info .box .contents a.btn::after {
	display: flex;
	content: '';
	background-color: #fff;
	border-radius: 10px;
	width: 18px;
	height: 2px;
	position: absolute;
	top: 24px;
	right: 20px;
	-webkit-transform: rotate(40deg);
	transform: rotate(40deg);
	transform-origin: center center;
}

.info .box .contents a.btn::after {
	top: 35px;
	-webkit-transform: rotate(-40deg);
	transform: rotate(-40deg);
	transform-origin: center center;
}

.info .box .contents .text_app {
	color: var(--earth-brown, #2E2617);
	font-family: "Noto Sans";
	font-size: min(2rem, 1.563vw);
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-top: 30px;
}

.info .box .contents .text_app .area_app {
	max-width: 356px;
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}

.info .box .contents .text_app .area_app a {
	/* width: 166px; */
	width: 147px;
}

.info .box .contents .text_app .area_app a:last-child {
	width: 181px;
}

.en .info .box .contents .text_app .area_app {
	max-width: 370px;
}

.en .info .box .contents .text_app .area_app a:first-child {
	width: 163px;
}


@media screen and (max-width: 768px) {
	.info {
		padding-bottom: 15px;
	}

	.info .box {
		max-width: 100%;
		margin: 0 20px;
		padding-top: 22px;
	}

	.info .box h3 {
		border-radius: 42.5px;
		font-size: min(1.7rem, 4.521vw);
	}

	.info .box h3 span {
		display: block;
		font-size: min(1.7rem, 4.521vw);
	}

	.info .box .contents {
		margin-bottom: 64px;
	}

	.info .box .contents h4 {
		font-size: min(2.7rem, 7.181vw);
	}

	.info .box .contents h4 span {
		font-size: min(1.5rem, 3.989vw);
		margin-bottom: 0;
	}

	.info .box .contents .wrap {
		position: relative;
		display: flex;
		justify-content: space-between;
		margin-top: 20px;
	}

	.info .box .contents .wrap p {
		width: 100%;
		margin: 0;
		font-size: min(1.4rem, 3.723vw);
		line-height: 23px;
	}

	.info .box .contents .wrap .img,
	.info .box .contents .wrap .img2 {
		width: 40%;
		position: relative;
		top: 0;
		right: 0;
		padding-left: 25px;
	}

	.info .box .contents .wrap .img2 .icon {
		width: 34px;
		top: 9px;
		right: -10px;
	}

	.info .box .contents a.btn {
		width: 100%;
		margin-top: 20px;
		font-size: min(1.9rem, 5.067vw);
	}

	.info .box .contents a.btn::before,
	.info .box .contents a.btn::after {
		width: 13px;
		top: 27px;
		right: 14px;
	}

	.info .box .contents a.btn::after {
		top: 35px;
	}

	.info .box .contents .text_app {
		font-size: min(1.5rem, 3.989vw);
	}

	.info .box .contents .text_app .area_app a {
		width: 43%;
	}

	.info .box .contents .text_app .area_app a:last-child {
		width: 52%;
	}

	.en .info .box .contents .text_app .area_app a:first-child {
		width: 45%;
	}

	.en .info .box .contents .text_app .area_app a:last-child {
		width: 50%;
	}

}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
footer {
	max-width: 1120px;
	margin: 0 auto;
}

footer .logo_hotel {
	max-width: 560px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 75px;
}

footer .logo_mfhm {
	max-width: 300px;
	margin: 0 auto;
	margin-top: 108px;
}

.en footer .logo_mfhm {
	max-width: 420px;
	margin: 0 auto;
	margin-top: 108px;
}

footer .copy {
	color: #000;
	text-align: center;
	font-family: "Noto Sans JP";
	font-size: min(1rem, 0.781vw);
	font-style: normal;
	font-weight: 400;
	line-height: 40px;
	margin-top: 60px;
}

@media screen and (max-width: 768px) {
	footer {
		max-width: 100%;
		margin: 0 20px;
		padding-top: 10px;
	}

	footer .logo_hotel {
		max-width: 100%;
		margin-top: 35px;
		justify-content: space-evenly;
	}

	footer .logo_hotel li {
		width: 28%;
	}

	footer .logo_hotel li:nth-child(2) {
		width: 38%;
	}

	footer .logo_hotel li:last-child {
		width: 17%;
	}

	footer .logo_mfhm {
		max-width: 70%;
		margin: 0 auto;
		margin-top: 38px;
	}

	.en footer .logo_mfhm {
		max-width: 80%;
		margin: 0 auto;
		margin-top: 38px;
	}

	footer .copy {
		font-size: min(1rem, 2.667vw);
		margin-top: 30px;
	}
}