@charset "utf-8";

/**
 *
 *  ページ用CSS
 *　index
 */

/*--------------------------------------------------------------------------
	Overwright
---------------------------------------------------------------------------*/
.content{
	/* margin-top: 0 !important; */
	font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
}
/* #Header::before{
	opacity: 0;
}
#Header.scroll::before{
  opacity: 1;
}

#Gnav .gnav li a{
  color: #fff;
}
#Header.scroll .gnav li a{
  color: #000;
}
#slide-line{
  background: #fff;
}
#Header.scroll #slide-line{
  background: #1f50a2;
} */

#Gnav .btn-req a {
  /* background-color: #003264; */
  /* background-image: url(../img/common/ico_file_blue.svg); */
}
#Header.scroll .btn-req a {
  /* background-color: #1f50a2; */
  /* background-image: url(../img/common/ico_file.svg); */
}

.content a{
	transition: .5s;
}
.content a:hover{
	opacity: .7;
}

.content a:link,
.content a:visited {
	color: inherit;
}

.page-notes {
	font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
	font-size: 1rem;
	letter-spacing: 0.1em;
}

/* @media screen and (max-width: 1200px) {
	#Header .btn-req.sp {
		width: calc(100 / 315 * 100%);
		max-width: 100px;
	}
	#Header .btn-rsv.sp {
		width: calc(220 / 315 * 100%);
		max-width: 220px;
	}
	#Header .btn-rsv.sp a {
		justify-content: flex-end;
		column-gap: .5em;
		font-size: 1.8rem;
		background-position: left 15px center;
    background-size: 18px auto;
		padding: 0 .7em;
	}
	#Header .btn-rsv.sp a::after {
		content: '';
		display: block;
		width: 78px;
		height: 42px;
		background: url(../../asset/img/top/txt_easy_sp.svg) center/contain no-repeat;
	}
} */

@media screen and (max-width: 540px) {
	#Header h1 {
		opacity: 0;
		visibility: hidden;
		width: 0;
		height: 0;
	}
	#Header .nav-area {
		flex: 1;
		justify-content: flex-start;
	}
}

/* common
-----------------------------------------------------------------*/
.fl{ float: left; }
.fr{ float: right; }
.bl{ display: block; }
.ib{ display: inline-block; }
.flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.flex.nowrap{ flex-wrap: nowrap; }
.flex.reverse{ flex-direction: row-reverse; }
.flex.reverse > *{ min-height: 0; }
.flex.jc-c{ justify-content: center; }
.flex.jc-s{ justify-content: flex-start; }
.flex.jc-e{ justify-content: flex-end; }
.flex.ai-c{ align-items: center; }
.flex.ai-e{ align-items: flex-end; }
.flex.ai-st{ align-items: stretch; }

/* btn
-----------------------------------------------------------------*/

.btn{
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  position: relative;
  width: 100%;
  background-color: #000;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.15em;
  line-height: 1.6;
  padding: 1em;
  text-align: center;
  border-radius: 0;
  transition: .4s ease-out;
  z-index: 0;
}
.btn .txt {
	color: #fff;
}
.btn.has-arrow {
	justify-content: space-between;
	padding-inline: 2em 1em;
}
.btn.has-arrow::after {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-color: rgb(255 255 255 / 1);
	-webkit-mask-image: url(../../asset/img/common/ico_btn-arrow.svg);
	mask-image: url(../../asset/img/common/ico_btn-arrow.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: .4s;
}

/*--------------------------------------------------------------------------
	loading
---------------------------------------------------------------------------*/
html {
	overflow: hidden;
}
/* #Page {
	scrollbar-gutter: stable;
} */
.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background-color: #003264;
	scrollbar-gutter: stable;
	overflow: auto;
	transition: .5s;
	z-index: 10001;
}
.loading.is-hidden {
	opacity: 0;
	visibility: hidden;
}

