
/* --------------------------------------------------------------------------------
RESET
-------------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

ul,
ol {
	padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
}

body {
	min-height: 100vh;
	line-height: 1.5;
}

ul[class],
ol[class] {
	list-style: none;
}

a:not([class]) {
	text-decoration-skip-ink: auto;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
	aspect-ratio: attr(width) / attr(height);
}

article > * + * {
	margin-top: 1em;
}

input,
button,
textarea,
select {
	font: inherit;
}

@media (prefers-reduced-motion: reduce) {
	* {
	animation-duration: 0.01ms !important;
	animation-iteration-count: 1 !important;
	transition-duration: 0.01ms !important;
	scroll-behavior: auto !important;
	}
}



/* --------------------------------------------------------------------------------
 pc_sp
-------------------------------------------------------------------------------- */
.hidden-xs {
	display: block;
}
.visible-xs {
	display: none;
}

@media screen and (max-width: 500px) {
	.hidden-xs {
		display: none;
	}
	.visible-xs {
		display: block;
	}
}

/* --------------------------------------------------------------------------------
 list
-------------------------------------------------------------------------------- */

ul,
ol {
	padding: 0;
	margin: 0;
	list-style: none;
}


/* --------------------------------------------------------------------------------
 FONT text_align color
-------------------------------------------------------------------------------- */

.f_itali { font-family: "Italianno", cursive; }
.f_shpr { font-family: "Shippori Mincho", serif; }
/*color*/
.c_red { color: #b21e25; }




/* --------------------------------------------------------------------------------
 filter
-------------------------------------------------------------------------------- */
.glow {
	filter: drop-shadow(0 0 0.125rem rgba(255,255,255,1)) drop-shadow(0 0 0.125rem rgba(255,255,255,1)) drop-shadow(0 0 0.3125rem rgba(255,255,255,1));
	transform: translateZ(0);
}
.glowtext {
	text-shadow: 
	0 0 0.3125rem rgba(255,255,255,.5),
	0 0 0.625rem rgba(255,255,255,.5),
	0 0 0.9375rem rgba(255,255,255,.5)
}


/* --------------------------------------------------------------------------------
 marker
-------------------------------------------------------------------------------- */
.js-line {
	padding-bottom: 0.25rem;
	display: inline;
	position: relative;
	z-index: 2;
	&::before {
		content: "";
		width: 100%;
		height: 0.0625rem;
		position: absolute;
		left: 0;
		bottom: 0;
		transform: scaleX(0);
		transform-origin: left;
		transition: transform 2s ease-in-out;
		z-index: 2;
	}
	&.is-inview::before {
		transform: scaleX(1);
	}
}

#usage .usage_step .step_title .js-line::before {
	background: #000;
}
#action .action_head .head_logo .logo_text.js-line::before {
	background: #b31e25;
}

#voice .voice_flex .flex_box .box_inner .text .js-line::before {
	background: #1c8f8a;
}


/* --------------------------------------------------------------------------------
 wrap FONT text_align color
-------------------------------------------------------------------------------- */

html {
	font-size: 4.26667vw;
	overflow-x: hidden;
}

@media screen and (min-width: 750px) {
	html {
		font-size: 32px;
	}
}

body {
	max-width: 750px;
	margin: 0 auto;
	overflow: hidden;
	font-family: "Yu Mincho","Hiragino Mincho ProN","MS PMincho",serif;
	color: #000;
	font-weight: 200;
	background: #f6f6f6;
	font-feature-settings: "palt";
}

.wrap {
	width: 100%;
	max-width: 750px;
	font-weight: 200;
	font-family: "Yu Mincho","Hiragino Mincho ProN","MS PMincho",serif;
	color: #000;
	font-feature-settings: "palt";
	letter-spacing: 0.046875rem;
	line-height: 1.6;
	margin: 0 auto;
	background: #fff;
	overflow: hidden;
	img {
		max-width: 100%;
		height: auto;
		display: block;
	}
	a {
		text-decoration: none;
		transition: .25s;
		&::after {
			transition: .25s;
		}
		img {
			transition: .25s;
		}
	}
}


