@charset "UTF-8";

.eb {
	font-family: "EB Garamond", serif;
}
.italic {
	font-style: italic;
}
.ib {
	display: inline-block;
}

.icon {
	width: 30px;
	background: rgba(255 255 255 / .3);
	height: auto;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
}
.icon img {
	width: 8px;
}

.swipeIcon {
  display: none;
}

@media screen and (max-width: 768px) {
	.slideWrap {
		position: relative;
		overflow: auto;
		overflow-y: hidden;
		overflow-x: auto;
		z-index: 1;
	}
	.slideWrap img {
		width: 768px;
		max-width: inherit;
	}
	.slideWrap .swipeIcon {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		z-index: 301;
		width: 55px;
		animation: horizontal 1s ease-in-out infinite alternate;
	}
	.swipeIcon img {
		max-width: 100%;
		width: 100%;
	}

	@keyframes horizontal {
		0% {
			transform: translate(-20%, -20%);
		}
		100% {
			transform: translate(30%, -20%);
		}
	}
}

/* main_page
---------------------------------------------- */
.main_page {
	position: relative;
	z-index: 0;
}
.main_page::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: calc(1100 / 1920 * 100%);
	height: 100%;
	clip-path: inset(0 100% 100% 0);
	background: linear-gradient(90deg, rgba(58, 91, 143, 1) 0%, rgba(67, 98, 148, 1) 15.05%, rgba(91, 119, 162, 1) 39.6%, rgba(131, 151, 185, 1) 70.39%, rgba(175, 188, 210, 1) 100%);
	clip-path: polygon(0 0, 87.27% 0, 100% 100%, 0% 100%);
	z-index: 1;
}
.main_pageBox {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.main_pageBoxHead {
	flex: 1;
	padding-inline: 20px;
	opacity: 0;
	transition: .7s ease-out;
}
.main_page__title {
	width: fit-content;
	margin-inline: auto;
}
.main_page__title .en {
	display: block;
	font-size: clamp(20px, 0.86rem + 1.48vw, 37px);
	letter-spacing: 0;
	line-height: 1;
	color: #c4b88a;
	margin-bottom: 1em;
}
.main_page__title .jp {
	font-size: clamp(28px, 0.66rem + 2.78vw, 60px);
	letter-spacing: 0.025em;
	line-height: 1.33;
	color: #fff;
}
.main_page__img {
	width: calc(1344 / 1920 * 100%);
	opacity: 0;
	transform: translate(5px, 0);
	transition: .7s .2s ease-out;
}
.main_page__bg {
	z-index: -2;
}

/* loaded */
.loaded .main_pageBoxHead {
	opacity: 1;
}
.loaded .main_page__img {
	transform: translate(0, 0);
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.main_page figure {
		height: auto;
	}

	.main_page::before {
		width: calc(340 / 375 * 100%);
		height: 300px;
		clip-path: polygon(0 0, 82% 0, 100% 100%, 0% 100%);
	}
	.main_pageBox {
		flex-direction: column;
		row-gap: 35px;
		top: 60px;
		left: 0;
		transform: translate(0, 0);
	}
	.main_pageBoxHead {
		flex: revert;
		width: 100%;
	}
	.main_page__title {
		margin-inline: 0;
	}
	.main_page__img {
		width: calc(360 / 375 * 100%);
		margin-left: auto;
	}
}

/* intro
---------------------------------------------- */
.intro {
	padding-block: 70px 250px;
}
.intro__copy {
	font-size: clamp(20px, 1.33rem + 0.87vw, 30px);
	letter-spacing: 0.05em;
	line-height: 1.7;
	text-align: center;
}

.introListWrap {
	margin-top: 120px;
	padding-bottom: 100px;
	position: relative;
	z-index: 0;
}
.introListWrap::before {
	content: '';
	width: calc(1870 / 1920 * 100%);
	height: calc(250 / 300 * 100%);
	position: absolute;
	bottom: 0;
	right: 0;
	background: linear-gradient(90deg, rgba(246, 244, 237, 1) 0%, rgba(237, 232, 218, 1) 28.21%, rgba(224, 218, 194, 1) 72.66%, rgba(220, 212, 185, 1) 100%);
	clip-path: polygon(3% 0, 100% 0, 100% 100%, 0% 100%);
	z-index: -1;
}
.introList {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px calc(20 / 1200 * 100%);
	width: 90%;
	max-width: 1620px;
	margin-inline: auto;
}
.introList__btn {
	display: block;
	width: 100%;
	height: 100%;
	box-shadow: 5px 5px 5px rgba(0 0 0 / .2);
	position: relative;
	z-index: 0;
}
.introList__title {
	display: inline-block;
	background-color: #c4b88a;
	color: #fff;
	clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
	font-size: clamp(20px, 1.33rem + 0.87vw, 30px);
	line-height: 1;
	filter: drop-shadow(5px 5px 5px rgb(0 0 0 / .2));
	padding: 0 1em .2em .7em;
	position: absolute;
	top: -20px;
	left: 5%;
}
.introList__title .num {
	font-size: 175%;
	letter-spacing: 0;
	line-height: 1;
}
.introList__box {
	display: grid;
	place-content: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	padding-top: 7%;
	z-index: 1;
}
.introList__text {
	font-size: clamp(22px, 1.67rem + 0.7vw, 30px);
	letter-spacing: 0.05em;
	line-height: 1.3;
	color: #fff;
	text-align: center;
}
.introList__btn .icon {
	width: calc(30 / 390 * 100%);
	position: absolute;
	right: 5%;
	bottom: 10%;
	transform: rotate(90deg);
	z-index: 1;
}

@media screen and (max-width: 768px) {
	.intro {
		padding-block: 40px 100px;
	}

	.introListWrap {
		padding-bottom: 50px;
	}
	.introListWrap::before {
		width: calc(320 / 375 * 100%);
		height: calc(740 / 690 * 100%);
		clip-path: polygon(47% 0, 100% 0, 100% 100%, 0% 100%);
	}
	.introList {
		grid-template-columns: 1fr;
		width: calc(340 / 375 * 100%);
		max-width: 400px;
	}
	.introList__box {
		padding-top: 0;
	}
	.introList__title {
		left: 3%;
	}
	.introList__btn .icon {
		width: calc(30 / 340 * 100%);
		bottom: 14%;
	}
	.introList__bg {
		aspect-ratio: 340 / 130;
	}
	.introList__bg img {
		object-fit: cover;
		height: 100%;
	}
}

/* merit
---------------------------------------------- */
.merit {
	position: relative;
	z-index: 0;
}
.merit + .merit {
	margin-top: 250px;
}
.meritHead {
	position: relative;
	z-index: 0;
}
.meritHead::before {
	content: '';
	position: absolute;
	bottom: 0;
	z-index: -1;
}
.meritHead__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: calc(100 / 1920 * 100%);
}
.meritHeadBody {
	flex: 1;
	color: #fff;
}
.merit__title {
	font-size: clamp(40px, -2.01rem + 7.82vw, 130px);
	letter-spacing: 0;
	line-height: 1;
	color: #c4b88a;
}
.merit__title .num {
	font-size: 150%;
	line-height: 1;
}
.meritHead__copy {
	font-size: clamp(24px, 1.6rem + 1.04vw, 36px);
	letter-spacing: 0.025em;
	line-height: 1.75;
	margin-top: 1.5em;
}
.meritHead__text {
	font-size: clamp(16px, 1.47rem + 0.17vw, 18px);
	letter-spacing: 0.05em;
	line-height: 1.75;
	margin-top: 2em;
}

