@charset "utf-8";

body {
	opacity: 0;
	transition: .4s;
	/* overflow: hidden; */
}
body.loaded {
	opacity: 1;
}

.main {
	padding-top: 148px;
}

@media screen and (min-width: 769px) {
	#page,
	.main {
		overflow: revert;
	}
}

@media screen and (max-width: 1024px) {
	.main {
		padding-top: 118px;
	}
}

/* loading
---------------------------------------------- */
.loading {
	transition: 1.3s;
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 100000;
}

.loading__text {
	font-size: clamp(40px, 1.84rem + 1.37vw, 50px);
	font-weight: 500;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	clip-path: inset(0 100% 0 0);
	/* transition: 1s .4s cubic-bezier(0.01, 0.52, 0.36, 1); */
	transition: 2s .6s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
	white-space: nowrap;
	z-index: 1;
}

.loadingImg {
	height: 100%;
	overflow: hidden;
	position: relative;
	z-index: 0;
}
.loadingImg::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background: url(../img/top/bg_loading-cover.png) center/cover no-repeat;
	transition: .6s;
	z-index: 1;
}
.loadingImg img {
	height: 100%;
	filter: blur(20px);
	transform: scale(1.2);
	transition: 1.4s;
	object-fit: cover;
}

.loaded .loading__text {
	clip-path: inset(0);
}
.loading.is-active .loading__text {
	transition: 1s 0s;
}
/* .loading.is-active02 .loading__text {
	opacity: 0;
} */
/* .loading.is-active02 .loadingImg::before {
	opacity: 0;
} */
/* .loading.is-active02 .loadingImg img {
	filter: blur(0);
} */
.loading.is-hide {
	opacity: 0;
	transform: scale(1.1);
	visibility: hidden;
}

/* header
---------------------------------------------- */
.headerWrap {
	transform: translateY(-278px);
	transition: transform 1s;
	position: relative;
	z-index: 10000;
}
body.is-active .headerWrap {
	transform: translateY(0);
}

/* #phg-header{
	overflow: hidden;
} */


@media screen and (min-width: 1025px) {
	.headerWrap {
		position: relative;
	}

	#phg-header {
		position: absolute;
		top: 0;
		width: 100%;
	}
	.header {
		position: absolute;
		top: 148px;
		background-color: transparent;
		transition: background-color .4s, top 0s, transform 1s;
	}
	.header.is-scroll {
		position: fixed;
		top: 0;
		background-color: #fff;
	}

	.header.pc-scroll {
		position: fixed;
		top: 0;
		transform: translateY(-130px);
	}
	.header.pc-scroll02 {
		transform: translateY(0);
	}
}

@media screen and (max-width: 1024px) {
	.headerWrap {
		position: fixed;
		top: 0;
		width: 100%;
		transform: translateY(-118px);
		z-index: 10000;
	}
	body.is-active .headerWrap {
		transform: revert;
	}
	.header {
		z-index: 100000;
	}
}

/* mv
---------------------------------------------- */
.mv {
	position: relative;
	z-index: 0;
}

.bbsBox {
  position: absolute;
  bottom: 40px;
  left: 40px;
  border-radius: 10px;
  z-index: 10;
}
.bbs--new {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -14px;
	right: -14px;
	width: 28px;
	aspect-ratio: 1;
	border-radius: 50%;
	background-color: #b90000;
	color: #fff;
	text-align: center;
	z-index: 1;
}

.bbs_wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.bbs_left {
  padding: 16px 0px;
  background-color: #333;
  width: 80px;
  flex-shrink: 0;
}
.bbs_title {
	font-size: 13px;
	letter-spacing: 0.05em;
	color: #fff;
  text-align: center;
}
.bbs_right {
	flex: 1;
}
.bbs{
  align-items: center;
  display: flex;
  width: 90%;
  overflow:hidden;
  margin-inline: auto;
  white-space:nowrap;
  z-index: 1;
}
.bbs ul {
  margin: 0;
  padding: 0;
}
.bbs ul li{
  display: inline-block;
  padding-right: 30px;
}
.bbs ul li a{
	display: flex;
	align-items: center;
}
.bbs_data {
	font-size: 12px;
}
.bbs_text {
	font-size: 14px;
	line-height: 1.3;
	border-left: 1px solid #ccc;
	margin-left: 1em;
	padding-left: 1em;
}

