@charset "UTF-8";


/* ----------------------------------------------------
 header
---------------------------------------------------- */
header h1 {
	width: 83.5%;
	margin: 10px auto 0;
	position: relative;
}

header h1 .icon {
	position: absolute;
}

header h1 .icon.iconA {
	width: 15%;
	bottom: 30px;
	left: 32%;
	transform: translate(-50%, 0);
}

header h1 .icon.iconB {
	width: 24%;
	bottom: 30px;
	left: 53%;
	transform: translate(-50%, 0);
}

header h1 .icon.iconC {
	width: 17%;
	bottom: 30px;
	right: 12%;
	transform: translate(-50%, 0);
}

header h1 .icon.shake {
	animation: shakeB 2s ease-in-out infinite;
}

@keyframes shakeB {
	0% {
		transform: translate(-50%, 0) rotate(0deg);
	}
	25% {
		transform: translate(-50%, 0) rotate(2deg);
	}
	50% {
		transform: translate(-50%, 0) rotate(0deg);
	}
	75% {
		transform: translate(-50%, 0) rotate(-2deg);
	}
	100% {
		transform: translate(-50%, 0) rotate(0deg);
	}
}

@media screen and (max-width: 768px) {
	header h1 {
		width: 95%;
		margin: 5px auto 0;
	}
	header h1 .icon.iconA,
	header h1 .icon.iconB,
	header h1 .icon.iconC {
		bottom: 10px;
	}
}

/* ----------------------------------------------------
 slide-wrap
---------------------------------------------------- */
.slide-wrap {
	overflow: hidden;
	width: 100%;
	margin-top: 40px;
}

.slide-track {
	display: flex;
	width: max-content;
	gap: 60px;
	animation: slideLoop 500s linear infinite;
	will-change: transform;
	backface-visibility: hidden;
	transform: translateZ(0);
}

.slide-track img {
	width: 2202px;
	flex-shrink: 0;
	display: block;
}

@keyframes slideLoop {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(calc(-50% - 30px), 0, 0);
	}
}

@media screen and (max-width: 768px) {
	.slide-wrap {
		margin-top: 20px;
	}
	.slide-track {
		gap: 20px;
	}
	.slide-track img {
		width: 800px;
	}
	@keyframes slideLoop {
		0% {
			transform: translate3d(0, 0, 0);
		}
		100% {
			transform: translate3d(calc(-50% - 10px), 0, 0);
		}
	}
}

/* ----------------------------------------------------
 lead
---------------------------------------------------- */
.lead {
	max-width: 980px;
	margin: 104px auto 0;
}

.lead .logo {
	max-width: 826px;
	width: 100%;
	margin: 0 auto;
}

.lead h2 {
	text-align: center;
	font-size: min(5rem, 3.66vw);
	font-weight: 700;
	margin-top: 96px;
	position: relative;
}

.lead h2::before,
.lead h2::after {
	content: '';
	background: url(../img/icon-A.webp) no-repeat;
	background-size: 100%;
	display: block;
	width: 100px;
	height: 100px;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}
.lead h2::before {
	left: 40px;
}
.lead h2::after {
	right: 40px;
}

.lead .area-text {
	background: url(../img/frame-white.webp) no-repeat;
	background-size: 100%;
	margin-top: 90px;
	width: 100%;
	height: 540px;
	padding: 80px 0 56px;
	text-align: center;
}

.lead .area-text h3 {
	font-size: min(4.5rem, 3.294vw);
	font-weight: 900;
	line-height: normal;
}

.lead .area-text .txt {
	font-feature-settings: 'halt' on;
	font-size: min(2.4rem, 1.757vw);
	font-weight: 400;
	line-height: 45px;
	margin-top: 24px;
}

.lead .area-text .item {
	max-width: 516px;
	width: 100%;
	margin: 43px auto 0;
}

@media screen and (max-width: 768px) {
	.lead {
		margin: 34px 15px 50px;
	}
	.lead h2 {
		font-size: min(2rem, 5.333vw);
		margin-top: 30px;
	}
	.lead h2::before,
	.lead h2::after {
		width: 35px;
		height: 35px;
	}
	.lead h2::before {
		left: -5px;
	}
	.lead h2::after {
		right: -5px;
	}
	.lead .area-text {
		background: url(../img/frame-white_sp.webp) no-repeat;
		background-size: 100%;
		margin-top: 50px;
		width: 100%;
		height: 440px;
		padding: 30px 0 117px;
		text-align: center;
	}
	.lead .area-text h3 {
		font-size: min(2rem, 5.333vw);
	}
	.lead .area-text .txt {
		font-size: min(1.8rem, 4.8vw);
		line-height: 30px;
		margin-top: 33px;
	}
	.lead .area-text .item {
		width: 80%;
		margin: 20px auto 0;
	}
}

