@charset "UTF-8";

/* ----------------------------------------------------
	基本設定
---------------------------------------------------- */
:root {
	--notosansJP: "Noto Sans JP", sans-serif;
	--notoserifJP: "Noto Serif JP", serif;
	--marcellus: "Marcellus", serif;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 70px;
	font-size: 62.5%;
}

@media(max-width:768px) {
	html {
		scroll-padding-top: 16vw;
	}
}

/*
	#font
------------------------------ */
body {
	background-color: #F6F4EE;
	line-height: 1.5;
	color: #343131;
	font-family: var(--notosansJP);
	font-optical-sizing: auto;
	font-feature-settings: "palt"1;
	letter-spacing: 0.05em;
}

/* .montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

.mincho {
	font-family: "Hiragino Mincho Pro", "游明朝", "Yu Mincho", YuMincho, serif;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 16px;
}

@media(max-width:768px) {

	body,
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		font-size: 4.26667vw;
	}
}

/*
	#reset
------------------------------ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

p:not(:last-of-type) {
	word-wrap: break-word;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset,
img {
	border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
	font-style: normal;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
}

caption,
th {
	text-align: left;
}

a {
	text-decoration: none;
	transition: all 0.5s ease 0s;
}

a:hover {
	opacity: 0.7;
}

area {
	border: none;
	outline: none;
}

img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

/*
	表示設定
------------------------------ */
.container {
	margin: 0 auto;
	width: 900px;
}

@media(max-width:1000px) {
	.container {
		width: 90vw;
	}
}

@media(max-width:768px) {
	.container {
		width: 100%;
	}
}

/*
	SP,PC表示切り替え
------------------------------ */
.pc {
	display: block;
}

.sp {
	display: none;
}

@media(max-width:768px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}

/*
	list
------------------------------ */
.normal li,
.list_style li {
	margin-left: 1em;
	text-indent: -1em;
}

/* type */
.list_style.type1 li::before {
	content: "●";
}

/* note */
.list_style.note {
	font-size: min(1.5rem, 1.098vw);
}

.list_style.note li {
	font-weight: 300;
}

.list_style.note li::before {
	content: "※";
}

.list_style.typeB.note {
	font-size: min(1.4rem, 1.025vw);
	margin-top: 17px;
}

@media(max-width:768px) {
	.list_style.note {
		font-size: min(1.3rem, 3.467vw);
		line-height: 27px;
	}
	.list_style.typeB.note {
		font-size: min(1.3rem, 3.467vw);
		margin-top: 10px;
	}
}

/* ----------------------------------------------------
	fadeIn
---------------------------------------------------- */
/*
	共通初期設定
	パターン1：透明度が変化
------------------------------ */
.fadeBlock {
	opacity: 0;
	transition: all 1s;
}

.fadeBlock.fadeIn {
	opacity: 1;
}

/*
	パターン2：下から
------------------------------ */
.fadeBottom {
	transform: translateY(30px);
}

.fadeBottom.fadeIn {
	transform: translateY(0);
}

/* ----------------------------------------------------
	header
---------------------------------------------------- */
.header {
	padding-top: 113px;
	position: relative;
}

.header .mainTitle {
	width: 63.7%;
	margin: 0 auto;
}

.header .icon {
	width: clamp(140px, 15vw, 204px);
	position: absolute;
	top: 0;
	right: clamp(20px, 4vw, 55px);
}

.header .img {
	margin-top: 19px;
}

@media(max-width: 768px) {
	.header {
		padding-top: 166px;
	}
	.header .mainTitle {
		width: 374px;
	}
	.header .icon {
		width: 123px;
		right: 0;
	}
	.header .img {
		margin-top: 53px;
	}
}

/* ----------------------------------------------------
	anime
---------------------------------------------------- */
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 3s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.delay {
	animation-delay: 0.5s;
}

/* ----------------------------------------------------
	member
---------------------------------------------------- */
.member a {
	background: #514D47;
	padding: 0 3.4rem;
	height: 73px;
	line-height: 1;
	color: #fff;
	font-size: min(2rem, 1.464vw);
	font-weight: 400;
	letter-spacing: 0.8px;
	display: flex;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}