.bbsBox--loop {
  width: 100%;
  max-width: 450px;
}
.bbsBox--loop .bbs {
  justify-content: center;
  margin-inline: revert;
}
.bbsBox--loop .bbs ul {
  animation: flowing 10s linear infinite;
  transform:translateX(100%);
}

@keyframes flowing {
  0% { transform:translateX(0); }
  100% { transform:translateX(-100%); }
}

@media only screen and (max-width:768px) {
  .bbsBox {
    position: relative;
		inset: auto;
    width: 100%;
    max-width: revert;
  }

	.bbs--new {
    top: 50%;
    right: 10px;
		transform: translateY(-50%);
    width: 15px;
		font-size: 10px;
	}

	.bbs_wrap {
		border-radius: 0;
	}

  .bbs_left {
		padding-block: 5px;
    width: 60px;
    flex-shrink: 0;
  }
	.bbs_right {
		padding-right: 30px;
		overflow: hidden;
	}
	.bbs_text {
		font-size: 13px;
	}
}

/* merit
---------------------------------------------- */
.merit {
	background: url(../img/top/bg_texture.jpg) center/500px;
}
.meritList {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.meritList > li {
	position: relative;
	z-index: 0;
}
.meritList > li + li::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 1px;
	height: calc(80 / 120 * 100%);
	background-color: rgb(51 51 51 / .4);
	z-index: 1;
}

.meritList__link {
	display: block;
	position: relative;
	z-index: 0;
}
.meritList__link::before {
	content: '';
	position: absolute;
	bottom: 20px;
	right: 6%;
	width: 13px;
	aspect-ratio: 1;
	background-color: #333;
	-webkit-mask-image: url(../img/common/icon_arrow-tr.svg);
	mask-image: url(../img/common/icon_arrow-tr.svg);
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	transform-origin: right;
	opacity: .4;
	transition: .4s;
	z-index: 1;
}

.meritList__link--nolink {
	pointer-events: none;
}
.meritList__link--nolink::before {
	content: none;
}

.meritPrice {
	background: linear-gradient(90deg, rgba(102, 85, 69, 1) 0%, rgba(161, 136, 88, 1) 50%, rgba(102, 85, 69, 1) 100%);
	color: #fff;
	padding-block: 20px;
}
.meritPrice__text {
	font-size: clamp(22px, 1.36rem + 1.09vw, 30px);
	letter-spacing: 0.025em;
	text-align: center;
}
.meritPrice__text em {
	line-height: 1;
}
.meritPrice__text .num {
	font-size: 175%;
}
.meritPrice__text .num-medium {
	font-size: 125%;
}
.meritPrice__text .small {
	font-size: 75%;
}

.meritText {
	background-color: #fff;
	padding-block: clamp(30px, 1.25rem + 2.67vw, 60px);
}
.meritText__copy {
	font-size: clamp(16px, 0.71rem + 1.24vw, 30px); /* 375 - 1500 */
	letter-spacing: 0.01em;
	line-height: 1.8;
	text-align: center;
}
.meritText__copy .marker {
	background: linear-gradient(transparent 70%, #efe9db  0%);
}
.meritText__copy .small {
	font-size: max(10px, calc(14 / 30 * 100%));
}

@media (hover: hover) and (pointer: fine) {
	.meritList__link:hover::before {
		transform: scale(1.2) translate(3px, -3px);
		background-color: #b19654;
		opacity: 1;
	}
}

@media screen and (max-width: 768px) {
	.meritList {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin-inline: auto;
	}
	.meritList > li + li::before {
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: calc(340 / 375 * 100%);
		height: 1px;
	}
	/* .meritList > li::before,
	.meritList > li + li::before {
		content: '';
		position: absolute;
		top: auto;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: calc(340 / 375 * 100%);
		height: 1px;
		background-color: rgb(51 51 51 / .4);
		z-index: 1;
	} */
	.meritText__copy {
		width: 95%;
		line-height: 2;
	}
}

/* holiday
-----------------------------------------------------------------*/
.holiday {
	max-width: 640px;
	margin-bottom: 80px;
}
.holiday__text {
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 1.8;
	background-color: rgb(255 255 255 / .1);
	border: 1px solid #911432;
  color: #911432;
	padding: 1em .5em;
	text-align: center;
}
.holiday__title {
	display: block;
	font-size: 16px;
	margin-bottom: 10px;
}
.holiday__txt .small {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .holiday {
		margin-bottom: 20px;
	}
	.holiday__text {
		font-size: 13px;
		padding: 1em;
	}
	.holiday__title {
		font-size: 14px;
	}
  .holiday__txt .small {
    font-size: 10px;
    margin-top: 5px;
  }
}

/*infoWrap
---------------------------------------------- */


/* actionArea
---------------------------------------------- */
.actionArea {
	display: grid;
	grid-template-columns: 1fr calc(1000 / 1500 * 100%);
}

/* information */
.information {
	display: flex;
	align-items: center;
	padding: 30px;
}
.information__inner {
	width: 100%;
	max-width: 380px;
	margin-inline: auto;
}

.informationHead {
	margin-top: 40px;
}
.information__copy {
	font-size: clamp(20px, 0.72rem + 1.09vw, 28px);
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.7;
}
.information__text {
	font-size: clamp(14px, 0.61rem + 0.55vw, 18px);
	line-height: 2.38;
	margin-top: 2em;
}

.informationBody {
	max-width: 350px;
	margin-top: 40px;
}
.informationBody__item + .informationBody__item {
	margin-top: 20px;
}

/* pickup */
.pickup {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 0;
}
.pickup::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #94928a;
	border-radius: 100px 0 0 0;
	z-index: -1;
}