/* ----------------------------------------------------
 nav-section
---------------------------------------------------- */
.nav-section {
	background: #20406D;
	margin-top: 100px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.nav-section .nav {
	height: 82px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav-section .nav a {
	display: block;
	margin: 0 20px;
	color: #F8E351;
	text-align: center;
	font-family: var(--hanuman);
	font-size: min(3rem, 2.196vw);
	font-weight: 700;
	line-height: normal;
}

.nav-section .nav a::after {
	content: '▼';
	font-size: min(2rem, 1.464vw);
	padding-left: 10px;
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
}

@media screen and (max-width: 768px) {
	.nav-section {
		background: none;
		margin-top: 30px;
		height: auto;
		position: fixed;
		top: 10px;
		right: 0;
	}
	.nav-toggle {
		display: none;
		position: absolute;
		right: 10px;
		transform: translateY(-50%);
		z-index: 200;
		opacity: 0;
		transition: 0.3s;
	}
	.nav-toggle.is-show {
		display: block;
		opacity: 1;
	}
	.nav-toggle img {
		width: 70px;
	}
	.nav-section .nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: #20406D;
		flex-direction: column;
		align-items: center;
		padding: 30px 0;
		transform: translateY(-120%);
		transition: 0.3s;
	}
	.nav-section.open .nav {
		transform: translateY(0);
	}
	.nav-section .nav a {
		margin: 15px 0;
		font-size: min(2rem, 5.333vw);
	}
	.nav-section .nav a::after {
		display: none;
	}
}


/* ----------------------------------------------------
 contents
---------------------------------------------------- */
.contents {
	position: relative;
}
.contents::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 263px;
	background: url(../img/bg-pattern.webp) no-repeat top;
	background-size: cover;
	z-index: -1;
}

.contents.typeB {
	background-color: rgba(32, 64, 109, 0.80);
}
.contents.typeB::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 263px;
	background: url(../img/bg-patternB.webp) no-repeat top;
	background-size: cover;
	z-index: 1;
}