.loadingContents {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: min(10vh, 80px);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.loading__copy {
	width: calc(992 / 1500 * 100%);
	transform: translateY(5%);
	opacity: 0;
	animation: copy-move .6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes copy-move {
	0% {
		transform: translateY(4%);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.loading__line {
	width: 100%;
	height: 1px;
	background-color: #335b83;
	position: relative;
	z-index: 0;
}
.loading__line::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #d2aa5a;
	transform-origin: left;
	animation: line-move 3s linear both;
	z-index: 1;
}
@keyframes line-move {
	0% {
		transform: scaleX(0);
	}
	100% {
		transform: scaleX(1);
	}
}

.loading__img {
	height: 100%;
	mix-blend-mode: multiply;
	/* transition: transform 4s .6s cubic-bezier(0.22, 0.61, 0.36, 1); */
	z-index: 0;
}
.loading__img img {
	height: 100%;
	object-fit: cover;
}

.wappen {
	position: absolute;
	top: 8.5%;
	right: 3.3%;
	width: clamp(140px,calc(250 / 1500 * 100%),250px);
	opacity: 0;
	transition: opacity .5s .3s ease-out;
	z-index: 2;
}
.loading.is-start .wappen {
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.loadingContents {
		row-gap: min(10vh, 70px);
		padding-top: 5vh;
	}
	.loading__copy {
		width: min(calc(439 / 375 * 100%), 439px);
	}
	.wappen {
		top: 2%;
		right: 2%;
	}
}

/*--------------------------------------------------------------------------
	Mv
---------------------------------------------------------------------------*/
.mv {
	position: relative;
	overflow: hidden;
	z-index: 0;
}

.mvStop {
	width: 100%;
	height: 100%;
	transition: .6s ease;
	overflow: hidden;
	z-index: 0;
}
.loaded .mvStop {
	opacity: 1;
}

.mvEffect {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	/* height: 100%; */
	overflow: hidden;
	z-index: 2;
}

.mvSlider {
	position: relative;
	height: 100%;
	z-index: 0;
}

.mvSlider .swiper-container {
	/* height: 100%; */
}

.mvStop__imgBox {
	display: flex;
	align-items: flex-start;
	position: relative;
	z-index: 0;
}

.mvStop__img {
	overflow: hidden;
}
.mvStop__img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / .3);
	z-index: 1;
}

.mvStop__img--large {
	width: calc(1050 / 1500 * 100%);
}
.mvSlider .swiper-slide-active .mvStop__img--large[data-zoom="up"] picture img,
.mvSlider .swiper-slide-duplicate-active .mvStop__img--large[data-zoom="up"] picture img,
.mvSlider .swiper-slide-prev .mvStop__img--large[data-zoom="up"] picture img {
	animation: zoomUp 10s linear 0s 1 normal both;
}
.mvSlider .swiper-slide-active .mvStop__img--large[data-zoom="out"] picture img,
.mvSlider .swiper-slide-duplicate-active .mvStop__img--large[data-zoom="out"] picture img,
.mvSlider .swiper-slide-prev .mvStop__img--large[data-zoom="out"] picture img {
	animation: zoomOut 10s linear 0s 1 normal both;
}
.mvSlider .swiper-slide-active .mvParseBox__img img,
.mvSlider .swiper-slide-duplicate-active .mvParseBox__img img,
.mvSlider .swiper-slide-prev .mvParseBox__img img {
	animation: zoomOut 10s linear 0s 1 normal both;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.mvStop__img--small {
	width: calc(450 / 1500 * 100%);
}

.mvCopy {
	position: absolute;
	top: 9%;
	right: 4%;
	width: fit-content;
	color: #dcdbda;
	line-height: 1;
	text-align: right;
	z-index: 4;
}
.mvCopy .small {
	display: block;
	font-size: 16px;
	letter-spacing: 0.04em;
	text-shadow: 0 0 5px rgba(0 0 0 / 1);
	position: relative;
	z-index: 0;
}
.mvCopy .large {
	display: block;
	font-style: normal;
	font-size: clamp(50px, 0.79rem + 5.47vw, 90px);
	letter-spacing: 0.04em;
	text-shadow: 0 0 10px rgba(0 0 0 / 1);
}

.mvCopy02 {
	position: absolute;
	bottom: -3%;
	left: 50%;
	transform: translate(-50%, 0);
	width: calc(806 / 1050 * 100%);
	z-index: 1;
}

.mvSlider .swiper-pagination {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	position: absolute;
	right: 40px;
	bottom: 40px;
	left: auto;
	z-index: 1;
}
.mvSlider .swiper-pagination-bullet {
	width: 30px;
	height: 3px;
	background: #fff;
	border-radius: 0;
	margin-inline: 0 !important;
	opacity: 1 !important;
	z-index: 10;
}
.mvSlider .swiper-pagination-bullet-active {
	background: rgba(0 60 122 / 1);
}

.mvParseBox {
	position: relative;
	z-index: 0;
}
.mvParseBox__copy {
	font-size: clamp(24px, 0.3rem + 2.74vw, 44px);
	letter-spacing: 0.1em;
	line-height: 1.8;
	color: #fff;
	text-shadow: 0 0 15px rgb(13 19 86 / 1);
	position: absolute;
	top: 14%;
	left: 8%;
	z-index: 1;
}
.mvParseBox__copy .em {
	font-style: normal;
	font-size: 127%;
	line-height: 1;
}

.mvBox01 {
	position: relative;
	z-index: 0;
}
.mvBox01__copy {
	position: absolute;
	top: 50%;
	right: 3%;
	transform: translate(0, -50%);
	width: calc(778 / 1500 * 100%);
	z-index: 1;
}

.mvBox02 {
	position: relative;
	z-index: 0;
}
.mvBox02__copy {
	position: absolute;
	top: -5%;
	left: 50%;
	transform: translate(-50%, 0);
	width: calc(1291 / 1500 * 100%);
	z-index: 1;
}
.mvBox02__wappen {
	position: absolute;
	bottom: 3%;
	left: 3%;
	width: calc(220 / 1500 * 100%);
	z-index: 1;
}

.badge {
	position: absolute;
	top: 0;
	left: 0;
	width: min(calc(340 / 1500 * 100%),340px);
	opacity: 0;
	transition: transform 1s 5s ease-out, opacity 1s 5s ease-out;
	transform: translateY(2%);
	z-index: 2;
}
.loaded .badge {
	opacity: 1;
	transform: translateY(0);
}

@media screen and (min-width: 769px) {
	.mvStop__imgBox.reverse {
		flex-direction: row-reverse;
	}
	.mvStop__img--small::after {
		content: '';
		position: absolute;
		top: 0;
		left: 1px;
		width: 2px;
		height: 100%;
		background-color: #fff;
		z-index: 1;
	}
	.mvStop__imgBox.reverse .mvStop__img--small::after {
		right: -1px;
		left: auto;
	}
	.mvStop__imgBox.reverse .mvCopy {
		/* top: auto; */
		/* bottom: 4%; */
		right: 4%;
	}
}

@media screen and (max-width: 768px) {
	.mvStop {
		display: flex;
		flex-direction: column;
		height: auto;
		/* aspect-ratio: 375 / 450; */
		transition-delay: 6.3s;
	}

	.mvSlider {
		flex: 1;
	}

	.mvSlider .swiper-container {
		flex: 1;
	}

	.mvStop__imgBox {
		row-gap: 2px;
		flex-direction: column;
	}
	.mvStop__img--large,
	.mvStop__img--small {
		width: 100%;
	}

	.mvStop__imgBox .mvCopy {
		top: auto;
		right: auto;
		bottom: 6%;
		left: 4%;
		text-align: left;
	}
	.mvStop__imgBox.reverse .mvCopy {
		right: 4%;
		left: auto;
		text-align: right;
	}
	.mvCopy .small {
		font-size: 12px;
	}
	.mvCopy02 {
		top: 4%;
		bottom: auto;
		width: calc(400 / 375 * 100%);
	}
	.mvSlider .p-caption.l {
		left: auto;
		right: 0;
	}

	.mvBox01__copy {
		position: absolute;
		top: 0;
		right: -3%;
		transform: translate(0, 0);
		width: 402px;
	}

	.mvBox02__copy {
		top: 0;
		width: calc(402 / 375 * 100%);
	}
	.mvBox02__wappen {
		bottom: 0;
		left: 0;
		width: calc(146 / 375 * 100%);
	}

	.badge {
		left: -3%;
		width: calc(180 / 375 * 100%);
		transition-delay: 7s;
	}

	.nyukyo {
		position: absolute;
		bottom: 45px;
		left: 30px;
		width: 150px;
		z-index: 1;
	}

	.mvSlider .swiper-pagination {
		gap: 5px;
		right: 30px;
		bottom: 30px;
	}
	.mvSlider .swiper-pagination-bullet {
		width: 20px;
	}
}

/* mvMeritBox
---------------------------------------------- */
.mvMeritBox {
	background: linear-gradient(135deg, rgba(206, 189, 155, 1) 0%, rgba(210, 195, 164, 1) 4.85%, rgba(222, 211, 188, 1) 12.75%, rgba(242, 237, 228, 1) 22.66%, rgba(247, 244, 238, 1) 25%, rgba(242, 237, 228, 1) 27.34%, rgba(222, 211, 188, 1) 37.25%, rgba(210, 195, 164, 1) 45.15%, rgba(206, 189, 155, 1) 50%, rgba(239, 233, 222, 1) 75%, rgba(206, 189, 155, 1) 100%);
}
.mvPriceBox {
	background: linear-gradient(0deg, rgba(0, 14, 57, 1) 0%, rgba(0, 35, 80, 1) 51%, rgba(0, 14, 57, 1) 100%);
	padding-block: 30px;
}
.mvPrice {
	width: min(95%, 1200px);
	margin-inline: auto;
}

@media screen and (max-width: 768px) {
	.mvPriceBox {
		padding-block: 30px;
	}
	.mvPrice {
		width: min(calc(350 / 375 * 100%),560px);
		margin-inline: auto;
	}
}

/* floatingBnr
---------------------------------------------- */
.floatingBnr {
	position: fixed;
	right: 0;
	bottom: 40px;
	width: clamp(300px,calc(340 / 1500 * 100%), 340px);
	box-shadow: 0 0 15px rgba(0 0 0 / .4);
	transition: .4s;
	opacity: 0;
	visibility: hidden;
	z-index: 1;
}
.floatingBnr.active {
	opacity: 1;
	visibility: visible;
}
.floatingBnr.hide {
	opacity: 0;
	visibility: hidden;
}
.floatingBnr.hidden {
	opacity: 0 !important;
	visibility: hidden !important;
}


.floatingBnr__link {
	position: relative;
	display: block;
	box-shadow: 0 0 15px rgba(0 0 0 / .5);
	z-index: 0;
}

.floatingBnrClose {
	position: absolute;
	top: 0;
	right: 0;
	width: calc(30 / 340 * 100%);
	aspect-ratio: 1;
	appearance: none;
	border: none;
	background: #3f0d1a;
	cursor: pointer;
	padding: 0;
	z-index: 1;
}
.floatingBnrClose::before,
.floatingBnrClose::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60%;
	height: 1px;
	background-color: #fff;
	z-index: 1;
}
.floatingBnrClose::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.floatingBnrClose::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.floatingIcon {
	position: fixed;
	bottom: 40px;
	left: 2%;
	width: 100px;
	transition: .4s;
	z-index: 1;
}
.floatingIcon.hidden {
	opacity: 0;
	visibility: hidden;
}
.floatingIconClose {
	position: absolute;
	top: 10px;
	right: 8px;
	width: 25px;
	aspect-ratio: 1;
	appearance: none;
	border: none;
	background: #fff;
	border-radius: 50%;
	cursor: pointer;
	padding: 0;
	z-index: 1;
}
.floatingIconClose::before,
.floatingIconClose::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60%;
	height: 1.5px;
	background-color: #000;
	z-index: 1;
}
.floatingIconClose::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.floatingIconClose::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

