@charset "UTF-8";
/* ====================================
   ニキビ専門店 eL - LP / style.css
   Mobile First / Split Layout (PC)
==================================== */

/* --- Brand Variables --- */
:root {
	--c-bg: #f5efe6;            /* 背景クリーム */
	--c-bg-soft: #faf6ef;       /* 柔らかいクリーム */
	--c-bg-deep: #efe7d8;       /* やや深いクリーム */
	--c-line: #d9c7a8;          /* ライン用ゴールド */
	--c-line-soft: #e5d7bb;     /* 柔らかいライン */
	--c-gold: #b89272;          /* ゴールドブラウン */
	--c-gold-d: #9a7654;        /* 深いゴールド */
	--c-burgundy: #a4495a;      /* バーガンディ */
	--c-burgundy-d: #8b3a4a;    /* 深いバーガンディ */
	--c-text: #4a3a32;          /* 本文ダークブラウン */
	--c-text-soft: #6b5a52;     /* やや薄い本文 */
	--c-text-mute: #93857c;     /* ミュート */
	--c-line-green: #06C755;    /* LINE green */
	--ff-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
	--ff-serif: "Noto Serif JP", "游明朝", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", serif;
	--ff-en: "Cormorant Garamond", "Times New Roman", serif;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}
@media (max-width: 767px) {
	html {
		font-size: 2.6666vw; /* 10/375*100 */
	}
}

body {
	color: var(--c-text);
	font-size: 1.4rem;
	font-family: var(--ff-sans);
	line-height: 1.85;
	background: var(--c-bg);
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	letter-spacing: 0.02em;
}

img {
	width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.25s;
}
a:hover {
	opacity: 0.75;
}

ul, ol {
	list-style: none;
}

/* --- Utility --- */
.u-pc { display: block; }
.u-sp { display: none; }
@media (max-width: 767px) {
	.u-pc { display: none; }
	.u-sp { display: block; }
}

/* --- Animation --- */
.fadeIn {
	opacity: 0;
	transform: translateY(2rem);
	transition: opacity 1s ease, transform 1s ease;
}
.fadeIn.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ====================================
   Layout - Split (PC)
