/*
 * セラピストプラネット LP（固定ページ）専用CSS
 * Tailwindのビルドには依存しない、このページ専用の通常CSS。
 * 左メニュー525px・中央390px・右CTA525px の3カラムスプリットレイアウト（合計1440px設計）。
 * PC表示は 1024px 以上。
 *
 * 1440pxを基準デザインとし、ビューポート幅に応じて html の font-size を
 * 可変にすることで、中央列も含めたレイアウト全体をrem単位で比例拡縮する。
 * 1440pxより狭い・広いいずれの場合もデザインが崩れないよう、
 * 1024px〜1920pxの範囲で100vwに比例して拡大縮小し、
 * 1920px以上は最大デザイン幅として font-size を固定する。
 */

html {
	font-size: 16px;
}

@media screen and (min-width: 1024px) {
	html {
		font-size: calc(100vw / 1440 * 16);
	}
}

@media screen and (min-width: 1920px) {
	html {
		font-size: calc(1920 / 1440 * 16px);
		/* 21.3333px */
	}
}

@media (min-width: 1024px) {
	html,
	body.tp-lp {
		height: 100%;
		overflow: hidden;
	}
}

/* ==========================================================================
   リセット・ベース（body.tp-lp配下にスコープ）
   ========================================================================== */

.tp-lp,
.tp-lp *,
.tp-lp *::before,
.tp-lp *::after {
	box-sizing: border-box;
}

.tp-lp {
	--color-brand-orange: #ec6c00;
	--color-brand-orange-dark: #c95f12;
	--color-brand-blue: #1ca5dd;
	--color-brand-line: #06c755;
	--color-brand-cream-deep: #f8e8d2;
	--color-brand-text: #4a3b2c;

	margin: 0;
	overflow-x: hidden;
	background: #ffffff;
	font-family: "Yu Gothic", "游ゴシック体", YuGothic, "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
	color: var(--color-brand-text);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

.tp-lp p,
.tp-lp h1,
.tp-lp h2,
.tp-lp h3,
.tp-lp h4,
.tp-lp h5,
.tp-lp h6 {
	margin: 0;
}

.tp-lp img,
.tp-lp svg {
	display: block;
	max-width: 100%;
	height: auto;
}

.tp-lp :where(a) {
	color: inherit;
	text-decoration: none;
}

.tp-lp button {
	cursor: pointer;
	font: inherit;
}

.tp-u-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
	clip-path: inset(50%);
}

/* ==========================================================================
   全体レイアウト
   ========================================================================== */

.tp-layout {
	display: block;
	width: 100%;
	overflow: visible;
}

@media (min-width: 1024px) {
	.tp-layout {
		display: flex;
		height: 100vh;
		overflow-y: auto;
		overflow-x: hidden;
	}
}

/* ==========================================================================
   左メニュー（PC: 525px / SP: 非表示）
   ========================================================================== */

.tp-aside-left {
	position: relative;
	display: none;
	background: #ffffff;
	color: var(--color-brand-orange);
}

@media (min-width: 1024px) {
	.tp-aside-left {
		display: block;
		height: 100vh;
		flex: 1;
		overflow: hidden;
		position: sticky;
		top: 0;
	}
}

.tp-aside-left__inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	width: 36.8125rem;
	max-width: min(630px, 100%);
	margin-inline: auto;
}

.tp-nav {
	max-width: min(16.6875rem, 320px);
	margin-inline: auto;
}

.tp-nav__list {
	display: flex;
	flex-direction: column;
}

.tp-nav__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: min(0.625rem, 12px);
	padding: min(1.4375rem, 28px) 0;
	border-bottom: 1px dotted var(--color-brand-orange);
	transition: opacity 0.2s;
}

.tp-nav__link:hover {
	opacity: 0.85;
}

.tp-nav__label {
	font-size: min(1.125rem, 22px);
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--color-brand-orange);
	white-space: nowrap;
	transition: transform 0.2s;
}

.tp-nav__link:hover .tp-nav__label {
	transform: translateX(min(0.25rem, 5px));
}

.tp-nav__arrow {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: min(1.4375rem, 28px);
	height: min(1.4375rem, 28px);
	border-radius: 50%;
	background: var(--color-brand-orange);
}

.tp-nav__arrow-icon {
	width: min(0.375rem, 7px);
	height: min(0.5625rem, 11px);
}