@media (hover: hover) and (pointer: fine) {
	.content a.floatingBnr__link:hover {
		opacity: 1;
		filter: brightness(.8);
	}
}

@media screen and (min-width: 769px) {
	.floatingBnr._step {
		left: 50%;
		transform: translateX(-50%);
		width: clamp(660px,calc(1200 / 1500 * 100%), 1200px);
	}
}

@media screen and (max-width: 768px) {
	.floatingBnr {
		bottom: 12vh;
		bottom: 12dvh;
		width: min(calc(160 / 375 * 100%), 200px);
	}

	.floatingBnrClose {
		width: calc(40 / 320 * 100%);
	}

	.floatingIcon {
		bottom: 9vh;
		bottom: 9dvh;
		left: 0;
		width: 80px;
	}
	.floatingIconClose {
		width: 20px;
	}
}

/* merit
-----------------------------------------------------------------*/
.merit {
	padding-block: 10px;
}
.merit__inner {
	width: min(95%,1260px);
	margin-inline: auto;
}

@media screen and (max-width: 768px) {
	.merit {
		padding-block: 15px;
	}
	.merit__inner {
		width: min(calc(350 / 375 * 100%),560px);
	}
}

/* actionArea
-----------------------------------------------------------------*/
.actionArea {
	position: relative;
	background: url(../../asset/img/top/bg_action.png) center/cover no-repeat,
	linear-gradient(45deg, rgba(40, 91, 158, 1) 0%, rgba(23, 73, 133, 1) 33.76%, rgba(6, 56, 109, 1) 74.77%, rgba(0, 50, 100, 1) 100%);
	padding-block: 60px 70px;
	z-index: 0;
}