==================================== */
@media (min-width: 768px) {
	body {
		background: var(--c-bg-deep);
	}
}
.l-navi {
	display: none;
}
@media (min-width: 768px) {
	.l-navi {
		display: block;
		width: 30rem;
		height: 100vh;
		position: fixed;
		top: 0;
		left: calc(50vw - 52rem);
		z-index: 10;
	}
	.l-navi__inner {
		height: 100%;
		padding: 5rem 2rem 4rem 0;
		display: flex;
		flex-direction: column;
	}
	.l-navi__logo {
		display: flex;
		align-items: center;
		gap: 1.2rem;
		margin: 0 0 4rem 0;
	}
	.l-navi__logo-mark {
		font-family: var(--ff-en);
		font-size: 4.6rem;
		font-weight: 400;
		color: var(--c-gold);
		line-height: 1;
		font-style: italic;
	}
	.l-navi__logo-text {
		display: flex;
		flex-direction: column;
		font-family: var(--ff-serif);
		font-size: 1.2rem;
		font-weight: 500;
		color: var(--c-text);
		letter-spacing: 0.1em;
		line-height: 1.4;
	}
	.l-navi__logo-text small {
		font-family: var(--ff-en);
		font-size: 0.95rem;
		color: var(--c-gold);
		letter-spacing: 0.15em;
		margin-top: 0.3rem;
	}
	.l-navi__list {
		display: flex;
		flex-direction: column;
		gap: 0;
	}
	.l-navi__list li a {
		font-family: var(--ff-serif);
		font-size: 1.3rem;
		font-weight: 500;
		color: var(--c-text-soft);
		padding: 1rem 0.4rem;
		display: block;
		border-bottom: 1px dashed rgba(180, 146, 114, 0.25);
		letter-spacing: 0.08em;
		transition: color 0.25s, padding-left 0.25s;
	}
	.l-navi__list li a:hover {
		color: var(--c-burgundy);
		padding-left: 0.8rem;
		opacity: 1;
	}
	.l-navi__cta {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0.7rem;
		font-size: 1.4rem;
		font-weight: 700;
		color: #fff;
		height: 5.2rem;
		border-radius: 999px;
		background: var(--c-line-green);
		margin-top: 2.4rem;
		letter-spacing: 0.08em;
		box-shadow: 0 6px 16px rgba(6, 199, 85, 0.22);
		transition: transform 0.25s, box-shadow 0.25s;
	}
	.l-navi__cta:hover {
		opacity: 1;
		transform: translateY(-2px);
		box-shadow: 0 10px 20px rgba(6, 199, 85, 0.3);
	}
	.l-navi__cta-icon {
		width: 2rem;
		height: 2rem;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.l-navi__cta-icon svg {
		width: 100%;
		height: 100%;
	}
}
@media (min-width: 1366px) {
	.l-navi {
		left: calc(50vw - 56rem);
		width: 34rem;
	}
}

.l-content {
	position: relative;
	background: var(--c-bg);
}
@media (min-width: 768px) {
	.l-content {
		width: 43.2rem;
		position: relative;
		margin: 0 auto;
		left: calc((50vw + 2rem) - 50vw);
		z-index: 1;
		overflow: hidden;
		box-shadow: 0 0 40px rgba(74, 58, 50, 0.08);
	}
	body {
		display: flex;
		justify-content: center;
		padding-left: 0;
	}
	.l-content {
		left: 4rem;
	}
}
@media (min-width: 1366px) {
	.l-content {
		left: 6rem;
	}
}

/* --- SP Fixed CTA --- */
.l-sp-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	padding: 0;
}
@media (min-width: 768px) {
	.l-sp-cta {
		display: none;
	}
}
.l-sp-cta__btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.8rem;
	width: 100%;
	height: 5.6rem;
	background: var(--c-line-green);
	color: #fff;
	font-size: 1.55rem;
	font-weight: 700;
	position: relative;
	letter-spacing: 0.06em;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
}
.l-sp-cta__badge {
	position: absolute;
	top: -1rem;
	left: 1.6rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: #fff;
	background: var(--c-burgundy);
	padding: 0.2rem 1.2rem;
	border-radius: 999px;
	line-height: 1.6;
	letter-spacing: 0.08em;
}
.l-sp-cta__icon {
	width: 2rem;
	height: 2rem;
	display: inline-flex;
	align-items: center;
}
.l-sp-cta__icon svg {
	width: 100%;
	height: 100%;
}

/* ====================================
   Image sections
==================================== */
.img-sec {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	line-height: 0;
}
.img-sec img {
	width: 100%;
	height: auto;
	display: block;
}