.pageLink {
	max-width: 900px;
	margin-left: auto;
}
* + .pageLink {
	margin-top: 100px;
}
.pageLink__link {
	display: block;
	width: 100%;
	height: 100%;
	filter: drop-shadow(10px 10px 10px rgb(0 0 0 / .1));
	position: relative;
	z-index: 0;
}
.pageLink__text {
	display: flex;
	align-items: center;
	gap: 20px;
	width: 100%;
	font-size: 26px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.4;
	color: #fff;
	padding: 40px 120px;
	padding-right: 80px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.pageLink__bg {
	transition: .4s;
}


/* merit01 */
.flow {
	margin-top: 100px;
}

.comparison {
	max-width: 1620px;
	margin-top: 100px;
}
.comparisonHead {
	background-color: #3a5b8f;
	color: #fff;
	padding: 40px;
	position: relative;
	z-index: 0;
}
.comparisonHead::after {
	content: '';
	position: absolute;
	top: 99.5%;
	left: 50%;
	transform: translate(-50%, 0);
	width: 40px;
	height: 20px;
	background-color: inherit;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	z-index: 1;
}
.comparisonHead__text {
	font-size: clamp(22px, 1.67rem + 0.7vw, 30px);
	letter-spacing: 0.05em;
	line-height: 1.7;
	text-align: center;
}
.comparisonHead__text .marker {
	background:linear-gradient(transparent 70%, rgb(255 255 0 / .5) 0%);
}
.comparisonHead__text .em {
	font-weight: 600;
}

.comparisonBody {
	background-color: #ebeff4;
	padding: 40px calc(210 / 1620 * 100%) 140px;
}
.comparisonBox__text {
	font-size: clamp(18px, 1.4rem + 0.52vw, 24px);
	letter-spacing: 0.05em;
	line-height: 1.75;
	text-align: center;
}
.comparisonBox__text .em {
	font-size: 125%;
	font-weight: 600;
	line-height: 1;
}
* + .comparisonBox__text {
	margin-top: 40px;
}
.comparisonBox__text + .comparisonBox__text {
	margin-top: 1.5em;
}
.comparisonBox__title {
	font-size: clamp(20px, 1.33rem + 0.87vw, 30px);
	font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.75;
	background-color: #d8dee9;
	color: #3a5b8f;
	padding: 0.5em;
	text-align: center;
}
* + .comparisonBox__title {
	margin-top: 30px;
}
.comparisonBox__img {
	margin-top: 40px;
}
.comparisonBox__desc {
	background-color: #fff;
	border-radius: 20px;
	padding: 40px;
}
* + .comparisonBox__desc {
	margin-top: 40px;
}
.comparisonBox__descText {
	font-size: clamp(18px, 1.4rem + 0.52vw, 24px);
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 2;
	color: #3a5b8f;
	text-align: center;
}
.comparisonBox__descText .em {
	font-size: 125%;
	font-weight: 600;
	line-height: 1;
}
.comparisonBox__descText .marker {
	font-weight: 600;
	background: linear-gradient(transparent 70%, #ffe100 0%);
}

.comparisonBox02 {
	margin-top: 100px;
}

.comparisonBox__tri {
	width: 200px;
	height: 50px;
	background-color: #c4b88a;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	margin: 50px auto;
}

.meritColumn {
	margin-top: 100px;
	padding-block: 100px;
	position: relative;
	z-index: 0;
}
.meritColumn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: calc(1500 / 1920 * 100%);
	height: 100%;
	background: linear-gradient(-90deg, rgba(246, 244, 237, 1) 0%, rgba(237, 232, 218, 1) 28.21%, rgba(224, 218, 194, 1) 72.66%, rgba(220, 212, 185, 1) 100%);
	clip-path: polygon(0 0, 87.27% 0, 100% 100%, 0% 100%);
	z-index: -1;
}
.meritColumnBox {
	display: flex;
	align-items: flex-start;
	gap: calc(80 / 1200 * 100%);
}
.meritColumnBoxHead {
	flex: 1;
}
.meritColumnBody {
	width: calc(500 / 1200 * 100%);
}
.meritColumn__copy {
	font-size: clamp(24px, 2rem + 0.52vw, 30px);
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.7;
}
.meritColumn__text {
	font-size: clamp(16px, 1.47rem + 0.17vw, 18px);
	letter-spacing: 0.05em;
	line-height: 1.7;
	margin-top: 1.5em;
}

/* merit02 */
.merit02::before {
	content: '';
	position: absolute;
	bottom: 100px;
	left: 0;
	width: 100%;
	height: 80%;
	background-color: #ebeff4;
	z-index: -1;
}
.merit02 .meritBody {
	margin-top: 100px;
}
.merit02 .meritBody__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px calc(20 / 1620 * 100%);
	max-width: 1620px;
}

