/* ==========================================================================
   /personal-training/ 専用スタイルシート
   このページ(is_page('personal-training'))でのみ読み込まれる。既存サイトの
   共通CSSは一切dequeueしない（サロン共通デザイン・ヘッダー・フッター・固定CTA
   バーはそのまま維持し、このファイルは本文の見せ方を補うだけの追加スタイル）。
   配色は既存サイトのトークンを踏襲：
   - アクセント（CTA/価格強調）: #F4FF3A（既存 .gr-btn--gold と同一）
   - 小見出しラベル: #8a6d00（既存 .gr-idx と同一）
   ========================================================================== */

.pt-fv,
.pt-section,
.pt-final {
	max-width: 1100px;
	margin: 0 auto;
	padding: 64px 24px;
}

.pt-fv {
	text-align: center;
	padding-top: 56px;
	padding-bottom: 48px;
}
.pt-eyebrow {
	font-size: 12px;
	letter-spacing: 0.25em;
	font-weight: 700;
	color: #8a6d00;
	margin: 0 0 20px;
}
.pt-fv__title {
	font-size: clamp(26px, 5vw, 38px);
	font-weight: 700;
	line-height: 1.5;
	margin: 0 0 24px;
}
.pt-fv__lead {
	max-width: 560px;
	margin: 0 auto 28px;
	font-size: 15.5px;
	line-height: 2;
	color: #444;
}
.pt-badges {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 0 0 32px;
	padding: 0;
}
.pt-badges li {
	font-size: 12.5px;
	font-weight: 600;
	padding: 7px 16px;
	border: 1px solid #ddd;
	border-radius: 999px;
	color: #555;
}

/* CTAボタン：既存の.gr-btn--goldと同系色にして視認性を最優先 */
.pt-cta-btn {
	display: inline-block;
	background: #F4FF3A;
	color: #000;
	font-weight: 700;
	font-size: 16px;
	padding: 18px 40px;
	border-radius: 4px;
	text-decoration: none;
	line-height: 1.4;
}
.pt-cta-btn:hover { opacity: 0.85; }

