@charset "UTF-8";


/* ----------------------------------------------------
 共有
---------------------------------------------------- */
/*---- ボタン ----*/
a.btn {
	position: relative;
	background: #2F2753;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 270px;
	height: 70px;
	color: #E4D549;
	text-align: center;
	font-size: min(1.6rem, 1.171vw);
	font-style: normal;
	font-weight: 600;
	line-height: 25px;
	border-radius: 80px;
	z-index: 0;
}
a.btn::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 3px;
	background: linear-gradient(
		to bottom,
		rgba(65, 207, 117, 1),
		rgba(228, 213, 73, 1)
	);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
			mask-composite: exclude;
	pointer-events: none;
	z-index: -1;
}
a.btn::after {
	content: "";
	background: url(../img/arrow_01.svg) no-repeat;
	background-size: 100%;
	width: 9px;
	height: 17px;
	position: absolute;
	top: 51%;
	right: 10px;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

a.btn.typeB {
	width: 362px;
}
a.btn.typeB::after {
	content: "";
	background: url(../img/arrow_03.svg) no-repeat;
	background-size: 100%;
	width: 12px;
	height: 18px;
	position: absolute;
	top: 53%;
	right: 10px;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}


a.btn.typeC {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.6;
}

a.btn.typeC span {
    display: block;
    font-family: var(--coda);
    font-size: min(1.8rem, 1.318vw);
    font-weight: 800;
    line-height: 1.5;
    margin: 0;
}

a.btn.typeC {
    gap: 0px;
}

a.btn.typeD {
	width: 362px;
	background: #E4D549;
	color: #2F2753;
}
a.btn.typeD::before {
	display: none;
}
a.btn.typeD::after {
	content: "";
	background: url(../img/arrow_02.svg) no-repeat;
	background-size: 100%;
	width: 12px;
	height: 18px;
	position: absolute;
	top: 53%;
	right: 10px;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
	a.btn {
		font-size: min(1.6rem, 4.267vw);
	}
	a.btn.typeB {
		width: 270px;
		height: 58px;
	}
	a.btn.typeC {
		font-size: min(1.4rem, 3.733vw);
		margin: 0 auto;
	}

	a.btn.typeC span {
		font-size: min(1.8rem, 4.8vw);
		line-height: 25px;
	}

	a.btn.typeC {
		gap: 0px;
	}

	a.btn.typeD {
		width: 270px;
		height: 58px;
		line-height: 19px;
	}
}


/*----end ボタン ----*/

/*---- 背景カラー +　一部見出し ----*/
.bg_typeA {
	background: #1B9B83;
	padding-top: 140px;
	/* padding-bottom: 156px; */
	padding-bottom: 320px;
	position: relative;
}

.bg_typeA .date {
	max-width: 860px;
	margin: 0 auto;
	color: #E4D549;
	text-align: center;
	font-family: var(--coda);
	font-size: min(3.6rem, 2.635vw);
	font-weight: 800;
	line-height: 50px;
	position: relative;
	height: 180px;
}
.bg_typeA .date::before {
	content: '';
	background: url(../img/frame_headingA01.svg) no-repeat;
	background-size: 100%;
	display: block;
	width: 850.823px;
	height: 46.989px;
	position: absolute;
	top: -25%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.bg_typeA .date::after {
	content: '';
	background: url(../img/frame_headingA02.svg) no-repeat;
	background-size: 100%;
	display: block;
	width: 850.823px;
	height: 46.989px;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.bg_typeB {
	background: #24B297;
	padding-top: 60px;
	padding-bottom: 360px;
	width: 100%;
	margin: 0;
	position: relative;
	top: 0;
}
.bg_typeB::before {
	content: '';
	height: 700px;
	position: absolute;
	top: -260px;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #24B297;
	transform: skewY(7deg) translateY(90px);
	z-index: 0;
}
.bg_typeB::after {
	content: '';
	background: url(../img/bg_itemA.svg) no-repeat;
	background-size: 100%;
	display: block;
	width: 499px;
	height: 646px;
	position: absolute;
	bottom: -180px;
	left: -90px;
}

.bg_typeC {
	background: #2F2753;
	padding-top: 60px;
	padding-bottom: 200px;
	width: 100%;
	margin: 0;
	position: relative;
	top: 0;
}
.bg_typeC::before {
	content: '';
	height: 700px;
	position: absolute;
	top: -260px;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #2F2753;
	transform: skewY(-4deg) translateY(90px);
	z-index: 0;
}
.bg_typeC::after {
	content: '';
	background: url(../img/bg_itemB.svg) no-repeat;
	background-size: 100%;
	display: block;
	width: 473px;
	height: 646px;
	position: absolute;
	bottom: -220px;
	right: 0;
}

.bg_typeD {
	background: #3E2D63;
	padding-top: 60px;
	padding-bottom: 300px;
	width: 100%;
	margin: 0;
	position: relative;
	top: 0;
}
.bg_typeD::before {
	content: '';
	height: 700px;
	position: absolute;
	top: -180px;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #3E2D63;
	transform: skewY(4deg) translateY(90px);
	z-index: 0;
}

.bg_typeE {
	background: #1B9B83;
	padding-top: 60px;
	padding-bottom: 360px;
	width: 100%;
	margin: 0;
	position: relative;
	top: 0;
}
.bg_typeE::before {
	content: '';
	height: 700px;
	position: absolute;
	top: -260px;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #1B9B83;
	transform: skewY(-4deg) translateY(90px);
	z-index: 0;
}

.bg_typeF {
	background: #24B297;
	padding-top: 60px;
	padding-bottom: 360px;
	width: 100%;
	margin: 0;
	position: relative;
	top: 0;
}

@media screen and (max-width: 768px) {
	.bg_typeA {
		padding-top: 80px;
		padding-bottom: 260px;
	}
	.bg_typeA .date {
		font-size: min(3.6rem, 9.6vw);
		line-height: 41px;
		height: 150px;
	}
	.bg_typeA .date::before {
		width: 345px;
		height: 19px;
	}
	.bg_typeA .date::after {
		width: 345px;
		height: 19px;
	}

	.bg_typeB {
		padding-bottom: 330px;
	}
	.bg_typeB::after {
		width: 240px;
		height: 220px;
		position: absolute;
		bottom: 140px;
		left: -50px;
	}

	.bg_typeC {
		background: #2F2753;
		padding-top: 60px;
		padding-bottom: 200px;
		width: 100%;
		margin: 0;
		position: relative;
		top: 0;
	}
	.bg_typeC::after {
		width: 240px;
		height: 220px;
		position: absolute;
		bottom: 50px;
		right: 0;
	}
	.bg_typeD {
		padding-bottom: 220px;
	}
	.bg_typeE {
		padding-bottom: 176px;
	}
	.bg_typeE::before {
		top: -190px;
	}
	.bg_typeF {
		padding-bottom: 150px;
	}
}
/*----end 背景カラー +　一部見出し ----*/


/*---- 枠 ----*/
.frame,
.frame02 {
	position: relative;
}

.frame::before {
	content: '';
	background: url(../img/frame_top.svg) no-repeat;
	background-size: 100%;
	width: 1139px;
	height: 156px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.frame::after {
	content: '';
	background: url(../img/frame_bottom.svg) no-repeat;
	background-size: 100%;
	width: 1139px;
	height: 156px;
	position: absolute;
	top: 110%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.frame02 {
	max-width: 1110px;
	margin: 0 auto;
	position: relative;
}

.frame02::before {
	content: '';
	background: url(../img/frame_left-right.svg) no-repeat;
	background-size: 100%;
	width: 7px;
	height: 337px;
	position: absolute;
	top: 47%;
	left: 0;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.frame02::after {
	content: '';
	background: url(../img/frame_left-right.svg) no-repeat;
	background-size: 100%;
	width: 7px;
	height: 337px;
	position: absolute;
	top: 47%;
	right: 0;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.frame03 {
	max-width: 1110px;
	margin: 0 auto;
	position: relative;
}

.frame03::before {
	content: '';
	background: url(../img/frame_left-rightB.svg) no-repeat;
	background-size: 100%;
	width: 7px;
	height: 1080px;
	position: absolute;
	top: 53%;
	left: 0;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.frame03::after {
	content: '';
	background: url(../img/frame_left-rightB.svg) no-repeat;
	background-size: 100%;
	width: 7px;
	height: 1080px;
	position: absolute;
	top: 53%;
	right: 0;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
	.frame::before {
		width: 344px;
		height: 50px;
	}
	.frame::after {
		width: 344px;
		height: 50px;
		top: 110%;
	}
	.frame02::before {
		width: 2px;
		height: 106px;
		top: 50%;
		left: 19px;
	}
	.frame02::after {
		width: 2px;
		height: 106px;
		top: 50%;
		right: 19px;
	}
	.frame03::before,
	.frame03::after {
		display: none;
	}
}
/*----end 枠 ----*/

/*---- 画像アニメーション ----*/
.itemA {
	position: absolute;
	width: 184px;
}

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

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

.itemA.typeA {
	top: -390px;
	left: -30px;
	z-index: 10;
}

.itemA.typeB {
	bottom: -270px;
	right: 0;
	z-index: 10;
}

.itemA.typeC {
	bottom: -190px;
	left: 0;
	z-index: 10;
}

.itemA.typeD {
	bottom: -210px;
	right: 50px;
	z-index: 10;
}

.itemA.typeE {
	bottom: -470px;
	left: 0;
	z-index: 10;
}

.itemB {
	position: absolute;
	width: 164px;
}

.itemB.typeA {
	bottom: -420px;
	left: -40px;
	z-index: 10;
}

.itemB.typeB {
	bottom: -250px;
	right: 40px;
	z-index: 10;
}

.area_item {
	max-width: 1141px;
	margin: 0 auto;
	position: relative;
}

@media screen and (max-width: 768px) {
	.itemA {
		width: 139px;
	}
	.itemA.typeA {
		top: -300px;
		left: 0;
	}
	.itemA.typeB {
		bottom: -210px;
	}
	.itemA.typeC {
		bottom: -160px;
	}
	.itemA.typeD {
		bottom: -180px;
	}
	.itemA.typeE {
		bottom: -250px;
	}
	.itemB {
		width: 75px;
	}
	.itemB.typeA {
		bottom: -250px;
		left: 0;
	}
	.itemB.typeB {
		bottom: -170px;
	}
	.area_item {
		max-width: 1141px;
		margin: 0 auto;
		position: relative;
	}
}

/*----end 画像アニメーション ----*/

h2.title {
	font-family: var(--coda);
	font-size: min(4rem, 2.928vw);
	font-weight: 800;
	line-height: 42px;
	position: relative;
	top: -100px;
}
h2.title::before {
	content: '';
	background: url(../img/frame_headingC.svg) no-repeat;
	background-size: 100%;
	width: 337px;
	height: 7px;
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

h2.title02 {
	color: #E4D549;
	font-family: var(--coda);
	font-size: min(4rem, 2.928vw);
	font-weight: 800;
	line-height: 25px;
	position: relative;
}
h2.title02::before {
	content: '';
	background: url(../img/frame_headingB01.svg) no-repeat;
	background-size: 100%;
	width: 470px;
	height: 43px;
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
h2.title02::after {
	content: '';
	background: url(../img/frame_headingB02.svg) no-repeat;
	background-size: 100%;
	width: 470px;
	height: 43px;
	position: absolute;
	bottom: -80px;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.note {
	font-size: min(1.4rem, 1.025vw);
}
.note::before {
	content: '※';
}

.wrap {
	display: flex;
	justify-content: center;
}

@media screen and (max-width: 768px) {
	h2.title {
		font-size: min(3rem, 8vw);
		top: -70px;
	}
	h2.title::before {
		width: 102px;
		height: 3px;
		bottom: -28px;
	}
	h2.title02 {
		font-size: min(3rem, 8vw);
		line-height: 42px;
	}
	h2.title02::before {
		width: 345px;
		height: 31px;
		top: -30px;
	}
	h2.title02::after {
		width: 345px;
		height: 31px;
		bottom: -60px;
	}
	.note {
		font-size: min(1.2rem, 3.2vw);
	}
	.wrap {
		display: block;
	}
}

/* ----------------------------------------------------
 lead
---------------------------------------------------- */
.lead {
	background: url(../img/bgA.webp) no-repeat;
	background-size: 100%;
	background-position: center bottom;
	width: 100%;
	height: 73vw;
}

.lead .logo {
	width: 869px;
	margin: 0 auto;
	padding-top: 25px;
}

.lead h2 {
	background: var(--Linear, linear-gradient(90deg, #CAAC54 0%, #F3E0A4 52.4%, #B49634 100%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: min(5rem, 3.66vw);
	font-weight: 800;
	line-height: normal;
	text-align: center;
	padding-top: 19px;
}

.lead .txt {
	color: #F8DF8D;
	text-align: center;
	font-feature-settings: 'halt' on;
	font-size: min(2.4rem, 1.757vw);
	font-weight: 400;
	line-height: 45px;
	padding-top: 39px;
}

.lead .area_btn {
	display: flex;
	justify-content: center;
	padding-top: 50px;
}

.lead .area_btn a.btn.typeC {
	margin: 0 22.5px;
}

@media screen and (max-width: 768px) {
	.lead {
		background: url(../img/bgA_sp.webp) no-repeat;
		background-size: 100%;
		background-position: center;
		width: 100%;
		height: 253vw;
	}
	.lead .logo {
		width: 296px;
		padding-top: 36px;
	}
	.lead h2 {
		font-size: min(3rem, 8vw);
		padding-top: 28px;
	}
	.lead .txt {
		font-size: min(1.6rem, 4.267vw);
		line-height: 28px;
		padding-top: 26px;
	}
	.lead .area_btn {
		display: block;
		padding-top: 83px;
	}
	.lead .area_btn a.btn.typeC {
		margin: 0 auto 60px;
	}
}

/* ----------------------------------------------------
 stay
---------------------------------------------------- */
.stay {
	max-width: 1140px;
	margin: 0 auto;
	text-align: center;
	color: #fff;
	position: relative;
	z-index: 10;
}

.stay .frame02 {
	padding: 100px 0;
}

.stay .frame02 .box {
	margin: 0 15px;
}

.stay .frame02 .box .txt {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #2F2753;
	width: 444px;
	height: 79px;
	margin: 0 auto;
	font-size: min(2rem, 1.464vw);
	font-weight: 600;
	line-height: 25px;
}

.stay .frame02 .box .data {
	font-size: min(2rem, 1.464vw);
	font-weight: 600;
	line-height: 31px;
	margin-top: 40px;
}

.stay .frame02 .box a.btn {
	margin: 21px auto 0;
}

@media screen and (max-width: 768px) {
	.stay .frame02 {
		padding: 0;
	}
	.stay .frame02 .box {
		margin: 0 auto 59px;
	}
	.stay .frame02 .box:last-child {
		margin: 0 auto;
	}
	.stay .frame02 .box .txt {
		width: 289px;
		height: 79px;
		font-size: min(1.8rem, 4.8vw);
		line-height: 24px;
		letter-spacing: 0;
		padding: 16px 12px;
	}
	.stay .frame02 .box .data {
		font-size: min(1.6rem, 4.267vw);
		line-height: 25px;
		margin-top: 13px;
	}
	.stay .frame02 .box a.btn {
		height: 58px;
		margin: 21px auto 0;
	}
}


/* ----------------------------------------------------
 afternoon
---------------------------------------------------- */
.afternoon {
	text-align: center;
	color: #fff;
	position: relative;
	z-index: 10;
	margin-top: 340px;
}

.afternoon .frame02 {
	padding: 100px 0;
}

.afternoon .frame02 .box {
	margin: 0 15px;
}

.afternoon .frame02 .box .txt {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #2F2753;
	width: 444px;
	height: 79px;
	margin: 0 auto;
	font-size: min(2rem, 1.464vw);
	font-weight: 600;
	line-height: 25px;
}

.afternoon .frame02 .box .data {
	font-size: min(2rem, 1.464vw);
	font-weight: 600;
	line-height: 31px;
	margin-top: 40px;
}

.afternoon .frame02 .box a.btn {
	margin: 21px auto 0;
}

@media screen and (max-width: 768px) {
	.afternoon {
		margin-top: 220px;
	}
	.afternoon .frame02 {
		padding: 0;
	}
	.afternoon .frame02 .box {
		margin: 0 auto 59px;
	}
	.afternoon .frame02 .box:last-child {
		margin: 0 auto;
	}
	.afternoon .frame02 .box .txt {
		width: 289px;
		height: 79px;
		font-size: min(1.8rem, 4.8vw);
		line-height: 24px;
		letter-spacing: 0;
	}
	.afternoon .frame02 .box .data {
		font-size: min(1.6rem, 4.267vw);
		line-height: 25px;
		margin-top: 13px;
	}
	.afternoon .frame02 .box a.btn {
		height: 58px;
		margin: 21px auto 0;
	}
}

/* ----------------------------------------------------
 qa
---------------------------------------------------- */
.qa {
	margin-top: 230px;
}

.qa a.btn.typeD {
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.qa {
		margin-top: 150px;
	}
}

/* ----------------------------------------------------
 global
---------------------------------------------------- */
.global {
	max-width: 1139px;
	margin: 77px auto 0;
	padding: 27px 30px;
	border: 7px solid #E4D549;
	position: relative;
}

.global .inner {
	border: 3px solid #E4D549;
	text-align: center;
}

.global .inner h2 {
	color: #E4D549;
	font-size: min(3.2rem, 2.343vw);
	font-weight: 800;
	line-height: 38px;
	margin-top: 49px;
}

.global .inner .logo {
	width: 331px;
	margin: 45px auto 0;
}

.global .inner .txt {
	max-width: 638px;
	margin: 36px auto 0;
	padding: 36px 0;
	color: #fff;
	font-size: min(2rem, 1.464vw);
	font-weight: 500;
	line-height: 38px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.global .inner .txt span {
	font-size: min(1.6rem, 1.171vw);
}

.global .inner a.btn.typeB {
	margin: 66px auto 78px;
}

.area_global {
	max-width: 1140px;
	margin: 0 auto;
	position: relative;
}

@media screen and (max-width: 768px) {
	.global {
		margin: 68px 15px 0;
		padding: 5px;
	}
	.global .inner h2 {
		font-size: min(2.8rem, 7.467vw);
		line-height: 35px;
		margin-top: 32px;
		letter-spacing: 0;
	}
	.global .inner h2 span {
		font-size: min(2.4rem, 6.4vw);
	}
	.global .inner .logo {
		width: 252px;
		margin: 39px auto 0;
	}
	.global .inner .txt {
		max-width: 287px;
		margin: 44px auto 0;
		padding: 22px 0;
		font-size: min(1.6rem, 4.267vw);
		line-height: 29px;
	}
	.global .inner .txt span {
		font-size: min(1.2rem, 3.2vw);
	}
	.global .inner a.btn.typeB {
		margin: 30px auto 40px;
	}
}

/* ----------------------------------------------------
 concept
---------------------------------------------------- */
.concept {
	text-align: center;
	color: #fff;
	position: relative;
	z-index: 10;
}

.concept .txt {
	margin-top: 100px;
	font-size: min(2rem, 1.464vw);
	font-weight: 400;
	line-height: 35px;
}

.concept .slideA {
	max-width: 920px;
	margin: 64px auto 0;
}

@media screen and (max-width: 768px) {
	.concept .txt {
		margin-top: 100px;
		font-size: min(1.6rem, 4.267vw);
		line-height: 25px;
	}
	.concept .slideA {
		margin: 22px 15px 0;
	}
}

/* ----------------------------------------------------
 original
---------------------------------------------------- */
.original {
	text-align: center;
	color: #fff;
	position: relative;
	z-index: 10;
	margin-top: 210px;
}

.original .txt {
	margin-top: 100px;
	font-size: min(2rem, 1.464vw);
	font-weight: 400;
	line-height: 35px;
}

.original .img-contents {
	max-width: 1141px;
	margin: 90px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.original .img-contents .box {
	width: 30.33333%;
}

.original .img-contents .box span {
	display: block;
	padding-top: 18px;
	color: #E4D549;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 600;
	line-height: 25px;
}

.original .limited {
	max-width: 1141px;
	margin: 87px auto 0;
	padding: 65px 0 44px;
	border: 3px solid;
	border-image: linear-gradient(to bottom, #41CF75, #E4D549) 1;
	position: relative;
}

.original .limited h3 {
	background: #2F2753;
	font-family: var(--coda);
	font-size: min(2.5rem, 1.83vw);
	font-weight: 800;
	line-height: 30px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	padding: 0 20px;
}
.original .limited h3 span {
	background: linear-gradient(
		90deg,
		#CAAC54 0%,
		#F3E0A4 52.4%,
		#B49634 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

.original .limited .limited-contents {
	display: flex;
	justify-content: center;
	padding-left: 70px;
}

.original .limited .limited-contents .box {
	margin: 0 95px;
}
.original .limited .limited-contents .box:first-child img {
	width: 164px;
	margin: 0 auto;
}
.original .limited .limited-contents .box:last-child img {
	width: 334px;
	margin: 0 auto;
}

.original .limited .limited-contents .box span {
	display: block;
	padding-top: 14px;
	color: #E4D549;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 600;
	line-height: 25px;
}

.original .area_note {
	max-width: 500px;
	margin: 55px auto 0;
	text-align: left;
}

.original .area_note .note {
	line-height: 25px;
}

@media screen and (max-width: 768px) {
	.original {
		margin-top: 160px;
	}
	.original .txt {
		margin-top: 70px;
		font-size: min(1.6rem, 4.267vw);
		line-height: 25px;
	}
	.original .img-contents {
		margin: 40px 43px 0;
		display: block;
	}
	.original .img-contents .box {
		width: 100%;
		margin-bottom: 40px;
	}
	.original .img-contents .box:last-child {
		margin-bottom: 0;
	}
	.original .img-contents .box span {
		padding-top: 12px;
		font-size: min(1.6rem, 4.267vw);
		font-weight: 400;
	}
	.original .limited {
		margin: 87px 15px 0;
		padding: 65px 0 44px;
	}
	.original .limited h3 {
		width: 70%;
		font-size: min(2.5rem, 6.667vw);
		padding: 0;
	}
	.original .limited .limited-contents {
		display: block;
		padding-left: 0;
	}
	.original .limited .limited-contents .box {
		margin: 0 auto 38px;
	}
	.original .limited .limited-contents .box:last-child {
		margin-bottom: 0;
	}
	.original .limited .limited-contents .box:first-child img {
		width: 164px;
		margin: 0 auto;
	}
	.original .limited .limited-contents .box:last-child img {
		width: 289px;
		margin: 0 auto;
	}
	.original .limited .limited-contents .box span {
		font-size: min(1.6rem, 4.267vw);
	}
	.original .area_note {
		margin: 30px 20px 0;
	}
	.original .area_note .note {
		line-height: 17px;
	}
}

/* ----------------------------------------------------
 price
---------------------------------------------------- */
.price {
	text-align: center;
	color: #fff;
	position: relative;
	z-index: 10;
	margin-top: 20px;
}

.price h3 {
	color: #E4D549;
	font-size: min(2rem, 1.464vw);
	font-weight: 600;
	line-height: 37px;
	margin-top: 100px;
	position: relative;
}
.price h3::before {
	content: '';
	background: url(../img/frame_headingD.svg) no-repeat;
	background-size: 100%;
	display: block;
	width: 822px;
	height: 8px;
	margin: 0 auto;
	position: absolute;
	top: 53%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	z-index: 0;
}

.price h3 span {
	background: #3E2D63;
	padding: 0 10px;
	position: relative;
	z-index: 1;
}

.price .area_fee {
	margin-top: 16px;
}

.price .area_fee .txt {
	font-size: min(1.6rem, 1.171vw);
	font-weight: 600;
	line-height: 37px;
}

.price .area_fee .fee {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: left;
	margin-top: 16px;
}

.price .area_fee .fee li:first-child {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #FFF;
	width: 80px;
	height: 42px;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 600;
	line-height: 44px;
	margin: 0 9px;
}

.price .area_fee .fee li:last-child {
	font-size: min(1.6rem, 1.171vw);
	font-weight: 400;
	line-height: 28px;
	margin: 0 9px;
}

.price .area_fee .fee.typeB {
	margin-top: 20px;
}

.price .area_fee a.btn {
	margin: 43px auto 0;
}

.price .area_calendar {
	max-width: 922px;
	margin: 112px auto 0;
}

.price .area_calendar .deta {
	display: flex;
	border-bottom: 9px solid #E4D549;
}

.price .area_calendar .deta li {
	background: #7E7D9B;
	width: 220px;
	height: 74.624px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--coda);
	font-size: min(3.6rem, 2.635vw);
	font-weight: 800;
	line-height: 25px;
	border-radius: 10px 10px 0 0;
	cursor: pointer;
}
.price .area_calendar .deta li:first-child {
	margin-right: 8px;
}

.price .area_calendar .deta li.active {
	background: #41CF75;
	background: linear-gradient(180deg, rgba(65, 207, 117, 1) 0%, rgba(228, 213, 73, 1) 84%);
}

.price .area_calendar .img {
	margin-top: 13px;
}

.price .area_calendar .area_note {
	margin-top: 41px;
	text-align: left;
}

.price .area_calendar .area_note .note {
	font-weight: 400;
	line-height: 25px;
}

@media screen and (max-width: 768px) {
	.price {
		margin-top: 20px;
	}
	.price h3 {
		font-size: min(1.6rem, 4.267vw);
		line-height: 25px;
		margin-top: 100px;
	}
	.price h3::before {
		width: 345px;
		height: 3px;
	}
	.price h3 span {
		display: inline-block;
		letter-spacing: 0;
	}
	.price .area_fee {
		margin-top: 11px;
	}
	.price .area_fee .txt {
		font-size: min(1.6rem, 4.267vw);
	}
	.price .area_fee .fee {
		justify-content: flex-start;
		align-items: flex-start;
		padding: 0 15px;
	}
	.price .area_fee .fee li:first-child {
		font-size: min(1.6rem, 4.267vw);
		margin-top: 4px;
	}
	.price .area_fee .fee li:last-child {
		font-size: min(1.6rem, 4.267vw);
	}
	.price .area_fee a.btn {
		height: 58px;
		margin: 52px auto 0;
	}
	.price .area_calendar {
		margin: 50px auto 0;
		padding: 0 15px;
	}
	.price .area_calendar .deta {
		border-bottom: 5px solid #E4D549;
	}
	.price .area_calendar .deta li {
		width: 82.321px;
		height: 27.923px;
		font-size: min(1.5rem, 4vw);
		border-radius: 5px 5px 0 0;
	}
	.price .area_calendar .deta li:first-child {
		margin-right: 8px;
	}
	.price .area_calendar .img {
		margin-top: 5px;
	}
	.price .area_calendar .area_note {
		margin-top: 24px;
	}
	.price .area_calendar .area_note .note {
		line-height: 17px;
	}
}

/* ----------------------------------------------------
 afternoon2
---------------------------------------------------- */
.afternoon2 {
	text-align: center;
	color: #fff;
	position: relative;
	z-index: 10;
}

.afternoon2 .slideA {
	margin-top: 35px;
}

.afternoon2 h3 {
	font-family: var(--coda);
	font-size: min(4rem, 2.928vw);
	font-weight: 800;
	line-height: 25px;
	margin-top: 100px;
	position: relative;
}
.afternoon2 h3::before {
	content: '';
	background: url(../img/frame_headingC.svg) no-repeat;
	background-size: 100%;
	width: 337px;
	height: 7px;
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.afternoon2 .img {
	max-width: 923px;
	margin: 87px auto 0;
}

.afternoon2 .img span {
	display: block;
	color: #E4D549;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 600;
	line-height: 25px;
	margin-top: 14px;
}

.afternoon2 .img .txt {
	margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
	.afternoon2 .slideA {
		margin-top: 23px;
		padding: 0 42px;
	}
	.afternoon2 h3 {
		font-size: min(3rem, 8vw);
		line-height: 42px;
		margin-top: 80px;
	}
	.afternoon2 h3::before {
		width: 200px;
		height: 4px;
		bottom: -20px;
	}
	.afternoon2 .img {
		margin-top: 40px;
		padding: 0 72px;
	}
	.afternoon2 .img span {
		font-size: min(1.6rem, 4.267vw);
		margin-top: 7px;
	}
	.afternoon2.frame::after {
		top: 106%;
	}
}

/* ----------------------------------------------------
 drink
---------------------------------------------------- */
.drink {
	text-align: center;
	color: #fff;
	position: relative;
	z-index: 10;
	margin-top: 520px;
}

.drink .slideB {
	margin-top: 74px;
}

.drink .contents {
	max-width: 1140px;
	margin: 76px auto 0;
	padding: 27px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.drink .contents .area_text {
	text-align: left;
}

.drink .contents .area_text ul {
	display: flex;
	margin-bottom: 10px;
}

.drink .contents .area_text ul li {
	font-size: min(1.6rem, 1.171vw);
	font-weight: 400;
	line-height: 27px;
}

.drink .contents .area_btn {
	margin-right: 80px;
}

.drink .area_note {
	max-width: 1006px;
	margin: 30px auto 0;
	text-align: left;
}

.drink .area_note .note {
	font-weight: 400;
	line-height: 25px;
	padding-left: 1em;
	text-indent: -1em;
}

@media screen and (max-width: 768px) {
	.drink {
		margin-top: 180px;
	}
    .drink.frame::before {
        top: 50px;
    }
	.drink h2.title::before {
		bottom: -40px;
	}
	.drink .slideB {
		margin-top: 23px;
	}
	.drink .contents {
		margin: 45px 15px 0;
		padding-bottom: 37px;
		display: block;
	}
	.drink .contents .area_text {
		text-align: left;
	}
	.drink .contents .area_text ul {
		display: flex;
		margin-bottom: 10px;
	}
	.drink .contents .area_text ul li {
		font-size: min(1.6rem, 4.267vw);
		width: 100%;
		letter-spacing: 0;
	}
	.drink .contents .area_text ul li span {
		font-size: min(1.4rem, 3.733vw);
	}
	.drink .contents .area_text ul li:first-child {
		width: 65px;
	}
	.drink .contents .area_btn {
		margin-top: 22px;
		margin-right: 0;
	}
	.drink .contents .area_btn a.btn {
		height: 58px;
		margin: 0 auto;
	}
	.drink .area_note {
		margin: 27px 15px 0;
	}
	.drink .area_note .note {
		line-height: 17px;
	}
	.drink.frame::after {
		top: 104%;
	}
}

/* ----------------------------------------------------
 skate
---------------------------------------------------- */
.skate {
	text-align: center;
	color: #fff;
	position: relative;
	z-index: 10;
	margin-top: 192px;
}

.skate .txt {
	font-size: min(2.4rem, 1.757vw);
	font-weight: 500;
	line-height: 37px;
}

.skate .txt span {
	font-size: min(2rem, 1.464vw);
	font-weight: 400;
	line-height: 37px;
}

.skate .img {
	max-width: 540px;
	margin: 37px auto 0;
}

.skate h3 {
	font-family: var(--coda);
	font-size: min(4rem, 2.928vw);
	font-weight: 800;
	line-height: 25px;
	margin-top: 100px;
	position: relative;
}
.skate h3::before {
	content: '';
	background: url(../img/frame_headingC.svg) no-repeat;
	background-size: 100%;
	width: 337px;
	height: 7px;
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.skate .img2 {
	max-width: 305px;
	margin: 87px auto 0;
}

.skate .img2 span {
	display: block;
	color: #E4D549;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 600;
	line-height: 25px;
	margin-top: 14px;
}

.skate .area_text {
	max-width: 970px;
	margin: 32px auto 0;
	text-align: left;
}

.skate .area_text ul {
	display: flex;
}

.skate .area_text ul li {
	font-size: min(1.6rem, 1.171vw);
	font-weight: 400;
	line-height: 25px;
}

.skate .area_text ul li a {
	color: #fff;
	text-decoration: underline;
}

.skate .area_note {
	max-width: 970px;
	margin: 20px auto 0;
	text-align: left;
}

.skate .area_note .note {
	line-height: 25px;
}

.skate .wrap {
	max-width: 888px;
	margin: 28px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.skate .wrap .area_map {
	order: 1;
}

.skate .wrap .area_map iframe {
	width: 447.908px;
	height: 253.431px;
}

.skate .wrap .area_btn a.btn {
	width: 317px;
	line-height: 25px;
}

@media screen and (max-width: 768px) {
	.skate {
		margin-top: 120px;
	}
	.skate .txt {
		font-size: min(2.4rem, 6.4vw);
	}
	.skate .txt span {
		font-size: min(2rem, 5.333vw);
		line-height: 35px;
	}
	.skate .img {
		margin: 37px 15px 0;
	}
	.skate h3 {
		font-size: min(3rem, 8vw);
		line-height: 42px;
		margin-top: 51px;
	}
	.skate h3::before {
		width: 199px;
		height: 4px;
		bottom: -20px;
	}
	.skate .img2 {
		margin: 44px 42px 0;
	}
	.skate .img2 picture {
		display: block;
		margin: 0 48px;
	}
	.skate .img2 span {
		font-size: min(1.6rem, 4.267vw);
		margin-top: 7px;
	}
	.skate .area_text {
		margin: 32px 15px 0;
	}
	.skate .area_text ul {
		display: flex;
	}
	.skate .area_text ul li {
		font-size: min(1.6rem, 4.267vw);
	}
	.skate .area_text ul li span {
		display: block;
		font-size: min(1.2rem, 3.2vw);
		margin-top: -5px;
	}
	.skate .area_note {
		margin: 21px 15px 0;
	}
	.skate .area_note .note {
		line-height: 17px;
	}
	.skate .wrap {
		display: block;
		margin-top: 32px
	}
	.skate .wrap .area_map {
		margin: 0 15px;
	}
	.skate .wrap .area_map iframe {
		width: 100%;
		height: 253.431px;
	}
	.skate .wrap .area_btn a.btn {
		margin: 50px auto 0;
	}
	.skate.frame::after {
		top: 104%;
	}
}

/* ----------------------------------------------------
 footer
---------------------------------------------------- */
footer {
	background: #2F2753;
	color: #fff;
	padding: 10px 0 47px;
}

footer a {
	color: #fff;
}

footer .area_logo .logo01 {
	width: 314px;
	margin: 0 auto;
}

footer .area_logo .wrap {
	align-items: baseline;
	margin-top: 78px;
}

footer .area_logo .wrap .logo02 {
	width: 210px;
	margin: 0 55.5px;
}

footer .area_logo .wrap .logo03 {
	width: 286px;
	margin: 0 55.5px;
}

footer .inquiry {
	max-width: 1140px;
	margin: 70px auto 0;
	padding: 52px 0 38px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

footer .inquiry ul {
	display: flex;
	justify-content: center;
}

footer .inquiry ul li {
	text-align: center;
	font-weight: 400;
	line-height: 30px;
	margin: 0 36px;
}

footer .inquiry ul li h3 {
	font-size: min(2rem, 1.464vw);
}

footer .inquiry ul li p {
	font-size: min(1.4rem, 1.025vw);
}

footer .inquiry ul li a {
	color: #FFF;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 500;
	line-height: 30px;
}

footer .inquiry .sns {
	display: flex;
	justify-content: center;
	margin-top: 38px;
}

footer .inquiry .sns a {
	width: 30px;
	height: 30px;
	margin: 0 30px;
}

footer .link {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

footer .link a {
	font-size: min(1.6rem, 1.171vw);
	font-weight: 500;
	line-height: 30px;
}
footer .link a::before {
	content: '｜';
	padding: 0 10px;
}
footer .link a:last-child:after {
	content: '｜';
	padding: 0 10px;
}

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

@media screen and (max-width: 768px) {
	footer {
		padding: 21px 0 43px;
	}
	footer .area_logo .logo01 {
		width: 239px;
		margin: 0 auto;
	}
	footer .area_logo .wrap {
		margin-top: 53px;
	}
	footer .area_logo .wrap .logo02 {
		width: 186px;
		margin: 0 auto;
	}
	footer .area_logo .wrap .logo03 {
		width: 228px;
		margin: 52px auto 0;
	}
	footer .inquiry {
		margin: 91px 15px 0;
		padding: 49px 0 47px;
	}
	footer .inquiry ul {
		display: block;
	}
	footer .inquiry ul li {
		margin: 0;
	}
	footer .inquiry ul li:last-child {
		margin-top: 36px;
	}
	footer .inquiry ul li h3 {
		font-size: min(2rem, 5.333vw);
	}
	footer .inquiry ul li p {
		font-size: min(1.4rem, 3.733vw);
	}
	footer .inquiry ul li a {
		font-size: min(1.6rem, 4.267vw);
		font-weight: 500;
		line-height: 30px;
	}
	footer .inquiry .sns {
		margin-top: 49px;
	}
	footer .link {
		display: block;
		margin-top: 23px;
	}
	footer .link a {
		display: block;
		font-size: min(1.6rem, 4.267vw);
		text-align: center;
	}
	footer .link a::after {
		content: '｜';
		padding: 0 10px;
	}
	footer .copy {
		font-size: min(1.3rem, 3.467vw);
		margin-top: 30px;
		letter-spacing: 0;
	}
}