.contents h2 {
	text-align: center;
	font-family: var(--hanuman);
	font-size: min(6rem, 4.392vw);
	font-weight: 700;
	line-height: normal;
	padding-top: 152px;
	position: relative;
}
.contents h2::before {
	content: '';
	background: url(../img/heading-icon01.webp) no-repeat;
	background-size: 100%;
	display: block;
	width: 55px;
	height: 43px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.contents.reservation h2::before {
	content: '';
	background: url(../img/heading-icon05.webp) no-repeat;
	background-size: 100%;
	width: 54px;
	height: 54px;
}

.contents.typeB h2 {
	color: #A5D0E3;
}
.contents.typeB h2::before {
	content: '';
	background: url(../img/heading-icon02.webp) no-repeat;
	background-size: 100%;
	width: 82px;
	height: 55px;
}
.contents.typeB.event h2::before {
	content: '';
	background: url(../img/heading-icon04.webp) no-repeat;
	background-size: 100%;
	width: 57px;
	height: 58px;
}

.contents.typeC h2::before {
	content: '';
	background: url(../img/heading-icon03.webp) no-repeat;
	background-size: 100%;
	width: 57px;
	height: 58px;
}

.contents .txt-lead {
	text-align: center;
	font-feature-settings: 'halt' on;
	font-size: min(2rem, 1.464vw);
	font-weight: 400;
	line-height: 30px;
	padding-top: 70px;
}

.contents.typeB .txt-lead {
	color: #fff;
}

.contents .goods h3,
.contents .drink h3 {
	text-align: center;
	font-family: var(--hanuman);
	font-size: min(4rem, 2.928vw);
	font-weight: 700;
	line-height: normal;
}

.contents a.btnA {
	background: #20406D;
	border: #A5D0E3;
	border-radius: 80px;
	width: 270.251px;
	height: 70.709px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-align: center;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 500;
	line-height: 25px;
	position: relative;
}
.contents a.btnA::after {
	content: '';
	background: url(../img/arrow01.svg) no-repeat;
	background-size: 100%;
	display: block;
	width: 15px;
	height: 25px;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(-50%, -50%);
}

.contents a.btnB {
	background: #A5D0E3;
	border: 2px solid #20406D;
	border-radius: 80px;
	width: 270.251px;
	height: 70.709px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #20406D;
	text-align: center;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 500;
	line-height: 25px;
	position: relative;
}
.contents a.btnB::after {
	content: '';
	background: url(../img/arrow02.svg) no-repeat;
	background-size: 100%;
	display: block;
	width: 15px;
	height: 25px;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(-50%, -50%);
}

.contents .note {
	font-size: min(1.4rem, 1.025vw);
	font-weight: 400;
	line-height: 25px;
	padding-left: 1em;
	text-indent: -1em;
}
.contents .note::before {
	content: '※';
}

@media screen and (max-width: 768px) {
	.contents::before {
		height: 150px;
	}
	.contents.typeB::before {
		height: 150px;
	}

	.contents a.btnA {
		font-size: min(1.6rem, 4.267vw);
		margin: 0 auto;
	}
	.contents a.btnB {
		font-size: min(1.6rem, 4.267vw);
		margin: 0 auto;
	}


	.contents h2 {
		font-size: min(2.5rem, 6.667vw);
		padding-top: 90px;
	}
	.contents h2::before {
		width: 53px;
		height: 42px;
	}
	.contents .txt-lead {
		font-size: min(1.6rem, 4.267vw);
		line-height: 25px;
	}
	.contents .goods h3,
	.contents .drink h3 {
		font-size: min(2rem, 5.333vw);
	}
	.contents .note {
		font-size: min(1.4rem, 3.733vw);
		line-height: 20px;
	}
}


/*--- icon ---*/
.contents .icon {
	position: absolute;
}

.contents .icon.iconB {
	width: 20.7%;
	top: 4.5%;
	left: 5.1%;
}

.contents .icon.iconA {
	width: 13.4%;
	top: 8.5%;
	right: 11%;
}

.contents .icon.iconA02 {
	width: 14%;
	top: 28.8%;
	left: 8%;
}

.contents .icon.iconE {
	width: 199px;
	bottom: -40px;
	left: -90px;
}

.contents .icon.iconF {
	width: 169px;
	top: -30px;
	right: -40px;
}

.contents .icon.iconC {
	width: 16.2%;
	top: 36%;
	right: 1vw;
}

.contents .icon.iconD {
	width: 13.2%;
	top: 48%;
	left: 2vw;
}

.contents .icon.iconG {
	width: 14.3%;
	top: -10%;
	left: 8%;
}

.contents .icon.iconG02 {
	width: 14.3%;
	bottom: -9%;
	right: 8%;
}

.contents .icon.iconH {
	width: 23.6%;
	top: -7%;
	left: -4%;
}

.contents .icon.iconI {
	width: 21.4%;
	bottom: 30px;
	right: 30px;
}

.contents .icon.iconJ {
	width: 37.2%;
	top: 0;
	left: -37%;
}

.contents .icon.iconK {
	width: 37.2%;
	top: 0;
	right: -37%;
}

.contents .icon.iconL {
	width: 12.1%;
	top: 20%;
	left: 12%;
}

.contents .icon.iconM {
	width: 16.7%;
	top: -5%;
	right: 10%;
}

.contents .icon.iconN {
	width: 20%;
	bottom: 1%;
	left: -10%;
}

.contents .icon.iconO {
	width: 27.2%;
	top: 110%;
	right: -8%;
}

.contents .icon.iconQ {
	width: 32.23%;
	bottom: -2%;
	left: 5%;
}

.contents .icon.iconR {
	width: 13.2%;
	top: 12%;
	left: 5%;
}

.contents .icon.iconR02 {
	width: 13.2%;
	bottom: -2%;
	right: 6%;
}

.contents .icon.iconS {
	width: 8.8%;
	top: 50%;
	right: 9%;
}

.contents .icon.iconS02 {
	width: 8.8%;
	bottom: -2%;
	left: 7%;
}

.contents .icon.iconT {
	width: 23.92%;
	bottom: -8%;
	left: 2%;
}

.contents .icon.shake img {
	animation: shake 2s ease-in-out infinite;
}

@keyframes shake {
	0% { transform: rotate(0deg); }
	25% { transform: rotate(2deg); }
	50% { transform: rotate(0deg); }
	75% { transform: rotate(-2deg); }
	100% { transform: rotate(0deg); }
}


@media screen and (max-width: 768px) {
	.contents .icon {
		display: none;
	}
	.contents .icon.iconA {
		display: block;
		width: 23.4%;
		top: 8.4%;
		right: -5%;
	}
	.contents .icon.iconA02 {
		display: block;
		width: 23.4%;
		top: 14%;
		left: -5%;
	}
	.contents .icon.iconE {
		display: block;
		width: 80px;
		bottom: -30px;
		left: 0px;
	}
	.contents .icon.iconF {
		display: block;
		width: 80px;
		top: -20px;
		right: 0;
	}
	.contents .icon.iconG {
		display: block;
		width: 80px;
		top: 87%;
		left: -2%;
	}
	.contents .icon.iconG02 {
		display: block;
		width: 80px;
		bottom: 87%;
		right: 0;
	}
	.contents .icon.iconO {
		display: block;
		width: 150px;
		top: 53%;
		right: -1%;
	}

}

/* ----------------------------------------------------
 afternoon
---------------------------------------------------- */
.afternoon {
	padding-bottom: 85px;
}

.afternoon .slide {
	margin-top: 134px;
}

.afternoon .goods {
	background: #fff;
	max-width: 540px;
	margin: 120px auto 0;
	padding: 53px 0;
	position: relative;
}

.afternoon .goods .txt {
	text-align: center;
	font-size: min(1.6rem, 1.171vw);
	padding: 20px 0;
}

.afternoon .goods .img {
	width: 56.3%;
	margin: 0 auto;
}

.afternoon .goods .img figcaption {
	text-align: center;
	font-feature-settings: 'halt' on;
	font-size: min(1.8rem, 1.318vw);
	font-weight: 400;
	line-height: 28px;
	padding-top: 30px;
}

.afternoon .drink {
	max-width: 1140px;
	margin: 95px auto 0;
}

.afternoon .drink .txt {
	text-align: center;
	font-feature-settings: 'halt' on;
	font-size: min(2rem, 1.464vw);
	font-weight: 400;
	line-height: 25px;
	padding-top: 20px;
}

.afternoon .drink .sp-slide {
	display: flex;
	justify-content: center;
	align-items: baseline;
	margin-top: 48px;
}

.afternoon .drink .sp-slide .img {
	width: 24%;
	margin: 0 8.5px;
}

.afternoon .drink .sp-slide .img figcaption {
	display: block;
	text-align: center;
	font-feature-settings: 'halt' on;
	font-size: min(1.7rem, 1.245vw);
	font-weight: 400;
	line-height: 28px;
	padding-top: 19px;
}

.afternoon .afternoon-info {
	max-width: 1140px;
	margin: 78px auto 0;
	padding: 24px 0;
	border-top: 1px solid #20406D;
	display: flex;
	align-items: center;
}

.afternoon .afternoon-info .area-text {
	width: 60%;
}

.afternoon .afternoon-info .area-text ul {
	display: flex;
	margin-bottom: 10px;
}

.afternoon .afternoon-info .area-text ul li {
	font-feature-settings: 'halt' on;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 400;
	line-height: 27px;
}

.afternoon .afternoon-info .area-btn {
	width: 40%;
}

.afternoon .afternoon-note {
	max-width: 1140px;
	margin: 0 auto;
	padding: 21px 0;
}

.afternoon .afternoon-note .area-note {
	max-width: 1008px;
	margin: 0 auto;
}

.afternoon .afternoon-booking {
	max-width: 1140px;
	margin: 0 auto;
	padding: 98px 0;
	border-top: 1px solid #20406D;	
}

.afternoon .afternoon-booking .txt-booking-start {
	text-align: center;
	font-feature-settings: 'halt' on;
	font-size: min(3.2rem, 2.343vw);
	font-weight: 700;
	line-height: 25px;
}

.afternoon .afternoon-booking .txt-booking-start span {
	border: 1px solid #20406D;
	padding: 5px 10px;
	text-align: center;
	font-size: min(2.4rem, 1.757vw);
	font-weight: 500;
	line-height: 25px;
}

.afternoon .afternoon-booking .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
}

