@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: 7.5px;
	height: 15px;
	background-color: rgb(255 255 255 / 1);
	-webkit-mask-image: url(../../asset/img/common/icon_arrow.svg);
	mask-image: url(../../asset/img/common/icon_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%); */
	background-color: #fff;
}
.mvMeritBox::before {
	content: '';
	display: block;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, rgba(150, 121, 21, 1) 0%, rgba(190, 172, 110, 1) 7.69%, rgba(225, 217, 188, 1) 14.96%, rgba(247, 244, 236, 1) 20.1%, rgba(255, 255, 255, 1) 22.64%, rgba(222, 213, 182, 1) 27.81%, rgba(191, 174, 113, 1) 33.12%, rgba(169, 145, 63, 1) 37.57%, rgba(155, 128, 33, 1) 40.93%, rgba(150, 121, 21, 1) 42.81%, rgba(255, 255, 255, 1) 64.04%, rgba(253, 253, 251, 1) 66.38%, rgba(247, 245, 238, 1) 68.83%, rgba(238, 233, 217, 1) 71.33%, rgba(225, 216, 188, 1) 73.87%, rgba(208, 195, 150, 1) 76.44%, rgba(187, 168, 103, 1) 79.03%, rgba(163, 137, 50, 1) 81.59%, rgba(150, 121, 21, 1) 82.82%, rgba(255, 255, 255, 1) 100%);
	opacity: .5;
	z-index: 1;
}
.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;
	position: relative;
	z-index: 0;
}
.mvPriceBox::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 22, 33, 1) 0%, rgba(134, 122, 130, 1) 26.8%, rgba(165, 165, 163, 1) 45.86%, rgba(134, 122, 130, 1) 61.6%, rgba(97, 111, 118, 1) 73.26%, rgba(125, 115, 103, 1) 86.39%, rgba(0, 22, 33, 1) 100%);
	z-index: -1;
}
.mvPrice {
	width: min(95%, 1246px);
	margin-inline: auto;
}

@media screen and (max-width: 768px) {
	.mvMeritBox::before {
		height: 2.5px;
	}
	.mvPriceBox {
		padding-block: 30px;
	}
	.mvPrice {
		width: min(calc(300 / 375 * 100%),400px);
		margin-inline: auto;
	}
}

/* airport
---------------------------------------------- */
.airport {
	position: relative;
	z-index: 0;
}
.airportText {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.airport .p-caption.w {
	background: none;
}

@media screen and (max-width: 768px) {
	.airportText {
		width: calc(300 / 375 * 100%);
	}
}

/* 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);
	}
}

/* pageSection
---------------------------------------------- */
.pageSection {
	padding-block: 100px;
	position: relative;
	z-index: 0;
}

.pageSection__inner {
	display: grid;
	grid-template-columns: calc(480 / 1500 * 100%) 1fr;
	align-items: center;
	column-gap: calc(80 / 1500 * 100%);
}

.pageSectionContents {
	width: 90%;
	max-width: 320px;
	margin-left: auto;
}

.pageTitle {
	display: flex;
	align-items: baseline;
	gap: 1em;
	font-size: 14px;
	letter-spacing: 0.1em;
}
.pageTitle::before {
	content: '';
	display: block;
	width: 30px;
	height: 1px;
}

.pageCopy {
	font-size: clamp(18px, 0.54rem + 1.64vw, 30px);
	letter-spacing: .1em;
	line-height: 1.7;
}
* + .pageCopy {
	margin-top: 1em;
}

* + .pageSectionBtn {
	margin-top: 40px;
}
.pageSectionBtn .btn {
	background: linear-gradient(135deg, rgba(70, 100, 160, 1) 0%, rgba(0, 60, 122, 1) 70%);
	padding-block: .7em;
	padding-right: 2em;
	text-align: left;
}

.pageSectionBody {
	overflow: hidden;
}
.pageSlider {
	width: calc(340 / 1080 * 100%);
	/* overflow: hidden; */
}
.pageSlider .swiper-slide {
	height: auto;
	/* width: calc(340 / 1080 * 100%); */
	width: 340px;
	background-color: #fff;
}
.pageSlider__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: .4s;
}
.pageSlider__body {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 30px calc(20 / 340 * 100%) 20px calc(30 / 340 * 100%);
}
.pageSlider__text {
	font-size: clamp(16px, 1.39rem + 0.27vw, 18px);
	letter-spacing: 0.05em;
	padding-right: 1em;
}
.pageSlider__subText {
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 2.2;
}
* + .pageSlider__subText {
	margin-top: 1em;
}
.pageSlider__arrow {
	display: grid;
	place-content: center;
	width: 60px;
	aspect-ratio: 1;
	background: linear-gradient(135deg, rgba(70, 100, 160, 1) 0%, rgba(0, 60, 122, 1) 70%);
	margin-top: auto;
	margin-left: auto;
}