.member a::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	margin-top: 3px;
	margin-right: 8px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(45deg);
}
.member a:hover {
	background: #fff;
	color: #514D47;
	opacity: 1;
}
.member a:hover::before {
	border-top: solid 3px #514D47;
	border-right: solid 3px #514D47;
}

@media(max-width: 768px) {
	.member a {
		width: 194px;
		height: 62px;
		padding: 0 0 0 10px;
		line-height: 1.5;
		font-size: min(1.5rem, 4vw);
		border-radius: 0 0 1em 0;
	}
	.member a::before {
		margin-right: 1em;
	}
}

/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background: #fff;
	padding: 58px 20px 18px;
	text-align: center;
}

/* note */
.footer .note {
	padding-bottom: 60px;
}

.footer .note.center li {
	justify-content: center;
}

/* logo_list */
.footer .footer_logolist,
.footer .footer_logomain {
	margin: 0 auto;
	max-width: 690px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.footer .footer_logolist a,
.footer .footer_logomain a {
	display: block;
}

.footer .footer_logolist {
	margin-bottom: 60px;
}

.footer .footer_logolist li:nth-child(1) {
	width: 25.94203%;
}

.footer .footer_logolist li:nth-child(2) {
	width: 39.42029%;
}

.footer .footer_logolist li:nth-child(3) {
	width: 21.01449%;
}

.footer .footer_logomain {
	margin-bottom: 20px;
}

.footer .footer_logomain a {
	margin: 0 auto;
	width: 37.68116%;
}

/* copy */
.footer .copy {
	color: #000;
	font-size: min(1.3rem, 0.952vw);
	margin-top: 108px;
}

@media (max-width: 768px) {
	.footer {
		background: #F6F4EE;
		padding: 41px 27px 14px;
	}
	.footer .note {
		padding: 0 3.2vw 31px;
		text-align: center;
	}
	.footer .footer_logolist {
		display: block;
		margin-bottom: 7.81250vw;
	}

	.footer .footer_logolist li {
		margin: 0 auto 31px;
	}

	.footer .footer_logolist li:nth-child(1) {
		width: 145px;
	}

	.footer .footer_logolist li:nth-child(2) {
		width: 216px;
	}

	.footer .footer_logolist li:nth-child(3) {
		width: 108px;
	}
	.footer .footer_logomain {
		margin-bottom: 4.8vw;
	}
	.footer .footer_logomain a {
		width: 227px;
	}
	.footer .copy {
		font-size: min(1.2rem, 3.2vw);
		margin-top: 31px;
	}
}

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
#pageTop a {
	background: rgba(187, 102, 73, 0.8);
	width: 64px;
	height: 64px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 0.5em;
	bottom: 0.5em;
	z-index: 10;
	transform: rotate(-180deg);
}

#pageTop a img {
	width: 20px;
	height: auto;
}

/* ----------------------------------------------------
	nav
---------------------------------------------------- */
.nav {
	background:
		linear-gradient(rgba(98, 78, 42, 0.85), rgba(98, 78, 42, 0.85)),
		url(../img/bg-01.webp) center top / cover no-repeat;
	padding: 100px 0 109px;
}

.nav__title {
	color: #fff;
	text-align: center;
	font-family: var(--marcellus);
	font-size: min(4.9rem, 3.587vw);
	font-weight: 400;
	line-height: 56px;
	letter-spacing: 0.8px;
}

.nav__title span {
	display: block;
	font-size: min(4.1rem, 3.001vw);
}

.nav__txt {
	color: #fff;
	text-align: center;
	font-size: min(2.3rem, 1.684vw);
	font-weight: 400;
	line-height: 40px;
	margin: 17px 0 56px;
}

@media (min-width: 1367px) {
	.nav {
		background:
			linear-gradient(rgba(98, 78, 42, 0.85), rgba(98, 78, 42, 0.85)),
			url(../img/bg-01.webp) center / cover no-repeat;
	}
}