.afternoon .afternoon-booking .wrap .txt {
	width: 445px;
	height: 79px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #20406D;
	border: 2px solid #A5D0E3;
	color: #F8E351;
	text-align: center;
	font-feature-settings: 'halt' on;
	font-size: min(2rem, 1.464vw);
	font-weight: 700;
	line-height: 25px;
	margin: 0 15px;
}

.afternoon .afternoon-booking .wrap a.btnA {
	margin: 49px auto 0;
}

@media screen and (max-width: 768px) {
	.afternoon {
		overflow: hidden;
		padding-bottom: 50px;
	}
	.afternoon .slide {
		width: 92%;
		margin-top: 45px;
	}
	.afternoon .goods {
		margin: 60px auto 0;
		padding: 33px 0;
	}
	.afternoon .goods .txt {
		font-size: min(1.5rem, 4vw);
		padding: 10px 0;
	}
	.afternoon .goods .img {
		width: 80%;
		margin-top: 20px;
	}
	.afternoon .goods .img figcaption {
		font-size: min(1.6rem, 4.267vw);
		padding-top: 20px;
	}
	.afternoon .drink {
		margin: 46px auto 0;
	}
	.afternoon .drink .txt {
		font-size: min(1.6rem, 4.267vw);
		padding-top: 20px;
	}
	.afternoon .drink .sp-slide {
		display: block;
		margin-top: 30px;
	}
	.afternoon .drink .sp-slide .img {
		width: auto;
		margin: 0;
		padding: 0 8px;
	}
	.afternoon .drink .sp-slide .img img {
		margin-left: 20px;
	}
	.afternoon .drink .sp-slide .img figcaption {
		font-size: min(1.6rem, 4.267vw);
		line-height: 25px;
		padding-top: 14px;
	}
	.afternoon .drink .sp-slide .slick-list {
		overflow: visible;
	}
	.afternoon .afternoon-info {
		margin: 37px auto 0;
		padding: 23px 0;
		display: block;
	}
	.afternoon .afternoon-info .area-text {
		width: 90%;
		margin: 0 auto;
	}
	.afternoon .afternoon-info .area-text ul {
		display: block;
	}
	.afternoon .afternoon-info .area-text ul li {
		font-size: min(1.5rem, 4vw);
	}
	.afternoon .afternoon-info .area-btn {
		width: 100%;
		margin: 34px 0 10px;
	}
	.afternoon .afternoon-note {
		padding: 25px 15px;
	}
	.afternoon .afternoon-booking {
		padding: 50px 0;
	}
	.afternoon .afternoon-booking .wrap {
		display: block;
	}
	.afternoon .afternoon-booking .wrap .txt {
		width: 92%;
		height: 80px;
		font-size: min(1.8rem, 4.8vw);
		margin: 0 auto;
	}
	.afternoon .afternoon-booking .wrap a.btnA {
		margin: 30px auto 0;
	}
	.afternoon .afternoon-booking .wrap .member {
		margin-bottom: 50px;
	}
	.afternoon .afternoon-booking .txt-booking-start {
		font-size: min(2rem, 5.333vw);
	}
	.afternoon .afternoon-booking .txt-booking-start span {
		max-width: 140px;
		margin: 0 auto 20px;
		display: block;
		font-size: min(2rem, 5.333vw);
	}
}


/* ----------------------------------------------------
 concept
---------------------------------------------------- */
.concept {
	padding-bottom: 85px;
}

.concept .slide {
	margin-top: 96px;
}

.concept .goods {
	background: #A5D0E3;
	max-width: 926px;
	margin: 145px auto 0;
	padding: 56px 0;
	position: relative;
}

.concept .goods .txt {
	text-align: center;
	font-feature-settings: 'halt' on;
	font-size: min(2.5rem, 1.83vw);
	font-weight: 700;
	line-height: 37px;
	padding-top: 40px;
}

.concept .goods .txt02 {
	text-align: center;
	font-size: min(1.6rem, 1.171vw);
}

.concept .goods .txt.typeB {
	padding-top: 43px;
}

.concept .goods .img {
	width: 200px;
}

.concept .goods .img.typeB {
	margin: 0 auto;
	padding-top: 30px;
}

.concept .goods .img figcaption {
	text-align: center;
	font-feature-settings: 'halt' on;
	font-size: min(1.7rem, 1.245vw);
	font-weight: 400;
	line-height: 28px;
	padding-top: 10px;
}

.concept .goods .area-img {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 22px;
}

.concept .goods .area-img .img {
	margin: 0 30.5px;
}

.concept .goods .area-img .img .img-goods01 {
	display: block;
	width: 40%;
	margin: 0 auto;
	transform: rotate(-65deg);
}

.concept .goods .area-img .img .img-goods02 {
	display: block;
	width: 100%;
	margin: 23px auto;
}

.concept .goods-note {
	max-width: 926px;
	margin: 50px auto 0;
	color: #fff;
}

