@charset "UTF-8";

/* ----------------------------------------------------
 共通
---------------------------------------------------- */
.contents h2 {
	font-family: "Lato", sans-serif;
	font-size: 38px;
	font-weight: 400;
	font-style: normal;
	color: #8A7F45;
	text-align: center;
}

.contents .border {
	background: #8A7F45;
	width: 108px;
	height: 3px;
}

/* ハンバーガーメニュー */
.menu nav {
	background: #8A7F45;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0;
}

.menu nav a {
	display: block;
	color: #fff;
	text-align: center;
	font-size: min(2.4rem, 1.875vw);
	font-weight: 400;
	line-height: 1;
	margin: 0 1.8vw;
}

@media screen and (min-width: 1280px) {
	.menu nav a {
		font-size: 24px;
	}
}

.menu nav a span {
	display: block;
	font-family: "Lato", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	padding-top: 10px;
}

@media screen and (max-width: 768px) {
	.menu {
		position: fixed;
		z-index: 210;
	}

	.menu nav a span {
		display: none;
	}
}

/* --- ハンバーガーボタン --- */
.hamburger {
	display: none;
	/* PCでは非表示 */
	flex-direction: column;
	justify-content: center;
	cursor: pointer;
	margin-right: auto;
}

.hamburger span {
	display: block;
	width: 25px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: 0.3s;
	margin: 3px auto;
}

.hamburger .label {
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 1px;
	text-align: center;
}

.hamburger.open .label {
	opacity: 0;
}

/* --- SP時に切り替え --- */
@media screen and (max-width: 768px) {

	/* ハンバーガーを表示 */
	.hamburger {
		display: flex;
		background: #8A7F45;
		position: relative;
		z-index: 2200;
		padding: 15px 10px 10px;
	}

	/* 左→右のスライドイン。上部固定 */
	.menu nav {
		/* ここからSP用オフキャンバス */
		position: fixed;
		top: 0;
		left: -100%;
		/* 初期: 画面外に隠す（左） */
		width: 90%;
		/* 出てくる幅（必要なら100%に） */
		height: 100vh;
		/* 全高 */
		padding: 60px 20px;
		/* 上にヘッダーがあるなら余白を調整 */
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 0;
		transition: left 0.3s ease;
		/* スライドアニメーション */
		z-index: 1000;
	}

	.menu nav a {
		width: 100%;
		font-size: 20px;
		text-align: left;
		padding: 20px 0;
		margin: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.50);
	}

	.menu nav a:last-child {
		border-bottom: none;
	}

	/* 開いたとき */
	.menu nav.active {
		left: 0;
	}

	/* ハンバーガー開閉アニメ */
	.hamburger.open span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.hamburger.open span:nth-child(2) {
		opacity: 0;
	}

	.hamburger.open span:nth-child(3) {
		transform: rotate(-45deg) translate(6px, -6px);
	}

	.menu .menu-bg {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: rgba(0, 0, 0, 0.4);
		/* ←薄いグレーなら rgba(200,200,200,0.6) などに変更可 */
		z-index: 500;
		display: none;
	}

	/* 表示状態 */
	.menu .menu-bg.active {
		display: block;
	}
}

/* ----------------------------------------------------
 mv
---------------------------------------------------- */
.mv {
	position: fixed;
	top: 0;
	left: 0;
	background: url(../img/image_1.webp) no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100vh;
	transform: scale(1.5);
	transition: transform 2s ease;
}

.mv.zoom-out {
	transform: scale(1);
}

@media screen and (max-width: 768px) {
	.mv {
		background: url(../img/image_1_sp.webp) no-repeat;
		background-size: cover;
		background-position: center;
	}
}

/* ----------------------------------------------------
 mv_title
---------------------------------------------------- */
.mv_title {
	position: relative;
	height: 100vh;
	z-index: 100;
}

.title {
	width: 100%;
	opacity: 0;
	transition: opacity 1s ease;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	text-align: center;
}

.title.show {
	opacity: 1;
}

.title .logo {
	width: 216px;
	height: 172px;
	margin: 0 auto;
	margin-bottom: 40px;
}

.title h1 {
	font-size: 48px;
}

.title h1 span {
	display: block;
	font-family: "Lato", sans-serif;
	font-size: 25px;
	font-weight: 400;
	font-style: normal;
}

.title h2 {
	font-family: "Lato", sans-serif;
	font-size: 52px;
	font-weight: 400;
	font-style: normal;
	color: #8A7F45;
}