/* ==========================================================================
   中央メインコンテンツ（PC: 390px設計・縦スクロール / 左右と同じ比率で拡縮）
   ========================================================================== */

.tp-main {
	width: 100%;
	max-width: 500px;
	margin-inline: auto;
	flex-shrink: 0;
	overflow: visible;
	background: #ffffff;
	padding-bottom: 0;
}

@media (min-width: 1024px) {
	.tp-layout {
		scrollbar-width: thin;
		scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
	}

	.tp-layout::-webkit-scrollbar {
		width: 6px;
		background: transparent;
	}

	.tp-layout::-webkit-scrollbar-thumb {
		background-color: rgba(0, 0, 0, 0.25);
		border-radius: 3px;
	}
}

@media (min-width: 1024px) {
	.tp-main {
		height: auto;
		width: 31.25rem;
		flex: 0 0 31.25rem;
		overflow: visible;
		padding-bottom: 0;
	}
}

/* ヘッダー（390px範囲内にsticky固定） */

.tp-header {
	position: sticky;
	top: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.375rem;
	/* 6px */
	padding: 0.5rem 0.625rem;
	/* 8px 10px */
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 0.0625rem 0.375rem rgba(0, 0, 0, 0.08);
	/* 0 1px 6px */
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.tp-header__logo-link {
	display: flex;
	flex: 0 1 auto;
	align-items: center;
	min-width: 0;
}

.tp-header__logo {
	height: 1.625rem;
	/* 26px */
	width: auto;
	max-width: 100%;
}

.tp-header__ctas {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	gap: 0.375rem;
	/* 6px */
}

.tp-header__cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 3rem;
	/* 48px */
	gap: 0.0625rem;
	/* 1px */
	padding-block: 0.25rem;
	/* 4px */
	border-radius: 0.5rem;
	/* 8px */
	line-height: 1.1;
	color: #ffffff;
}

.tp-header__cta--line {
	background: var(--color-brand-line);
}

.tp-header__cta--tel {
	background: var(--color-brand-blue);
}

.tp-header__cta-label {
	font-size: 0.75rem;
	/* 12px */
	font-weight: 700;
}

.tp-header__cta-sub {
	font-size: 0.625rem;
	/* 10px */
	font-weight: 700;
}

/* メイン画像セクション */

.tp-main section {
	position: relative;
}

/* section-02: スライダーのはみ出しをセクション内に限定 */
#section-02 {
	overflow: hidden;
}

.tp-section__img {
	width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 1023px) {
	.tp-section__img {
		width: calc(100% + 1px);
	}
}

/* 院セクション（clinic-*） */

.tp-section--clinic {
	position: relative;
}

.tp-clinic-cta-wrap {
	position: absolute;
	bottom: 17%;
	left: 50%;
	translate: -50%;
	display: flex;
	gap: 8px;
	width: 80%;
}

#clinic-11 .tp-clinic-cta-wrap {
	bottom: 29%;
}

.tp-clinic-cta__btn {
	flex: 1;
	display: block;
	transition: opacity 0.2s, transform 0.2s;
}

.tp-clinic-cta__btn img {
	width: 100%;
	height: auto;
	display: block;
}

.tp-clinic-cta__btn:hover {
	opacity: 0.8;
	transform: translateY(2px);
}

/* CTAセクション */

.tp-cta-wrap {
	position: absolute;
	left: 50%;
	translate: -50%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 66%;
}

.tp-cta-wrap__01 {
	bottom: 19%;
}

.tp-cta-wrap__02 {
	bottom: 16%;
}

.tp-cta-wrap__03 {
	bottom: 5%;
}

.tp-cta-wrap__04 {
	bottom: 5%;
}
.tp-cta-wrap__05 {
	bottom: 10%;
}

.tp-section__cta {
	display: block;
	width: 100%;
	transition: opacity 0.2s, transform 0.2s;
}

.tp-section__cta:hover {
	opacity: 0.8;
	transform: translateY(2px);
}

/* お客様の声スライダー */

.tp-voice-slider {
	position: absolute !important;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	overflow: visible !important;
	background: transparent;
}

.tp-voice-slider .swiper-wrapper {
	align-items: center;
}