.concept .price-calendar {
	max-width: 1138px;
	margin: 93px auto 0;
	background: rgba(165, 208, 227, 0.50);
	color: #fff;
	position: relative;
	padding: 36px 0 100px;
}
.concept .price-calendar::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 131px;
	background: url(../img/bg-pattern.webp) no-repeat top;
	background-size: cover;
}

.concept .price-calendar h3 {
	text-align: center;
	font-family: var(--hanuman);
	font-size: min(4rem, 2.928vw);
	font-weight: 700;
	line-height: normal;
}

.concept .price-calendar .txt-booking-start {
	text-align: center;
	font-feature-settings: 'halt' on;
	font-size: min(3.2rem, 2.343vw);
	font-weight: 700;
	line-height: 25px;
	padding-top: 100px;
}

.concept .price-calendar .txt-booking-start span {
	border: 1px solid #fff;
	padding: 5px 10px;
	text-align: center;
	font-size: min(2.4rem, 1.757vw);
	font-weight: 500;
	line-height: 25px;
}

.concept .price-calendar .member,
.concept .price-calendar .general {
	padding-top: 49px;
}

.concept .price-calendar .member h4,
.concept .price-calendar .general h4 {
	background: #20406D;
	color: #F8E351;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 682px;
	height: 50px;
	margin: 0 auto;
	text-align: center;
	font-feature-settings: 'halt' on;
	font-size: min(2rem, 1.464vw);
	font-weight: 700;
	line-height: 37px;
}

.concept .price-calendar .txt {
	text-align: center;
	font-feature-settings: 'halt' on;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 700;
	line-height: 37px;
	padding: 20px 0 12px;
}

.concept .price-calendar .price {
	max-width: 600px;
	margin: 0 auto;
	position: relative;
}

.concept .price-calendar .price ul {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}

.concept .price-calendar .price ul li:nth-of-type(1) {
	width: 80px;
	text-align: center;
	padding: 10px;
	border: 1px solid #fff;
}

.concept .price-calendar .price ul li:nth-of-type(2) {
	font-feature-settings: 'pwid' on;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 400;
	line-height: 28px;
	margin-left: 18px;
}

.concept .price-calendar a.btnB {
	margin: 23px auto 0;
}

.concept .calendar {
	width: 100%;
	max-width: 922px;
	margin: 100px auto 0;
}

.concept .calendar-tabs {
	display: flex;
	align-items: flex-end;
	border-bottom: 12px solid #EABA65;
	margin-bottom: 10px;
}

.concept .calendar-tab {
	width: 24%;
	padding-top: 10px;
	border: none;
	border-radius: 14px 14px 0 0;
	background: #a8d5e6;
	color: #20406D;
	text-align: center;
	font-family: var(--hanuman);
	font-size: min(3.6rem, 2.635vw);
	font-weight: 900;
	cursor: pointer;
}

.concept .calendar-tab + .calendar-tab {
	margin-left: 10px;
}

.concept .calendar-tab.is-active {
	background: #EABA65;
}

.concept .calendar-panel {
	display: none;
}

.concept .calendar-panel.is-active {
	display: block;
}

.concept .calendar-panel img {
	width: 100%;
	height: auto;
	display: block;
}

.concept .calendar .txt {
	text-align: center;
	font-feature-settings: 'halt' on;
	font-size: min(1.8rem, 1.318vw);
	font-weight: 700;
	line-height: 25px;
	padding: 30px 0 0;
}

.concept .area-note {
	max-width: 922px;
	margin: 30px auto 0;	
}

@media screen and (max-width: 768px) {
	.concept {
		padding-bottom: 50px;
	}
	.concept .slide {
		width: 92%;
		margin-top: 43px;
	}
	.concept .goods {
		margin: 70px auto 0;
		padding: 30px 0;
	}
	.concept .goods .txt {
		font-size: min(1.6rem, 4.267vw);
		line-height: 25px;
		padding-top: 25px;
	}
	.concept .goods .txt02 {
		font-size: min(1.5rem, 4vw);
	}
	.concept .goods .txt.typeB {
		padding-top: 43px;
	}
	.concept .goods .img figcaption {
		font-size: min(1.6rem, 4.267vw);
		line-height: 25px;
	}
	.concept .goods .area-img {
		display: block;
		padding-top: 22px;
	}
	.concept .goods .area-img .img {
		margin: 0 auto;
	}
	.concept .goods .area-img .img:nth-of-type(2) {
		margin-top: 50px;
	}
	.concept .goods .area-img .img .img-goods01 {
		width: 45%;
	}
	.concept .goods .area-img .img .img-goods02 {
		width: 100%;
		margin: 0 auto;
	}
	.concept .goods-note {
		margin: 27px auto 0;
		padding: 0 15px;
	}
	.concept .price-calendar {
		margin: 30px auto 0;
		padding: 36px 0 50px;
	}
	.concept .price-calendar::before {
		height: 90px;
		background: url(../img/bg-pattern.webp) no-repeat top;
		background-size: 208%;
	}
	.concept .price-calendar h3 {
		font-size: min(2rem, 5.333vw);
	}
	.concept .price-calendar .txt-booking-start {
		font-size: min(2rem, 5.333vw);
		padding-top: 60px;
	}
	.concept .price-calendar .txt-booking-start span {
		max-width: 140px;
		margin: 0 auto 20px;
		display: block;
		font-size: min(2rem, 5.333vw);
	}
	.concept .price-calendar .member,
	.concept .price-calendar .general {
		padding-top: 30px;
	}
	.concept .price-calendar .member h4,
	.concept .price-calendar .general h4 {
		width: 90%;
		height: 80px;
		margin: 0 auto;
		font-size: min(1.8rem, 4.8vw);
		line-height: 25px;
	}
	.concept .price-calendar .txt {
		font-size: min(1.6rem, 4.267vw);
		padding: 15px 0;
	}
	.concept .price-calendar .price ul {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-bottom: 20px;
	}
	.concept .price-calendar .price ul li:nth-of-type(2) {
		font-size: min(1.4rem, 3.733vw);
		line-height: 20px;
		margin-left: 18px;
	}
	.concept .calendar {
		width: 92%;
		margin: 50px auto 0;
	}
	.concept .calendar-tab {
		border-radius: 5px 5px 0 0;
		font-size: min(1.7rem, 4.533vw);
	}
	.concept .calendar-tab + .calendar-tab {
		margin-left: 5px;
	}
	.concept .calendar-tabs {
		border-bottom: 5px solid #EABA65;
		margin-bottom: 5px;
	}
	.concept .calendar .txt {
		font-size: min(1.6rem, 4.267vw);
		padding: 20px 0 0;
	}
	.concept .area-note {
		margin: 30px 15px 0;	
	}
}