.pickup__inner {
	min-width: 0;
	padding-block: 100px;
	padding-left: calc(50 / 1000 * 100%);
}

.pickup__title {
	color: #fff;
}

.pickupSliderWrap {
	margin-top: 50px;
}
.pickupSlider {
	overflow: hidden;
}
.pickupSlider .swiper-slide {
	width: 350px;
	box-shadow: 5px 5px 5px rgba(0 0 0 / .1);
	border-radius: 50px 0 0 0;
	overflow: hidden;
}
.pickupSlider__link--new {
	position: relative;
	z-index: 0;
}
.pickupSlider__link--new::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	background: url(../img/common/icon_new.png) center/contain no-repeat;
	width: calc(56 / 350 * 100%);
	aspect-ratio: 1;
	z-index: 1;
}
.pickupSlider__img {
	overflow: hidden;
}
.pickupSlider__img img {
	transition: .4s;
}
.pickupSlider__body {
	background-color: #fff;
	padding: 20px;
	position: relative;
	z-index: 0;
}
.pickupSlider__body::before {
	content: '';
	position: absolute;
	bottom: 15px;
	right: 5%;
	width: 13px;
	aspect-ratio: 1;
	background-color: #ccc;
	-webkit-mask-image: url(../img/common/icon_arrow-tr.svg);
	mask-image: url(../img/common/icon_arrow-tr.svg);
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	transform-origin: right;
	transition: .4s;
	z-index: 1;
}
.pickupSlider__text {
	font-size: clamp(11px, 0.49rem + 0.41vw, 14px);
	line-height: 2;
}

.pickupSliderControl {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
}

.pickupSliderNav {
	display: flex;
	align-items: center;
	gap: 20px;
}

.pickupSliderWrap .swiper-button-prev,
.pickupSliderWrap .swiper-button-next {
	position: static;
	margin: 0 !important;
	transform: translateY(0);
	background: none;
	border: 1px solid rgb(204 204 204 / .5);
	box-shadow: none;
	transition: border .3s;
}
.pickupSliderWrap .swiper-button-prev::before,
.pickupSliderWrap .swiper-button-next::before {
	border-color: #fff;
}

.pickupSliderWrap .swiper-pagination {
	position: static;
	width: auto;
	color: #ccc;
	font-family: "EB Garamond", serif !important;
	letter-spacing: 0.05em;
}
.pickupSliderWrap .swiper-pagination-current {
	color: #fff;
}

@media (hover: hover) and (pointer: fine) {
	.pickupSlider__link:hover .pickupSlider__img img {
		transform: scale(1.1);
	}
	.pickupSlider__link:hover .pickupSlider__body::before {
		transform: scale(1.2) translate(3px, -3px);
		background-color: #666;
	}

	.pickupSliderWrap .swiper-button-prev:hover,
  .pickupSliderWrap .swiper-button-next:hover {
    border-color: rgb(255 255 255 / 1);
  }
}