/* --- Image section spacers ---
   各画像セクション間に約50pxの余白を挟む。
   上端は前セクションの bottom 色、下端は次セクションの top 色を取って
   線形グラデーションで馴染ませる。
   新JPG画像のピクセルサンプリング値：
     kv.bottom    #ede7e1    sec02.top  #beb8b4   ← sec02上端は装飾の濃色
     sec02.bottom #f9f4f1    sec03.top  #f4eeea
     sec03.bottom #f8f3ef    sec04.top  #fefcfd
     sec04.bottom #fefefe    sec05.top  #fdf9f8   ← 白ベタ（ユーザー指定）
     sec05.bottom #fdf9f8    sec06.top  #fefcfd
     sec06.bottom #fefcfd    sec07.top  #fdfbf9
     sec07.bottom #fefcfb    sec08.top  #fdfbf9
     sec08.bottom #fefbf9    faq背景    #f5efe6
     faq footer end #efe7d8  sec09.top  #faf5f1
     sec09.bottom #fcf7f4    line-cta.top #faf6ef
*/
.img-spacer {
	display: block;
	width: 100%;
	height: 5rem; /* = 50px */
	line-height: 0;
	flex-shrink: 0;
}
.img-spacer--kv-sec02 {
	/* KV末端のクリームをそのまま延長したベタ塗り（グラデなし） */
	background: #ede7e1;
}
.img-spacer--sec02-sec03 {
	background: linear-gradient(to bottom, #f9f4f1 0%, #f4eeea 100%);
}
.img-spacer--sec03-sec04 {
	background: linear-gradient(to bottom, #f8f3ef 0%, #fefcfd 100%);
}
.img-spacer--sec04-sec05 {
	/* ユーザー指定：50pxの白ベタ。新画像でも sec04/05 とも near-white なので白で問題なし */
	background: #ffffff;
}
.img-spacer--sec05-sec06 {
	background: linear-gradient(to bottom, #fdf9f8 0%, #fefcfd 100%);
}
.img-spacer--sec06-sec07 {
	background: linear-gradient(to bottom, #fefcfd 0%, #fdfbf9 100%);
}
.img-spacer--sec07-sec10 {
	background: linear-gradient(to bottom, #fefcfb 0%, #f9f4f1 100%);
}
.img-spacer--sec10-cases {
	background: linear-gradient(to bottom, #fbf5f5 0%, #faf6ef 100%);
}
.img-spacer--cases-reviews {
	background: linear-gradient(to bottom, #faf6ef 0%, #f7f2e9 100%);
}
.img-spacer--reviews-sec08 {
	background: linear-gradient(to bottom, #f7f2e9 0%, #fdfbf9 100%);
}
.img-spacer--sec08-faq {
	background: linear-gradient(to bottom, #fefbf9 0%, #f5efe6 100%);
}
.img-spacer--faq-sec09 {
	/* FAQフッターブロックの末尾色（薄ゴールド）→ sec09の薄ピンク */
	background: linear-gradient(to bottom, #efe7d8 0%, #faf5f1 100%);
	height: 3rem; /* FAQ末尾にすでに余白が入っているので控えめに */
}
.img-spacer--sec09-line {
	background: linear-gradient(to bottom, #fcf7f4 0%, #faf6ef 100%);
	height: 3rem; /* ::before ボーダー削除に合わせて気持ち詰める */
}

/* ====================================
   症例・ビフォーアフター Section
==================================== */
.cases {
	background: #faf6ef;
	background-image:
		radial-gradient(circle 12rem at 8% 4%, rgba(180, 146, 114, 0.10) 0%, transparent 70%),
		radial-gradient(circle 12rem at 92% 96%, rgba(164, 73, 90, 0.06) 0%, transparent 70%);
	padding: 5.5rem 0 5rem;
	position: relative;
	overflow: hidden;
}

/* --- Header --- */
.cases__header {
	text-align: center;
	padding: 0 2rem;
	margin-bottom: 3.6rem;
}
.cases__title {
	font-family: var(--ff-serif);
	font-size: 2.1rem;
	font-weight: 500;
	color: var(--c-text);
	letter-spacing: 0.12em;
	line-height: 1.5;
	margin-bottom: 1.4rem;
}
.cases__divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
}
.cases__divider-line {
	display: inline-block;
	width: 6rem;
	height: 1px;
	background: var(--c-gold);
}
.cases__divider-dot {
	display: inline-block;
	width: 0.5rem;
	height: 0.5rem;
	background: var(--c-gold);
	transform: rotate(45deg);
}

/* --- Case list --- */
.cases__list {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	padding: 0 1.6rem;
}
.cases__item {
	background: #ffffff;
	border: 1px solid rgba(217, 199, 168, 0.5);
	border-radius: 0.4rem;
	box-shadow: 0 2px 10px rgba(180, 146, 114, 0.06);
	overflow: hidden;
}

/* Photo (top, SP-first) */
.cases__photo {
	margin: 0;
	line-height: 0;
	background: #f0ece6;
}
.cases__photo img {
	width: 100%;
	height: auto;
	display: block;
}

/* Body (below photo) */
.cases__body {
	padding: 2rem 1.8rem 2.2rem;
}
.cases__num {
	display: flex;
	align-items: baseline;
	gap: 0.6rem;
	margin-bottom: 0.6rem;
}
.cases__num-label {
	font-family: var(--ff-en);
	font-size: 1rem;
	font-weight: 500;
	color: var(--c-gold);
	letter-spacing: 0.25em;
}
.cases__num-text {
	font-family: var(--ff-en);
	font-size: 2.8rem;
	font-weight: 500;
	color: var(--c-burgundy);
	letter-spacing: 0.04em;
	line-height: 1;
}
.cases__meta {
	font-family: var(--ff-sans);
	font-size: 1.15rem;
	font-weight: 500;
	color: var(--c-text-soft);
	letter-spacing: 0.05em;
	margin-bottom: 1.2rem;
}
.cases__meta-tag {
	display: inline-block;
	margin-left: 0.2rem;
	color: var(--c-text);
}
.cases__lead {
	font-family: var(--ff-serif);
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--c-burgundy);
	line-height: 1.55;
	letter-spacing: 0.04em;
	margin-bottom: 1.2rem;
}
.cases__desc {
	font-family: var(--ff-sans);
	font-size: 1.2rem;
	color: var(--c-text-soft);
	line-height: 1.9;
	letter-spacing: 0.04em;
	margin-bottom: 1.6rem;
}
.cases__treatment {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--ff-sans);
	font-size: 1.1rem;
	color: var(--c-text-soft);
	letter-spacing: 0.05em;
	line-height: 1.6;
	padding-top: 1rem;
	border-top: 1px dashed rgba(180, 146, 114, 0.45);
}
.cases__treatment-mark {
	flex-shrink: 0;
	display: inline-block;
	width: 0.9rem;
	height: 0.9rem;
	border: 1px solid var(--c-gold);
	background: transparent;
}

/* --- その他の症例 (Instagram CTA) --- */
.cases__more {
	margin-top: 3.6rem;
	padding: 0 1.6rem;
	text-align: center;
}
.cases__more-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
	width: 100%;
	max-width: 36rem;
	padding: 1.4rem 1.6rem 1.4rem 1.8rem;
	background: #ffffff;
	color: var(--c-text);
	border: 1px solid var(--c-gold);
	border-radius: 999px;
	letter-spacing: 0.06em;
	font-family: var(--ff-serif);
	font-weight: 500;
	transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
	box-shadow: 0 4px 14px rgba(180, 146, 114, 0.10);
}
.cases__more-btn:hover {
	opacity: 1;
	background: var(--c-burgundy);
	color: #fff;
	border-color: var(--c-burgundy);
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(164, 73, 90, 0.22);
}
.cases__more-icon {
	flex-shrink: 0;
	width: 2.4rem;
	height: 2.4rem;
	color: var(--c-burgundy);
	transition: color 0.25s;
}
.cases__more-btn:hover .cases__more-icon {
	color: #fff;
}
.cases__more-icon svg {
	width: 100%;
	height: 100%;
}
.cases__more-text {
	flex: 1;
	font-size: 1.4rem;
	text-align: center;
}
.cases__more-arrow {
	flex-shrink: 0;
	width: 1.2rem;
	height: 1.2rem;
}
.cases__more-arrow svg {
	width: 100%;
	height: 100%;
}
.cases__more-note {
	margin-top: 1rem;
	font-family: var(--ff-sans);
	font-size: 1.05rem;
	color: var(--c-text-mute);
	letter-spacing: 0.05em;
}

/* ====================================
   お客様からの声 (Reviews Carousel)
==================================== */
.reviews {
	background: #f7f2e9;
	background-image:
		radial-gradient(circle 14rem at 90% 6%, rgba(180, 146, 114, 0.10) 0%, transparent 70%),
		radial-gradient(circle 14rem at 10% 96%, rgba(164, 73, 90, 0.05) 0%, transparent 70%);
	padding: 5.5rem 0 5rem;
	position: relative;
	overflow: hidden;
}

/* --- Header --- */
.reviews__header {
	text-align: center;
	padding: 0 2rem;
	margin-bottom: 2.8rem;
}
.reviews__label {
	font-family: var(--ff-en);
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--c-gold);
	letter-spacing: 0.4em;
	margin-bottom: 0.6rem;
	text-transform: uppercase;
}
.reviews__title {
	font-family: var(--ff-serif);
	font-size: 2.1rem;
	font-weight: 500;
	color: var(--c-text);
	letter-spacing: 0.12em;
	line-height: 1.5;
	margin-bottom: 1.2rem;
}
.reviews__divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
}
.reviews__divider-line {
	display: inline-block;
	width: 5rem;
	height: 1px;
	background: var(--c-gold);
}
.reviews__divider-dot {
	display: inline-block;
	width: 0.5rem;
	height: 0.5rem;
	background: var(--c-gold);
	transform: rotate(45deg);
}

/* --- Carousel (scroll-snap) --- */
.reviews__carousel {
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none; /* Firefox */
	padding: 0 1.6rem 1.6rem;
	scroll-padding-left: 1.6rem;
}
.reviews__carousel::-webkit-scrollbar { display: none; }

.reviews__track {
	display: flex;
	gap: 1.4rem;
	padding: 0;
	margin: 0;
}
.reviews__item {
	flex: 0 0 86%;
	scroll-snap-align: center;
}
.reviews__card {
	margin: 0;
	background: #ffffff;
	border: 1px solid rgba(217, 199, 168, 0.5);
	border-radius: 0.6rem;
	box-shadow: 0 4px 14px rgba(180, 146, 114, 0.10);
	overflow: hidden;
	line-height: 0;
}
.reviews__card img {
	width: 100%;
	height: auto;
	display: block;
}

/* --- Controls (dots + arrows) --- */
.reviews__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.4rem;
	margin-top: 2.2rem;
	padding: 0 2rem;
}
.reviews__arrow {
	flex-shrink: 0;
	width: 3.6rem;
	height: 3.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	color: var(--c-burgundy);
	border: 1px solid var(--c-gold);
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.reviews__arrow:hover {
	background: var(--c-burgundy);
	color: #ffffff;
	border-color: var(--c-burgundy);
	box-shadow: 0 4px 12px rgba(164, 73, 90, 0.2);
}
.reviews__arrow svg {
	width: 1.4rem;
	height: 1.4rem;
}
.reviews__dots {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}
.reviews__dot {
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 50%;
	background: rgba(180, 146, 114, 0.30);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background 0.25s, transform 0.25s, width 0.25s;
}
.reviews__dot.is-active {
	background: var(--c-burgundy);
	width: 1.8rem;
	border-radius: 999px;
}

.reviews__source {
	text-align: center;
	font-family: var(--ff-en);
	font-size: 1.1rem;
	color: var(--c-text-mute);
	letter-spacing: 0.18em;
	margin-top: 1.6rem;
}

/* ====================================
   FAQ Section (テキストコーディング)
==================================== */
.faq {
	background: var(--c-bg);
	background-image:
		radial-gradient(circle at 10% 0%, rgba(217, 199, 168, 0.18) 0, transparent 35%),
		radial-gradient(circle at 95% 100%, rgba(164, 73, 90, 0.06) 0, transparent 40%);
	padding: 6rem 0 0;
	position: relative;
	overflow: hidden;
}

.faq__inner {
	padding: 0 2rem;
}

/* --- Header --- */
.faq__header {
	text-align: center;
	margin-bottom: 4rem;
}
.faq__num {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.4rem;
	margin-bottom: 0.4rem;
}
.faq__num-line {
	display: inline-block;
	width: 2.4rem;
	height: 1px;
	background: var(--c-gold);
}
.faq__num-text {
	font-family: var(--ff-en);
	font-size: 2rem;
	font-weight: 400;
	color: var(--c-gold);
	letter-spacing: 0.1em;
	line-height: 1;
	font-style: italic;
}
.faq__label {
	font-family: var(--ff-en);
	font-size: 1.15rem;
	font-weight: 500;
	color: var(--c-gold);
	letter-spacing: 0.4em;
	margin-bottom: 1.8rem;
	text-transform: uppercase;
}
.faq__title {
	font-family: var(--ff-serif);
	font-size: 2.4rem;
	font-weight: 500;
	color: var(--c-text);
	line-height: 1.6;
	letter-spacing: 0.08em;
}
.faq__title-em {
	color: var(--c-burgundy);
	font-weight: 500;
}
.faq__divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	margin-top: 1.6rem;
}
.faq__divider-line {
	display: inline-block;
	width: 3rem;
	height: 1px;
	background: var(--c-gold);
}
.faq__divider-dot {
	display: inline-block;
	width: 0.6rem;
	height: 0.6rem;
	background: var(--c-gold);
	transform: rotate(45deg);
}

/* --- FAQ Accordion --- */
.faq__list {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.faq__item {
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid var(--c-line-soft);
	border-radius: 0.6rem;
	box-shadow: 0 2px 8px rgba(180, 146, 114, 0.05);
	overflow: hidden;
	transition: box-shadow 0.3s, border-color 0.3s;
}
.faq__item.is-open {
	box-shadow: 0 4px 14px rgba(164, 73, 90, 0.08);
	border-color: rgba(164, 73, 90, 0.25);
}

/* Question = clickable button */
.faq__q {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.6rem 1.6rem 1.6rem 1.6rem;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
	transition: background 0.25s;
}
.faq__q:hover {
	background: rgba(164, 73, 90, 0.03);
}
.faq__q-mark {
	flex-shrink: 0;
	font-family: var(--ff-serif);
	font-size: 2rem;
	font-weight: 600;
	color: var(--c-burgundy);
	line-height: 1;
	letter-spacing: 0.02em;
}
.faq__q-text {
	flex: 1;
	font-family: var(--ff-serif);
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--c-text);
	line-height: 1.6;
	letter-spacing: 0.04em;
}

/* Plus / Minus toggle icon */
.faq__q-toggle {
	flex-shrink: 0;
	position: relative;
	width: 1.8rem;
	height: 1.8rem;
	margin-left: 0.4rem;
}
.faq__q-toggle-bar {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1.4rem;
	height: 1.5px;
	background: var(--c-burgundy);
	transform: translate(-50%, -50%);
	transition: transform 0.35s ease, opacity 0.35s ease;
	border-radius: 1px;
}
.faq__q-toggle-bar--v {
	transform: translate(-50%, -50%) rotate(90deg);
}
.faq__q[aria-expanded="true"] .faq__q-toggle-bar--v {
	transform: translate(-50%, -50%) rotate(0deg);
	opacity: 0;
}

/* Answer panel (collapsed by default) */
.faq__a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}
.faq__a[hidden] {
	display: block; /* keep transitionable; JS controls visibility via max-height */
}
.faq__item.is-open .faq__a {
	/* JS が scrollHeight をセットするので、ここでは未指定でOK */
}
.faq__a-inner {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	padding: 0 1.6rem 1.8rem 1.6rem;
	border-top: 1px dashed rgba(180, 146, 114, 0.4);
	padding-top: 1.6rem;
	margin-top: 0.2rem;
}
.faq__a-mark {
	flex-shrink: 0;
	font-family: var(--ff-serif);
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--c-gold);
	line-height: 1;
	padding-top: 0.25rem;
	letter-spacing: 0.02em;
}
.faq__a-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}
.faq__a-body p {
	font-family: var(--ff-sans);
	font-size: 1.25rem;
	color: var(--c-text-soft);
	line-height: 1.85;
	letter-spacing: 0.04em;
}

/* --- FAQ Footer (CTA) --- */
.faq__footer {
	margin-top: 5rem;
	padding: 5rem 2rem 6rem;
	text-align: center;
	background:
		/* 左上：薄いアースカラーの円形グラデ球体（フル可視） */
		radial-gradient(circle 13rem at 16% 22%,
			rgba(180, 146, 114, 0.32) 0%,
			rgba(180, 146, 114, 0.16) 45%,
			rgba(180, 146, 114, 0.04) 75%,
			transparent 100%),
		/* 右下：薄いアースカラーの円形グラデ球体（フル可視） */
		radial-gradient(circle 13rem at 84% 78%,
			rgba(180, 146, 114, 0.32) 0%,
			rgba(180, 146, 114, 0.16) 45%,
			rgba(180, 146, 114, 0.04) 75%,
			transparent 100%),
		/* 全体の縦グラデ */
		linear-gradient(to bottom, transparent 0%, rgba(217, 199, 168, 0.10) 60%, rgba(217, 199, 168, 0.20) 100%);
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}
.faq__footer-deco {
	display: none;
}
.faq__footer-text {
	font-family: var(--ff-serif);
	font-size: 1.55rem;
	font-weight: 500;
	color: var(--c-text);
	line-height: 1.9;
	letter-spacing: 0.06em;
	margin-bottom: 2.6rem;
	position: relative;
	z-index: 1;
}
.faq__footer-em {
	display: inline-block;
	color: var(--c-burgundy);
	font-size: 1.8rem;
	margin-top: 0.4rem;
	letter-spacing: 0.08em;
}
.faq__footer-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	position: relative;
	z-index: 1;
}
.faq__footer-logo-mark {
	font-family: var(--ff-en);
	font-size: 3.6rem;
	font-weight: 400;
	color: var(--c-gold);
	line-height: 1;
	font-style: italic;
}
.faq__footer-logo-text {
	display: flex;
	flex-direction: column;
	font-family: var(--ff-serif);
	font-size: 1.15rem;
	font-weight: 500;
	color: var(--c-text);
	letter-spacing: 0.1em;
	line-height: 1.4;
	text-align: left;
}
.faq__footer-logo-text small {
	font-family: var(--ff-en);
	font-size: 0.9rem;
	color: var(--c-gold);
	letter-spacing: 0.15em;
	margin-top: 0.2rem;
}