/* merit03 */
.merit03::before {
	content: '';
	position: absolute;
	bottom: 100px;
	left: 0;
	width: 100%;
	height: 80%;
	background-color: #f8f8f1;
	z-index: -1;
}
.merit03 .meritBody {
	margin-top: 100px;
}
.merit03 .meritBody__inner {
	max-width: 1100px;
}

/* merit04 */
.merit04::before {
	content: '';
	position: absolute;
	bottom: 100px;
	left: 0;
	width: 100%;
	height: 80%;
	background-color: #ebeff4;
	z-index: -1;
}
.merit04 .meritBody {
	margin-top: 100px;
}
.merit04 .meritBody__inner {
	max-width: 1620px;
	margin-top: -10%;
}

@media (hover: hover) and (pointer: fine) {
	.pageLink__link:hover .pageLink__bg {
		filter: brightness(1.4);
	}
}

@media screen and (min-width: 769px) {
	/* merit01 */
	.merit01 .meritHead {
		padding-bottom: 100px;
	}
	.merit01 .meritHead::before {
		right: 0;
		width: calc(1440 / 1920 * 100%);
		height: calc(480 / 580 * 100%);
		background: linear-gradient(90deg, rgba(175, 188, 210, 1) 0%, rgba(131, 151, 185, 1) 29.61%, rgba(91, 119, 162, 1) 60.4%, rgba(67, 98, 148, 1) 84.95%, rgba(58, 91, 143, 1) 100%);
		clip-path: polygon(7% 0, 100% 0, 100% 100%, 0% 100%);
	}
	.merit01 .meritHead__img {
		width: calc(800 / 1920 * 100%);
	}
	.merit01 .meritHeadBody {
		margin-top: -1%;
	}

	/* merit02 */
	.merit02 .meritHead {
		padding-bottom: 100px;
	}
	.merit02 .meritHead::before {
		left: 0;
		width: calc(1150 / 1920 * 100%);
		height: calc(600 / 760 * 100%);
		background: linear-gradient(90deg, rgba(58, 91, 143, 1) 0%, rgba(67, 98, 148, 1) 15.05%, rgba(91, 119, 162, 1) 39.6%, rgba(131, 151, 185, 1) 70.39%, rgba(175, 188, 210, 1) 100%);
		clip-path: polygon(0 0, 93% 0, 100% 100%, 0% 100%);
	}
	.merit02 .meritHead__inner {
		flex-direction: row-reverse;
	}
	.merit02 .meritHead__img {
		width: calc(1100 / 1920 * 100%);
	}
	.merit02 .meritHeadBody {
		margin-top: 1%;
		padding-left: calc(150 / 1920 * 100%);
	}

	/* merit03 */
	.merit03 .meritHead {
		padding-bottom: 100px;
	}
	.merit03 .meritHead::before {
		right: 0;
		width: calc(1150 / 1920 * 100%);
		height: calc(600 / 760 * 100%);
		background: linear-gradient(90deg, rgba(175, 188, 210, 1) 0%, rgba(131, 151, 185, 1) 29.61%, rgba(91, 119, 162, 1) 60.4%, rgba(67, 98, 148, 1) 84.95%, rgba(58, 91, 143, 1) 100%);
		clip-path: polygon(7% 0, 100% 0, 100% 100%, 0% 100%);
	}
	.merit03 .meritHead__img {
		width: calc(1100 / 1920 * 100%);
	}
	.merit03 .meritHeadBody {
		margin-top: 1%;
		padding-right: 30px;
	}

	/* merit04 */
	.merit04 .meritHead {
		padding-block: 100px 160px;
	}
	.merit04 .meritHead::before {
		left: 0;
		width: calc(1440 / 1920 * 100%);
		height: 100%;
		background: linear-gradient(90deg, rgba(58, 91, 143, 1) 0%, rgba(67, 98, 148, 1) 15.05%, rgba(91, 119, 162, 1) 39.6%, rgba(131, 151, 185, 1) 70.39%, rgba(175, 188, 210, 1) 100%);
		clip-path: polygon(0 0, 93% 0, 100% 100%, 0% 100%);
	}
	.merit04 .meritHeadBody {
		display: flex;
		align-items: flex-start;
		gap: 5%;
		padding-left: calc(150 / 1920 * 100%);
	}
	.merit04 .merit__title {
		margin-top: 2%;
	}
}