@media screen and (max-width: 1024px) {
	.infoWrap {
		display: flex;
		flex-direction: column-reverse;
	}

	.actionArea {
		grid-template-columns: 100%;
	}

	/* information */
	.informationHead {
		margin-top: 25px;
	}

	.information__inner {
		max-width: 560px;
	}
	.information__text {
		line-height: 1.6;
		margin-top: 1.5em;
	}

	.informationBody {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		max-width: revert;
		margin-top: 30px;
		margin-inline: auto;
	}
	.informationBody__item + .informationBody__item {
		margin-top: 0;
	}
	.informationBody__btn {
		font-size: 13px;
	}

	/* pickup */
	.pickup {
	}
	.pickup::before {
		border-radius: 0;
	}

	.pickup__inner {
		width: 100%;
		padding-block: 40px;
		padding-left: 0;
	}

	.pickupHead {
		width: calc(320 / 375 * 100%);
		margin-inline: auto;
	}

	.pickupSliderWrap {
		margin-top: 0;
		padding-top: 30px;
		position: relative;
		z-index: 0;
	}
	.pickupSlider .swiper-slide {
		/* width: calc(360 / 1024 * 100%); */
		width: 360px;
	}
	.pickupSlider__body {
		padding: 15px;
	}
	.pickupSlider__body::before {
		bottom: 10px;
		right: 3%;
		width: 12px;
	}
	.pickupSlider__text {
		line-height: 1.8;
	}

	.pickupSliderControl {
		flex-direction: row-reverse;
		margin-top: 0;
		position: absolute;
    top: -30px;
    right: 40px;
	}
}

@media screen and (max-width: 768px) {
	.information {
		padding-inline: 20px;
	}
	.informationBody__btn {
		height: 100%;
	}
	.pickupSlider .swiper-slide {
		/* width: calc(240 / 375 * 100%); */
		width: 240px;
	}

	.pickupSliderControl {
		right: 20px;
	}
}

/* concept
---------------------------------------------- */
.concept {
	--gap: 0;
	margin-top: 100px;
	position: relative;
	z-index: 0;
}
.concept__inner {
	display: grid;
	grid-template-columns: 1fr calc(770 / 1440 * 100%);
	align-items: center;
	gap: 50px calc(100 / 1440 * 100%);
	overflow: hidden;
}

.conceptContents {
	position: relative;
	z-index: 0;
}

.concept__title {
	font-size: 14px;
	position: absolute;
	top: 50%;
	/* left: 0; */
	left: min(calc(20 / 1500 * 100%), 30px);
	transform: translate(0, -50%);
	z-index: 0;
}

.concept__copy {
	font-size: clamp(25px, 0.25rem + 2.74vw, 45px);
	font-weight: 500;
	letter-spacing: 0.075em;
	line-height: 1.6;
}
.concept__subCopy {
	font-size: clamp(16px, 0.87rem + 0.27vw, 18px);
	font-weight: 500;
	line-height: 1.7;
	margin-top: 3em;
}
.concept__text {
	margin-top: 2em;
}
.concept__text + .concept__text {
	margin-top: 2em;
}
.concept__text .em {
	font-size: 150%;
}
.concept__text .small {
	font-size: max(10px, calc(12 / 16 * 100%));
}


.conceptImgBox {
	display: grid;
	grid-template-columns: 1fr 1fr;
	/* align-items: center; */
	gap: 10px calc(10 / 770 * 100%);
}
.conceptImg .photo {
	overflow: hidden;
}
.conceptImg .photo + .photo {
	margin-top: 10px;
}

.conceptCaption {
	top: calc(100vh - 156px);
	right: 30px;
	bottom: auto;
}

@media screen and (min-width: 1025px) {
	.concept {
		--gap: 70px;
		/* padding-bottom: calc(100vh - var(--gap));
		position: sticky;
		top: var(--gap); */
	}
	.conceptWrap {
		/* padding-bottom: 100vh; */
		/* position: sticky; */
		/* top: var(--gap); */
	}
	.conceptBox {
		display: flex;
		align-items: center;
		/* position: absolute;
		top: 30px;
		left: 0; */
		/* transform: translateY(-50%); */
		/* width: 100%; */
		max-width: 1440px;
		/* height: calc(100vh - 130px); */
		margin-inline: auto;
		/* padding: 30px; */
		overflow: hidden;
		transition: .3s linear;
		z-index: 1;
	}

	.conceptBoxContainer {
		overflow: hidden;
	}

	.imgSlider,
	.loopSlider {
		display: none;
	}

	.conceptContentsBox {
		max-width: 490px;
		margin-left: auto;
		padding-left: 30px;
	}

	.concept .stickySpacer {
		height: 250vh;
	}
}