.tp-voice-slider .swiper-slide {
	width: 85.64%; /* 334px ÷ 390px */
	aspect-ratio: 334 / 493; /* slide03の高さに統一 */
	flex-shrink: 0;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
}

.tp-voice-slider .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: top;
	display: block;
}

/* swipe hint */

.tp-voice-slider__swipe-hint {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 24px;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.45);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #fff;
	white-space: nowrap;
	pointer-events: none;
	transition: opacity 0.5s ease;
}

.tp-voice-slider__swipe-icon {
	width: 48px;
	height: auto;
}

.tp-voice-slider__swipe-hint.is-hidden {
	opacity: 0;
}

/* scrollbar */

.tp-voice-slider__scrollbar {
	position: relative !important;
	bottom: auto !important;
	left: auto !important;
	width: 90px !important;
	height: 5px !important;
	margin: 16px auto 0;
	border-radius: 2px;
	background: rgba(0, 0, 0, 0.12);
}

.tp-voice-slider__scrollbar .swiper-scrollbar-drag {
	background: var(--color-brand-orange);
	border-radius: 2px;
	cursor: grab;
}

.tp-voice-slider__scrollbar .swiper-scrollbar-drag:active {
	cursor: grabbing;
}

/* ==========================================================================
   右CTA（PC: 525px / SP: 非表示）
   ========================================================================== */

.tp-aside-right {
	position: relative;
	display: none;
	overflow: hidden;
	background: white url(../../img/lp-therapist-planet/cta/right_bg.png) no-repeat right top / 100% 100%;
	color: #563c2b;
	margin-left: 50px;
}

@media (min-width: 1024px) {
	.tp-aside-right {
		display: block;
		height: 100vh;
		flex: 1;
		position: sticky;
		top: 0;
	}
}

.tp-aside-right__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
	width: 100%;
	padding-bottom: min(11.8125rem, 227px);
}


/* 白いオファーカード */

.tp-offer-card {
	position: relative;
	flex-shrink: 0;
	width: 22.375rem;
	max-width: 430px;
	border-radius: 20px;
	background: #fff;
	text-align: center;
	padding: 30px 30px 60px;
}

.tp-offer-card__badge {
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	transform: translate(-50%, -50%);
	width: 240px;
	background: var(--color-brand-orange);
	border-radius: 30px;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	color: #fff;
	padding: 6px 0;
}

.tp-offer-card__title {
	font-size: 16px;
	line-height: 1.2;
	font-weight: 700;
	margin-bottom: 4px;
}

.tp-offer-card__subtitle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 16px;
	font-weight: 700;
}

.tp-offer-card__subtitle::before,
.tp-offer-card__subtitle::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 20px;
	background: currentColor;
}

.tp-offer-card__subtitle::before {
	transform: rotate(-25deg);
}

.tp-offer-card__subtitle::after {
	transform: rotate(25deg);
}

.tp-offer-card__price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 4px;
	margin-block: 6px;
	font-weight: 700;
	line-height: 1;
	color: var(--color-brand-blue);
}

.tp-offer-card__price-badge {
	align-self: center;
	margin-right: 6px;
	padding: 11px 7px;
	border-radius: 100px;
	background: var(--color-brand-blue);
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: #ffffff;
	letter-spacing: 0.1em;
	writing-mode: vertical-rl;
	text-orientation: upright;
}

.tp-offer-card__price-amount {
	font-family: "LINE Seed JP", sans-serif;
	font-size: 60px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.05em;
}

.tp-offer-card__price-unit-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	align-self: flex-end;
	line-height: 1;
}

.tp-offer-card__price-unit {
	font-size: 32px;
	font-weight: 700;
}

.tp-offer-card__price-note {
	font-size: 12px;
	font-weight: 700;
}

.tp-offer-card__divider {
	border: 0;
	border-top: 1px dashed var(--color-brand-orange);
	opacity: 20;
	margin-top: 16px;
	margin-bottom: 10px;
}

.tp-offer-card__guarantee {
	position: relative;
	display: inline-block;
	padding-inline: 17px;
	font-size: 18px;
	font-weight: 700;
	color: var(--color-brand-orange);
	margin-bottom: 4px;
}

.tp-offer-card__guarantee::before,
.tp-offer-card__guarantee::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 12px;
	height: 28px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	transform: translateY(-50%);
}