.mv_title h3 {
	max-width: 1080px;
	width: 100%;
	margin: 0 auto;
	position: absolute;
	top: 18vw;
	left: 6vw;
	z-index: 10;
}

.mv_title h3 span {
	display: block;
	font-size: 33px;
	line-height: 64px;
	opacity: 0;
	transition: opacity 1s ease;
}


@media screen and (max-width: 768px) {
	.title .logo {
		width: 33.4%;
		height: 100%;
		margin-bottom: 23px;
	}

	.title h1 {
		font-size: 24px;
	}

	.title h1 span {
		font-size: 14px;
	}

	.title h2 {
		font-size: 38px;
	}

	.mv_title h3 {
		width: 80%;
		top: 38vw;
		left: 0;
	}

	.mv_title h3 span {
		margin-left: 20px;
		font-size: 22px;
		line-height: 36px;
		text-shadow: 2px 2px 4px rgba(255, 255, 255, 1);
	}
}

/* ----------------------------------------------------
 heading
---------------------------------------------------- */
.heading {
	position: relative;
	z-index: 100;
}

.heading p {
	background: #fff;
	padding: 126px 0;
	font-size: 18px;
	text-align: center;
	line-height: 3;
}

@media screen and (max-width: 768px) {
	.heading p {
		padding: 100px 10px;
		font-size: 16px;
	}
}

/* ----------------------------------------------------
 location
---------------------------------------------------- */
.location {
	background: #fff;
	position: relative;
	z-index: 100;
}

.location .bg {
	background: rgba(225, 224, 183, 0.3);
	padding: 113px 0 144px;
}

.location .address {
	font-size: 18px;
	text-align: center;
	padding-top: 18px;
}

.location .border {
	margin: 33px auto 72px;
}

.location .text {
	max-width: 798px;
	line-height: 2;
	margin: 0 auto;
}

.location .access {
	max-width: 798px;
	margin: 0 auto;
	padding-top: 24px;
}

.location .access .box:nth-of-type(2) {
	margin-top: 50px;
}

.location .access ul {
	padding-top: 10px;
}

.location .access ul li {
	line-height: 2;
}

.location .access ul li::before {
	content: '◼︎';
	color: #8A7F45;
}

.location .access .map {
	margin-top: 50px;
}

.location .access .map iframe {
	width: 100%;
	height: 450px;
}

@media screen and (max-width: 768px) {
	.location .bg {
		padding: 80px 10px;
	}

	.location .address {
		font-size: 16px;
	}

	.location .access .map iframe {
		height: 280px;
	}
}

/* ----------------------------------------------------
 inquiries
---------------------------------------------------- */
.inquiries {
	background: #fff;
	padding: 130px 0;
	position: relative;
	z-index: 100;
}

.inquiries .border {
	margin: 34px auto 48px;
}

.inquiries a.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #8A7F45;
	color: #fff;
	width: 522px;
	height: 73px;
	margin: 0 auto;
	border-radius: 50px;
	font-size: 19px;
	position: relative;
}

.inquiries a.btn::after {
	content: '';
	background: url(../img/btn_arrow.svg) no-repeat;
	background-size: 100%;
	width: 39px;
	height: 29px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
	.inquiries a.btn {
		width: 90%;
	}
}


/* ----------------------------------------------------
 faq
---------------------------------------------------- */
.faq {
	background: #fff;
	padding: 40px 0 160px;
	position: relative;
	z-index: 100;
}

.faq .bg {
	max-width: 857px;
	margin: 0 auto;
}

.faq .text {
	font-size: 18px;
	text-align: center;
	margin: 20px 0 32px;
}

.faq .border {
	margin: 0 auto 50px;
}

.en .faq .border {
	margin: 34px auto 50px;
}

/* .faq .qa ul:nth-of-type(2) {
	margin-top: 50px;
} */

.faq .qa ul:not(:first-of-type) {
	margin-top: 30px;
}

.faq .qa ul .q_text,
.faq .qa ul .a_text {
	display: flex;
	align-items: baseline;
	font-size: 17px;
	line-height: 2;
}

.faq .qa ul .q_text {
	background-color: #8A7F45;
	padding: 0.5em 1em;
	color: #ffffff;
	position: relative;
	cursor: pointer;
}

.faq .qa ul .q_text::before,
.faq .qa ul .q_text::after {
	background-color: #ffffff;
	width: 1.5em;
	height: 1px;
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
	content: "";
}