/* --------------------------------------------------------------------------------
 #fv
-------------------------------------------------------------------------------- */
#fv {
	position: relative;
	z-index: 1;
	.fv_logo {
		padding: 1rem 0;
		background: #f6f6f6;
		.logo {
			width: 6.25rem;
			margin: auto;
		}
	}
	.fv_info {
		font-size: 1.8125rem;
		font-weight: 700;
		text-align: center;
		padding: .25rem 0;
		background-image: linear-gradient(in oklab to right,#b4d3d2, #cde3e2 20%, #e6f1f0 40%, #e6f1f0 60%, #cde3e2 80%, #b4d3d2 100%);
		position: relative;
		z-index: 2;
	}
	.fv_video {
		width: 100%;
		height: 29.28125rem;
		margin: -0.1875rem auto 0;
		display: block;
		position: relative;
		z-index: 1;
		video {
			width: 100%;
			display: block;
		}
		.video_title1 {
			width: 5.8125rem;
			position: absolute;
			top: -1%;
			right: -1.25%;
			z-index: 2;
		}
		.video_title2 {
			width: 8.3125rem;
			position: absolute;
			top: 3.25%;
			right: 2.5%;
			z-index: 2;
		}
		.fv_release {
			width: 100%;
			text-align: center;
			position: absolute;
			bottom: 1.5625rem;
			left: 0;
			.release_text {
				font-size: 0.75rem;
				letter-spacing: 0;
				line-height: 1;
				padding: 0.1875rem 0.375rem;
				background: rgba(205,227,226,.8);
			}
		}
		.video_title_kome {
			position: absolute;
			top: clamp(150px, 40vw, 300px);
			left: 76%;
			z-index: 3;
		}
		.fv_note {
			position: absolute;
			bottom: 2%;
			right: 5.33%;
			z-index: 3;
		}
	}
}

@media (pointer: fine) {
  #fv .fv_video {
    height: calc(125vw - 19px);
	max-height: 937.5px;
  }
}