@media (max-width: 768px) {
	.nav {
	background:
		linear-gradient(rgba(98, 78, 42, 0.85), rgba(98, 78, 42, 0.85)),
		url(../img/bg-01.webp) center top / cover no-repeat;
		padding: 59px 20px 53px;
	}
	.nav__title {
		font-size: min(3.4rem, 9.067vw);
		line-height: 39.923px;
		letter-spacing: 0.57px;
	}
	.nav__title span {
		font-size: min(3rem, 8vw);
	}
	.nav__txt {
		font-size: min(1.9rem, 5.067vw);
		line-height: 28.517px;
		margin: 27px 0 40px;
	}
}

/*
	nav__list
------------------------------ */
.nav__list {
	margin: 0 auto;
	width: 900px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.nav__list--item a {
	display: block;
	padding: 0 20px 68px;
	width: 100%;
	height: 100%;
	font-weight: 500;
	position: relative;
}

.nav__list--item a::after {
	background-size: cover;
	width: 36px;
	height: 36px;
	position: absolute;
	bottom: 6%;
	left: 50%;
	transform: translateX(-50%);
	content: "";
}

.nav__list--item a .icon {
	margin-right: 20px;
}

.nav__list--item a .inner {
	font-size: min(2.6rem, 1.903vw);
	line-height: 36px;
	letter-spacing: 0.8px;
}

.nav__list--item a .inner .small {
	display: block;
	font-size: min(1.9rem, 1.391vw);
	line-height: 34.5px;
	letter-spacing: 0.8px;
}

/* icon-all, icon-mail */
.nav__list--item.link-all,
.nav__list--item.link-mail {
	width: 345px;
	text-align: center;
	margin-bottom: 96px;
}

.nav__list--item.link-all a,
.nav__list--item.link-mail a {
	background: #BB6649;
	color: #fff;
}

.nav__list--item.link-all a::after,
.nav__list--item.link-mail a::after {
	background: url(../img/arrow-02.svg) center no-repeat;
	background-size: cover;
}

.nav__list--item.link-mail {
	margin-left: 95px;
}

.nav__list--item.link-all a .icon {
	width: 83px;
	margin: 0 auto;
	padding: 44px 0 16px;
}

.nav__list--item.link-mail a .icon {
	width: 56px;
	margin: 0 auto;
	padding: 27px 0 16px;
}

/* icon-plan */
.nav__list--item.link-plan {
	background: rgba(33, 28, 28, 0.62);
	width: 421px;
}

.nav__list--item.link-plan a {
	color: #fff;
	padding: 18px;
	padding-bottom: 68px;
}

.nav__list--item.link-plan a::after {
	background: url(../img/arrow-02.svg) center no-repeat;
	background-size: cover;
}

.nav__list--item.link-plan a .icon {
	width: 100%;
}

.nav__list--item.link-plan a .inner {
	font-size: min(1.8rem, 1.318vw);
	font-weight: 400;
	line-height: 30px;
	text-align: center;
	margin-top: 10px;
}

@media (max-width: 768px) {
	.nav__list {
		display: block;
		width: 100%;
	}
	.nav__list--item a {
		display: block;
		padding: 0 20px 68px;
		width: 100%;
		height: 100%;
		font-weight: 500;
		position: relative;
	}
	.nav__list--item a::after {
		background-size: cover;
		width: 36px;
		height: 36px;
		position: absolute;
		bottom: 6%;
		left: 50%;
		transform: translateX(-50%);
		content: "";
	}
	.nav__list--item a .icon {
		margin-right: 20px;
	}
	.nav__list--item a .inner {
		font-size: min(2.3rem, 6.133vw);
		font-weight: 500;
		line-height: 32.489px;
		letter-spacing: 0.722px;
	}
	.nav__list--item a .inner .small {
		font-size: min(1.7rem, 4.533vw);
		font-weight: 500;
		line-height: 31.136px;
		letter-spacing: 0.722px;
	}
	.nav__list--item.link-all,
	.nav__list--item.link-mail {
		width: 100%;
		margin-bottom: 20px;
	}
	.nav__list--item.link-mail {
		margin-left: 0;
	}
	.nav__list--item.link-all a .icon {
		width: 83px;
		margin: 0 auto;
		padding: 44px 0 16px;
	}
	.nav__list--item.link-mail a .icon {
		width: 56px;
		margin: 0 auto;
		padding: 27px 0 16px;
	}
	.nav__list--item.link-plan {
		background: rgba(33, 28, 28, 0.62);
		width: 100%;
	}
	.nav__list--item.link-plan a {
		color: #fff;
		padding: 18px;
		padding-bottom: 68px;
	}
	.nav__list--item.link-plan a .icon {
		width: 100%;
	}
	.nav__list--item.link-plan a .inner {
		font-size: min(1.9rem, 5.067vw);
		line-height: 23.23px;
		margin-top: 20px;
	}
}



/* ----------------------------------------------------
	content
---------------------------------------------------- */
.content {
	padding: 100px 0;
}

@media (max-width: 768px) {
	.content {
		padding: 16vw 0;
	}
}

/* ----------------------------------------------------
	content
---------------------------------------------------- */
.campaign {
	padding-top: 120px;
	position: relative;
}

.campaign__title {
	background: url(../img/titleBg.webp) no-repeat;
	background-size: 100% auto;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 400px;
	height: 55px;
	margin: 0 auto;
	color: #fff;
}

.campaign__title--inner {
	font-size: min(2.5rem, 1.83vw);
	font-weight: 500;
	line-height: 41px;
	letter-spacing: 0.582px;
}

.campaign .content__title {
	color: #B0924C;
	text-align: center;
	font-size: min(5.5rem, 4.026vw);
	font-weight: 500;
	line-height: 73px;
	letter-spacing: 0.582px;
	margin-top: 32px;
}

.campaign .content__title span {
	display: block;
	color:#BB6649;
	text-align: center;
	font-family: var(--marcellus);
	font-size: min(3.5rem, 2.562vw);
	font-weight: 400;
	line-height: 56px;
	letter-spacing: 0.8px;
}

@media (max-width: 768px) {
	.campaign {
		padding-top: 37px;
	}
	.campaign__title {
		width: 283px;
		height: 39px;
	}
	.campaign__title--inner {
		font-size: min(1.5rem, 4vw);
		font-weight: 500;
		line-height: 19.697px;
		letter-spacing: 0.28px;
	}
	.campaign .content__title {
		font-size: min(4rem, 10.667vw);
		font-weight: 500;
		line-height: 50.1px;
		letter-spacing: 0.28px;
		margin-top: 15px;
	}
	.campaign .content__title span {
		font-size: min(2.2rem, 5.867vw);
		font-weight: 400;
		line-height: 26.903px;
		letter-spacing: 0.384px;
		margin-bottom: 12px;
	}
}

/*
	all
------------------------------ */
.all .content__detail .date {
	margin-bottom: 63px;
	text-align: center;
}

.all .content__detail .date__title {
	background: #B0924C;
	margin: 0 auto 11px;
	width: 170px;
	height: 35px;
	color: #fff;
	font-size: min(2.1rem, 1.537vw);
	font-weight: 500;
	border-radius: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 37px;
}

.all .content__detail .date__detail {
	color: #707070;
	text-align: center;
	font-size: min(2rem, 1.464vw);
	font-weight: 500;
	line-height: 30px;
}

.all .hotel-img {
	position: relative;
}

.all .hotel-img figcaption {
	color: #fff;
	font-size: min(1.4rem, 1.025vw);
	font-weight: 400;
	line-height: 21px;
	letter-spacing: 0.8px;
	position: absolute;
	bottom: 10px;
	right: 10px;
}

.all .content__detail .area-note {
	margin: 18px 0 63px;
}

.all .content__detail .area-note .note {
	color: #69665E;
	font-size: min(1.3rem, 0.952vw);
	line-height: 21px;
	letter-spacing: 0.8px;
}
.all .content__detail .area-note .note::before {
	content: '※';
}

.all .content__detail .area-note .note a {
	color: #BB6649;
	text-decoration: underline;
}

.all h4 {
	color: #69665E;
	text-align: center;
	font-size: min(2.2rem, 1.611vw);
	font-weight: 500;
	line-height: 31px;
	letter-spacing: 0.8px;
	margin-top: 20px;
}

.all h4 span {
	display: block;
	font-size: min(1.8rem, 1.318vw);
}

@media (max-width: 768px) {
	.all {
		padding: 37px 22px 0;
	}
	.all .content__detail .date {
		margin-bottom: 18px;
	}
	.all .content__detail .date__title {
		margin: 0 auto 11px;
		width: 133px;
		height: 33px;
		font-size: min(1.7rem, 4.533vw);
		line-height: 15.052px;
		letter-spacing: 0.812px;
		border-radius: 44px;
		margin-top: 17px;
	}
	.all .content__detail .date__detail {
		font-size: min(1.7rem, 4.533vw);
		line-height: 21.503px;
	}
	.all .hotel-img {
		padding: 0 12px;
	}
	.all .hotel-img figcaption {
		display: block;
		font-size: min(1.4rem, 3.733vw);
		position: relative;
		bottom: auto;
		right: auto;
		color: #514D47;
		text-align: center;
		margin-top: 5px;
	}
	.all .content__detail .area-note {
		margin: 18px 12px;
	}
	.all .content__detail .area-note .note {
		font-size: min(1.3rem, 3.467vw);
		padding-left: 1em;
		text-indent: -1em;
	}
	.all h4 {
		font-size: min(1.8rem, 4.8vw);
		line-height: 31px;
		letter-spacing: 0.8px;
		margin-top: 18px;
	}
	.all h4 span {
		font-size: min(1.8rem, 4.8vw);
	}
}

/*
	mail
------------------------------ */
.mail .content__title {
	position: relative;
}

.mail .content__title .icon{
	content: '';
	background: url(../img/icon-mail01.webp) no-repeat;
	background-size: 100%;
	display: block;
	width: 111px;
	height: 111px;
	position: absolute;
	top: 50%;
	left: 20px;
	transform:  translate(-50%, -50%);
}

.mail h4 {
	color: #69665E;
	text-align: center;
	font-size: min(2.2rem, 1.611vw);
	font-weight: 500;
	line-height: 37px;
	letter-spacing: 0.8px;
	margin: 15px 0 63px;
}

.mail .content__detail {
	text-align: center;
}

.mail .content__detail .date {
	margin-bottom: 1rem;
	font-size: 20px;
}

.mail .content__detail .text {
	margin-bottom: 1rem;
	font-size: 16px;
}

.mail__image {
	margin: 4rem auto;
}

@media (max-width: 768px) {
	.mail {
		padding: 37px 22px 40px;
	}
	.mail .content__title {
		margin-bottom: 19px;
	}
	.mail .content__title .icon{
		margin: 15px auto;
		position: relative;
		top: auto;
		left: auto;
		transform: none;
	}
	.mail__image {
		margin-bottom: 0;
		padding: 0 16px;
	}
	.mail h4 {
		font-size: min(1.8rem, 4.8vw);
		line-height: 33px;
		text-align: left;
		margin: 15px 16px 27px;
	}
}

/* ----------------------------------------------------
	accordion
---------------------------------------------------- */
.accordion .switch {
	background: #999;
	margin: 0 auto 3rem;
	width: 100%;
	height: 58px;
	line-height: 1;
	color: #fff;
	font-size: min(2.2rem, 1.611vw);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: relative;
}
.accordion .switch::after {
	content: '';
	background: url(../img/arrow-03.svg) no-repeat;
	background-size: 100%;
	display: block;
	width: 20px;
	height: 12px;
	position: absolute;
	top: 50%;
	right: 10px;
	transform:  translate(-50%, -50%);
	transition: transform .3s ease;
}
.accordion .switch.active::after {
	transform: translate(-50%, -50%) rotate(180deg);
}

.accordion .accordion__content {
	display: none;
}

.accordion dd .table {
	width: 100%;
	font-size: 16px;
}

.accordion dd .table tr:not(:first-of-type) {
	border-top: solid 1px #707070;
}

.accordion dd .table th,
.accordion dd .table td {
	color: #69665E;
	padding: 1.5em 0;
	vertical-align: top;
}

.accordion dd .table th {
	width: 20%;
	font-weight: 700;
}

.accordion dd .table td {
	font-size: min(1.5rem, 1.098vw);
	line-height: 27px;
	letter-spacing: 0.8px;
	padding: 1.5em 0;
}

@media (max-width: 768px) {
	.accordion .switch {
		margin-bottom: 1rem;
		width: 100%;
		height: 16vw;
		font-size: 4.8vw;
	}
	.accordion .switch img {
		width: 4.8vw;
	}
	.accordion dd .table,
	.accordion dd .table tr,
	.accordion dd .table tr th,
	.accordion dd .table tr td {
		width: 100%;
		display: block;
	}
	.accordion dd .table th,
	.accordion dd .table td {
		font-size: min(1.5rem, 4vw);
	}

	.accordion dd .table th {
		width: 30%;
	}

	.accordion dd .table th {
		padding-bottom: 0;
	}

	.accordion dd .table th br {
		display: none;
	}

	.accordion dd .table td {
		padding-top: 0.5em;
	}
}

/* list_style */
.accordion dd .table td .list_style.type1 li,
.accordion dd .table td .list_style.note li {
	margin-left: 1em;
	text-indent: -1em;
	display: block;
}

.accordion dd .table td .list_style.type1 li::before {
	color: #69665E;
}

/* note */
.accordion dd .table td .list_style.note li {
	font-weight: 400;
}

.accordion dd .table td .list_style.note li::before {
	color: #625F5F;
}

/* note-title */
.accordion dd .table td .note-title {
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 800;
}

.accordion dd .table td .note-title+.note {
	margin-top: 0;
}

/* linkBtn */
.accordion dd .table td .linkBtn {
	margin-top: 1rem;
}

.accordion dd .table td .linkBtn a {
	color: #BB6649;
	font-size: min(1.8rem, 1.318vw);
	font-weight: 600;
	line-height: 27px;
	letter-spacing: 0.8px;
	text-decoration: underline;
}

.accordion dd .table td .linkBtn a::after {
	display: none;
}

@media (max-width: 768px) {
	.accordion dd .table td .list_style.note li {
		line-height: 1.5;
	}
	.accordion dd .table td .linkBtn a {
		font-size: min(1.8rem, 4.8vw);
	}
}

/* ----------------------------------------------------
	note-contents
---------------------------------------------------- */
.note-contents {
	background: #E9E1D8;
	padding: 70px 0;
}

.note-contents-inner {
	max-width: 900px;
	margin: 0 auto;
}

.note-contents-inner .note {
	color: #69665E;
	font-size: min(1.3rem, 0.952vw);
	font-weight: 400;
	line-height: 21px;
	letter-spacing: 0.8px;
}
.note-contents-inner .note::before {
	content: '※';
}

@media (max-width: 768px) {
	.note-contents {
		padding: 49px 22px;
	}
	.note-contents-inner .note {
		font-size: min(1.3rem, 3.467vw);
		padding-left: 1em;
		text-indent: -1em;
	}
}


/* ----------------------------------------------------
	stay
---------------------------------------------------- */
.stay {
	background:
		linear-gradient(rgba(98, 78, 42, 0.85), rgba(98, 78, 42, 0.85)),
		url(../img/stay-bg.webp) center top / cover no-repeat;
	padding: 100px 0 109px;
}

.stay-inner {
	max-width: 1100px;
	margin: 0 auto;
	color: #fff;
}

.stay-inner h2 {
	text-align: center;
	font-family: var(--marcellus);
	font-size: min(4.9rem, 3.587vw);
	font-weight: 400;
	line-height: 56px;
	letter-spacing: 0.8px;
}

.stay-lead {
	text-align: center;
	font-size: min(2.3rem, 1.684vw);
	font-weight: 400;
	line-height: 40px;
	margin-top: 12px;
}

.stay-contents {
	background: rgba(33, 28, 28, 0.62);
	margin-top: 47px;
	padding: 64px 0 52px;
}

.stay-contents.typeB {
	padding: 51px 0 73px;
}

.stay-contents h3 {
	text-align: center;
	font-size: min(2.7rem, 1.977vw);
	font-weight: 400;
	line-height: 34px;
}

.stay-contents h3 span {
	font-size: min(1.8rem, 1.318vw);
}

.stay-contents .img {
	margin-top: 26px;
}

.stay-card-txt {
	text-align: center;
	font-size: min(1.7rem, 1.245vw);
	font-weight: 400;
	line-height: 34px;
	margin: 26px 0;
}

.stay-card-btn {
	display: flex;
	justify-content: center;
	align-items: center;
}

.stay-card-btn .btn {
	background: #BB6649;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 404px;
	height: 69px;
	color: #fff;
	text-align: center;
	font-size: min(2rem, 1.464vw);
	font-weight: 400;
	line-height: 22.667px;
	letter-spacing: 1.133px;
	margin: 0 23px;
	position: relative;
}
.stay-card-btn .btn::after {
	content: '';
	background: url(../img/arrow-02.svg) no-repeat;
	background-size: 100%;
	display: block;
	width: 36px;
	height: 36px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(-50%, -50%) rotate(-90deg);
}

@media (max-width: 768px) {
	.stay {
	background:
		linear-gradient(rgba(98, 78, 42, 0.85), rgba(98, 78, 42, 0.85)),
		url(../img/stay-bg.webp) left top / cover no-repeat;
		padding: 77px 29px 134px;
	}
	.stay-inner {
		max-width: 1100px;
		margin: 0 auto;
		color: #fff;
	}
	.stay-inner h2 {
		font-size: min(3.5rem, 9.333vw);
		line-height: 39.923px;
		letter-spacing: 0.57px;
	}
	.stay-lead {
		font-size: min(1.9rem, 5.067vw);
		line-height: 28.517px;
		margin-top: 27px;
	}
	.stay-contents {
		margin-top: 27px;
		padding: 42px 20px 47px;
	}
	.stay-contents.typeB {
		padding: 42px 20px 38px;
	}
	.stay-contents h3 {
		font-size: min(2.6rem, 6.933vw);
		line-height: 40px;
	}
	.stay-contents h3 span {
		font-size: min(1.8rem, 4.8vw);
	}
	.stay-contents .img {
		margin-top: 28px;
	}
	.stay-card-txt {
		text-align: left;
		font-size: min(1.8rem, 4.8vw);
		line-height: 33px;
		margin: 26px 0;
	}
	.stay-card-btn {
		display: block;
		padding: 0 16px;
	}
	.stay-card-btn .btn {
		width: 100%;
		height: 68px;
		font-size: min(2rem, 5.333vw);
		margin: 0;
		margin-bottom: 28px;
	}
	.stay-card-btn .btn:last-child {
		margin-bottom: 0;
	}
	.stay-card-btn .btn::after {
		right: -15px;
	}
}

/* ----------------------------------------------------
	club
---------------------------------------------------- */
.club {
	background: #514D47;
	color: #fff;
	padding-bottom: 126px;
}

.club .club-lead {
	background: url(../img/club-lead-bg.webp) no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 383px;
}

.club-lead-inner h2 {
	text-align: center;
	font-family: var(--marcellus);
	font-size: min(5.5rem, 4.026vw);
	font-weight: 400;
	line-height: 56px;
	letter-spacing: 0.8px;
}

.club-lead-inner .txt {
	text-align: center;
	font-feature-settings: 'halt' on, 'liga' off;
	font-size: min(2rem, 1.464vw);
	font-weight: 400;
	line-height: 38px;
	margin-top: 19px;
}

.club-contents {
	max-width: 1110px;
	margin: 0 auto;
}

.club-contents h3 {
	font-family: var(--notoserifJP);
	text-align: center;
	font-feature-settings: 'halt' on, 'liga' off;
	font-size: min(2.8rem, 2.05vw);
	font-weight: 500;
	line-height: 41px;
}

.club-contents h3 span {
	display: block;
	font-family: var(--notosansJP);
	font-size: min(1.9rem, 1.391vw);
	font-weight: 400;
}

.club-benefits,
.club-stage {
	padding-top: 70px;
}

.club-benefits .img {
	padding-top: 70px;
}

.club-stage .box {
	background: #fff;
	margin-top: 33px;
	padding: 72px 58px 92px;
}

.club-stage .box .box-imgA {
	margin-bottom: 56px;
}

.box-txt-sp {
	display: none;
}

.club-stage .btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 546px;
	height: 104px;
	margin: 70px auto;
	border: 1px solid #FFF;
	background: #0D0C0C;
	color: #fff;
	font-size: 23px;
	font-weight: 400;
	line-height: 22.667px;
	letter-spacing: 1.133px;
	position: relative;
}
.club-stage .btn::after {
	content: '';
	background: url(../img/arrow-02.svg) no-repeat;
	background-size: 100%;
	display: block;
	width: 36px;
	height: 36px;
	position: absolute;
	top: 50%;
	right: 0;
	transform:  translate(-50%, -50%) rotate(-90deg);
}