@media screen and (min-width: 1201px) {
	.concept {
		--gap: 130px;
	}
	.conceptBox {
		/* height: calc(100vh - 190px); */
	}
}

@media screen and (max-width: 1024px) {
	.concept {
		padding-block: 30px;
	}

	.conceptBox {
		width: 100%;
	}

	.concept__inner {
    grid-template-columns: 1fr;
	}

	.conceptContentsBox {
		width: calc(260 / 375 * 100%);
		max-width: 450px;
		margin-inline: auto;
		opacity: 0;
		transform: translateY(15px);
		transition: .5s ease-out;
	}
	.conceptContentsBox.inview {
		opacity: 1;
		transform: translateY(0);
	}

	.concept__title {
		top: 0;
		left: 10px;
		transform: translateY(0);
	}

	.concept__text {
		font-size: 14px;
    margin-top: 2em;
	}

	/* imgSlider */
	.imgSlider {
		display: flex;
		column-gap: 10px;
		overflow: hidden;
	}
	.imgSlider--top .imgSliderWrap {
		animation: horizontal-animation 60s linear infinite;
	}
	.imgSlider--bottom .imgSliderWrap {
		animation: horizontal-animation-reverse 60s linear infinite;
	}
	.imgSlider__img {
		height: 200px;
	}
	.imgSlider__img img {
		width: auto;
		height: 100%;
		max-width: none;
	}
	/* .imgSlider__img img:nth-child(odd) {
		animation: loop 80s -40s linear infinite;
	}
	.imgSlider__img img:nth-child(even) {
		animation: loop02 80s linear infinite;
	} */
	.imgSliderWrap .p-caption {
		font-size: 8px;
	}
	.imgSliderWrap .p-caption02 {
		right: 20.2%;
	}
	.imgSliderWrap .p-caption03 {
		right: 40.4%;
	}
	.imgSliderWrap .p-caption04 {
		right: 60.6%;
	}
	.imgSliderWrap .p-caption05 {
		right: 80.8%;
	}

	@keyframes horizontal-animation {
		from {
			transform: translateX(0);
		}

		to {
			transform: translateX(-100%);
		}
	}
	@keyframes horizontal-animation-reverse {
		from {
			transform: translateX(-100%);
		}

		to {
			transform: translateX(0);
		}
	}

	.loopSlider {
		display: block;
		min-width: 0;
	}
	.loopSlider .swiper-wrapper {
		transition-timing-function: linear;
	}
	.loopSlider .swiper-slide {
		width: 220px;
	}
	.loopSlider__img img {
		height: auto;
		width: 100%;
	}

	.conceptImgBox {
		display: none;
	}

	.concept .stickySpacer {
		display: none;
	}

	.conceptCaption {
		position: static;
		margin-top: 2em;
		text-align: left;
	}
}

@media screen and (max-width: 768px) {
	.concept {
		margin-top: 50px;
		padding-top: 0;
	}
}

/* lower
---------------------------------------------- */
.lower {
	position: relative;
	/* height: 100vh; */
	margin-top: 100px;
	padding-bottom: 100vh;
	z-index: 1;
}

.lowerBox {
	position: relative;
	z-index: 0;
}
.lowerBox::before {
	content: '';
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: center/cover no-repeat;
	z-index: -2;
}
.lowerBox::after {
	content: '';
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: url(../img/top/bg_lower-cover.png) center/cover no-repeat;
	z-index: -1;
}

.lowerBox[data-item="1"]::before {
	background-image: url(../img/top/bg_lower01.png);
}
.lowerBox[data-item="2"]::before {
	background-image: url(../img/top/bg_lower02.png);
}
.lowerBox[data-item="3"]::before {
	background-image: url(../img/top/bg_lower03.png);
}

.lowerBox__floating {
	font-size: 14px;
	position: absolute;
	top: 50%;
	left: min(calc(20 / 1500 * 100%), 30px);
	transform: translate(0, -50%);
	z-index: 1;
}

.lowerBox__inner {
	display: flex;
	justify-content: space-between;
	column-gap: calc(60 / 1300 * 100%);
}

.lowerBody__img {
	overflow: hidden;
	position: relative;
	z-index: 0;
}
.lowerBody__img img {
	height: 100%;
	object-fit: cover;
	transition: .4s;
}