.tp-offer-card__guarantee::before {
	left: 0;
	background-image: url(../../img/lp-therapist-planet/cta/leaf_left.png);
}

.tp-offer-card__guarantee::after {
	right: 0;
	background-image: url(../../img/lp-therapist-planet/cta/leaf-right.png);
}

.tp-offer-card__guarantee-desc {
	font-size: 12px;
	line-height: 1.5;
	font-weight: 700;
	text-align: center;
}

/* 予約CTAボタン（LINE / 電話） */

.tp-cta-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 24px;
}

.tp-cta-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 16px 25px;
	border-radius: 9999px;
	font-size: 17px;
	font-weight: 700;
	color: #ffffff;
	transition: transform 0.15s, box-shadow 0.15s;
}

.tp-cta-link__icon {
	width: 26px;
	height: 26px;
	flex-shrink: 0;
}

.tp-cta-link__arrow {
	width: 5px;
	height: 11px;
	flex-shrink: 0;
}

.tp-cta-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.tp-cta-link--line {
	background: var(--color-brand-line);
}

.tp-cta-link--tel {
	background: var(--color-brand-orange);
}

/* スタッフ写真 */

.tp-staff {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 18.9375rem;
	max-width: 365px;
	overflow: hidden;
}

.tp-staff__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
}

/* ==========================================================================
   SP専用: 下部固定CTA
   ========================================================================== */

.tp-fixed-cta {
	position: fixed;
	bottom: 0;
	z-index: 100;
	display: flex;
	flex-direction: row;
	gap: min(2.05vw, 8px);
	padding: min(2.56vw, 10px) min(3.08vw, 12px);
	background: #FEE4AE;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	transform: translateY(100%);
	transition: transform 0.3s ease;
	box-sizing: border-box;
}

.tp-fixed-cta.is-visible {
	transform: translateY(0);
}

.tp-fixed-cta .tp-cta-link {
	flex: 1;
	padding: min(3.08vw, 12px) min(2.56vw, 14px);
	font-size: min(3.33vw, 13px);
	justify-content: center;
	white-space: nowrap;
}

.tp-fixed-cta .tp-cta-link__icon {
	width: min(5.13vw, 26px);
	height: min(5.13vw, 26px);
}

.tp-fixed-cta .tp-cta-link__arrow {
	width: min(1.28vw, 5px);
	height: min(2.82vw, 11px);
}

/* ==========================================================================
   画面上部固定 ヘッダーCTA（LINE / TEL）
   ========================================================================== */

.tp-header-cta {
	position: relative;
	z-index: 200;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	padding-right: 8px;
	pointer-events: none;
	height: 0;
}

.tp-header-cta__btn {
	display: block;
	flex-shrink: 0;
	pointer-events: auto;
	transition: opacity 0.2s, transform 0.2s;
}

.tp-header-cta__btn:hover {
	opacity: 0.8;
	transform: translateY(2px);
}

.tp-header-cta__img {
	display: block;
	width: min(16.1538vw, 80.77px);
	height: auto;
	aspect-ratio: 63 / 48;
	object-fit: contain;
}
/* ==========================================================================
   電話モーダル
   ========================================================================== */

.tp-tel-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	pointer-events: none;
}

.tp-tel-modal.is-open {
	visibility: visible;
	pointer-events: auto;
}

.tp-tel-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.tp-tel-modal.is-open .tp-tel-modal__overlay {
	opacity: 1;
}

