@charset "UTF-8";

/* ===============================
	変数定義
=============================== */
:root {
	--base-bg-color: #F5F5F5;
	--accent-bg-color: #CEE8E0;
	--green: #0E8260;
	--color-gray: #959595;
	--margin-large: 6rem;
	--margin-medium: 4rem;
	--margin-small: 2rem;

	/* フォント */
	--base-font: "Shippori Mincho", serif;
	--accent-font: "copperplate", serif;
	--noto-font: "Noto Sans JP", sans-serif;
}

/* ===============================
	共通スタイル
=============================== */

/* アニメーション初期化 */

.fade-in,
.popup,
.zoom-in,
.dry-zoom-in,
.fade-up,
.slide-text  {
	opacity: 0;
}

.blur-text,
.dry-blur-text {
	filter: blur(10px);
	opacity: 0;
}

.fade-image,
.dry-fade-image {
	opacity: 0;
	clip-path: polygon(0 0, 0 0, 0 0, 0 0);
}

.left-anime-text,
.dry-left-anime-text,
.anime-ttl-text {
	display: inline-block;
	overflow: hidden;
	opacity: 0;
	clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}


/* マージン */
.mts {
	margin-top: var(--margin-small);
}

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

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

.mt1em {
	margin-top: 1em;
}

.mr-auto {
	margin-right: auto;
}

.ml-auto {
	margin-left: auto;
}

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

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

/* ユーティリティークラス */
.gradient {
	background: #14B283;
	background: linear-gradient(90deg, rgba(20, 178, 131, 1) 0%, rgba(15, 88, 67, 1) 73%, rgba(20, 178, 131, 1) 97%);
}

.marker {
	background: linear-gradient(transparent 60%, yellow 50%);
}

.flex-reverse {
	flex-direction: row-reverse;
}

.green {
	color: var(--green);
}

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

.fit {
	inline-size: fit-content;
}


/* 共通 */
article {
	background-color: var(--base-bg-color);
	font-family: var(--base-font);
}

sup {
	color: var(--cyan);
}

.chevron-right {
	inline-size: 3rem;
	block-size: 1em;
}

.section-inner {
	position: relative;
	padding-block: 5rem 20rem;
}

/* メインビジュアル */

.main-visual {
	position: relative;
}

.main-visual-title-area {
	position: absolute;
	top: 48%;
	left: 18%;
	transform: translate(0, -50%);
	inline-size: 25%;
	text-align: center;
}


.main-visual-ttl-img:nth-of-type(2) {
	margin-top: -2rem;
}


/* セクションの番号とメインタイトル */

.section-title {
	margin-top: 1rem;
	font-family: var(--base-font);
	line-height: 1.3;
	font-size: 5.4rem;
	letter-spacing: .2em;
}

.section-title-small {
	display: block;
	margin-bottom: 1rem;
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0;
}

.interview-number-box {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(-60%) translateX(-50px);
	text-align: center;
}

.interview-number-text {
	font-size: 1.4rem;
	font-weight: bold;
	font-family: var(--noto-font);
}

.interview-number {
	font-size: 10rem;
	line-height: 1;
	font-family: var(--accent-font);
	font-weight: 600;
}

/* インタビューエリア */
.shison-question-container.size640 {
	inline-size: 54%;
}

.shison-question-container.size540 {
	inline-size: 45%;
}

.shison-interview-area {
	margin-top: 12rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 6rem;
}

.shison-img {
	inline-size: 41.6%;
}

.shison-img.size480 {
	inline-size: 40%;
}

.shison-img.size600 {
	inline-size: 50%;
}

.img01 {
	display: block;
	max-inline-size: 40rem;
}

.img02 {
	display: block;
	margin-top: 3rem;
	max-inline-size: 26rem;
}

.shison-question {
	padding-block: 1rem;
	font-size: 1.7rem;
	color: var(--green);
	font-weight: bold;
	border-bottom: 1px dashed #14B283;
}

.shison-answer {
	padding-top: 3rem;
	font-size: 1.7rem;
	padding-left: 3rem;
	font-weight: 600;
	line-height: 1.6;
}

.shison-question-block:nth-child(n+2) {
	margin-top: 8rem;
}


/* セクション初めの志尊さんの会話文 */
.info-text-area {
	margin-top: 6rem;
}

