@charset "utf-8";

/* ==================================================
   Base
================================================== */

* {
	box-sizing: border-box;
}

picture {
	display: block;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	overflow-x: hidden;
}

.allwrapper {
	width: 100%;
	min-height: 100vh;
	color: #000;
	font-family: aktiv-grotesk, sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 2.9333333333vw;
	line-height: 100%;
	letter-spacing: 0;
	box-sizing: border-box;
	position: relative;
	animation-delay: 0.75s;
}

@media (min-width: 768px) {
	.allwrapper {
		font-size: 12px;
	}
}

@media (min-width: 1200px) {
	.allwrapper {
		font-size: 12px;
	}
	.header-container {
		height: 80px;
	}
}

.allwrapper a:link,
.allwrapper a:visited {
	color: #000;
	text-decoration: none;
}

.allwrapper ol,
.allwrapper ul {
	list-style: none;
}

.allwrapper img,
.allwrapper video,
.allwrapper button {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

body.static .wrapper {
	margin-top: 0;
}

.main {
	width: 100vw;
}

@media (min-width: 1100px) {
	.main {
		width: 100%;
	}
}

.pc-menu {
	position: relative;
	z-index: 5;
}

.mainarea {
	width: 100%;
	margin: 0 auto;
	position: relative;
}


/* ==================================================
   animation for ScrollTrigger.min.js
================================================== */

.invisible {
transition: opacity 1s ease;
opacity: 0.0;
}
.visible {
transition: opacity 1s ease;
opacity: 1.0;
}


/* ==================================================
   Normal contents
================================================== */

.mv {
	width: 100%;
	min-height: 148vw;
}
.intro {
	margin-inline: auto;
	padding-top: 5vh;
}
.intro-main {
	margin-top: 5vh;
	padding: 12.8% 0 16%;
	background: #fff;
}
.intro-thumb {
	width: 91.2%;
	margin-inline: auto;
}
.intro-title {
	width: 70.6666666666%;
	margin: 4% auto 0;
}
img.intro-lead-dot {
	width: 0.5333333333% !important;
	margin: 7.2% auto 0;
}
.intro-movie {
	width: 66.6666666666%;
	margin-inline: auto;
}
.intro-text {
	margin-top: 4%;
	font-size: 3.7333333333vw;
	font-family: noto-sans-cjk-jp, sans-serif;
	color: #5c4747;
	text-align: center;
	line-height: 1.95;
}


/* ==================================================
   Vertical slide section
================================================== */

.v-slide-section {
	position: relative;
	width: 100%;
	height: var(--v-slide-vh, 100vh);
}

.v-slide-area {
	--slide-height: 70vh;
	position: relative;
	width: 100%;
	height: var(--v-slide-vh, 100vh);
	margin: 0 auto;
	overflow: hidden;
	visibility: hidden;
}

.v-slide-area.is-ready {
	visibility: visible;
}

.v-slide-area.is-fixed {
	position: fixed;
	top: 0;
	right: 50%;
	transform: translateX(-50%);
	z-index: 10000;
}

.wrapper-v-slide {
	position: absolute;
	top: 0;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translateX(-50%);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 1;
	transition:
		opacity 600ms ease,
		visibility 0s linear 600ms;
	container-type: inline-size;
}

.wrapper-v-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 2;
	transition:
		opacity 600ms ease,
		visibility 0s linear 0s;
}