/* ----------------------------------------------------
 plan
---------------------------------------------------- */
.plan {
	padding-bottom: 150px;
}

.plan .img {
	width: 1100px;
	margin: 41px auto 0;
}

.plan .txt-lead {}

.plan .ticket {
	padding-top: 100px;
	position: relative;
}

.plan .ticket h3 {
	text-align: center;
	font-feature-settings: 'halt' on;
	font-family: var(--hanuman);
	font-size: min(4rem, 2.928vw);
	font-weight: 700;
}

.plan .ticket h3 span {
	display: block;
	font-family: var(--notojp);
	font-size: min(1.6rem, 1.171vw);
	font-weight: 400;
}

.plan .ticket .member {
	margin-top: 43px;
}

.plan .ticket .general {
	margin-top: 23px;
}

.plan .ticket .member h4,
.plan .ticket .general h4 {
	background: #20406D;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 500px;
	height: 57px;
	margin: 0 auto;
	color: #F8E351;
	text-align: center;
	font-feature-settings: 'pwid' on;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 700;
	line-height: 20px;
}

.plan .ticket .member .txt,
.plan .ticket .general .txt {
	text-align: center;
	font-feature-settings: 'pwid' on;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 400;
	line-height: 28px;
	margin-top: 10px;
}

.plan .goods {
	background: #fff;
	max-width: 540px;
	margin: 98px auto 0;
	padding: 54px 0 50px;
	position: relative;
}

.plan .goods .txt {
	text-align: center;
	font-size: min(1.6rem, 1.171vw);
	padding-top: 20px;
}

.plan .goods .img {
	width: 100%;
	max-width: 300px;
	margin: 39px auto 0;
}

.plan .goods .img .img-goods01 {
	display: block;
	width: 70%;
	margin: 0 auto;
}

.plan .goods .img figcaption {
	text-align: center;
	font-feature-settings: 'halt' on;
	font-size: min(1.8rem, 1.318vw);
	font-weight: 400;
	line-height: 28px;
	padding-top: 27px;
}

.plan .plan-info {
	max-width: 1100px;
	margin: 100px auto 0;
	position: relative;
}

.plan .plan-info .area-text {
	display: block;
}

.plan .plan-info .area-text .txt {
	font-feature-settings: 'halt' on;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 400;
	line-height: 25px;
	margin-bottom: 0;
}

.plan .plan-info .area-text .txt a {
	color: #20406D;
	text-decoration: underline;
}

.plan .plan-note {
	max-width: 1100px;
	margin: 23px auto 0;
}

.contents.plan a.btnA {
	width: 310px;
	line-height: 23px;
	margin: 43px auto 0;
}
.contents.plan a.btnA::after {
    right: 5px;
}

.plan .map {
	margin-top: 50px;
}

@media screen and (max-width: 768px) {
	.plan {
		padding-bottom: 50px;
	}
	.plan .img {
		width: 90%;
		margin: 60px auto 0;
	}
	.plan .txt-lead {
		padding-top: 50px;
	}
	.plan .ticket {
		padding-top: 44px;
	}
	.plan .ticket h3 {
		font-size: min(2rem, 5.333vw);
	}
	.plan .ticket h3 span {
		font-size: min(1.6rem, 4.267vw);
	}
	.plan .ticket .member {
		margin-top: 24px;
	}
	.plan .ticket .general {
		margin-top: 22px;
	}
	.plan .ticket .member h4,
	.plan .ticket .general h4 {
		width: 90%;
		height: 57px;
		font-size: min(1.5rem, 4vw);
		letter-spacing: 0;
	}
	.plan .ticket .member .txt,
	.plan .ticket .general .txt {
		font-size: min(1.6rem, 4.267vw);
	}
	.plan .goods {
		margin: 42px auto 0;
		padding: 30px 0;
	}
	.plan .goods .txt {
		font-size: min(1.5rem, 4vw);
		padding-top: 10px;
	}
	.plan .goods .img {
		margin: 20px auto 0;
	}
	.plan .goods .img .img-goods01 {
		width: 60%;
	}
	.plan .goods .img figcaption {
		font-size: min(1.8rem, 4.8vw);
		padding-top: 10px;
	}
	.plan .plan-info {
		margin: 50px 15px 0;
	}
	.plan .plan-info .area-text .txt {
		font-size: min(1.6rem, 4.267vw);
		margin-bottom: 0;
	}
	.plan .plan-note {
		margin: 35px 15px 0;
	}
	.contents.plan a.btnA {
		width: 85%;
		margin: 30px auto 0;
	}
	.contents.plan a.btnA::after {
		right: 5px;
	}
}