/* 閉じるボタンを外側に出すためのラッパー */
.tp-tel-modal__wrap {
	position: relative;
	z-index: 1;
	width: 350px;
	max-width: calc(100% - 40px);
	transform: translateY(20px);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.tp-tel-modal.is-open .tp-tel-modal__wrap {
	transform: translateY(0);
	opacity: 1;
}

/* 白いカードダイアログ */
.tp-tel-modal__dialog {
	background: #fff;
	border-radius: 20px;
	max-height: 80vh;
	overflow-y: auto;
	padding: 20px;
}

/* 閉じるボタン：ダイアログ右上の外側に配置 */
.tp-tel-modal__close {
	position: absolute;
	top: -14px;
	right: -14px;
	z-index: 2;
	width: 47px;
	height: 47px;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: opacity 0.15s;
}

.tp-tel-modal__close img {
	display: block;
	width: 100%;
	height: 100%;
}

.tp-tel-modal__close:hover {
	opacity: 0.8;
}

.tp-tel-modal__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* 各院アイテム */
.tp-tel-modal__item {
	padding: 16px 0;
	border-bottom: 1px dashed var(--color-brand-orange);
}

.tp-tel-modal__item:first-child {
	padding-top: 0;
}

.tp-tel-modal__item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

/* 院名（オレンジ太字） */
.tp-tel-modal .tp-tel-modal__name {
	font-size: 16px;
	font-weight: 700;
	font-family: "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
	color: var(--color-brand-orange);
	line-height: 1.4;
	margin-bottom: 5px;
}

/* 住所（グレー小文字） */
.tp-tel-modal .tp-tel-modal__address {
	font-size: 12px;
	color: var(--color-brand-text);
	line-height: 1.6;
	margin-bottom: 5px;
}

/* 電話ボタン（画像） */
.tp-tel-modal__link {
	display: block;
	transition: opacity 0.15s;
}

.tp-tel-modal__link img {
	width: 100%;
	height: auto;
	display: block;
}

.tp-tel-modal__link:hover,
.tp-tel-modal__link:active {
	opacity: 0.85;
}

@media (min-width: 1024px) {
	.tp-tel-modal__wrap {
		width: min(1080px, calc(100% - 64px));
	}

	.tp-tel-modal__dialog {
		padding: 24px;
	}

	.tp-tel-modal__list {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 14px;
	}

	.tp-tel-modal__item,
	.tp-tel-modal__item:first-child,
	.tp-tel-modal__item:last-child {
		padding: 12px;
		border: 1px dashed var(--color-brand-orange);
		border-radius: 12px;
	}
}

/* ==========================================================================
   よくある質問（FAQ）
   ========================================================================== */

.tp-section--faq {
	background: #FFE4AE;
	padding: 45px 14px;
}

.tp-faq__title-wrap {
	width: 168px;
	margin: 0 auto 30px;
}

.tp-faq__heading {
	width: 100%;
	font-size: 24px;
	font-weight: 700;
	color: var(--color-brand-orange);
	white-space: nowrap;
}

.tp-faq__heading-underline {
	display: block;
	width: 100%;
	height: auto;
}

.tp-faq__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.tp-faq__item {
	border: none;
}

.tp-faq__item:first-child {
	border-top: none;
}

.tp-faq__details {
	border-radius: 10px;
	overflow: hidden;
}

/* Q行：オレンジ背景バー */
.tp-faq__q {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 14px;
	background: var(--color-brand-orange);
	border-radius: 10px;
	cursor: pointer;
	list-style: none;
	user-select: none;
	transition: border-radius 0.05s;
}

.tp-faq__details[open] .tp-faq__q {
	border-radius: 8px 8px 0 0;
}

.tp-faq__q::-webkit-details-marker {
	display: none;
}

/* バッジ共通 */
.tp-faq__badge {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
}

.tp-faq__badge--q {
	font-family: "LINE Seed JP", sans-serif;
	color: #fff;
}

.tp-faq__badge--a {
	font-family: "LINE Seed JP", sans-serif;
	color: var(--color-brand-orange);
}

/* Q テキスト：白 */
.tp-faq__q-text {
	flex: 1;
	font-size: 14px;
	font-family: "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
	font-weight: 700;
	color: #fff;
	line-height: 1;
}

/* +/− インジケーター（16px × 1.5px の線で構成） */
.tp-faq__arrow {
	flex-shrink: 0;
	position: relative;
	width: 16px;
	height: 16px;
}

/* 水平線（−）: 常に表示 */
.tp-faq__arrow::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 16px;
	height: 1.5px;
	background: #fff;
	transform: translateY(-50%);
}

/* 垂直線: 閉じているときのみ表示して＋にする */
.tp-faq__arrow::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1.5px;
	height: 16px;
	background: #fff;
	transform: translate(-50%, -50%);
	transition: opacity 0.2s;
}

.tp-faq__details[open] .tp-faq__arrow::after {
	opacity: 0;
}

/* A行：白背景 */
.tp-faq__a {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 14px;
	background: #fff;
	border-radius: 0 0 8px 8px;
}

.tp-faq__a-text {
	flex: 1;
	font-size: 14px;
	font-weight: 700;
	font-family: "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
	color: var(--color-brand-text);
	line-height: 1.6;
}