.faq .qa ul .q_text::after {
	transform: translateY(-50%) rotate(90deg);
	transition: all 0.5s ease 0s;
}

.faq .qa ul.is-open .q_text::after {
	transform: translateY(-50%) rotate(360deg);
}

.faq .qa ul .a_text {
	background: rgb(225, 224, 183, 0.3);
	padding: 1em;
	display: none;
}

.faq .qa ul .q_text p,
.faq .qa ul .a_text p {
	margin-bottom: 0;
}

.faq .qa ul .q_text p:first-child,
.faq .qa ul .a_text p:first-child {
	margin-right: 0.5em;
}

.faq .qa ul .a_text p:first-child {
	color: #8A7F45;
}


.faq .qa ul .a_text a {
	color: #303030;
	text-decoration: underline;
}

.faq .qa ul .a_text a:hover {
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.faq {
		padding: 40px 10px 160px;
	}

	.faq .qa ul:not(:first-of-type) {
		margin-top: 20px;
	}

	.faq .qa ul .q_text {
		padding-right: 3em;
	}
}

.copy {
	background: rgba(205, 205, 205, 0.35);
	color: #888;
	font-family: '游明朝', 'Yu Mincho', 'YuMincho', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', Georgia;
	font-size: 14px;
	padding: 25px 0;
	text-align: center;
	font-weight: bold;
	letter-spacing: 0;
}

@media screen and (max-width: 768px) {
	.copy {
		font-size: 12px;
		padding: 14px 0;
	}
}


/* ----------------------------------------------------
 section
---------------------------------------------------- */
.section {
	background: #fff;
	position: relative;
	z-index: 100;
}

.section .bg {
	background: rgba(225, 224, 183, 0.3);
}

/*-- reservation --*/
.reservation {
	padding: 112px 0 120px;
}

.reservation a.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #8A7F45;
	color: #fff;
	width: 522px;
	height: 73px;
	margin: 0 auto;
	border-radius: 50px;
	font-size: 19px;
	position: relative;
}

.reservation a.btn::after {
	content: '';
	background: url(../img/btn_arrow.svg) no-repeat;
	background-size: 100%;
	width: 39px;
	height: 29px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(-50%, -50%);
}

.reservation h2 {
	color: #8A7F45;
	text-align: center;
	font-family: "Lato", sans-serif;
	font-size: 38px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 18px;
}

.reservation .txt {
	text-align: center;
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: 35px;
}

.reservation .border {
	width: 100px;
	height: 3px;
	background: #8A7F45;
	margin: 33px auto 57px;
}

.reservation .member {
	max-width: 801px;
	margin: 0 auto;
}

.reservation .member .txt {
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 33px;
	border-top: 1px solid #303030;
	border-bottom: 1px solid #303030;
	padding: 5px 0;
}

.reservation .member ul {
	display: flex;
	justify-content: space-between;
	margin: 33px 0;
}

.reservation .member ul li {
	width: 32.33333%;
	text-align: center;
	border-right: 2px solid #8A7F45;
}

.reservation .member ul li:last-child {
	border-right: none;
}

.reservation .member ul li p:nth-of-type(1) {
	display: flex;
	width: 255px;
	height: 50px;
	flex-direction: column;
	justify-content: center;
	flex-shrink: 0;
	color: #8A7F45;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	margin-bottom: 10px;
}

.reservation .general {
	max-width: 801px;
	margin: 82px auto 110px;
}

.reservation .general .txt {
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 33px;
	border-top: 1px solid #303030;
	border-bottom: 1px solid #303030;
	padding: 5px 0;
}

.reservation .general .txt2 {
	font-size: 18px;
	font-style: normal;
	line-height: 25px;
	text-align: center;
	margin: 40px 0;
}

.reservation .contents {
	background: #fff;
	max-width: 797px;
	height: 180px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 50px;
}

.reservation .contents .box {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 48%;
}

.reservation .contents .box p {
	margin-bottom: 20px;
}

.reservation .contents .box:nth-of-type(1) p {
	font-size: 18px;
	font-style: normal;
	line-height: 33px;
}

.reservation .contents .box:nth-of-type(2) p {
	font-size: 21px;
	font-style: normal;
	font-weight: 500;
	line-height: 33px;
}

.reservation .contents2 {
	background: #fff;
	max-width: 797px;
	height: 85px;
	margin: 20px 6px 0;
	align-items: center;
	text-align: center;
	padding: 20px 0 0;
}

.reservation .contents2 .box2 {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
}