/* --------------------------------------------------------------------------------
 .cart
-------------------------------------------------------------------------------- */
.cart {
	padding: 2.6875rem 4%;
	background: #71000d;
	display: flex;
	flex-direction: column;
	gap: 1.1875rem;
	.cart_cta {
		&.set {
			.cta_body {
				.item {
					&.item_shampoo {
						bottom: 0;
						left: 0.3125rem;
					}
					&.item_treatment {
						bottom: 0;
						left: 3rem;
					}
				}
			}
		}
		&.shampoo {
			.head_shadow {
				font-size: 1.9rem;
			}
			.cta_body {
				.item {
					bottom: 0;
					left: 1.75rem;
				}
			}
		}
		&.treatment {
			.head_shadow {
				font-size: 1.825rem;
			}
			.cta_body {
				.item {
					bottom: -0.5rem;
					left: 1.875rem;
				}
			}
		}
		.cta_head {
			padding: .175rem 0;
			background: #c9232c;
			overflow: hidden;
			position: relative;
			.head_text {
				font-size: 0.875rem;
				font-weight: 600;
				color: #fff;
				padding-left: 30%;
				position: relative;
				z-index: 2;
			}
			.head_shadow {
				width: 110%;
				color: #b10012;
				text-align: right;
				letter-spacing: 0;
				line-height: 1;
				position: absolute;
				top: -0.0625rem;
				right: -0.125rem;
				z-index: 1;
				opacity: .35;
			}
		}
		.cta_body {
			min-height: 6.25rem;
			padding: 0.8125rem 0;
			background: #fff;
			display: flex;
			.body_item {
				width: 29%;
				position: relative;
				.item {
					position: absolute;
					&.item_shampoo {
						width: 3.375rem;
						z-index: 3;
					}
					&.item_treatment {
						width: 3.0625rem;
						z-index: 2;
					}
				}
			}
			.body_price {
				width: 35%;
				padding-right: 0.6875rem;
				display: flex;
				flex-direction: column;
				justify-content: center;
				.price_discount {
					line-height: 1;
					margin-bottom: .35rem;
					.discount_text {
						font-size: 0.625rem;
						font-weight: 700;
						text-align: center;
						line-height: 1;
						padding: .25rem 1rem 0.1875rem;
						background-image: linear-gradient(in oklab to right,#e1aa38,#f3da8b);
						display: inline-block;
						clip-path: polygon(0 0, 100% 0, calc(100% - 0.3125rem) 50%, 100% 100%, 0 100%, 0.3125rem 50%);
					}
				}
				.price_label {
					font-size: 0.84375rem;
					font-weight: 600;;
				}
				.price_value {
					.value {
						font-size: 2.1875rem;
						font-weight: 600;
						letter-spacing: -0.03125rem;
						line-height: 1;
						&.c_red {
							color: #c9232c;
						}
					}
					.yen {
						font-size: 1.125rem;
						margin-left: .125rem;
					}
					[data-ruby] {
						&::before {
							font-size: 0.4375rem;
						}
					}
				}
			}
			.body_btn {
				width: 36%;
				padding-right: 0.6875rem;
				display: flex;
				flex-direction: column;
				justify-content: center;
				.price {
					font-size: 0.625rem;
					letter-spacing: 0;
					margin-bottom: .25rem;
					.value {
						font-size: 0.8125rem;
						line-height: 1;
						position: relative;
						&::before {
							content: "";
							width: 100%;
							height: .03125rem;
							background: #000;
							position: absolute;
							top: 60%;
							left: 0;
						}
					}
				}
				.btn {
					background: linear-gradient(to bottom,
						color-mix(in oklab, #c72732 92%, white),
						color-mix(in oklab, #7f0405 92%, white) 100%
					);
					border-radius: 0.625rem;
					box-shadow: inset 0 0.125rem 0.0625rem 0 rgba(255, 255, 255, 0.5), inset 0 -0.125rem 0.0625rem 0 rgba(0, 0, 0, 0.3);
					position: relative;
					&::before {
						content: "";
						position: absolute;
						inset: 0;
						background: linear-gradient(to bottom,
							color-mix(in oklab, #ce2d3a 95%, black),
							color-mix(in oklab, #740202 95%, black) 100%
						);
						border-radius: 0.625rem;
						box-shadow: inset 0 0.125rem 0.0625rem 0 rgba(255, 255, 255, 0.5), inset 0 -0.125rem 0.0625rem 0 rgba(0, 0, 0, 0.3);
						opacity: 0;
						transition: opacity 0.5s ease;
						pointer-events: none;
						z-index: 1;
					}
					&:hover::before {
						opacity: 1;
					}
					&::after {
						content: "";
						width: 1.3125rem;
						height: 100%;
						background: #c9232c;
						border-radius: 0 0.625rem 0.625rem 0;
						mix-blend-mode: multiply; 
						position: absolute;
						top: 0;
						right: 0;
						z-index: 1;
						opacity: .5;
					}
					a {
						font-size: 0.9375rem;
						color: #fff;
						text-align: center;
						line-height: 1.25;
						padding: 0.75rem 1.3125rem 0.75rem 0;
						display: block;
						position: relative;
						z-index: 3;
						&::after{
							content: "";
							width: 0.4375rem;
							height: 0.5rem;
							background: #fff;
							clip-path: polygon(0 0, 0% 100%, 100% 50%);
							position: absolute;
							top: 50%;
							right: 0.4375rem;
							transform: translateY(-50%);
							z-index: 2;
						}
					}
				}
			}
		}
	}
}


/* --------------------------------------------------------------------------------
 #doctor
-------------------------------------------------------------------------------- */
#doctor {
	padding: 3.75rem 5.33%;
	background: #e5e5e5 url('../images/doctor_bg.webp') center bottom / 100% no-repeat;
	position: relative;
	z-index: 1;
	.doctor_title {
		.title01 {
			width: 12.90625rem;
			margin-bottom: 1rem;
		}
		.title02 { width: 19.875rem; }
	}
	.doctor_name {
		font-size: 1rem;
		font-weight: 700;
		padding: 4.375rem 0;
	}
	.doctor_text {
		font-size: 1.25rem;
		font-weight: 500;
		margin-bottom: 2.125rem;
	}
	.doctor_kome {
		font-size: 0.75rem;
	}
}


/* --------------------------------------------------------------------------------
 #caution
-------------------------------------------------------------------------------- */
#caution {
	padding: 3.75rem 5.33% 3.4375rem;
	background: #dbd4c2 url('../images/caution_bg.webp') center bottom / 100% no-repeat;
	position: relative;
	z-index: 1;
	.caution_title {
		margin-bottom: 15.625rem;
		.title {
			width: 12.90625rem;
		}
	}
	.caution_text {
		font-size: 1.25rem;
		font-weight: 500;
		text-align: right;
	}
}

/* --------------------------------------------------------------------------------
 #sign
-------------------------------------------------------------------------------- */
#sign {
	padding: 3.75rem 5.33% 2.25rem;
	background: url('../images/sign_bg.webp') center top / 100% no-repeat;
	position: relative;
	z-index: 1;
	.sign_title {
		margin-bottom: 3.875rem;
		.title01 {
			width: 19.25rem;
			margin-bottom: 1rem;
		}
		.title02 { width: 100%; }
	}
	.block_case {
		padding-left: 7.76%;
		margin-bottom: 3rem;
		.case_label {
			font-size: 2.03125rem;
			color: #fff;
			line-height: .5;
			position: relative;
			.label_circle {
				width: 4.1875rem;
				height: 4.1875rem;
				clip-path: polygon(0 0, 100% 0, 100% 35%, 50% 50%, 50% 100%, 0 100%);
				position: absolute;
				top: -1.375rem;
				left: -1.6875rem;
				z-index: -1;
				&::before {
					content: "";
					width: 100%;
					height: 100%;
					border-radius: 50%;
					border: 1px solid #fff;
					background: transparent;
					position: absolute;
					top: 0;
					left: 0;
				}
			}
			.num {
				font-size: 3.375rem;
			}
		}
		.case_text {
			font-size: 1.34375rem;
			font-weight: 500;
			color: #fff;
			padding-left: 1.875rem;
			.text {
				position: relative;
				&::before {
					content: "“";
					font-size: 1.34375rem;
					font-weight: 700;
					color: #fff;
					position: absolute;
					top: -10%;
					left: -0.9375rem;
				}
				&::after {
					content: "”";
					font-size: 1.34375rem;
					font-weight: 700;
					color: #fff;
					position: absolute;
					top: 70%;
					right: -0.9375rem;
				}
			}
		}
		.glowtext {
			text-shadow: 0 0 .5rem rgba(255,255,255,.5), 0 0 1rem rgba(255,255,255,.5);
		}
	}
}


/* --------------------------------------------------------------------------------
 #approach
-------------------------------------------------------------------------------- */
#approach {
	padding: 3.75rem 0;
	position: relative;
	z-index: 1;
	.approach_title {
		margin-bottom: 2.8125rem;
		.title01 {
			width: 13rem;
			margin: 0 auto 1rem;
		}
		.title02 {
			width: 20.5rem;
			margin: auto;
		}
	}
	.approach_item {
		width: 100%;
		margin: 0 auto -10.625rem;
		position: relative;
		z-index: 1;
	}
	.approach_text {
		font-size: 1.375rem;
		text-align: center;
		line-height: 1.8;
		margin-bottom: 1.5625rem;
		position: relative;
		z-index: 2;
	}
	.approach_message {
		position: relative;
		z-index: 2;
		img {
			width: 20.3125rem;
			margin: 0 auto;
		}
	}
}


/* --------------------------------------------------------------------------------
 #reason
-------------------------------------------------------------------------------- */
#reason {
	padding: 3.75rem 0;
	background: #cadee4;
	.reason_title {
		width: 100%;
		margin: 0 auto 1.5625rem 5.33%;
		img {
			width: 19.78125rem;
		}
	}
	.reason_text {
		font-size: 1.125rem;
		font-weight: 500;
		letter-spacing: 0.046875rem;
		margin-left: 5.33%;
		position: relative;
		z-index: 2;
	}
	.reason_message {
		margin-top: -5.625rem;
		margin-bottom: -8.75rem;
		position: relative;
		z-index: 1;
		.message_text {
			width: 100%;
			display: flex;
			flex-direction: row-reverse;
			gap: 0.75rem;
			position: absolute;
			top: 18%;
			right: 5.33%;
			z-index: 2;
			.text {
				img { width: 100%; }
				&.text1 { width: 2.3125rem; }
				&.text2 { width: 4.125rem; padding-top: 1.5625rem; }
				&.text3 { width: 2.75rem; padding-top: 5.3125rem; }
			}
		}
		.message_shampoo {
			width: 12.1875rem;
			position: absolute;
			top: 26%;
			left: -12%;
			z-index: 2;
		}
	}
	.reason_qusome {
		width: 100%;
		padding: 0 5.33%;
		position: relative;
		z-index: 2;
		.qusome_orb {
			width: 21.65625rem;
			position: absolute;
			top: -33%;
			right: -25%;
			z-index: 1;
		}
		.qusome_title {
			font-size: 1.5rem;
			font-weight: 600;
			padding-bottom: 0.25rem;
			margin-bottom: 1.875rem;
			position: relative;
			z-index: 2;
			&::before {
				content: "";
				width: 60%;
				height: 0.0625rem;
				background: #000;
				position: absolute;
				top: 100%;
				left: 0;
			}
		}
		.qusome_text {
			font-size: 1.25rem;
			font-weight: 500;
			position: relative;
			z-index: 2;
		}
	}
}