@media screen and (max-width: 768px) {
	.merit + .merit {
		margin-top: 100px;
	}
	.meritHead {
		padding-bottom: 50px;
	}
	.meritHead::before {
		width: 100%;
		height: 80%;
		background: linear-gradient(-90deg, rgba(58, 91, 143, 1) 0%, rgba(67, 98, 148, 1) 15.05%, rgba(91, 119, 162, 1) 39.6%, rgba(131, 151, 185, 1) 70.39%, rgba(175, 188, 210, 1) 100%);
	}
	.merit02 .meritHead::before,
	.merit04 .meritHead::before {
		background: linear-gradient(90deg, rgba(58, 91, 143, 1) 0%, rgba(67, 98, 148, 1) 15.05%, rgba(91, 119, 162, 1) 39.6%, rgba(131, 151, 185, 1) 70.39%, rgba(175, 188, 210, 1) 100%);
	}
	.meritHead__inner {
		row-gap: 30px;
	}
	.meritHead__img {
		width: calc(340 / 375 * 100%);
	}
	.merit02 .meritHead__img,
	.merit04 .meritHead__img {
		margin-left: auto;
	}
	.meritHeadBody {
		flex: revert;
		width: calc(300 / 375 * 100%);
		margin-inline: auto;
	}
	.meritHead__copy {
		line-height: 1.5;
		margin-top: 1em;
	}
	.meritHead__text {
		margin-top: 1.5em;
	}

	.pageLink {
		max-width: 360px;
	}
	* + .pageLink {
		margin-top: 50px;
	}
	.pageLink__text {
		justify-content: flex-end;
		gap: 20px;
		font-size: 18px;
		line-height: 1.7;
		padding: 40px 40px;
		padding-right: 20px;
		text-align: right;
	}
	.pageLink .icon {
		width: 22px;
	}
	.pageLink .icon img {
		width: 6px;
	}

	/* merit01 */
	.flow {
		width: 100%;
		background-color: #f8f8f1;
		margin-top: 50px;
		padding: 27.5px;
	}

	.comparison {
		width: 100%;
		margin-top: 50px;
	}
	.comparisonHead {
		padding: 30px 10px;
	}
	.comparisonHead__text .marker {
		background:linear-gradient(transparent 80%, rgb(255 255 0 / .5) 0%);
	}

	.comparisonBody {
		padding: 60px calc(17.5 / 375 * 100%) 50px;
	}
	.comparisonBox__title {
		padding-block: 1.2em;
	}
	* + .comparisonBox__title {
		margin-top: 40px;
	}
	.comparisonBox__text {
		line-height: 1.85;
	}
	.comparisonBox__img {
		max-width: 400px;
		margin-inline: auto;
		margin-top: 30px;
	}
	.comparisonBox__desc {
		border-radius: 10px;
		padding: 25px 0;
	}
	* + .comparisonBox__desc {
		margin-top: 30px;
	}
	.comparisonBox__descText .marker {
		background: linear-gradient(transparent 80%, #ffe100 0%);
	}

	.comparisonBox02 {
		margin-top: 50px;
	}

	.comparisonBox__tri {
		margin: 40px auto;
	}

	.meritColumn {
		margin-top: 50px;
		padding-block: 0 50px;
	}
	.meritColumn::before {
		top: auto;
		bottom: 0;
		width: 100%;
		height: 80%;
		clip-path: revert;
	}
	.meritColumnBox {
		flex-direction: column-reverse;
		row-gap: 50px;
		width: 100%;
		margin-inline: auto;
	}
	.meritColumnBoxHead {
		flex: revert;
		width: calc(280 / 375 * 100%);
		margin-inline: auto;
	}
	.meritColumnBody {
		width: calc(340 / 375 * 100%);
		margin-left: auto;
	}
	.meritColumn__copy {
		font-size: clamp(24px, 2rem + 0.52vw, 30px);
		font-weight: 500;
		letter-spacing: 0.05em;
		line-height: 1.7;
	}
	.meritColumn__text {
		font-size: clamp(16px, 1.47rem + 0.17vw, 18px);
		letter-spacing: 0.05em;
		line-height: 1.7;
		margin-top: 1.5em;
	}

	/* merit02 */
	.merit02::before {
		bottom: 60px;
	}
	.merit02 .meritBody {
    margin-top: 60px;
	}
	.merit02 .meritBody__inner {
		grid-template-columns: 1fr;
		width: calc(320 / 375 * 100%);
	}

	/* merit03 */
	.merit03 .meritBody {
    margin-top: 60px;
	}
	.merit03 .meritBody__inner {
		width: calc(320 / 375 * 100%);
	}
	.merit03::before {
		bottom: 60px;
	}

	/* merit04 */
	.merit04::before {
		bottom: 60px;
	}
	.merit04 .meritHead {
		padding-block: 50px 80px;
	}
	.merit04 .meritHead::before {
		height: 100%;
	}
	.merit04 .meritBody {
		margin-top: 0;
	}
	.merit04 .meritBody__inner {
		width: calc(320 / 375 * 100%);
	}

}

/* actionArea
---------------------------------------------- */
.actionArea {
	margin-top: 200px;
	padding-bottom: 200px;
}
.actionAreaBox {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	max-width: 1520px;
	background: url(../imgs/bg_reserve.jpg) center/cover no-repeat;
	padding-block: 80px;
}

.actionAreaBox__text {
	flex: 1;
	color: #fff;
	font-size: clamp(30px, 2.33rem + 0.87vw, 40px);
	letter-spacing: 0.05em;
	line-height: 1.3;
	text-align: center;
}
.actionAreaBox__text .small {
	font-size: 75%;
}
.actionAreaBox__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6%;
	width: calc(550 / 1520 * 100%);
	background-color: #942a26;
	color: #fff;
	clip-path: polygon(3% 0, 100% 0, 100% 100%, 0% 100%);
	font-size: 24px;
	letter-spacing: 0.05em;
	line-height: 1.5;
	padding: 1.5em 1em;
	transition: .4s;
}
.actionAreaBox__btn:hover {
	color: #fff;
}

@media (hover: hover) and (pointer: fine) {
	.actionAreaBox__btn:hover {
		filter: brightness(.7);
	}
}

@media screen and (max-width: 768px) {
	.actionArea {
		margin-top: 100px;
		padding-bottom: 100px;
	}
	.actionAreaBox {
		flex-direction: column;
		row-gap: 25px;
		width: calc(340 / 375 * 100%);
		max-width: 400px;
		background: url(../imgs/bg_reserve.jpg) center/cover no-repeat;
		padding-block: 40px;
	}

	.actionAreaBox__text {
		flex: revert;
		width: 100%;
	}
	.actionAreaBox__btn {
		align-self: flex-end;
		gap: 6%;
		width: calc(100% - 10px);
		clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
		font-size: 18px;
		padding-left: 2em;
	}
}