.sliderControl {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 5%;
  width: calc(800 / 1000 * 100%);
  margin-top: 20px;
}
.sliderControl .swiper-pagination {
  width: auto;
  position: static;
  transform: revert;
  color: #999;
  font-size: clamp(20px, 1.16rem + 1.09vw, 28px);
  font-family: "EB Garamond", serif;
  letter-spacing: 0.1em;
}
.sliderControl .swiper-scrollbar,
.sliderControl .swiper-pagination-progressbar {
  flex: 1;
  height: 1px;
  background: #ccc;
	position: relative;
	inset: auto;
}
.sliderControl .swiper-scrollbar-drag,
.sliderControl .swiper-pagination-progressbar-fill {
  background: #003c7a;
	transform: scale(1);
	transition: .4s;
}

@media screen and (max-width: 768px) {
	.pageSection {
		padding-block: 50px;
	}

	.pageSection__inner {
		display: block;
	}

	.pageSectionContents {
		width: 100%;
		max-width: 400px;
		margin-inline: auto;
	}

	.pageCopy {
		width: calc(300 / 375 * 100%);
		margin-inline: auto;
	}

	.pageSectionBtn {
		max-width: 300px;
		margin-inline: auto;
	}
	* + .pageSectionBtn {
		margin-top: 30px;
	}

	.pageSectionBody {
		margin-top: 30px;
	}
	.pageSlider {
		width: 100%;
	}
	.pageSlider .swiper-slide {
		width: calc(300 / 375 * 100%);
	}
	.pageSlider__body {
		padding: 25px calc(10 / 300 * 100%) 10px calc(25 / 300 * 100%);
	}
	.pageSlider__subText {
		letter-spacing: 0.06em;
		line-height: 1.7;
	}
	.pageSlider__arrow {
		width: 40px;
	}
	.pageSlider__arrow img {
		width: 5px;
	}

	.sliderControl {
		justify-content: center;
		width: calc(300 / 375 * 100%);
		margin-inline: auto;
		margin-top: 15px;
	}
}

/* point
---------------------------------------------- */
.point {
	background: url(../img/top/bg_point.jpg) center/cover no-repeat;
}
.point .pageSectionHead {
	color: #fff;
}
.point .pageTitle::before {
	background-color: rgb(255 255 255 / .5);
}
.point .pageSlider__text {
	margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
	.point {
		background-image: url(../img/top/bg_point_sp.jpg);
	}
	.point .pageSlider__text {
		margin-bottom: 10px;
	}
}

/* voice
---------------------------------------------- */
.voice {
	background: linear-gradient(0deg, rgba(229, 229, 229, 1) 0.06%, rgba(244, 244, 244, 1) 100%);
}
.voice .pageTitle {
	color: #003c7a;
}
.voice .pageTitle::before {
	background-color: rgb(76 118 162 / .5);
}
.voice .pageSlider__subText {
	margin-bottom: 20px;
}
.voice .sliderControl .swiper-scrollbar-drag,
.voice .sliderControl .swiper-pagination-progressbar-fill {
	background: #666;
}

@media screen and (max-width: 768px) {
	.voice .pageSlider__subText {
		margin-bottom: 10px;
	}
}

