@charset "UTF-8";

/* ===============================
	変数定義
=============================== */
:root {
	--color-white-gray: #f5f5f5;
	--color-light-gray: #d9d9d9;
	--color-gray: #959595;
	--margin-large: 6rem;
	--margin-medium: 4rem;
	--margin-small: 2rem;

	/* フォント */

	--jost: "Jost", sans-serif;
	--base-font: "dnp-shuei-gothic-gin-std", sans-serif;
}

/* ===============================
	共通スタイル
=============================== */
/* マージン */
.mts {
	margin-top: var(--margin-small);
}

.mtm {
	margin-top: var(--margin-medium)
}

.mtl {
	margin-top: var(--margin-large);
}

.mt1em {
	margin-top: 1em;
}

/* フレックスコンテナ */
.flex-container {
	display: flex;
	flex-wrap: wrap;
}

.flex-item {
	inline-size: 100%;
}

/* 共通 */
.global-section {
	margin-top: 15rem;
}

.section-global-title {
	font-size: 8rem;
	font-weight: 400;
	color: #1A9CBD;
	text-align: center;
	font-family: var(--jost);
}

.section-global-text {
	font-size: 2.6rem;
	font-weight: bold;
	text-align: center;
	color: #1A9CBD;
	font-family: var(--base-font);
}

/* MVのSwiper */

.mv-swiper-control {
	position: absolute;
	right: 20px;
	bottom: 20px;
	z-index: 2;
	background-color: rgba(255, 255, 255, 0.8);
	inline-size: 60px;
	block-size: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.mv-swiper-control img {
	inline-size: 17px;
}

.mv-swiper-control img:not(.is-active) {
	display: none;
}

.mv-swiper-control img.is-active {
	display: block;
}

/* シーンのSwiper */


.swiper-wrapper.scene {
	position: relative;
}

.scene-swiper-control {
	margin-top: 1.5rem;
	margin-left: auto;
	z-index: 2;
	background-color: #D9D9D9;
	inline-size: 45px;
	block-size: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.scene-swiper-control img {
	inline-size: 14px;
}

.scene-swiper-control img:not(.is-active) {
	display: none;
}

.scene-swiper-control img.is-active {
	display: block;
}




/* MVセクション */

.mv-swiper {
	position: relative;
	max-inline-size: 1500px;
	margin-inline: auto;
}

.mv-text-area {
	position: absolute;
	top: 15%;
	left: 11%;
	z-index: 3;
}

.mv-title {
	font-size: clamp(3rem, 4vw, 6rem);
	font-family: var(--base-font);
	font-weight: bold;
}

.mv-title span {
	display: block;
	color: #1A9CBD;
}

.mv-text {
	margin-top: 3rem;
	font-size: clamp(1.2rem, 1.2vw, 1.8rem);
	font-weight: 500;
	line-height: 2;
}

.mv-logo-list {
	display: flex;
	align-items: center;
	column-gap: 2rem;
}

.mv-logo-list li {
	inline-size: 160px;
}

.mv-fukidashi {
	inline-size: 190px;
}


/* イントロ */

.intro {
	padding-block: 10rem 17rem;
}

.intro-img {
	inline-size: 430px;
}

.intoro-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 9rem;
	row-gap: 3rem;
}

.intro-text-area {
	flex-shrink: 0;
}

.intro-text {
	margin-top: 3rem;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 2;
}

/* シーンセクション */

.scene {
	overflow: hidden;
}


/* シーンセクション(ボタンエリア) */

.btn-fukidashi {
	margin-inline: auto;
	inline-size: 200px;
}

.btn-title {
	padding-top: 0.5rem;
	text-align: center;
	font-size: 3rem;
	font-family: var(--base-font);
	font-weight: bold;
}

.btn-title span {
	color: #1A9CBD;
	text-decoration: underline;
	text-underline-offset: 8px;
}

.scene-btn-list {
	margin-top: 4rem;
	/* display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap; */
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 18%));
	justify-content: center;

	gap: 2rem;
}

.scene-btn-item {
	/* inline-size: 224px; */
	/* min-inline-size: 224px;
	inline-size: calc((100% - 80px) / 5);
	flex-shrink: 0; */
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 1;
}