.actionArea__bnr {
	max-width: 1240px;
}
.actionArea__bnr--medium {
	max-width: 840px;
}
.actionArea__autumn02 {
	max-width: 1310px;
}
.actionArea__bnr + * {
	margin-top: 60px;
}
.actionArea__bnr--autumn {
	max-width: 1302px;
}
* + .actionArea__autumn02 {
	margin-top: 20px;
}
.actionArea__caption {
	color: #fff;
	font-size: 10px;
	letter-spacing: 0.05em;
	line-height: 1.8;
	margin-top: 1em;
}

.actionArea__inner {
	max-width: 1240px;
	gap: 50px calc(80 / 1240 * 100%);
}
* + .actionArea__inner {
	margin-top: 70px;
}

.actionArea__txt {
	position: relative;
	color: #fff;
	font-size: clamp(28px, 1.12rem + 2.19vw, 44px);
	letter-spacing: 0.1em;
	line-height: 1.4;
	text-align: center;
	z-index: 0;
}
.actionArea .num {
	font-size: 146.15384%;
}
.actionArea .em {
	display: block;
	color: #d2aa5a;
	font-style: normal;
	letter-spacing: 0.1em;
	margin-top: 0.1em;
}
.actionArea__txt .small {
	position: absolute;
	bottom: -2.5em;
	right: 0;
	display: block;
	font-size: max(10px, 31.81%);
	letter-spacing: 0.05em;
	z-index: 0;
}