/* ====================================
   LINE CTA Section
==================================== */
.line-cta {
	position: relative;
	background:
		linear-gradient(180deg, var(--c-bg-soft) 0%, var(--c-bg) 100%);
	padding: 4rem 0 7rem;
	overflow: hidden;
}
.line-cta::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: -2rem;
	width: 14rem;
	height: 14rem;
	background-image:
		radial-gradient(ellipse at 90% 80%, rgba(180, 146, 114, 0.25) 0, transparent 55%),
		radial-gradient(ellipse at 80% 60%, rgba(180, 146, 114, 0.18) 0, transparent 55%);
	pointer-events: none;
}

.line-cta__inner {
	padding: 0 2rem;
	position: relative;
	z-index: 1;
}

.line-cta__head {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	margin-bottom: 1.6rem;
}
.line-cta__label {
	font-family: var(--ff-en);
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--c-line-green);
	letter-spacing: 0.4em;
	text-transform: uppercase;
}
.line-cta__head-deco {
	display: inline-flex;
	gap: 0.4rem;
	flex: 1;
	align-items: center;
}
.line-cta__head-deco span {
	display: inline-block;
	height: 1px;
	background: var(--c-line-soft);
	flex: 1;
}
.line-cta__head-deco span:nth-child(2) {
	flex: 0 0 0.6rem;
	height: 0.6rem;
	transform: rotate(45deg);
	background: var(--c-gold);
}