/*ーーーーーーーーーーーー 
 en
ーーーーーーーーーーーーー*/
.en .reservation .contents .box:nth-of-type(1) p {
	font-size: 14px;
}

.en .reservation .contents .box:nth-of-type(2) p {
	font-size: 14px;
}

.en .reservation a.btn.typeB {
	font-size: 15px;
}

.en .reservation a.btn.typeB::after {
	width: 22px;
	height: 16px;
}

/*ーーーーーーーーーーーー 
 ko
ーーーーーーーーーーーーー*/
.ko .reservation .contents .box:nth-of-type(1) p {
	font-size: 16px;
}

.ko .reservation .contents .box:nth-of-type(2) p {
	font-size: 16px;
}




@media screen and (max-width: 768px) {
	.reservation {
		padding: 80px 0;
	}

	.reservation a.btn {
		width: 90%;
	}

	.reservation .member {
		padding: 0 10px;
	}

	.reservation .member .txt {
		font-size: min(1.8rem, 4.8vw);
		letter-spacing: -0.72px;
	}

	.reservation .member ul {
		display: block;
	}

	.reservation .member ul li {
		width: 95%;
		margin: 0 auto;
		text-align: center;
		border-right: none;
		border-bottom: 1px solid #8A7F45;
		padding: 30px 0;
	}

	.reservation .member ul li:first-child {
		padding: 0 0 30px;
	}

	.reservation .member ul li:last-child {
		border-right: none;
		border-bottom: none;
		padding: 30px 0 0;
	}

	.reservation .member ul li p:nth-of-type(1) {
		display: flex;
		width: 100%;
		height: auto;
		font-size: 20px;
		text-align: center;
	}

	.reservation .general {
		margin: 82px auto 110px;
		padding: 0 10px;
	}

	.reservation .general .txt {
		font-size: min(1.8rem, 4.8vw);
		padding: 10px 0;
	}

	.reservation .general .txt2 {
		font-size: min(1.8rem, 4.8vw);
	}

	.reservation .contents {
		width: 95%;
		height: auto;
		margin: 0 auto;
		display: block;
		padding: 30px 10px;
	}

	.reservation .contents .box {
		display: block;
		width: 100%;
	}

	.reservation .contents .box p {
		text-align: center;
	}

	.reservation .contents .box:nth-of-type(1) p {
		font-size: min(1.8rem, 4.8vw);
	}

	.reservation .contents .box:nth-of-type(2) p {
		font-size: min(1.8rem, 4.8vw);
	}

	.reservation .contents .box .img {
		width: 80%;
		margin: 0 auto 30px;
	}

	.en .reservation a.btn.typeB {
		text-align: center;
	}
}

/*-- guest --*/
.guest {
	padding: 150px 0;
}