.actionArea__body {
	width: min(100%, 380px);
	/* padding-top: 3%; */
}
.actionArea__btn {
	font-size: clamp(20px, 1.16rem + 1.09vw, 28px);
	background-color: #ad9159;
	color: #fff;
	line-height: 1.4;
	box-shadow: 0 0 10px rgba(0 0 0 / .2);
	text-align: left;
}
.actionArea__btn.has-arrow {
	padding-left: 1.5em;
}
.actionArea__btn .small {
	font-size: 71.4285%;
}

.actionArea .holiday {
	max-width: 1040px;
	margin-top: 80px;
}

.actionArea .holiday__txt {
	background-color: #fff;
	border: 1px solid #911432;
	color: #911432;
	font-size: 18px;
	line-height: 1.6;
	padding-block: 1.5em;
}
.actionArea .holiday__txt .ttl {
	display: block;
	font-style: normal;
	margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
	.actionArea {
		padding-block: 40px;
	}

	.actionArea__bnr {
		max-width: 320px;
		padding-inline: 0;
	}
	.actionArea__bnr--sp-full {
		max-width: 380px;
	}
	.actionArea__bnr--autumn {
		max-width: 350px;
	}
	.actionArea__caption {
		font-size: 9px;
	}

	.actionArea__inner {
		row-gap: 30px;
		max-width: 560px;
	}
	* + .actionArea__inner {
		margin-top: 50px;
	}

	.actionArea__txt {
		/* font-size: 28px; */
	}
	.actionArea .num {
		font-size: 132%;
	}
	.actionArea .em {
		margin-top: 0.2em;
	}
	.actionArea__txt .small {
		position: static;
		margin-top: 1em;
		text-align: right;
	}

	.actionArea__body {
		width: min(100%, 280px);
		padding-top: 0;
	}
	/* .actionArea__btn {
		font-size: 18px;
	} */

	.actionArea .holiday {
		margin-top: 30px;
		padding-inline: 20px;
	}

	.actionArea .holiday__txt {
		font-size: 14px;
		line-height: 1.6;
	}
}

/* information
-----------------------------------------------------------------*/
.information {
	position: relative;
	background: url(../../asset/img/top/bg_texture.png) center/cover no-repeat;
	padding-block: 70px 80px;
	overflow: hidden;
	z-index: 0;
}
.information::before {
	content: '';
	position: absolute;
	top: -2%;
	left: -2%;
	background: url(../../asset/img/top/bg_info.png) top left/contain no-repeat;
	width: calc(1280 / 1500 * 100%);
	height: 560px;
	z-index: -1;
}
.information::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	width: 100%;
	height: 200px;
	z-index: -2;
}

.information .holiday {
	max-width: 1240px;
	margin-block: 0 50px;
}
.information .holiday__txt {
	font-size: 18px;
	background-color: rgb(190 228 243 / .5);
	color: #333;
}