.line-cta__title {
	font-family: var(--ff-serif);
	font-size: 2.2rem;
	font-weight: 500;
	color: var(--c-text);
	line-height: 1.7;
	letter-spacing: 0.06em;
	margin-bottom: 1.8rem;
}
.line-cta__title-em {
	display: inline-block;
	color: var(--c-burgundy);
	font-weight: 600;
	font-size: 2.6rem;
	letter-spacing: 0.04em;
	position: relative;
	padding: 0 0.2rem;
}
.line-cta__title-em::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.2rem;
	height: 0.6rem;
	background: linear-gradient(to right, rgba(217, 199, 168, 0.55), rgba(217, 199, 168, 0.2));
	z-index: -1;
}

.line-cta__lead {
	font-family: var(--ff-serif);
	font-size: 1.6rem;
	color: var(--c-text);
	line-height: 2.1;
	letter-spacing: 0.06em;
	margin-bottom: 2.8rem;
	font-weight: 500;
}
.line-cta__lead-em {
	display: inline-block;
	color: var(--c-burgundy);
	font-weight: 600;
	font-size: 1.85rem;
	letter-spacing: 0.04em;
	position: relative;
	padding: 0 0.2rem;
}
.line-cta__lead-em::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.2rem;
	height: 0.5rem;
	background: linear-gradient(to right, rgba(217, 199, 168, 0.55), rgba(217, 199, 168, 0.2));
	z-index: -1;
}