.info-text-area.left {
	padding-left: 5%;
}

.info-text-area.center {
	padding-left: 28%;
}

.person {
	display: block;
	font-size: 1.4rem;
	font-weight: 500;
}

.infotext {
	/* margin-top: 1rem; */
	/* font-size: 2.6rem; */
	font-size: clamp(2.2rem, 1.8vw, 2.6rem);
	font-weight: 500;
	line-height: 1.8;
}

.info-text-area .infotext:first-of-type {
	margin-top: 1rem;
}

.infotext {
	display: block;
}

.infotext.small+.infotext {
	padding-left: 1.5em;
}

.infotext.regular+.infotext {
	padding-left: 2em;
}

.infotext.medium+.infotext {
	padding-left: 3em;
}

.infotext.large+.infotext {
	padding-left: 4em;
}


/* MOVIEセクション */

.section-movie {
	padding-block: 10rem 20rem;
}

.movie-intro-text {
	text-align: center;
	font-size: 2rem;
	line-height: 2;
}

.movie-intro-title {
	margin-top: 9rem;
	text-align: center;
	font-size: 6rem;
	font-family: var(--accent-font);
	font-weight: 600;
}

.intro-movie-container {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 4.5rem;
	margin-top: 5rem;
}

.intro-movie-title {
	margin-bottom: 1rem;
	font-size: 2.4rem;
	font-family: var(--accent-font);
	font-weight: 600;
}

/* .intro-movie-cm {
	inline-size: 59%;
} */

.intro-movie-making {
	/* inline-size: 38%; */
	inline-size: 59%;
}

.intro-movie-making .intro-movie-title {
	/* text-align: right; */
	text-align: left;
}

.movie-box img {
	border-radius: 20px;
}

/* ０１乾燥力と０３洗浄力 */

.section-dry,
.section-wash {
	background-color: var(--accent-bg-color);
}

/* ０４使いやすさ */

.section-usability .section-inner {
	padding-block: 5rem 0;
}

/* （一番下のセクション）最後に */

.section-end {
	padding-block: 5rem 10rem;
}

.section-end .section-title {
	font-size: 3rem;
}

.section-end .shison-question-container {
	margin-top: 10rem;
}

.section-end .shison-question-container:first-of-type {
	margin-left: 10vw;
}

.section-end .shison-question-container:nth-of-type(2) {
	margin-left: 20vw;
}

/* （一番下のセクション）動画 */
.video-container {
	max-inline-size: 96rem;
	margin-top: 10rem;
	margin-inline: auto;
}

.btn-video-control {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: .5em;
	align-items: center;
	font-size: 1.4rem;
	color: #fff;
	padding: .5em 2em;
	border: 1px solid var(--charcoal-gray);
	border-radius: 20px;
	background-color: var(--charcoal-gray);
	margin: 2rem auto 0;
	transition: background-color .3s ease;
}

.icon-replay {
	inline-size: 1em;
	block-size: 1em;
}

/* コラム */
.column {
	position: relative;
	max-inline-size: 110rem;
	margin-bottom: 16rem;
	margin-inline: auto;
	margin-top: 15rem;
	background-color: #F2F5F9;
	border: 1px dashed #14B283;
	font-family: var(--noto-font);
	box-shadow: 4px 4px 4px 0px rgba(20, 178, 131, 0.25);
}

section .column:last-of-type {
	margin-bottom: 0;
}

.column-inner {
	padding: 7rem 5% 5rem;
}

.column.section02 .column-inner {
	padding: 4rem 10% 3rem;
}

.column-tag {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-block;
	background: #14B283;
	background: linear-gradient(90deg, rgba(20, 178, 131, 1) 0%, rgba(15, 88, 67, 1) 73%, rgba(20, 178, 131, 1) 97%);
	color: #fff;
	font-size: 1.4rem;
	font-weight: 600;
	padding: 1rem 3rem;
	border-radius: 5px;
	text-align: center;
}

.column-title {
	font-size: 2.2rem;
	color: var(--green);
	font-weight: bold;
}

.column-title em {
	display: block;
	margin-top: 1rem;
	font-size: 3.2rem;
}

.column-title-box {
	text-align: center;
}

.column-img-container {
	margin-top: 3rem;
}

.column-text-container {
	margin-top: 4rem;
}

.column-caption-list {
	margin-top: 2rem;
	font-size: 1.2rem;
	font-weight: 400;
}