.app {
	max-width: 621px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 36px;
}

.app-lead {
	text-align: center;
	font-size: min(2rem, 1.464vw);
	font-weight: 500;
}

.app-title {
	text-align: center;
	font-family: var(--notoserifJP);
	font-size: min(3.3rem, 2.416vw);
	font-weight: 500;
	margin-top: 6px;
}

.app-download {
	margin-top: 37px;
}

.app-download-text {
	text-align: center;
	font-size: min(1.7rem, 1.245vw);
	font-weight: 500;
}

.app-download-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 9px;
	margin-top: 19px;
}

@media (max-width: 768px) {
	.club {
		padding-bottom: 50px;
	}
	.club .club-lead {
		background-position: 24%;
		height: 376px;
	}
	.club-lead-inner h2 {
		font-size: min(3.4rem, 9.067vw);
		line-height: 39.923px;
		letter-spacing: 0.57px;
	}
	.club-lead-inner .txt {
		font-size: min(1.9rem, 5.067vw);
		line-height: 33px;
		margin-top: 21px;
	}
	.club-contents {
		margin: 0 23px;
	}
	.club-contents h3 {
		font-size: min(2.5rem, 6.667vw);
	}
	.club-contents h3 span {
		font-size: min(1.7rem, 4.533vw);
	}
	.club-benefits {
		padding-top: 30px;
	}
	.club-stage {
		margin: 0;
	}
	.club-benefits .img {
		padding-top: 30px;
	}
	.club-stage .box {
		margin-top: 46px;
		padding: 36px 0 10px;
	}
	.club-stage .box .box-imgA {
		padding: 0 27px;
		margin-bottom: 17px;
	}
	.box-imgB {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		margin-left: 27px;
		box-sizing: border-box;
	}
	.box-imgB figure {
		width: max-content;
		margin: 0;
	}
	.box-imgB img {
		display: block;
		width: 960px;
		max-width: none;
	}
	.box-txt-sp {
		display: block;
		color: #514D47;
		text-align: center;
		font-feature-settings: 'halt' on, 'liga' off;
		font-size: min(1.3rem, 3.467vw);
		font-weight: 400;
		line-height: 41px;
		margin-top: 7px;
	}
	.club-stage .btn {
		width: 330px;
		height: 68px;
		margin: 51px auto 33px;
		font-size: min(1.8rem, 4.8vw);
		line-height: 17.962px;
	}
	.club-stage .btn::after {
		right: -15px;
	}
	.app {
		max-width: 100%;
		margin: 0 auto;
		display: block;
	}
	.app-image {
		width: 205px;
		margin: 0 auto 38px 28vw;
	}
	.app-lead {
		font-size: min(1.8rem, 4.8vw);
	}
	.app-title {
		font-size: min(3rem, 8vw);
		margin-top: 6px;
	}
	.app-download {
		margin-top: 37px;
	}
	.app-download-text {
		font-size: min(1.8rem, 4.8vw);
	}
	.app-download-buttons {
		display: block;
		margin-top: 38px;
	}
	.app-download-button {
		display: block;
		width: 258px;
		margin: 0 auto 16px;
	}
	.app-download-button:last-child {
		margin-bottom: 0;
	}
}