.information__wrap {
	position: relative;
	max-width: 1140px;
	z-index: 3;
}

.information__inner {
	position: relative;
	background-color: #fff;
	padding: 65px min(calc(100 / 1100 * 100%),100px) 80px;
	box-shadow: 0 0 30px rgba(0 0 0 / .15);
	z-index: 0;
}
.information__inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 50px;
	background-color: #e6decd;
	z-index: 1;
}

.information__ttl {
	color: #003264;
	font-size: 22px;
	letter-spacing: 0.05em;
	text-align: center;
}

.informationBox {
	margin-top: 40px;
}
.informationBox > dl {
	display: flex;
	border-bottom: 1px solid #ccd6e0;
}
.information__date {
	position: relative;
	width: 140px;
	color: #ad9159;
	font-size: 18px;
	letter-spacing: 0.15em;
	padding-block: 20px 15px;
	text-align: center;
	z-index: 0;
}
.information__date::before {
	content: '';
	position: absolute;
	bottom: -.5px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #8098b1;
	z-index: 1;
}
.information__txt {
	flex: 1;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.8;
	padding-block: 20px 15px;
	padding-inline: 1.5em;
}

.bnrArea__inner {
	gap: 40px calc(40 / 1200 * 100%);
	max-width: 1240px;
}
.bnrItem {
	width: calc((100% - 40px) / 2);
}
.bnrItem--large {
	width: 100%;
}
.bnrItem--medium {
	width: calc(800 / 1200 * 100%);
	margin-inline: auto;
}
.bnrItem__link {
	display: block;
}
.bnrItem__link.is-shadow {
	box-shadow: 0 0 15px rgba(0 0 0 / .5);
}
.bnrItem__caption {
	font-size: 12px;
	letter-spacing: 0.05em;
	margin-top: 1em;
}

.bnr__more {
	width: 100%;
	color: #003264;
	font-size: 40px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1;
	text-align: center;
}
.bnr__more .txt {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .1em;
}
.bnr__more .txt::before,
.bnr__more .txt::after {
	content: '';
	display: block;
	width: 50px;
	height: 10px;
	background-color: #003264;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	margin-top: 10px;
}
.bnr__more .txt::before {
	transform: rotate(55deg);
}
.bnr__more .txt::after {
	transform: scaleX(-1) rotate(55deg);
}

@media screen and (max-width: 768px) {
	.information {
		padding-block: 30px 40px;
	}
	.information::before {
		width: calc(280 / 320 * 100%);
	}
	.information::after {
		height: 100px;
	}

	.information .holiday {
		margin-block: 0 30px;
		padding-inline: 20px;
	}
	.information .holiday__txt {
		font-size: 13px;
	}

	.information__wrap {
		max-width: 560px;
	}

	.information__inner {
		padding: 40px calc(30 / 335 * 100%);
	}
	.information__inner::before {
		height: 30px;
	}

	.information__ttl {
		font-size: 20px;
	}

	.informationBox {
		margin-top: 20px;
	}
	.informationBox > dl {
		flex-direction: column;
	}
	.informationBox > dl + dl {
		margin-top: 15px;
	}
	.information__date {
		/* width: 100px; */
		font-size: 16px;
		padding-block: 0;
		text-align: left;
	}
	.information__date::before {
		content: none;
	}
	.information__txt {
		font-size: 14px;
		padding: 0 0 15px;
	}

	.bnrArea__inner {
		row-gap: 20px;
	}
	.bnrItem {
		width: min(100%,400px);
	}
	.bnrItem__caption {
		font-size: 10px;
	}

	.bnr__more {
		font-size: 35px;
	}
	.bnr__more .txt::before,
	.bnr__more .txt::after {
		width: 40px;
		height: 8px;
		margin-top: 14px;
	}
}

/*--------------------------------------------------------------------------
	Content
---------------------------------------------------------------------------*/

/* lower
-----------------------------------------------------------------*/
.lower {
	padding-block: 50px;
}

.lower__ttl {
	font-size: 40px;
	letter-spacing: 0.05em;
	color: #003264;
	text-align: center;
}

.lowerBox {
	flex-wrap: nowrap;
	position: relative;
	/* max-width: 1500px; */
	margin-top: 100px;
	margin-inline: auto;
	overflow: revert;
	z-index: 0;
}
.lowerBox:nth-of-type(odd) {
	flex-direction: row-reverse;
}