.column-caption-list>li>span {
	color: var(--cyan);
	margin-right: .5em;
}

.column-caption-text {
	text-align: right;
	font-size: 1.2rem;
	margin-top: 0.3em;
}

/* コラムが横並びの時(Flex使用) */
.column-flex {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.column-img-items:has(.column-flex-img01) {
	inline-size: 40.5%;
}


.column-img-items:has(.column-flex-img02) {
	inline-size: 55.5%;
}

.column-img-title {
	padding: .2em;
	margin-bottom: 1rem;
	text-align: center;
	font-weight: bold;
	background-color: var(--accent-bg-color);
	border-radius: 5px;
}

/* コラムが横並びの時(Grid使用) */

.grid-column2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem 6rem;
}

.grid-column3 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 4rem 5rem;
}

.grid-sub-item {
	display: grid;
	grid-template-rows: subgrid;
	gap: 0;
	grid-row: span 4;
}

.grid-sub-item-title {
	margin-bottom: 0.5em;
	color: #0E8260;
	text-align: center;
	font-weight: bold;
	line-height: 1.8;
}

.grid-sub-item-text {
	margin-top: 0.5rem;
}

.grid-sub-item-caption {
	text-align: right;
	font-size: 1.2rem;
	margin-top: 0.3em;
}

.text-caption {
	font-size: 1.2rem;
	margin-top: 0.3em;
}

.text-caption .kome-icon {
	color: var(--cyan);
	margin-right: .5em;
}

/* コラム（タオルケアコース） */

.column-img-container-towel {
	margin-top: 3rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	background-image: url(images/towel_momonga.png);
	background-repeat: no-repeat;
	background-size: 38%;
	background-position: bottom left;
}

.new-towel {
	display: flex;
	align-items: center;
	column-gap: 1rem;
	inline-size: 40%;
}

.new-towel-box p {
	margin-bottom: 1rem;
	font-size: 1.8rem;
	font-weight: 500;
	text-align: center;
}

.new-towel-box img {
	max-inline-size: 25rem;
	inline-size: 100%;
}

.new-towel-arrow-box {
	text-align: center;
}

.new-towel-arrow-text {
	display: block;
	font-weight: 400;
	margin-bottom: 1rem;
}

.new-towel-arrow-box img {
	inline-size: 12rem;
}

.course-container {
	inline-size: 57%;
}

.course-block {
	display: flex;
	align-items: flex-start;
	column-gap: 2rem;
}

.course-block:nth-of-type(2) {
	margin-top: 5rem;
}

.course-block:nth-of-type(3) {
	margin-top: 2rem;
}

.course-img {
	max-inline-size: 25rem;
	inline-size: 45%;
}

.corse-block-title {
	display: block;
	padding: .5rem 1em;
	margin-top: 1rem;
	font-weight: 500;
	text-align: center;
	background-color: #D9D9D9;
	border-radius: 20px;
}

.corse-block-title.green {
	background-color: #0E8260;
	color: #fff;
}

.corse-block-text {
	margin-top: 1rem;
	font-weight: 400;
}

.corse-block-text-area em {
	display: inline-block;
	text-align: center;
	padding-inline: .5em;

}

.course-download {
	text-align: center;
}

.course-download img {
	inline-size: 1em;
}

/* PRODUCTS */
.products {
	background-color: #F2F5F9;
	padding-block: 10rem 5rem;
}

.products-section-title {
	position: relative;
	padding-left: 4rem;
	font-size: 4rem;
	font-weight: bold;
	font-family: var(--accent-font);
}

.products-section-title::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	display: block;
	inline-size: 3rem;
	block-size: .6rem;
	background: #14B283;
	background: linear-gradient(90deg, rgba(20, 178, 131, 1) 0%, rgba(15, 88, 67, 1) 100%);
}

.product-container {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10rem;
	margin-top: 10rem;
}

.products-info {
	inline-size: 29%;
	font-family: var(--noto-font);
}

.products-info-text {
	font-size: 2rem;
}

.products-text {
	display: block;
	margin-top: 4rem;
	font-size: 1.4rem;
}

.products-name {
	font-size: 2.6rem;
	font-weight: bold;
}

.product-info-list {
	display: flex;
	column-gap: 1.5rem;
	margin-top: 1rem;
	font-size: 1.4rem;
}