/* ----------------------------------------------------
 event
---------------------------------------------------- */
.event {
	padding-bottom: 211px;
	position: relative;
}

.event .img {
	width: 34.4%;
	margin: 122px auto 0 29%;
}

.contents.event a.btnB {
	width: 310px;
	line-height: 20px;
	margin: 37px auto 0;
}

.event .event-visual {
	width: 945px;
	position: absolute;
	top: -3.5%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 20;
	opacity: 0;
}

/* 発火 */
.event .event-visual.is-animate {
	animation: slideLoopIn 5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@keyframes slideLoopIn {
	0% {
		transform: translate(-50%, -50%);
		opacity: 1;
	}

	/* 左へ消える */
	40% {
		transform: translate(-260%, -50%);
		opacity: 1;
	}

	/* 右にワープ（ここは一瞬） */
	41% {
		transform: translate(1000%, -50%);
		opacity: 0;
	}

	/* ←ここを追加（すぐ動かす） */
	42% {
		transform: translate(1000%, -50%);
		opacity: 1;
	}

	/* なめらかに中央へ */
	100% {
		transform: translate(-50%, -50%);
		opacity: 1;
	}
}

@media screen and (max-width: 768px) {
	.event {
		padding-bottom: 50px;
	}
	.event .img {
		width: 50%;
		margin: 50px auto 0 22%;
	}
	.event .event-visual {
		display: none;
	}

}


/* ----------------------------------------------------
 reservation
---------------------------------------------------- */
.reservation {
	padding-bottom: 21px;
}

.reservation .box {
	padding-top: 100px;
	position: relative;
}

.reservation .box h3 {
	text-align: center;
	font-family: var(--hanuman);
	font-size: min(4rem, 2.928vw);
	font-weight: 900;
	line-height: 42px;
}

.reservation .box .txt-booking-start {
	text-align: center;
	font-feature-settings: 'halt' on;
	font-size: min(3.2rem, 2.343vw);
	font-weight: 700;
	padding-top: 30px;
}

.reservation .box .txt-booking-start span {
	border: 1px solid #20406D;
	padding: 5px 10px;
	text-align: center;
	font-size: min(2.4rem, 1.757vw);
	font-weight: 500;
}

.reservation .box .layout-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 50px;
}

.reservation .box .layout-wrap .layout-wrap-inner .layout-wrap-txt {
	width: 446px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #20406D;
	border: 1px solid #A5D0E3;
	color: #F8E351;
	text-align: center;
	font-feature-settings: 'halt' on;
	font-size: min(2rem, 1.464vw);
	font-weight: 700;
	line-height: 25px;
	margin: 0 15px;
}

.contents.reservation .box .layout-wrap .layout-wrap-inner a.btnA {
	margin: 47px auto 0;
}

.contents.reservation .box a.btnA.typeB {
	width: 310px;
	margin: 51px auto 0;
}

.reservation .club {
	background: url(../img/frame-blue.webp) no-repeat;
	background-size: 100%;
	max-width: 1141.776px;
	width: 100%;
	height: 698.693px;
	margin: 97px auto 0;
	padding: 87px 0;
	position: relative;
}

.reservation .club h3 {
	background: #20406D;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	width: 600px;
	height: 111px;
	margin: 0 auto;
	color: #F8E351;
	text-align: center;
	font-feature-settings: 'halt' on;
	font-size: min(3rem, 2.196vw);
	font-weight: 700;
	line-height: 35px;
}

.reservation .club .logo {
	width: 330px;
	margin: 50px auto 0;
}

.reservation .club .area-txt {
	max-width: 640px;
	margin: 36px auto 0;
	padding: 32px 0;
	border-top: 1px solid #20406D;
	border-bottom: 1px solid #20406D;
}

.reservation .club .area-txt .txt {
	text-align: center;
	font-size: min(2rem, 1.464vw);
	font-weight: 500;
	line-height: 38px;
	margin-bottom: 10px;
}

.reservation .club .area-txt .note {
	text-align: center;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 500;
	line-height: 38px;
}

.contents.reservation .club a.btnB {
	width: 310px;
	margin: 67px auto 0;
}

.contents.reservation .copy {
	width: 111.14px;
	margin: 65px auto 0;
}