.lowerBox__img {
	position: relative;
	width: calc(800 / 1500 * 100%);
	z-index: 1;
}

.lowerBox__body {
	position: relative;
	flex: 1;
	padding: min(calc(100 / 1500 * 100%),100px);
	padding-top: min(calc(70 / 1500 * 100%),70px);
	z-index: 0;
}
.lowerBox:nth-of-type(odd) .lowerBox__body {
	padding-inline: min(calc(120 / 1500 * 100%),120px) min(calc(80 / 1500 * 100%),80px);
}
.lowerBox__body::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	background: url(../../asset/img/top/bg_texture.png) bottom right/contain no-repeat;
	width: min(66.66vw,1000px);
	height: 420px;
	z-index: -1;
}
.lowerBox:nth-of-type(odd) .lowerBox__body::before {
	right: auto;
	left: 0;
}
.lowerBox__body::after {
	content: '';
	position: absolute;
	z-index: -1;
}
.lowerBox:nth-of-type(1) .lowerBox__body::after {
	top: -30%;
	left: 0;
	background: url(../../asset/img/top/figure_leaf03.png) right/contain no-repeat;
	width: calc(305 / 700 * 100%);
	height: 387px;
	transform: scaleX(-1);
}
.lowerBox:nth-of-type(2) .lowerBox__body::after {
	bottom: -20%;
	left: 0;
	background: url(../../asset/img/top/figure_leaf02.png) left/contain no-repeat;
	width: 100%;
	height: 470px;
	transform: scaleX(-1);
}
.lowerBox:nth-of-type(3) .lowerBox__body::after {
	bottom: -16%;
	left: 0;
	background: url(../../asset/img/top/figure_leaf01.png) right/contain no-repeat;
	width: calc(440 / 700 * 100%);
	height: 440px;
	transform: scaleX(-1);
}

.lowerBox__ttl {
	line-height: 1;
}
.lowerBox__ttl .en {
	font-size: clamp(44px, -3.42rem + 8.15vw, 88px);
	letter-spacing: 0.04em;
	color: #003264;
}
.lowerBox__ttl .ja {
	display: flex;
	align-items: center;
	gap: 1em;
	font-size: clamp(14px, 0.69rem + 0.74vw, 18px);
	font-weight: 400;
	letter-spacing: 0.1em;
	color: #003264;
	margin-top: 0.5em;
}
.lowerBox__ttl .ja::before {
	content: '';
	display: block;
	width: 30px;
	height: 1px;
	background-color: #8098b1;
}

.lowerBox__copy {
	font-size: clamp(16px, -0.18rem + 1.85vw, 26px);
	letter-spacing: 0.1em;
	line-height: 1.6;
	margin-top: 1.4em;
}
.lowerBox__copy .em {
	font-size: 130%;
	font-style: normal;
	letter-spacing: 0.1em;
	color: #ad9159;
}

.lowerBox__btn {
	max-width: 300px;
	background : linear-gradient(90deg, rgba(40, 91, 158, 1) 0%, rgba(23, 73, 133, 1) 33.76%, rgba(6, 56, 109, 1) 74.77%, rgba(0, 50, 100, 1) 100%);
	font-size: 18px;
	margin-top: 35px;
	padding-block: 1.15em;
}
.lowerBox__btn .txt {
	font-size: clamp(14px, 1.04rem + 0.37vw, 16px);
}

@media screen and (max-width: 960px) {
	.lowerBox {
		flex-wrap: wrap;
		flex-direction: column;
		max-width: 560px;
	}

	.lowerBox__img {
		width: 96%;
	}

	.lowerBox__body {
		flex: revert;
		width: 90.667%;
		margin-bottom: 0;
		margin-left: auto;
		padding: min(calc(40 / 375 * 100%),100px);
		padding-top: min(calc(35 / 375 * 100%),70px);
	}
	.lowerBox:nth-of-type(odd) .lowerBox__body {
		margin-inline: 0 auto;
	}
	.lowerBox__body::before {
		width: 100%;
		height: 160%;
		background-size: cover;
	}

	.lowerBox__btn {
		margin-top: 25px;
		padding-block: 1em;
	}
	.lowerBox__btn .txt {
		font-size: 16px;
	}
}