/* actionArea
-----------------------------------------------------------------*/
.actionArea {
	padding-block: 100px 90px;
	position: relative;
	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 + .actionArea__bnr {
	margin-top: 40px;
}
.actionArea__bnr + .actionArea__bnr--hasCaption {
	margin-top: 60px;
}
.actionArea__bnr--autumn {
	max-width: 1302px;
}
* + .actionArea__autumn02 {
	margin-top: 20px;
}
.actionArea .holiday + .actionArea__bnr {
	margin-top: 80px;
}
.actionArea__caption {
	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__head {
	width: calc(700 / 1200 * 100%);
}
.actionArea__txt {
	position: relative;
	color: #1e1e1e;
	font-size: clamp(26px, 1.76rem + 1.09vw, 34px);
	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: #003c7a;
	font-size: 117.64%;
	font-style: normal;
	letter-spacing: 0.1em;
	border-top: 1px solid #4c76a2;
	border-bottom: 1px solid #4c76a2;
	margin-top: .4em;
	padding-block: 15px;
}
.actionArea__txt .small {
	position: absolute;
	bottom: -2.5em;
	left: 50%;
	transform: translate(-50%, 0);
	display: block;
	font-size: 14px;
	letter-spacing: 0.05em;
	z-index: 0;
}

.actionArea__body {
	width: min(100%, 320px);
	/* padding-top: 3%; */
}
.actionArea__btn {
	font-size: clamp(20px, 1.58rem + 0.55vw, 24px);
	letter-spacing: 0;
	background: linear-gradient(135deg, rgba(90, 90, 90, 1) 0%, rgba(0, 0, 0, 1) 70%);
	color: #fff;
	line-height: 1.3;
	box-shadow: 0 0 10px rgba(0 0 0 / .2);
	padding-block: .8em;
	text-align: left;
}
.actionArea__btn.has-arrow {
	padding-left: 1.5em;
}
.actionArea__btn .small {
	font-size: 66.666%;
}

.actionArea .holiday {
	max-width: 1040px;
	margin-top: 0;
}

.actionArea .holiday__txt {
	background-color: #fff;
	border: 1px solid #911432;
	color: #911432;
	font-size: 18px;
	line-height: 2;
	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: 340px;
		padding-inline: 0;
	}
	.actionArea__bnr + .actionArea__bnr {
		margin-top: 20px;
	}
	.actionArea__bnr + .actionArea__bnr--hasCaption {
		margin-top: 40px;
	}
	.actionArea .holiday + .actionArea__bnr {
		margin-top: 50px;
	}
	.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__head {
		width: 100%;
	}


	.actionArea__txt {
		/* font-size: 28px; */
	}
	.actionArea .num {
		font-size: 132%;
	}
	.actionArea .em {
		margin-top: 0.2em;
	}
	.actionArea__txt .small {
		position: static;
		margin-top: 1em;
		transform: translate(0, 0);
		text-align: center;
	}

	.actionArea__body {
		width: min(100%, 280px);
		padding-top: 0;
	}
	.actionArea__btn.has-arrow {
		justify-content: flex-end;
    gap: 2em;
	}

	.actionArea .holiday {
		padding-inline: 20px;
	}

	.actionArea .holiday__txt {
		font-size: 14px;
		line-height: 1.8;
	}
}

/* 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 {
}

.lower__ttl {
	font-size: 30px;
	letter-spacing: 0.1em;
	color: #b8b8b8;
	text-align: center;
}
.lower__ttl::before {
	content: '';
	display: block;
	width: 1px;
	height: 60px;
	background-color: #ccc;
	margin-inline: auto;
	margin-bottom: 10px;
}

.lowerBox {
	flex-wrap: nowrap;
	position: relative;
	/* max-width: 1500px; */
	margin-top: 70px;
	margin-inline: auto;
	padding-block: 140px;
	overflow: revert;
	z-index: 0;
}
.lowerBox::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: center/cover no-repeat;
	z-index: -1;
}

.lowerBox + .lowerBox {
	margin-top: 0;
}

.lowerBox__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px 5%;
	width: 90%;
	max-width: 1180px;
	margin-inline: auto;
}

.lowerBox__img {
	width: calc(700 / 1180 * 100%);
	position: relative;
	z-index: 1;
}
.lowerBox__link {
	display: block;
	overflow: hidden;
}
.lowerBox__link img {
	transition: .6s;
}