.product-info-list li {
	padding: .5em .6em;
	border-top: 1px dashed #2F353D;
	border-bottom: 1px dashed #2F353D;
}

.products-img-box {
	display: flex;
	inline-size: 35%;
}

.products-img-box.sp-only {
	display: none;
}

.products-color {
	font-family: var(--noto-font);
	text-align: center;
	font-size: 1.2rem;
}

.products-btn {
	inline-size: fit-content;
}

.products-btn a {
	display: grid;
	grid-template-columns: 1fr auto;
	place-content: center;
	align-items: center;
	grid-column-gap: 6rem;
	inline-size: 100%;
	block-size: fit-content;
	font-size: 1.4rem;
	font-family: var(--base-font);
	line-height: 1.5;
	color: #444950;
	margin-top: 6rem;
	padding: 1.4rem 2.5rem;
	border: 1px solid #171829;
	border-radius: 25px;
	transition: .3s;
}


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

	.order2 {
		order: 2;
	}

	.pc-only {
		display: none;
	}

	.sp-only {
		display: block;
	}

	/* メインビジュアル */

	.main-visual-title-sp {
		position: absolute;
		top: 13%;
		left: 5%;
		transform: translate(0, -50%);
		inline-size: 90%;
	}

	.main-visual-title-sp>img {
		inline-size: 80%;
	}

	.main-visual-ttl-img-sp {
		margin-top: -1rem;
	}

	.line1 {
		position: absolute;
		top: 90%;
		left: 3%;
		display: inline-block;
		inline-size: 95%;
		block-size: 4px;
	}

	/* MOVIEセクション */

	.section-movie {
		padding-block: 5rem 15rem;
	}

	.intro-movie-container {
		flex-direction: column;
		align-items: center;
		margin-top: 3rem;
	}

	.movie-intro-text {
		font-size: 1.6rem;
		line-height: 1.8;
	}

	.intro-movie-cm,
	.intro-movie-making {
		inline-size: 100%;
	}

	.movie-intro-title {
		margin-top: 6rem;
		font-size: 4rem;
	}

	.intro-movie-title,
	.intro-movie-making .intro-movie-title {
		text-align: center;
	}

	/* 共通 */

	.section-inner {
		position: relative;
		padding-block: 3rem 12rem;
	}

	.section-title {
		margin-top: 1rem;
		line-height: 1.5;
		font-size: 3.6rem;
	}

	.section-title-small {
		margin-bottom: 0;
	}

	.interview-number {
		font-size: 6rem;
	}


	/* インタビュー */

	.interview-number-box {
		left: 5%;
	}

	.person {
		display: block;
		margin: 0 auto;
		inline-size: fit-content;
	}

	.info-text-area {
		margin-top: 4rem;
	}

	.info-text-area.left {
		padding-left: 0;
		margin-inline: auto;
	}

	.info-text-area.center {
		padding-left: 0;
	}

	.infotext {
		inline-size: 100%;
		margin-inline: auto;
		font-size: 1.6rem;
		text-align: center;
	}

	.infotext.small+.infotext {
		padding-left: 0;
		margin-inline: auto;
		text-align: center;
	}

	.infotext.regular+.infotext {
		padding-left: 0;
	}

	.infotext.medium+.infotext {
		padding-left: 0;
	}

	.infotext.large+.infotext {
		padding-left: 0;
	}


	.shison-interview-area {
		margin-top: 3rem;
		flex-direction: column;
		gap: 6rem;
	}

	.shison-question {
		font-size: 1.6rem;
	}

	.shison-img {
		inline-size: 100%;
	}

	.shison-img.size480 {
		inline-size: 100%;
	}

	.shison-img.size600 {
		inline-size: 100%;
	}

	.img01 {
		max-inline-size: 100%;
		inline-size: 100%;
	}

	.img02 {
		max-inline-size: 100%;
		inline-size: 75%;
	}

	.shison-question-container.size640 {
		inline-size: 100%;
	}

	.shison-question-container.size540 {
		inline-size: 100%;
	}

	.section-end {
		padding-block: 5rem 2rem;
	}

	.section-end .shison-question-container:first-of-type {
		margin-left: 0;
	}

	.section-end .shison-question-container:nth-of-type(2) {
		margin-left: 0;
	}

	.section-end .section-title {
		font-size: 2rem;
	}

	.section-end .shison-question-container {
		margin-top: 4rem;
	}




	.shison-answer {
		padding-top: 2rem;
		padding-left: 0;
		font-size: 1.5rem;
	}

	.shison-question-block:nth-child(n+2) {
		margin-top: 4rem;
	}


	/* コラム */

	.column {
		position: relative;
		max-inline-size: 110rem;
		margin-inline: auto;
		margin-top: 8rem;
		margin-bottom: 8rem;
		background-color: #F2F5F9;
		border: 1px dashed #14B283;

	}

	.column-inner {
		padding: 7rem 5% 3rem;
	}

	.column.section02 .column-inner {
		padding: 4rem 5% 3rem;
	}

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

	.column-tag {
		inline-size: 80%;
		padding: 1rem 2rem;
		font-size: 1.3rem;
	}

	.column-title {
		font-size: 1.6rem;
	}

	.column-title em {
		margin-top: 0;
		font-size: 2rem;
	}

	.column-flex {
		flex-direction: column;
		row-gap: 2rem;
	}

	.column-img-items:has(.column-flex-img01) {
		inline-size: 100%;
	}


	.column-img-items:has(.column-flex-img02) {
		inline-size: 100%;
	}

	.grid-sub-item-title {
		display: flex;
		justify-content: center;
		align-items: center;
		line-height: 1.6;
	}

	.grid-sub-item-text {
		font-size: 1.2rem;
	}

	.video-container {
		margin-top: 4rem;
	}

	.grid-column3 {
		grid-template-columns: 1fr 1fr;
		gap: 1rem 2rem;
	}

	.grid-column2 {
		gap: 1rem 2rem;
	}


	/* コラム（タオルケアコース） */

	.column-img-container-towel {
		margin-top: 3rem;
		flex-direction: column;
		background-image: none;
	}

	.new-towel {
		flex-direction: column;
		column-gap: 0;
		inline-size: 100%;
	}

	.new-towel-arrow-box {
		margin-top: 2rem;
	}

	.new-towel-arrow-box img {
		inline-size: 6rem;
	}

	.new-towel-box {
		text-align: center;
	}

	.new-towel-box img {
		max-inline-size: 100%;
		inline-size: 80%;
	}

	.course-container {
		inline-size: 100%;
		margin-top: 2rem;
	}

	.course-block:nth-of-type(2) {
		margin-top: 2rem;
	}

	.corse-block-title {
		margin-top: 0;
		font-size: 1.4rem;
		border-radius: 4px;
	}

	.corse-block-text {
		font-size: 1.2rem;
	}

	.course-download {
		margin-top: 2rem;
		font-size: 1.4rem;
	}

	.column-img-momonga {
		margin-top: 4rem;
		inline-size: 80%;
		margin-inline: auto;
	}


	/* PRODUCTS */

	.products {
		padding-block: 5rem;
	}

	.product-container {
		margin-top: 3rem;
	}

	.products-info {
		inline-size: 100%;
	}

	.products-section-title {
		font-size: 3rem;
	}

	.products-info-text {
		inline-size: fit-content;
		margin-inline: auto;
		font-size: 1.8rem;
	}

	.products-img-box.sp-only {
		display: flex;
		inline-size: 70%;
		margin-top: 3rem;
		margin-inline: auto;
	}

	.products-text {
		margin-top: 3rem;
		text-align: center;
	}

	.products-name {
		text-align: center;
	}

	.product-info-list {
		justify-content: center;
	}

	.products-btn {
		margin-inline: auto;
	}

}

/* ====================================
	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) {

	.info-text-area.center {
		padding-left: 15%;
	}

	/* コラム（タオル） */

	.new-towel-arrow-text {
		font-size: 1.4rem;
	}

	.new-towel-arrow-box img {
		inline-size: 10rem;
	}

	.corse-block-title {
		font-size: 1.4rem;
	}

	.corse-block-text {
		font-size: 1.4rem;
	}

	.course-download {
		font-size: 1.4rem;
	}

	.course-download img {
		inline-size: .8em;
	}

}

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

/* ====================================
	ホバーが有効な環境のみ
===================================== */
@media (hover:hover) and (pointer: fine) {
	.products-btn a:hover {
		text-decoration: none;
		background-color: #222;
		color: #fff;
	}

}