@media screen and (max-width: 768px) {
	.lower__ttl {
    font-size: 20px;
	}

	.lowerBox {
		margin-top: 40px;
	}
	.lowerBox + .lowerBox {
		margin-top: 60px;
	}

	.lowerBox__body::before {
		height: 140%;
	}

	.lowerBox:nth-of-type(1) .lowerBox__body::after {
		top: -39%;
		width: calc(152 / 340 * 100%);
		height: 193px;
	}
	.lowerBox:nth-of-type(2) .lowerBox__body::after {
		bottom: -3%;
		width: calc(350 / 340 * 100%);
		height: 234px;
	}
	.lowerBox:nth-of-type(3) .lowerBox__body::after {
		bottom: -24%;
		width: calc(308 / 340 * 100%);
		height: 308px;
	}

	.lowerBox__ttl .ja {
		column-gap: .5em;
	}
	.lowerBox__ttl .ja::before {
		width: 20px;
	}
}

/* modal
---------------------------------------------- */
.modalBnr {
	display: grid;
	place-content: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgb(0 0 0 / .8);
	padding: 5%;
	opacity: 0;
	visibility: hidden;
	overflow: auto;
	transition: .4s;
	z-index: 10000;
}
.modalBnr.active {
	opacity: 1;
	visibility: visible;
}
.modalContainer {
	display: flex;
	justify-content: center;
	column-gap: calc(45 / 1090 * 100%);
	position: relative;
	/* max-width: 1090px; */
	max-width: 600px;
	margin-inline: auto;
	z-index: 0;
}
.modalMovieBtn {
	display: block;
	width: calc(730 / 1090 * 100%);
}
.modalBnrLink {
	display: block;
	/* width: calc(259 / 1090 * 100%); */
	width: 100%;
}
.modalBnr__caption {
	max-width: 600px;
	color: #fff;
	font-size: 10px;
	letter-spacing: 0.05em;
	line-height: 1.8;
	margin-top: 1em;
	margin-inline: auto;
}
.modalCloseBtn {
	position: absolute;
	/* top: -30px; */
	/* right: -80px; */
	top: 0;
	right: 0;
	appearance: none;
	background: none;
	box-shadow: none;
	color: #fff;
	background-color: #ad9159;
	border: none;
	width: 50px;
	aspect-ratio: 1;
	text-align: center;
	cursor: pointer;
	padding: 0;
	z-index: 1;
}
/* .modalCloseBtn::after {
	content: 'CLOSE';
	display: block;
	font-family:"Noto Sans JP","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","游ゴシック体", "Yu Gothic", YuGothic,"メイリオ",Meiryo ,"ＭＳ Ｐゴシック" ,"MS P Gothic" ,sans-serif;
	font-size: 14px;
	letter-spacing: 0.05em;
} */
.modalCloseBtn__child {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.modalCloseBtn__child::before,
.modalCloseBtn__child::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 50%;
	height: 2px;
	background-color: #fff;
	z-index: 0;
}
.modalCloseBtn__child::before {
	transform: translateX(-50%) rotate(45deg);
}
.modalCloseBtn__child::after {
	transform: translateX(-50%) rotate(-45deg);
}

.modalMovieBtn:hover {
	opacity: 1 !important;
}

.modalCover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.modaal-wrapper .modaal-close {
	top: 5vh;
	left: auto;
	right: 5vw;
}
.modaal-wrapper .modaal-close::before,
.modaal-wrapper .modaal-close::after {
	height: 100%;
}

	@media screen and (min-width: 769px)  and (max-height: 800px) {
		.modalBnrLink {
			width: min(150vh, 100%);
		}
	}

@media screen and (max-width: 768px) {
	.modalBnr {
		display: block;
		padding-top: 30px;
		/* padding-inline: 30px; */
		padding-inline: 10px;
	}
	.modalContainer {
		flex-direction: column;
		row-gap: 20px;
		width: calc(320 / 355 * 100%);
	}
	.modalMovieBtn {
		width: 45vh;
		max-width: 300px;
		margin-inline: auto;
	}
	.modalBnrLink {
		/* width: 42vh;
		max-width: 280px; */
		margin-inline: auto;
	}
	.modalBnr__caption {
		width: calc(320 / 355 * 100%);
		font-size: 9px;
	}
	.modalCloseBtn {
		width: calc(40 / 320 * 100%);
	}
	.modalCloseBtn::after {
		font-size: 9px;
	}

	.modaal-video-wrap {
		margin-inline: 0 !important;
	}

	.modaal-wrapper .modaal-close::before,
	.modaal-wrapper .modaal-close::after {
		top: 0;
		left: 12.5px;
	}
}