@media screen and (max-width: 768px) {
	.reservation {
		padding-bottom: 30px;
	}
	.reservation .box {
		padding-top: 50px;
	}
	.reservation .box:nth-of-type(2) {
		padding-top: 60px;
	}
	.reservation .box h3 {
		font-size: min(2rem, 5.333vw);
	}
	.reservation .box .txt-booking-start {
		font-size: min(2rem, 5.333vw);
		padding-top: 30px;
	}
	.reservation .box .txt-booking-start span {
		max-width: 140px;
		margin: 0 auto 20px;
		display: block;
		font-size: min(2rem, 5.333vw);
	}
	.reservation .box .layout-wrap {
		display: block;
		padding-top: 30px;
	}
	.reservation .box .layout-wrap .layout-wrap-inner:nth-of-type(2) {
		margin-top: 30px;
	}
	.reservation .box .layout-wrap .layout-wrap-inner .layout-wrap-txt {
		width: 90%;
		height: 80px;
		font-size: min(1.7rem, 4.533vw);
		margin: 0 15px;
	}
	.contents.reservation .box .layout-wrap .layout-wrap-inner a.btnA {
		margin: 20px auto 0;
	}
	.contents.reservation .box a.btnA.typeB {
		width: 310px;
		margin: 51px auto 0;
	}
	.reservation .club {
		background-image: none;
		background-color: rgba(255, 255, 255, 0.50);
		width: 100%;
		height: auto;
		margin: 50px auto 0;
		padding: 30px 0;
		border-top: 10px solid #20406D;
		border-bottom: 10px solid #20406D;
	}
	.reservation .club h3 {
		width: 92%;
		height: 80px;
		margin: 0 auto;
		font-size: min(2rem, 5.333vw);
		line-height: 30px;
		border-radius: 20px;
	}
	.reservation .club .logo {
		width: 80%;
	}
	.reservation .club .area-txt {
		margin: 36px 15px 0;
	}
	.reservation .club .area-txt .txt {
		font-size: min(1.6rem, 4.267vw);
		line-height: 25px;
		margin-bottom: 5px;
	}
	.reservation .club .area-txt .note {
		font-size: min(1.4rem, 3.733vw);
		line-height: 25px;
	}
	.contents.reservation .club a.btnB {
		margin: 30px auto 0;
	}
	.contents.reservation .copy {
		width: 80px;
		margin: 20px auto 0;
	}
}


/* ----------------------------------------------------
 information
---------------------------------------------------- */
.information {
	background: #fff;
	padding: 110px 0 40px;
}

.information .area-logo {
	max-width: 1136px;
	margin: 0 auto;
	padding-bottom: 74px;
	border-bottom: 1px solid #20406D;
}

.information .area-logo .logoA {
	width: 290px;
	margin: 0 auto;
}

.information .area-logo .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 66px;
}

.information .area-logo .wrap .logoB {
	width: 209px;
	margin: 0 55px;
}

.information .area-logo .wrap .logoC {
	width: 285px;
	margin: 0 55px;
}

.information .area-text {
	max-width: 1136px;
	margin: 0 auto;
	padding-top: 37px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.information .area-text .area-text-A,
.information .area-text .area-text-B {
	text-align: center;
	margin: 0 28.5px;
}

.information .area-text p {
	font-feature-settings: 'halt' on;
	margin-bottom: 10px;
}

.information .area-text p:nth-of-type(1) {
	font-size: min(2rem, 1.464vw);
	font-weight: 400;
	line-height: 30px;
}

.information .area-text p:nth-of-type(2) {
	font-size: min(1.4rem, 1.025vw);
}

.information .area-text p:nth-of-type(3) {
	font-size: min(1.6rem, 1.171vw);
	font-weight: 500;
	line-height: 30px;
	margin-bottom: 0;
}

.information .area-text p a {
	color: #20406D;
}

.information .sns {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 52px;
}

.information .sns a {
	display: block;
	width: 30px;
	margin: 0 25px;
}

@media screen and (max-width: 768px) {
	.information {
		padding: 50px 0;
	}
	.information .area-logo {
		padding-bottom: 50px;
	}
	.information .area-logo .logoA {
		width: 60%;
		margin: 0 auto;
	}
	.information .area-logo .wrap {
		display: block;
		margin-top: 0;
	}
	.information .area-logo .wrap .logoB {
		width: 60%;
		margin: 40px auto 0;
	}
	.information .area-logo .wrap .logoC {
		width: 70%;
		margin: 50px auto 0;
	}
	.information .area-text {
		padding-top: 30px;
		display: block;
	}
	.information .area-text .area-text-A,
	.information .area-text .area-text-B {
		text-align: center;
		margin: 0 0 32px;
	}
	.information .area-text p:nth-of-type(1) {
		font-size: min(2rem, 5.333vw);
	}
	.information .area-text p:nth-of-type(2) {
		font-size: min(1.4rem, 3.733vw);
	}
	.information .area-text p:nth-of-type(3) {
		font-size: min(1.6rem, 4.267vw);
	}
	.information .sns {
		margin-top: 42px;
	}
}

/* ----------------------------------------------------
 footer
---------------------------------------------------- */
footer {
	background: #20406D;
	color: #fff;
	padding: 30px 0 45px;
}

footer .area-link {
	display: flex;
	justify-content: center;
	align-items: center;
}

footer .area-link a {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-align: center;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 500;
	line-height: 30px;
	position: relative;
}
footer .area-link a::before {
	content: '';
	background: #fff;
	display: inline-block;
	width: 1px;
	height: 25px;
	margin: 0 20px;
}
footer .area-link a:nth-of-type(2)::after {
	content: '';
	background: #fff;
	display: inline-block;
	width: 1px;
	height: 25px;
	margin: 0 20px;
}

footer .copy {
	text-align: center;
	font-size: min(1.3rem, 0.952vw);
	font-weight: 400;
	margin-top: 26px;
}

@media screen and (max-width: 768px) {
	footer {
		padding: 30px 0;
	}
	footer .area-link {
		display: block;
	}
	footer .area-link a {
		font-size: min(1.6rem, 4.267vw);
	}
	footer .area-link a::before {
		width: 0.5px;
		height: 20px;
		margin: 0 10px;
	}
	footer .area-link a::after {
		content: '';
		background: #fff;
		display: inline-block;
		width: 0.5px;
		height: 20px;
		margin: 0 10px;
	}
	footer .area-link a:nth-of-type(2)::after {
		width: 0.5px;
		height: 20px;
		margin: 0 10px;
	}
	footer .copy {
		font-size: min(1.2rem, 3.2vw);
	}
}