.line-cta__features {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 2.8rem;
	padding: 1.8rem 1.6rem;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid var(--c-line-soft);
	border-radius: 0.6rem;
}
.line-cta__features li {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.line-cta__features-icon {
	flex-shrink: 0;
	width: 2.2rem;
	height: 2.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--c-line-green);
	border-radius: 50%;
	color: #fff;
}
.line-cta__features-icon svg {
	width: 1.2rem;
	height: 1.2rem;
}
.line-cta__features li p {
	font-family: var(--ff-sans);
	font-size: 1.3rem;
	color: var(--c-text);
	line-height: 1.6;
	letter-spacing: 0.04em;
}
.line-cta__features li strong {
	color: var(--c-burgundy);
	font-weight: 700;
}

.line-cta__btn {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	width: 100%;
	padding: 1.6rem 1.6rem 1.6rem 2rem;
	background: var(--c-line-green);
	color: #fff;
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(6, 199, 85, 0.28);
	transition: transform 0.25s, box-shadow 0.25s;
	position: relative;
}
.line-cta__btn:hover {
	opacity: 1;
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(6, 199, 85, 0.36);
}
.line-cta__btn-icon {
	flex-shrink: 0;
	width: 3.6rem;
	height: 3.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: var(--c-line-green);
	border-radius: 50%;
	padding: 0.4rem;
}
.line-cta__btn-icon svg {
	width: 100%;
	height: 100%;
}
.line-cta__btn-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	line-height: 1.2;
	letter-spacing: 0.05em;
}
.line-cta__btn-text small {
	font-size: 1.05rem;
	font-weight: 500;
	opacity: 0.85;
	margin-bottom: 0.2rem;
}
.line-cta__btn-text strong {
	font-size: 1.55rem;
	font-weight: 700;
	letter-spacing: 0.06em;
}
.line-cta__btn-arrow {
	flex-shrink: 0;
	width: 1.4rem;
	height: 1.4rem;
	display: flex;
	align-items: center;
}
.line-cta__btn-arrow svg {
	width: 100%;
	height: 100%;
}