.scene-btn-link {
	display: block;
	position: relative;
	text-align: center;
	padding: 2rem 1rem;
	color: #fff;
	background-image: url(images/sub01-1.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border: 3px solid #1A9CBD;
	border-radius: 10px;
	overflow: hidden;
	transition: .3s;
}

.scene-btn-link.green {
	border: 3px solid #4ACEC5;
}

.scene-btn-link.scene1 {
	background-image: url(images/index01.jpg);
}

.scene-btn-link.scene2 {
	background-image: url(images/index02.jpg);
}

.scene-btn-link.scene3 {
	background-image: url(images/index03.jpg);
}

.scene-btn-link.scene4 {
	background-image: url(images/index04.jpg);
}

.scene-btn-link.scene5 {
	background-image: url(images/index05.jpg);
}

.scene-btn-link::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	block-size: 100%;
	background-color: #1A9CBD;
	z-index: 2;
	transition: .3s;
}

.scene-btn-link.green::after {
	background-color: #4ACEC5;
}

.scene-btn-link span {
	position: relative;
	display: block;
	text-align: center;
	font-weight: 500;
	z-index: 3;
}

.scene-btn-link p {
	position: relative;
	margin-top: 2rem;
	text-align: center;
	font-size: 2rem;
	font-weight: 500;
	z-index: 3;
	font-family: var(--base-font);
}

.white-down-arrow {
	position: relative;
	display: block;
	margin-top: 2rem;
	margin-inline: auto;
	inline-size: 22px;
	block-size: 11px;
	z-index: 3;
	transition: .3s;
}

/* シーンセクション（各シーンのブロック） */

.scene-container {
	margin-top: 7rem;
}

.scene-block {
	position: relative;
}

.scene-block.white {
	background-color: #fff;
}

.scene-block.blue {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	background-color: #F0F5FA;
}

.scene-contents {
	position: relative;
	padding-block: 15rem 20rem;
}