.lowerBox__body {
	flex: 1;
	position: relative;
	z-index: 0;
}

.lowerBox__ttl {
	line-height: 1;
}
.lowerBox__ttl .en {
	font-size: clamp(36px, 0.65rem + 3.83vw, 64px);
	letter-spacing: 0.1em;
	color: #666;
}
.lowerBox__ttl .ja {
	display: flex;
	align-items: center;
	gap: 1em;
	font-size: clamp(16px, 1.18rem + 0.55vw, 20px);
	font-weight: 400;
	letter-spacing: 0.1em;
	color: #003c7a;
	margin-top: 1em;
}
.lowerBox__ttl .ja::before {
	content: '';
	display: block;
	width: 40px;
	height: 11px;
	background-color: #003c7a;
}

.lowerBox__copy {
	font-size: clamp(14px, 0.98rem + 0.55vw, 18px);
	letter-spacing: 0.1em;
	line-height: 2.2;
	margin-top: 1.4em;
}

.lowerBox__btn.has-arrow {
	max-width: 160px;
	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: 14px;
	margin-top: 35px;
	padding-block: .6em;
	justify-content: center;
	gap: 1em;
	padding-inline: 1em;
}
.btn.has-arrow::after {
	width: 5px;
	height: 10px;
	background-color: #b2c4d7;
}

.lowerBox:nth-of-type(even) .lowerBox__ttl .en,
.lowerBox:nth-of-type(even) .lowerBox__copy {
	color: #fff;
	text-shadow: 0 0 20px rgb(0 0 0 / .7);
}

.lowerBox--plan::before {
	background-image: url(../img/top/bg_plan.jpg);
}
.lowerBox--modelroom::before {
	background-image: url(../img/top/bg_modelroom.jpg);
}
.lowerBox--design::before {
	background-image: url(../img/top/bg_design.jpg);
}
.lowerBox--residence::before {
	background-image: url(../img/top/bg_residence.jpg);
}

@media (hover: hover) and (pointer: fine) {
	.lowerBox__link:hover img {
		transform: scale(1.1);
		filter: brightness(.8);
	}
}

@media screen and (min-width: 961px) {
	.lowerBox__inner {
		flex-direction: row-reverse;
	}
}

@media screen and (max-width: 960px) {
	.lowerBox__inner {
		max-width: 560px;
		flex-direction: column;
	}

	.lowerBox__img {
		width: 100%;
	}

	.lowerBox__body {
		flex: revert;
		width: calc(300 / 375 * 100%);
		margin-inline: auto;
	}

	.lowerBox__btn.has-arrow {
		width: 100%;
		max-width: revert;
		margin-top: 25px;
	}
}

@media screen and (max-width: 768px) {
	.lower__ttl {
    font-size: 22px;
	}
	.lower__ttl::before {
		height: 50px;
	}

	.lowerBox {
		margin-top: 40px;
		padding-block: 50px;
	}

	.lowerBox__inner {
		width: 100%;
	}

	.lowerBox__img {
		width: calc(340 / 375 * 100%);
		margin-left: auto;
	}

	.lowerBox__ttl .ja::before {
		width: 32px;
		height: 10px;
	}
	.lowerBox__copy {
		letter-spacing: 0.05em;
		line-height: 2;
	}

	.lowerBox__btn.has-arrow::after {
		position: absolute;
		top: 50%;
		right: 8%;
		transform: translate(0, -50%);
		z-index: 1;
	}

	.lowerBox--plan::before {
		background-image: url(../img/top/bg_plan_sp.jpg);
	}
	.lowerBox--modelroom::before {
		background-image: url(../img/top/bg_modelroom_sp.jpg);
	}
	.lowerBox--design::before {
		background-image: url(../img/top/bg_design_sp.jpg);
	}
	.lowerBox--residence::before {
		background-image: url(../img/top/bg_residence_sp.jpg);
	}
}

/* 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: 800px; */
	max-width: 560px;
	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; */
	background-color: #333;
	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%); */
		width: 30px;
		top: -30px;
	}
	.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;
	}
}