.line-cta__limited {
	margin-top: 2rem;
	padding: 1.6rem 1.6rem 1.4rem;
	background: #ffffff;
	border: 1px solid var(--c-line-soft);
	border-radius: 0.6rem;
	text-align: center;
	box-shadow: 0 2px 8px rgba(180, 146, 114, 0.06);
}
.line-cta__limited-title {
	font-family: var(--ff-serif);
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--c-text);
	letter-spacing: 0.08em;
	line-height: 1.55;
	margin-bottom: 0.7rem;
	text-align: center;
}
.line-cta__limited-mark {
	display: inline-block;
	padding: 0.3rem 1rem;
	margin-right: 0.6rem;
	background: var(--c-burgundy);
	color: #ffffff;
	border-radius: 999px;
	font-size: 1.2rem;
	letter-spacing: 0.06em;
	line-height: 1.55;
	font-weight: 500;
	white-space: nowrap;
	vertical-align: middle;
}
.line-cta__limited-mark strong {
	font-family: var(--ff-en);
	font-size: 1.55rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin: 0 0.1rem;
}
.line-cta__limited-text {
	font-family: var(--ff-sans);
	font-size: 1.15rem;
	color: var(--c-text-soft);
	line-height: 1.75;
	letter-spacing: 0.04em;
}

/* ====================================
   Footer
==================================== */
.l-footer {
	padding: 4rem 2rem 4rem;
	background: #fff;
	text-align: center;
	border-top: 1px solid var(--c-line-soft);
}
@media (max-width: 767px) {
	.l-footer {
		padding-bottom: 9rem;
	}
}
.l-footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}
.l-footer__logo {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.l-footer__logo-mark {
	font-family: var(--ff-en);
	font-size: 3.4rem;
	font-weight: 400;
	color: var(--c-gold);
	line-height: 1;
	font-style: italic;
}
.l-footer__logo-text {
	display: flex;
	flex-direction: column;
	font-family: var(--ff-serif);
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--c-text);
	letter-spacing: 0.1em;
	line-height: 1.4;
	text-align: left;
}
.l-footer__logo-text small {
	font-family: var(--ff-en);
	font-size: 0.9rem;
	color: var(--c-gold);
	letter-spacing: 0.15em;
	margin-top: 0.2rem;
}
.l-footer__copy {
	font-family: var(--ff-en);
	font-size: 1rem;
	color: var(--c-text-mute);
	letter-spacing: 0.1em;
}