.v-slide-viewport {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.v-slide-track {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	will-change: transform;
	transform: translate3d(0, 0, 0);
	transition: transform 800ms cubic-bezier(0.65, 0, 0.35, 1);
}

.v-slide-track.is-no-transition {
	transition: none !important;
}

.slide-item {
	position: relative;
	width: 100%;
	height: var(--slide-height);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.slide-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	margin: 0 auto;
}

.slide-item a {
	pointer-events: auto;
}

.slide-item img.txt-woolish {
	position: absolute;
	left: 29.8666666667%;
	bottom: 12.75%;
	width: 40.2666666666%;
	height: auto;
}
.item-intro-price {
	position: absolute;
	left: 0;
	bottom: 7.75%;
	width: 100%;
	text-align: center;
	font-size: 3.2vw;
	letter-spacing: 0.025em;
}
.item-intro-price a {
	color: #fff !important;
}
.item-intro-price a.brown {
	color: #5b4a46 !important;
}

.credit {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 20;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 600ms ease 120ms,
		visibility 0s linear 720ms;
}

.credit.is-current {
	opacity: 1;
	visibility: visible;
	transition:
		opacity 600ms ease 0ms,
		visibility 0s linear 0ms;
}

.credit-title {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc((var(--v-slide-vh, 100vh) - var(--slide-height)) / 2);
	background: rgba(0, 0, 0, 0.8);
}

.credit-title span {
	position: absolute;
	bottom: 33%;
	left: 0;
	display: block;
	width: 100%;
	height: 3.6cqw;
}

.credit-title img {
	width: auto;
	height: 100%;
	margin: 0 auto;
}
.credit-price {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: calc((var(--v-slide-vh, 100vh) - var(--slide-height)) / 2 + 1px);
	background: rgba(0, 0, 0, 0.8);
}
.credit-price-inner {
	width: 100%;
}
.credit-price-item {
	text-align: center;
	font-size: 3.2vw;
	font-weight: 500;
	letter-spacing: 0.025em;
}
.credit-price-item,
.credit-price-item a {
	color: #efe0b6 !important;
	pointer-events: auto;
}
.credit-price-style {
	margin-top: 0.75em;
	text-align: center;
	line-height: 1.9;
	letter-spacing: 0.025em;
}
.credit-price-style,
.credit-price-style a {
	color: #fff !important;
	pointer-events: auto;
}

.bottomarea {
	position: relative;
	z-index: 10001;
	margin-inline: auto;
}
.v-slide-area.is-fixed {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10000;
}
.profile {
	padding: 14.4% 0 16%;
	background: #fcf3f7;
}
.profile-title {
	width: 35.2%;
	margin-inline: auto;
}
.profile-img {
	width: 53.3333333333%;
	margin: 4.53333333333% auto 0;
}
.profile p {
	margin-top: 6.13%;
	font-family: noto-sans-cjk-jp, sans-serif;
	color: #5c4747;
	line-height: 1.64;
	text-align: center;
	font-size: calc(
		(var(--v-slide-vh, 100vh) / 900 * 512) * 0.0306666667
	);
}


/* ==================================================
   Responsive
================================================== */

@media screen and (min-width: 768px) {
	body::before {
		content: "";
		position: fixed;
		inset: 0;
		z-index: -1;

		background-image: url("../images/body-bg_tab.jpg");
		background-position: center center;
		background-size: cover;
		background-repeat: no-repeat;

		pointer-events: none;
	}
	.mv {
		display: none;
	}
	.intro,
	.wrapper-v-slide,
	.bottomarea {
		width: calc(var(--v-slide-vh, 100vh) / 900 * 512);
	}
	.intro-text {
		font-size: 14px;
	}
	.item-intro-price,
	.credit-price-item {
	font-size: 13.5px;
	}
}
@media screen and (min-width: 1200px) {
	body::before {
		background: url("../images/body-bg_pc.jpg") center top / cover fixed;
	}
	img.title-pc {
		position: fixed;
		bottom: 5vh;
		left: 20.64%;
		width: 20.99%;
	}
	img.logo-vis {
		position: fixed;
		top: 100px;
		left: 1.2%;
		width: 5.28%;
	}
	.intro,
	.bottomarea {
		margin-right: 10%;
		margin-left: auto;
	}
	.intro {
		padding-top: 10vh;
	}
	.intro-main {
		margin-top: 10vh;
	}
	.wrapper-v-slide {
		left: auto;
		right: 10%;
		transform: none;
	}
}

@media screen and (max-width: 767px) {
	.wrapper-v-slide {
		width: 100%;
	}
	.v-slide-section,
	.v-slide-area {
		height: calc(var(--v-slide-vh, 100vh) - 60px);
	}
	.credit-title,
	.credit-price {
		height: calc(
			(
				(var(--v-slide-vh, 100vh) - 60px)
				- var(--slide-height)
			) / 2
			+ 1px
		);
	}
}
@media screen and (max-width: 1199px) {
	img.title-pc,
	img.logo-vis {
		display: none;
	}
}