/* FVのCTA直下：小さな条件バッジ＋控えめなサブ導線リンク */
.pt-fv__subbadges {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 16px 0 10px;
	padding: 0;
}
.pt-fv__subbadges li {
	font-size: 11.5px;
	color: #777;
}
.pt-fv__subbadges li::after {
	content: "/";
	margin-left: 8px;
	color: #ccc;
}
.pt-fv__subbadges li:last-child::after { content: none; }
.pt-fv__softlink {
	font-size: 12.5px;
	color: #888;
	margin: 4px 0 0;
}
.pt-fv__softlink a {
	color: #8a6d00;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* 料金プラン：導入文とプラン下の補助CTA */
.pt-pricing__intro {
	text-align: center;
	font-size: 15px;
	color: #555;
	margin: -8px 0 32px !important;
}
.pt-pricing__softlink {
	text-align: center;
	font-size: 13px;
	color: #888;
	margin-top: 20px !important;
}
.pt-pricing__softlink a {
	color: #8a6d00;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.pt-section h2 {
	font-size: clamp(22px, 4vw, 28px);
	font-weight: 700;
	line-height: 1.5;
	margin: 0 0 28px;
	text-align: center;
}
.pt-section p { font-size: 15.5px; line-height: 2; color: #444; margin: 0 0 1.2em; }
.pt-section p:last-child { margin-bottom: 0; }

/* 関連JOURNALリンク：通常の関連記事リンクとして控えめに（CTAと混同させない） */
.pt-related {
	text-align: center;
	font-size: 13px !important;
	margin-top: 1.6em !important;
}
.pt-related a {
	color: #8a6d00;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.pt-list {
	list-style: none;
	max-width: 640px;
	margin: 0 auto 32px;
	padding: 0;
	display: grid;
	gap: 10px;
}
.pt-list li {
	position: relative;
	padding: 12px 16px 12px 34px;
	background: #f7f6f2;
	border-radius: 4px;
	font-size: 14.5px;
	color: #333;
}
.pt-list li::before {
	content: "・";
	position: absolute;
	left: 14px;
	color: #8a6d00;
	font-weight: 700;
}

/* オンラインPTで行うこと：カード */
.pt-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: #e5e2da;
	border: 1px solid #e5e2da;
}
.pt-card { background: #fff; padding: 26px 22px; }
.pt-card__num { font-weight: 700; color: #8a6d00; font-size: 13px; letter-spacing: 0.08em; margin: 0 0 10px; }
.pt-card__title { font-weight: 700; font-size: 15.5px; margin: 0 0 8px; }
.pt-card__desc { font-size: 13.5px; color: #666; line-height: 1.8; margin: 0; }

/* 3日間無料体験セクション */
.pt-trial { background: #fbfaf5; border-radius: 8px; }
.pt-trial .pt-eyebrow { text-align: center; }
.pt-trial__days {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 36px 0 32px;
}
.pt-trial__day {
	background: #fff;
	border: 1px solid #e5e2da;
	border-radius: 8px;
	padding: 24px 20px;
}
.pt-trial__day-num {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #8a6d00;
	margin: 0 0 10px;
}
.pt-trial__day-title { font-size: 15px; font-weight: 700; margin: 0 0 10px; line-height: 1.6; }
.pt-trial__day-desc { font-size: 13px; color: #666; line-height: 1.85; margin: 0; }

.pt-trial__notes {
	list-style: none;
	max-width: 620px;
	margin: 0 auto;
	padding: 20px 24px;
	background: #fff;
	border: 1px solid #e5e2da;
	border-radius: 6px;
}
.pt-trial__notes li {
	position: relative;
	font-size: 12.5px;
	color: #777;
	line-height: 1.9;
	padding-left: 16px;
}
.pt-trial__notes li::before {
	content: "・";
	position: absolute;
	left: 0;
}
.pt-trial__notes li:nth-child(5),
.pt-trial__notes li:nth-child(6) {
	color: #444;
	font-weight: 600;
}

/* 比較表 */
.pt-compare { overflow-x: auto; }
.pt-compare__table {
	width: 100%;
	min-width: 480px;
	border-collapse: collapse;
	font-size: 14px;
}
.pt-compare__table th,
.pt-compare__table td {
	border: 1px solid #e5e2da;
	padding: 12px 14px;
	text-align: center;
}
.pt-compare__table thead th {
	background: #f7f6f2;
	font-weight: 700;
}
.pt-compare__table tbody td:first-child {
	font-weight: 700;
	background: #fafafa;
	text-align: left;
}
.pt-compare__table tbody td:last-child {
	background: #fffdf0;
	font-weight: 600;
}

/* 料金プラン：スマホで1カラム、PCで3カラム。STANDARDのみ強調 */
.pt-pricing {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: stretch;
}
.pt-price-card {
	position: relative;
	background: #fff;
	border: 1px solid #e5e2da;
	border-radius: 8px;
	padding: 28px 22px;
	display: flex;
	flex-direction: column;
}
.pt-price-card--featured {
	border: 2px solid #F4FF3A;
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	transform: translateY(-6px);
}
.pt-price-card__badge {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: #F4FF3A;
	color: #000;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 4px 14px;
	border-radius: 999px;
}
.pt-price-card__name { font-size: 15px; font-weight: 700; letter-spacing: 0.08em; margin: 8px 0 10px; text-align: center; }
.pt-price-card__price { text-align: center; font-size: 15px; margin: 0 0 20px; }
.pt-price-card__price span { font-size: 26px; font-weight: 700; }
.pt-price-card__list { list-style: none; padding: 0; margin: 0 0 16px; flex: 1; }
.pt-price-card__list li {
	font-size: 13.5px;
	color: #444;
	padding: 8px 0;
	border-top: 1px solid #f0efe9;
}
.pt-price-card__list li:first-child { border-top: none; }
.pt-price-card__note { font-size: 12.5px; color: #777; line-height: 1.7; margin: 0; }

/* ご利用の流れ */
.pt-steps {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 14px;
}
.pt-step { text-align: center; }
.pt-step__num { font-size: 11px; font-weight: 700; color: #8a6d00; letter-spacing: 0.1em; margin: 0 0 8px; }
.pt-step__label { font-size: 13px; color: #333; line-height: 1.6; margin: 0; }

/* 利用者の声（枠のみ／中身は本文側で管理） */
.pt-voice:empty,
.pt-voice > h2:only-child {
	display: none;
}

.pt-profile { font-size: 14.5px; color: #444; line-height: 2; }
.pt-profile a { color: #8a6d00; }

/* FAQ */
.pt-faq__item { border-bottom: 1px solid #e5e2da; padding: 18px 0; max-width: 760px; margin: 0 auto; }
.pt-faq__item:first-child { border-top: 1px solid #e5e2da; }
.pt-faq__q { font-weight: 700; font-size: 15px; margin: 0 0 8px; }
.pt-faq__a { font-size: 14px; color: #555; line-height: 1.9; margin: 0; }

/* 最終CTA */
.pt-final {
	text-align: center;
	background: #f7f6f2;
	border-radius: 8px;
	padding: 64px 24px;
}
.pt-final h2 { font-size: clamp(20px, 4vw, 26px); line-height: 1.7; margin: 0 0 20px; }
.pt-final p { font-size: 15px; color: #444; margin: 0 0 1em; }
.pt-final .pt-cta-btn { margin-top: 16px; }
.pt-final__price { margin-top: 18px; font-size: 13.5px; color: #777; }

/* ---------- レスポンシブ ---------- */
@media (max-width: 800px) {
	.pt-cards { grid-template-columns: 1fr 1fr; }
	.pt-steps { grid-template-columns: repeat(3, 1fr); }
	.pt-trial__days { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
	.pt-fv, .pt-section, .pt-final { padding-left: 20px; padding-right: 20px; }
	.pt-cards { grid-template-columns: 1fr; }
	.pt-pricing { grid-template-columns: 1fr; }
	.pt-price-card--featured { transform: none; order: -1; }
	.pt-steps { grid-template-columns: 1fr 1fr; }
	.pt-cta-btn { display: block; width: 100%; text-align: center; }
	.pt-fv__subbadges { flex-direction: column; gap: 4px; }
	.pt-fv__subbadges li::after { content: none; }
}