.lowerContents {
	/* width: calc(670 / 1300 * 100%); */
	flex: 1;
}

.lowerItem {
	display: flex;
	flex-direction: column;
	justify-content: center;
  height: 100%;
	width: 100%;
	max-width: 390px;
	margin-left: auto;
  position: relative;
  z-index: 0;
}

.lowerBox__title .en {
	display: block;
	font-size: clamp(32px, 0.95rem + 2.19vw, 48px);
}
.lowerBox__title .ja {
	display: block;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
}

.lowerBox__text {
	line-height: 2.875;
  margin-top: 2em;
  position: relative;
  z-index: 0;
}

.lowerBox__more {
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	column-gap: 20px;
	font-size: 18px;
	letter-spacing: 0.05em;
	padding-bottom: 8px;
	transition: .4s;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
}
.lowerBox__more::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #333;
	z-index: 0;
}
.lowerBox__more .icon {
	display: block;
	width: 8px;
	height: 8px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	transform: rotate(45deg);
	transition: .4s;
	position: relative;
	z-index: 0;
}

@media (hover: hover) and (pointer: fine) {
	.lowerBody__link:hover .lowerBody__img img {
		transform: scale(1.05);
	}
	.lowerBox__more:hover {
		column-gap: 2em;
	}
	.lowerBox__more:hover .icon {
		margin-right: -10px;
	}
}

@media screen and (min-width: 961px) {
  .lowerWrap {
    margin-inline: auto;
    position: sticky;
    top: 0;
  }

  .lowerBox {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    margin-inline: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s linear;
    z-index: 1;
  }
  .lowerBox.is-active {
    opacity: 1;
    visibility: visible;
  }

	.lowerBox__inner {
		width: 90%;
		max-width: 1300px;
		margin-inline: auto;
		padding-block: 130px 5vh;
	}

	.lowerBody {
		position: relative;
		width: calc(700 / 1300 * 100%);
		height: 100%;
		overflow: hidden;
		z-index: 1;
	}

	.lowerSpacer {
		height: 50vh;
	}

	.lowerNav {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		height: 100vh;
		position: absolute;
		top: 0;
		right: calc(50 / 1500 * 100%);
		gap: 30px;
		opacity: 0;
		visibility: hidden;
		transition: .4s ease-out;
		z-index: 1;
	}
	.lowerNav.is-active {
		opacity: 1;
		visibility: visible;
	}

	.lowerNav__btn {
		display: block;
		position: relative;
		width: 6px;
		aspect-ratio: 1;
		transition: .3s linear;
		z-index: 0;
	}
	.lowerNav__btn::before {
		content: '';
		width: 12px;
		aspect-ratio: 1;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		border-radius: 50%;
		background-color: rgb(0 0 0 / .32);
		opacity: 0;
		transition: .4s;
		z-index: -1;
	}
	.lowerNav__btn::after {
		content: '';
		width: 100%;
		aspect-ratio: 1;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		border-radius: 50%;
		background-color: #fff;
		z-index: 1;
	}
	.lowerNav__btn.is-active::before {
		opacity: 1;
	}

}

/* @media (min-aspect-ratio: 1920/1000) {
	.lowerBox__inner {
		width: 150vh;
	}

	.lowerMerit,
	.lowerItem__img {
		margin-top: 5vh;
	}
} */

@media screen and (max-width: 960px) {
	.lower {
		margin-top: 30px;
    padding-bottom: 0;
		overflow: hidden;
	}

	.lowerWrap {
		position: relative;
    z-index: 0;
	}

	.lowerBox__inner {
		flex-direction: column-reverse;
		width: 100%;
	}

	.lowerHead {
		width: 100%;
		height: auto;
	}

	.lowerContents {
		width: calc(260 / 375 * 100%);
    margin-inline: auto;
		padding-block: 50px;
		position: relative;
		z-index: 0;
	}

	.lowerBox__floating {
    font-size: 12px;
    left: -45px;
	}

  .lowerItem {
    display: block;
    height: auto;
		margin-inline: auto;
  }

  .lowerBox__text {
		line-height: 2.125;
		margin-top: 2.5em;
	}

	.lowerBox__more {
		margin-top: 50px;
		margin-left: auto;
    padding-bottom: 8px;
    position: relative;
		inset: auto;
	}

}