/* --------------------------------------------------------------------------------
 #action
-------------------------------------------------------------------------------- */
#action {
	padding: 0;
	background: #ded8c5;
	.action_head {
		position: relative;
		.head_title {
			width: 100%;
			position: absolute;
			top: 3.25rem;
			left: 0;
			img {
				width: 17.59375rem;
				margin: auto;
			}
		}
		.head_logo {
			width: 100%;
			display: flex;
			justify-content: center;
			align-items: end;
			gap: 1.3125rem;
			position: absolute;
			bottom: 2.125rem;
			left: 0;
			.logo_num {
				width: 2.6875rem;
			}
			.logo_text {
				width: 11.53125rem;
				padding-bottom: 0.875rem;
			}
		}
	}
	.action_body {
		margin-bottom: 1.25rem;
		.body_title {
			padding-bottom: 0.6875rem;
			background: url('../images/action_body_bg1.webp') center top / 100% no-repeat;
			.title_label {
				width: 100%;
				text-align: center;
				margin-bottom: 1.0625rem;
				.label_text {
					font-size: 1.25rem;
					color: #fff;
					line-height: 1;
					padding: 0.3125rem 0.875rem;
					display: inline-block;
					.num { font-size: 1.625rem; }
				}
			}
			.title_icon {
				width: 4.5rem;
				margin: auto;
			}
			.title_text {
				font-size: 2rem;
				text-align: center;
			}
		}
		.body_cutin {
			background: #fff;
			position: relative;
			.cutin_text {
				width: 100%;
				font-size: 1.5625rem;
				font-weight: 600;
				text-align: center;
				position: absolute;
				top: 50%;
				left: 0;
				transform: translateY(-50%);
				z-index: 2;
			}
			.cutin_mask {
				-webkit-mask-image: radial-gradient(ellipse, rgba(0, 0, 0, 0.15) 25%, black);
				mask-image: radial-gradient(ellipse, rgba(0, 0, 0, 0.15) 25%, black);
			}
		}
		.body_text {
			min-height: 18.65625rem;
			padding: 1.5625rem 0 3.125rem;
			background: #ded6c4 url('../images/action_body_bg2.webp') center top / 100% no-repeat;
			.text {
				font-size: 0.875rem;
				font-weight: 500;
				text-align: center;
				.ingredient {
					font-size: 1.125rem;
					font-weight: 700;
				}
			}
		}
		&.action1 {
			.title_label {
				.label_text { background: #408390; }
			}
			.title_text { color: #408390; }
			.cutin_mask {
				img { opacity: .75; }
			}
		}
		&.action2 {
			.title_label {
				.label_text { background: #8d4598; }
			}
			.title_text { color: #8d4598; }
			.cutin_mask {
				img { opacity: .5; }
			}
		}
		&.action3 {
			margin-bottom: 0;
			.title_label {
				.label_text { background: #b21e25; }
			}
			.title_text { color: #b21e25; }
			.cutin_mask {
				img { opacity: .5; }
			}
		}
	}
}


/* --------------------------------------------------------------------------------
 #satisfy
-------------------------------------------------------------------------------- */
#satisfy {
	padding: 2.5rem 0 3.125rem;
	background-image: linear-gradient(to bottom,#ded6c4 10%,#ded8c5);
	.satisfy_title {
		width: 100%;
		margin: 0 auto 1.5625rem;
		position: relative;
		z-index: 2;
		img {
			width: 19.875rem;
			margin: auto;
		}
	}
	.satisfy_body {
		margin-top: -6.875rem;
		padding: 9.375rem 5.33% 0;
		background: #ded6c4 url('../images/satisfy_bg.webp') center top / 100% no-repeat;
		position: relative;
		z-index: 1;
		.body_answer {
			width: 100%;
			margin: 0 auto 2.5rem;
			img {
				width: 19.6875rem;
				margin-left: -0.625rem;
			}
		}
		.body_text {
			font-size: 1.25rem;
			font-weight: 500;
			color: #fff;
			margin-bottom: 8.25rem;
			position: relative;
			z-index: 2;
		}
		.body_message {
			font-size: 1.375rem;
			text-align: center;
			.c_red {
				font-size: 1.5rem;
				color: #b21e25;
			}
		}
	}
}


/* --------------------------------------------------------------------------------
 #protect
-------------------------------------------------------------------------------- */
#protect {
	padding: 0;
	background: #e7ebed;
	.protect_head {
		padding-top: 3.125rem;
		.head_title {
			font-size: 1.125rem;
			text-align: center;
			padding: 0.625rem 0;
			background-image: linear-gradient(to right,#cde3e2, #e6f1f0 40%, #e6f1f0 60%, #cde3e2);
			border: solid #c4dbda;
			border-width: 0.0625rem 0 0.0625rem 0;
		}
	}
	.protect_body {
		padding-top: 2.5rem;
		padding-bottom: 3.125rem;
		background: #cad4d8 url('../images/protect_bg.webp') center top / 100% no-repeat;
		.body_title {
			width: 100%;
			margin: 0 auto 2.5rem;
			position: relative;
			z-index: 2;
	
			img {
				width: 19.75rem;
				margin: auto;
			}
		}
		.body_text {
			font-size: 1.125rem;
			font-weight: 500;
			text-align: center;
			margin-bottom: 2.5rem;
		}
		.body_point {
			width: 89.33%;
			padding: 1.875rem 0.625rem 0.625rem;
			margin: auto;
			position: relative;
			&::before {
				content: "";
				width: 100%;
				height: 100%;
				background: rgba(255,255,255,.7);
				position: absolute;
				top: 0;
				left: 0;
				z-index: 1;
			}
			.point_title {
				width: 15.875rem;
				margin: 0 auto 1.6875rem;
				position: relative;
				z-index: 2;
			}
			.point_logo {
				width: 16rem;
				margin: 0 auto 1.6875rem;
				position: relative;
				z-index: 2;
			}
			.point_flex {
				width: 100%;
				display: flex;
				flex-wrap: wrap;
				justify-content: space-between;
				gap: 0.625rem;
				position: relative;
				z-index: 2;
				.flex_box {
					width: calc((100% - 0.625rem) / 2);
					padding: 0.9375rem 0.78125rem 0.78125rem;
					display: flex;
					flex-direction: column;
					position: relative;
					&::before {
						content: "";
						width: 100%;
						height: 100%;
						background: rgba(205,227,226,.5);
						position: absolute;
						top: 0;
						left: 0;
						z-index: 1;
					}
					.box_icon {
						height: 3.875rem;
						margin-bottom: 0.8125rem;
						display: flex;
						justify-content: center;
						align-items: center;
						position: relative;
						z-index: 2;
						img { margin: auto; }
					}
					.box_title {
						font-size: 1.125rem;
						font-weight: 600;
						color: #ab1d24;
						text-align: center;
						line-height: 1.25;
						margin-bottom: 1.125rem;
						position: relative;
						z-index: 2;
					}
					.box_text {
						font-size: 0.875rem;
						font-weight: 500;
						position: relative;
						z-index: 2;
					}
					&.box1 .box_icon img { width: 3.375rem; }
					&.box2 .box_icon img { width: 2.25rem; }
					&.box3 .box_icon img { width: 4rem; }
					&.box4 .box_icon img { width: 3.625rem; }
				}
			}
		}
	}
}


/* --------------------------------------------------------------------------------
 #fragrance
-------------------------------------------------------------------------------- */
#fragrance {
	height: 35.3125rem;
	padding: 3.375rem 0 0;
	background: url('../images/fragrance_bg.webp') center top / 100% no-repeat;
	.fragrance_title {
		width: 100%;
		margin: 0 auto 3.6875rem;
		position: relative;
		z-index: 2;
		img {
			width: 13.9375rem;
			margin: auto;
		}
	}
	.fragrance_text {
		font-size: 1.125rem;
		font-weight: 500;
		color: #fff;
		text-align: center;
		margin-bottom: 3.125rem;
	}
	.fragrance_detail {
		width: 86%;
		margin: auto;
		display: flex;
		justify-content: space-between;
		position: relative;
		.detail_box {
			width: 8.4375rem;
			height: 8.4375rem;
			border-radius: 50%;
			border: 0.0625rem solid #fff;
			background: transparent;
			display: flex;
			justify-content: center;
			align-items: center;
			&.glow { filter:drop-shadow(0 0 0.125rem rgba(255,255,255,.75)) drop-shadow(0 0 0.3125rem rgba(255,255,255,0.75)); }
			.text {
				font-size: 1rem;
				font-weight: 500;
				color: #fff;
				text-align: center;
			}
		}
		.detail_and {
			font-size: 1.75rem;
			font-weight: 500;
			color: #fff;
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			z-index: 3;
		}
	}
}


/* --------------------------------------------------------------------------------
 #voice
-------------------------------------------------------------------------------- */
#voice {
	padding: 3.125rem 0 0;
	background: #ebebec;
	position: relative;
	.voice_title {
		width: 100%;
		margin: 0 auto 1.5625rem;
		img {
			width: 9.53125rem;
			margin: 0 auto 0.625rem;
		}
		.title_text {
			font-size: 1rem;
			text-align: center;
		}
	}
	.voice_flex {
		width: 100%;
		padding: 0 5.33%;
		display: flex;
		flex-direction: column;
		gap: 1.25rem;
		position: relative;
		z-index: 2;
		.flex_box {
			display: flex;
			flex-direction: column;
			gap:1.25rem;
			position: relative;
			&::before {
				content: '';
				width: 50%;
				height: 0.8125rem;
				box-shadow: 0 0.9375rem 0.3125rem rgba(0,0,0,.25);
				background-image: linear-gradient(to right,#cde3e2,#e6f1f0);
				position: absolute;
				left: 1%;
				bottom: 0.5625rem;
				transform: rotate(-5deg);
				z-index: 1;
			}
			&::after {
				content: '';
				width: 50%;
				height: 0.8125rem;
				box-shadow: 0 0.9375rem 0.3125rem rgba(0,0,0,.25);
				background-image: linear-gradient(to right,#cde3e2,#e6f1f0);
				position: absolute;
				right: 1%;
				bottom: 0.5625rem;
				transform: rotate(5deg);
				z-index: 1;
			}
			.box_inner {
				text-align: center;
				padding: 1.5625rem 0 1.125rem;
				background-image: linear-gradient(to right,#cde3e2,#e6f1f0 40%, #e6f1f0 60%, #cde3e2 100%);
				position: relative;
				z-index: 2;
				&::before {
					content: "“";
					width: 0.875rem;
					height: 0.6875rem;
					font-size: 2.5rem;
					color: #000;
					line-height: 1;
					position: absolute;
					top: 0.625rem;
					left: 0.625rem;
				}
				&::after {
					content: "”";
					font-size: 2.5rem;
					color: #000;
					line-height: 1;
					position: absolute;
					bottom: -0.78125rem;
					right: 0.625rem;
				}
				.text {
					font-size: 1rem;
					font-weight: 500;
					margin-bottom: 0.3125rem;
					.js-line {
						font-size: 1.125rem;
						font-weight: 700;
						color: #1c8f8a;
					}
				}
				.name {
					font-size: 0.75rem;
					font-weight: 500;
				}
			}
		}
	}
	.voice_video {
		width: 100%;
		height: 41.65625rem;
		margin: -6.25rem auto 0;
		display: block;
		position: relative;
		z-index: 1;
		video {
			width: 100%;
			display: block;
		}
		.voice_flex {
			width: 100%;
			position: absolute;
			bottom: 5%;
			left: 0;
		}
	}
	.voice_message {
		padding: 2.75rem 0;
		background: #fff;
		.message1 {
			width: 19.21875rem;
			margin: 0 auto 2.5rem;
		}
		.message2 {
			width: 19.96875rem;
			margin: auto;
		}
	}
}



/* --------------------------------------------------------------------------------
 #usage
-------------------------------------------------------------------------------- */
#usage {
	padding: 3.75rem 5.33% 1.25rem;
	background-image: linear-gradient(in oklab to right,#cde3e2, #e6f1f0 40%, #e6f1f0 60%, #cde3e2);
	.usage_title {
		width: 100%;
		margin: 0 auto 1.5625rem;
		img {
			width: 9.375rem;
			margin: 0 auto 0.625rem;
		}
		.title_text {
			font-size: 1rem;
			text-align: center;
		}
	}
	.usage_step {
		width: 100%;
		margin: 0 auto 2.5rem;
		position: relative;
		&.step1 {
			margin-bottom: 2.5rem;
			.step_image {
				gap:1.5625rem;
				justify-content: space-between;
				align-items: end;
				&::before {
					content: "";
					width: 0.4375rem;
					height: 0.875rem;
					clip-path: polygon(0 0.0625rem, 0 0, 100% 50%, 0 100%, 0 calc(100% - 0.0625rem), calc(100% - 0.0625rem) 50%);
					background: #b21e25;
					position: absolute;
					top: 50%;
					left: 50%;
					transform: translateY(-50%);
					z-index: 2;
				}
				&::after {
					content: "";
					width: 0.4375rem;
					height: 0.875rem;
					clip-path: polygon(0 0.0625rem, 0 0, 100% 50%, 0 100%, 0 calc(100% - 0.0625rem), calc(100% - 0.0625rem) 50%);
					background: #b21e25;
					position: absolute;
					top: 50%;
					left: calc(50% + 0.25rem);
					transform: translateY(-50%);
					z-index: 2;
				}
				.image_box {
					flex: 1;
					&.box2 { flex: 1.06; }
				}
			}
			.step_item {
				width: 6.125rem;
				position: absolute;
				top: 47%;
				right: -2%;
				z-index: 4;
			}
			.step_texture {
				width: 15.6875rem;
				position: absolute;
				top: 42%;
				left: 30%;
				z-index: 3;
			}
			.step_text { width: 55%; }
		}
		&.step2 {
			padding-left: 30%;
			z-index: 2;
			.step_image {
				justify-content: right;
				.illust {
					width: 11.875rem;
				}
			}
			.step_item {
				width: 5.84375rem;
				position: absolute;
				bottom: -2rem;
				left: -2%;
				z-index: 4;
			}
			.step_texture {
				width: 15.96875rem;
				position: absolute;
				top: 0;
				left: -20%;
				z-index: 3;
			}
		}
		.step_image {
			margin-bottom: 1rem;
			background: #fff;
			display: flex;
			position: relative;
		}
	}
	.step_title {
		font-size: 1.125rem;
		letter-spacing: 1px;
		margin-bottom: 0.25rem;
		position: relative;
		z-index: 3;
	}
	.step_text {
		font-size: 0.875rem;
		position: relative;
		z-index: 3;
	}
}


/* --------------------------------------------------------------------------------
 #faq
-------------------------------------------------------------------------------- */
#faq {
	padding: 3.75rem 5.33% 1.25rem;
	.faq_title {
		width: 100%;
		margin: 0 auto 1.5625rem;
		img {
			width: 4.28125rem;
			margin: 0 auto 0.625rem;
		}
		.title_text {
			font-size: 1rem;
			text-align: center;
		}
	}
	.faq_body {
		display: flex;
		flex-direction: column;
		gap: 0.375rem 0;
		.faq_accordion {
			width: 100%;
			margin: auto;
			.acd_head {
				width: 100%;
				padding: 1.125rem 2.5625rem 1.125rem 1.125rem;
				background-image: linear-gradient(in oklab to right,#cde3e2, #e6f1f0 40%, #e6f1f0 60%, #cde3e2);
				border: none;
				border-radius: 0.625rem;
				display: block;
				cursor: pointer;
				-webkit-tap-highlight-color: transparent;
				position: relative;
				p {
					font-size: 1rem;
					font-weight: 600;
					color: #000;
					text-align: left;
					letter-spacing: 0;
					padding-left: 1.375rem;
					position: relative;
					&::before {
						content: "Q.";
						font-size: 1rem;
						font-weight: 600;
						font-family: "YuGothic","Hiragino Sans","Meiryo","MS PGothic", sans-serif;
						color: #000;
						line-height: 1;
						position: absolute;
						top: 0.25rem;
						left: 0;
					}
				}
				.bar {
					width: 1.5rem;
					height: 1.5rem;
					background: #fff;
					border-radius: 50%;
					position: absolute;
					top: 50%;
					right: 0.625rem;
					transform: translateY(-50%);
					z-index: 2;
					&::before {
						content: '';
						width: 0.90625rem;
						height: 0.09375rem;
						background-color: #a5d0ce;
						display: inline-block;
						position: absolute;
						top: 50%;
						left: 50%;
						transform: translate(-50%, -50%);
						z-index: 2;
						transition: 0.2s;
					}
					&::after {
						content: '';
						width: 0.90625rem;
						height: 0.09375rem;
						background-color: #a5d0ce;
						display: inline-block;
						position: absolute;
						top: 50%;
						left: 50%;
						transform: translate(-50%, -50%) rotate(90deg);
						z-index: 2;
						transition: 0.2s;
					}
				}
			}
			.acd_body {
				padding-left: 1.375rem;
				margin: 1.1875rem 0.9375rem 0;
				overflow: hidden;
				height: 0;
				opacity: 0;
				transition: height 0.3s ease, opacity 0.3s ease;
				position: relative;
				p {
					font-size: 0.875rem;
					font-weight: 400;
					letter-spacing: .75px;
					margin-bottom: 0.9375rem;
					&::before {
						content: "A.";
						font-size: 1rem;
						font-weight: 600;
						font-family: "YuGothic","Hiragino Sans","Meiryo","MS PGothic", sans-serif;
						color: #000;
						line-height: 1;
						position: absolute;
						top: 0.25rem;
						left: 0;
					}
				}
			}
			&.accordion.open {
				.acd_head {
					.bar {
						&::before { transform: translate(-50%, -50%) rotate(360deg); }
						&::after { transform: translate(-50%, -50%) rotate(180deg); }
					}
				}
				.acd_body { opacity: 1; }
			}
		}
	}
}



/* --------------------------------------------------------------------------------
 #ingredient
-------------------------------------------------------------------------------- */
#ingredient {
	padding: 3.75rem 9.33%;;
	.ingredient_title {
		width: 100%;
		margin: 0 auto 1.5625rem;
		img {
			width: 8.6875rem;
			margin: 0 auto 0.625rem;
		}
		.title_text {
			font-size: 1rem;
			text-align: center;
		}
	}
	.ingredient_accordion {
		width: 100%;
		margin: auto;
		border-bottom: 0.0625rem solid #cfcfcf;
		.acd_head {
			width: 100%;
			padding: 1.125rem 2.5625rem 1.125rem 0;
			background: #fff;
			border: none;
			border-radius: 0.625rem;
			display: block;
			cursor: pointer;
			-webkit-tap-highlight-color: transparent;
			position: relative;
			p {
				font-size: 1;
				font-weight: 600;
				color: #000;
				text-align: left;
				letter-spacing: 0;
				position: relative;
			}
			.bar {
				width: 1.5rem;
				height: 1.5rem;
				position: absolute;
				top: 50%;
				right: 0.625rem;
				transform: translateY(-50%);
				z-index: 2;
				&::before {
					content: '';
					width: 0.90625rem;
					height: 0.09375rem;
					background-color: #000;
					display: inline-block;
					position: absolute;
					top: 50%;
					left: 50%;
					transform: translate(-50%, -50%);
					z-index: 2;
					transition: 0.2s;
				}
				&::after {
					content: '';
					width: 0.90625rem;
					height: 0.09375rem;
					background-color: #000;
					display: inline-block;
					position: absolute;
					top: 50%;
					left: 50%;
					transform: translate(-50%, -50%) rotate(90deg);
					z-index: 2;
					transition: 0.2s;
				}
			}
		}
		.acd_body {
			overflow: hidden;
			height: 0;
			opacity: 0;
			transition: height 0.3s ease, opacity 0.3s ease;
			position: relative;
			.ingredient_text {
				font-size: 0.75rem;
				text-align: left;
				padding-bottom: 1.25rem;
			}
		}
		&.accordion.open {
			.acd_head {
				.bar {
					&::before { transform: translate(-50%, -50%) rotate(360deg); }
					&::after { transform: translate(-50%, -50%) rotate(180deg); }
				}
			}
			.acd_body { opacity: 1; }
		}
	}
}


/* --------------------------------------------------------------------------------
footer
-------------------------------------------------------------------------------- */

footer {
	background-color: #BA0020;
	padding: 2rem 5.33%;
	.footer_logo {
		width: 6.25rem;
		margin: 0 auto 2rem;
	}
	.footer_link {
		font-size: 0.625rem;
		color: #fff;
		margin-bottom: 1.5rem;
		display: flex;
		li {
			flex: 1;
			text-align: center;
			&:last-child {
				border-left: 0.03125rem solid;
			}
			a { color: #fff; }
		}
	}
	.footer_copy {
		font-size: 0.625rem;
		color: #fff;
		text-align: center;
	}
}