.scene-bg-blue {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #F0F5FA;
	border-top-right-radius: 50px;
	width: 100vw;
	height: 100%;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.scene-bg-white {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
	border-top-left-radius: 50px;
	width: 100vw;
	height: 100%;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.scene-bg-green {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #F0FBF9;
	border-top-right-radius: 50px;
	width: 100vw;
	height: 100%;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.sene-contents-base {
	padding-inline: 1.5%;
	margin-inline: auto;
	max-inline-size: 1200px;
}

.block-title {
	font-family: var(--jost);
	font-size: 16rem;
}

.left .block-title {
	position: absolute;
	top: 0;
	right: 1.5%;
	line-height: 0.7;
	color: #fff;
}

.right .block-title {
	position: absolute;
	top: 0;
	left: 1.5%;
	line-height: 0.7;
	color: #F0F5FA;
}

.scene-global-text {
	display: block;
	font-size: 2rem;
	font-weight: bold;
	color: #1A9CBD;
	padding-left: 35px;
	background-image: url(images/door-icon.svg);
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: left center;
	opacity: 0;
	transform: translateY(10px);
}

.scene-global-text.green {
	color: #0A746D;
	background-image: url(images/door-green-icon.svg);
}

.scene-main-text {
	margin-top: 5rem;
	font-size: 4.8rem;
	font-weight: bold;
	opacity: 0;
	transform: translateY(10px);
	font-family: var(--base-font);
}

.scene-main-text em {
	color: #1A9CBD;
}

.scene-main-text.green em {
	color: #0A746D;
}

.scene-2column {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 3rem 5rem;
	margin-top: 5rem;
	opacity: 0;
	transform: translateY(10px);
}

.scene-text-container {
	inline-size: 24%;
	min-inline-size: 240px;
	flex-grow: 1;
	/* flex: 1; */
}

.scene-text-container p {
	font-weight: 400;
	line-height: 2;
}

.scene-img-container {
	inline-size: 70%;
	flex-grow: 1;
}

.scene-img-half {
	margin-left: auto;
	margin-top: 4rem;
	inline-size: 50%;
}

/* ボイス */

.voice {
	overflow: hidden;
	padding-inline: 1.5%;
	padding-bottom: 15rem;
}

.voice-container {
	position: relative;
	max-inline-size: 1500px;
	margin-inline: auto;
	margin-top: 8rem;
}

.voice-swiper-btn {
	position: absolute;
	bottom: -5rem;
	right: 0;
	transform: translateY(100%);
	display: flex;
	column-gap: 3rem;
}

.slider-next {
	inline-size: 60px;
}

.slider-prev {
	inline-size: 60px;
}

.voice-card {
	padding: 4rem 3rem;
	background-color: #F0F5FA;
	border-radius: 20px;
}

.voice-user {
	margin-inline: auto;
	inline-size: 130px;
	text-align: center;
}

.user-info {
	margin-top: 1rem;
	font-size: 1.4rem;
	font-weight: 400;
}

.voice-text {
	margin-top: 3rem;
	font-weight: 400;
}

/* ボイスのSwiper */

.voice-btn-prev {
	color: #1A9CBD;
	inline-size: 60px;
	block-size: 60px;
}

.voice-btn-next {
	color: #1A9CBD;
	inline-size: 60px;
	block-size: 60px;
}

.voice-swiper-btn .slider-prev.swiper-button-disabled .voice-btn-prev,
.voice-swiper-btn .slider-next.swiper-button-disabled .voice-btn-next {
	color: rgba(217, 217, 217, 1);
}

.voice-swiper .swiper-wrapper {
	align-items: stretch;
}

.voice-swiper .swiper-slide {
	height: auto;
}

.voice-card {
	height: 100%;
	display: flex;
	flex-direction: column;
}


/* ピックアップ */
.pickup {
	margin-top: 10rem;
	margin-bottom: 20rem;
}

.pickup-list {
	margin-top: 7rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.pickup-list-item {
	inline-size: calc((100% - 40px) / 5);
}

.pickup-list-link {
	display: block;
	pointer-events: none;
}

.pickup-img {
	pointer-events: auto;
	transition: .3s;
}

.pickup-text-area {
	margin-top: 2rem;
	inline-size: fit-content;
	text-align: center;
	margin-inline: auto;
}

.pickup-product {
	display: flex;
	align-items: center;
	column-gap: 0.5rem;
	padding-bottom: 0.3em;
	font-size: 2.5rem;
	font-weight: bold;
	border-bottom: 1px solid #D9D9D9;
	pointer-events: auto;
	transition: .3s;
}

.product-arrow {
	inline-size: 0.7em;
	block-size: 0.7em;
}

.pickup-capacity {
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.6;
	border-bottom: 1px solid #D9D9D9;
}

.pickup-size {
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.6;
}



/* ====================================
	スマートフォン専用スタイル（～768px）
===================================== */
@media screen and (width <768px) {

	/* 共通 */

	.section-global-title {
		font-size: 5rem;
	}

	.section-global-text {
		font-size: 1.5rem;
	}

	/* MV */

	.mv-text-area {
		inline-size: 100%;
		top: 5%;
		left: 50%;
		transform: translateX(-50%);
	}

	.mv-fukidashi {
		inline-size: 150px;
		margin-inline: auto;
	}

	.mv-title {
		margin-top: 1rem;
		font-size: 3.3rem;
		line-height: 1.2;
		text-align: center;
		font-weight: bold;
	}

	.mv-text {
		margin-top: 2rem;
		text-align: center;
		font-size: 1.5rem;
		line-height: 1.7;
	}

	/* MVのSwiper */
	.mv-swiper-control {
		inline-size: 45px;
		block-size: 45px;
	}

	.mv-swiper-control img {
		inline-size: 10px;
	}

	/* イントロ */

	.intro {
		padding-block: 8rem;
	}

	.intoro-container {
		row-gap: 4rem;
	}

	.intro-text-area {
		flex-shrink: 1;
	}

	.intro-img {
		inline-size: 210px;
	}

	.intro-text {
		margin-top: 2rem;
		font-size: 1.5rem;
		line-height: 1.8;
	}

	.mv-logo-list {
		justify-content: center;
		column-gap: 2rem;
	}

	.mv-logo-list li {
		inline-size: 100px;
	}


	/* ボタンエリア */

	.btn-title {
		font-size: 2.2rem;
	}

	.btn-fukidashi {
		inline-size: 150px;
	}

	.scene-btn-list {
		grid-template-columns: repeat(2, 1fr);
		margin-top: 3rem;
		gap: 1rem;
	}

	/* .scene-btn-list::after {
		content: "";
		display: block;
		inline-size: 45%;
		block-size: 100%;
		flex-grow: 1;
	} */

	.scene-btn-item {
		/* min-inline-size: 0;
		inline-size: 45%;
		flex-grow: 1; */
	}

	.scene-btn-link {
		padding: 1rem 0.5rem;
	}

	.scene-btn-link p {
		font-size: 1.5rem;
	}

	.scene-btn-link span {
		font-size: 1.3rem;
	}


	/* シーンセクション（各シーンのブロック） */

	.sene-contents-base {
		padding-inline: 5%;
	}

	.scene-global-text {
		font-size: 1.3rem;
	}

	.scene-main-text {
		margin-top: 2rem;
		font-size: 2.4rem;
	}

	.block-title {
		font-size: 6rem;
		line-height: 0.8;
	}

	.scene-contents {
		padding-block: 11rem 8rem;
	}

	.left .block-title {
		right: 5%;

	}

	.right .block-title {
		left: 5%;
	}

	.scene-2column {
		margin-top: 3rem;
	}

	.scene-text-container p {
		font-size: 1.4rem;
	}

	.scene-img-half {
		margin-top: 1.5rem;
		margin-left: 0;
		margin-right: auto;
		inline-size: 75%;
	}


	/* ユーザーの声 */
	.voice {
		padding-inline: 5%;
	}

	.voice-user {
		inline-size: 100px;
	}

	.voice-text {
		margin-top: 2rem;
		font-size: 1.4rem;
	}

	.voice-swiper-btn {
		bottom: -3rem;
		right: 3.5%;
		column-gap: 2rem;
	}

	.slider-next {
		inline-size: 40px;
	}

	.slider-prev {
		inline-size: 40px;
	}

	/* ユーザーの声（Swiper） */

	.voice-swiper .swiper {
		inline-size: auto;
	}

	.voice-btn-prev {
		inline-size: 45px;
		block-size: 45px;
	}

	.voice-btn-next {
		inline-size: 45px;
		block-size: 45px;
	}

	/* ピックアップ */
	.pickup {
		margin-top: 0;
		margin-bottom: 10rem;
	}

	.pickup-product {
		font-size: 2.1rem;
	}

	.pickup-list-item {
		inline-size: 50%;
	}

	.pickup-list {
		margin-top: 4rem;
		row-gap: 3rem;
	}

	.pickup-capacity {
		font-size: 1.5rem;
		border-bottom: none;
		border-right: 1px solid #D9D9D9;
		padding-right: 1rem;
		margin-right: 1rem;
	}

	.pickup-size {
		font-size: 1.5rem;
	}

	.pickup-sp-box {
		display: flex;
		justify-content: center;
		align-items: center;
		padding-block: 0.5rem;
		border-bottom: 1px solid #D9D9D9;
	}

}

/* ====================================
	TAB、PC、印刷専用スタイル（768px～）
===================================== */
@media print,
screen and (width >=768px) {
	:root {
		--margin-large: 8rem;
		--margin-medium: 6rem;
		--margin-small: 4rem;
	}
}

/* ====================================
	タブレット専用スタイル（768px～1079px）
===================================== */
@media screen and (768px <=width < 1080px) {



	/* シーンセクション（各シーンのブロック） */

	.scene-main-text {
		font-size: 4rem;
	}

	/* ピックアップ */

	.pickup-product {
		font-size: 2rem;
	}

}

/* ====================================
	PC専用スタイル（1080px～）
===================================== */
@media print,
screen and (1080px <=width) {}


/* ====================================
	ホバーが有効な環境のみ
===================================== */
@media (hover:hover) and (pointer: fine) {

	a:hover {
		text-decoration: none;
	}

	.scene-btn-link:hover {
		color: #fff;
	}

	.scene-btn-link:hover .white-down-arrow {
		transform: translateY(5px);
	}

	.scene-btn-link:hover::after {
		background-color: transparent;
	}


	.pickup-list-link:hover .pickup-product {
		color: #1A9CBD;
	}

	.pickup-list-link:hover .pickup-img {
		opacity: .6;
	}

}