.guest h2 {
	color: #8A7F45;
	text-align: center;
	font-family: "Lato", sans-serif;
	font-size: 38px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.guest .txt {
	font-size: 22px;
	font-style: normal;
	font-weight: 300;
	line-height: 35px;
	text-align: center;
}

.guest .border {
	width: 100px;
	height: 3px;
	background: #8A7F45;
	margin: 33px auto 57px;
}

.guest .w800 {
	max-width: 800px;
	margin: 0 auto 150px;
}

.guest .w800 .slide img {
	width: 100%;
	height: auto;
	display: block;
}

.guest .w800 .slide div {
	position: relative;
}

.guest .w800 .slide div span {
	position: absolute;
	bottom: 8px;
	right: 10px;
	font-size: 14px;
	color: #fff;
}

.slick-dots {
	bottom: -30px;
}

.slick-dots li button:before {
	font-family: 'slick';
	font-size: 10px;
	line-height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: '●';
	text-align: center;
	opacity: .25;
	color: #8A7F45;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
	opacity: .75;
	color: #8A7F45;
}

.guest .w800 .txt2 {
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 300;
	line-height: 44px;
	padding: 40px 0 70px;
}

.guest .w800 .accordion_one .accordion_inner .box_one {
	height: auto;
}

.guest .w800 .accordion_one .accordion_inner .box_one ul {
	display: flex;
	justify-content: space-between;
}

.guest .w800 .accordion_one .accordion_inner .box_one ul li {
	width: 48%;
}

.guest .w800 .accordion_one .accordion_inner .box_one ul li h3 {
	color: #FFF;
	background: #8A7F45;
	font-size: 19px;
	font-style: normal;
	font-weight: 400;
	line-height: 35px;
	text-align: center;
}

.guest .w800 .accordion_one .accordion_inner .box_one ul li p {
	font-size: 19px;
	font-style: normal;
	font-weight: 300;
	line-height: 27px;
	border-bottom: 1px solid #8A7F45;
	padding: 20px 0;
	margin-bottom: 0;
}

.guest .w800 .accordion_one .accordion_inner .box_one ul li p:last-child {
	border-bottom: none;
}

.guest .w800 .accordion_one .accordion_inner .box_one ul li p span {
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 27px;
}

.guest .contents {
	display: flex;
	align-items: center;
	margin-left: 10%;
}

.guest .contents .txt {
	width: 30%;
	text-align: left;
}

.guest .contents .txt h3 {
	color: #8A7F45;
	font-family: "Lato", sans-serif;
	font-size: 38px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.guest .contents .txt h4 {
	font-size: 22px;
	font-style: normal;
	font-weight: 300;
	line-height: 35px;
	margin-top: 10px;
}

.guest .contents .txt p {
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 33px;
	margin-top: 30px;
}

.guest .contents .img {
	width: 70%;
	margin-left: 7%;
}

.guest .contents.typeB {
	margin-top: 100px;
	margin-left: 0;
}

.guest .contents.typeB .txt {
	order: 1;
	margin-right: 6%;
}

.guest .contents.typeB .img {
	margin-left: 0;
	margin-right: 7%;
}

.guest .contents.typeC {
	margin-top: 100px;
}

.guest .contents.img.slide2 {
	position: relative;
	overflow: hidden;
}

.guest .contents.img.slide2 img {
	width: 100%;
	height: auto;
	display: block;
}

/*ーーーーーーーーーーーー 
 en
ーーーーーーーーーーーーー*/
.en .guest .contents .txt h3 {
	font-size: 34px;
}


@media screen and (max-width: 768px) {
	.guest {
		padding: 100px 0;
	}

	.guest .w800 {
		margin: 0 auto 125px;
		padding: 0 10px;
	}

	.guest .w800 .slide div span {
		font-size: 12px;
		bottom: 3px;
	}

	.guest .w800 .txt2 {
		font-size: 16px;
		line-height: 38px;
		padding: 30px 0 57px;
	}

	.guest .w800 .accordion_one .accordion_inner .box_one ul {
		display: block;
	}

	.guest .w800 .accordion_one .accordion_inner .box_one ul li {
		width: 100%;
	}

	.guest .contents {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		margin-left: 0;
		padding: 0 10px;
		padding-top: 110px;
		margin-top: -80px;
	}

	.guest .contents .txt {
		display: contents;
	}

	.guest .contents .txt h3 {
		width: 100%;
		text-align: center;
	}

	.guest .contents .txt h4 {
		width: 100%;
		text-align: center;
		margin-bottom: 30px;
	}

	.guest .contents .txt p {
		width: 100%;
		order: 4;
	}

	.guest .contents .img {
		width: 100%;
		margin-left: 0;
	}

	.guest .contents.typeB {
		margin-top: 0;
		padding-top: 70px;
	}

	.guest .contents.typeB .img {
		margin-right: 0;
	}

	.guest .contents.typeC {
		margin-top: 10px;
		padding-top: 80px;
	}
}

/*ーーーーーーーーーーーー 
	link-table
ーーーーーーーーーーーーー*/
.link-table {
	margin-top: 40px;
	width: 100%;
}

.link-table__th,
.link-table__td {
	padding-bottom: 30px;
	vertical-align: middle;
}

.link-table__th {
	width: 57.5%;
}

.link-table__td {
	width: 42.5%;
}

.link-table__td a.btn {
	width: 100%;
}

.other-plans {
	margin-top: 82px;
	padding-top: 40px;
	text-align: center;
	border-top: solid 1px #303030;
}

.other-plans__title {
	margin-bottom: 40px;
	font-size: 18px;
}

@media screen and (max-width: 768px) {

	.link-table,
	.link-table tbody,
	.link-table__row,
	.link-table__th,
	.link-table__td {
		width: 100%;
		text-align: center;
		display: block;
	}

	.link-table__th {
		font-size: 4.8vw;
	}

	.link-table__td {
		padding-bottom: 50px;
	}

	.link-table__row:last-of-type .link-table__td {
		padding-bottom: 0;
	}

	.link-table__td a.btn {
		width: 90%;
	}

	.other-plans__title {
		font-size: 4.8vw;
	}
}