/*
Theme Name: Niigata Coaching
Theme URI: https://niigata-coaching.jp/
Author: 新潟コーチング研究所
Description: 新潟コーチング研究所のオリジナルテーマ。紺のインク（ロゴの明朝）×あたたかい紙×一点のテラコッタ。MCP方式（page.php + post_content）で運用する。
Version: 1.0.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: ncoach
*/

/* =========================================================
   0. トークン
   ======================================================= */
:root {
	--ink: #1c2351;          /* ロゴの紺（実測値） */
	--ink-soft: #3b4066;
	--text: #34343a;
	--text-soft: #716d63;
	--paper: #faf7f1;        /* 紙の地色 */
	--paper-deep: #f2ecdf;   /* 一段濃い紙 */
	--white: #fffdf9;
	--line: #e5ddcc;         /* 罫線 */
	--accent: #b95f28;       /* テラコッタ（ボタン・白文字が乗る側） */
	--accent-soft: #d4824a;  /* テラコッタ淡（罫・アクセント） */
	--accent-hover: #c98358; /* ホバー＝テラコッタを白みがからせて明るく（暗くしない・おとさん 2026-08-18） */
	--ink-hover-bg: #eceef5; /* 副ボタンのホバー地＝紺を白みがからせた淡色 */
	--marker: #f3e2c8;       /* 蛍光マーカー */
	--font-serif: "Shippori Mincho", "Hiragino Mincho ProN", serif;
	--font-sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
	--width-text: 720px;
	--width-wide: 1080px;
}

/* =========================================================
   1. リセット・ベース
   ======================================================= */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.02em;
	color: var(--text);
	background: var(--paper);
	word-break: auto-phrase;
	overflow-wrap: break-word;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--ink);
	text-decoration-color: var(--line);
	text-underline-offset: 0.25em;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--accent);
}

/* PCだけの改行 */
.u-pc-only {
	display: inline;
}

@media (max-width: 767px) {
	.u-pc-only {
		display: none;
	}
}

/* =========================================================
   2. ヘッダー
   ======================================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(250, 247, 241, 0.94);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid var(--line);
}

.site-header__inner {
	max-width: var(--width-wide);
	margin: 0 auto;
	padding: 14px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.site-logo {
	text-decoration: none;
	line-height: 1.3;
	flex-shrink: 0;
}

.site-logo__jp {
	display: block;
	font-family: var(--font-serif);
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--ink);
}

.site-logo__jp-sub {
	color: #8d8d99;
}

.site-logo__en {
	display: block;
	font-size: 8.5px;
	letter-spacing: 0.34em;
	color: var(--text-soft);
	margin-top: 2px;
}

.site-logo__img,
.custom-logo-link .custom-logo {
	display: block;
	height: 40px;
	width: auto;
}
.custom-logo-link {
	display: block;
	line-height: 0;
	flex-shrink: 0;
}

@media (max-width: 860px) {
	.site-logo__img,
	.custom-logo-link .custom-logo {
		height: 32px;
	}
}

.site-logo:hover .site-logo__jp {
	color: var(--ink);
	opacity: 0.8;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 26px;
}

.site-nav__link {
	font-size: 13.5px;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: var(--text);
	text-decoration: none;
}

.site-nav__link:hover {
	color: var(--accent);
}

.site-nav__link.is-current {
	color: var(--ink);
	border-bottom: 1px solid var(--accent-soft);
	padding-bottom: 2px;
}

.site-nav__cta {
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #fff;
	background: var(--accent);
	text-decoration: none;
	padding: 9px 20px;
	border-radius: 3px;
	transition: background 0.2s ease;
}

.site-nav__cta:hover {
	background: var(--accent-hover);
	color: #fff;
}

/* --- ハンバーガー（JSなし・checkbox方式） --- */
.nav-toggle {
	display: none;
}

.nav-toggle__button {
	display: none;
}

@media (max-width: 860px) {
	.site-header__inner {
		padding: 12px 16px;
	}

	.nav-toggle__button {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 5px;
		width: 40px;
		height: 40px;
		padding: 8px;
		cursor: pointer;
		order: 3;
	}

	.nav-toggle__button span {
		display: block;
		height: 1.5px;
		background: var(--ink);
		transition: transform 0.25s ease, opacity 0.25s ease;
	}

	.nav-toggle:checked ~ .nav-toggle__button span:nth-child(1) {
		transform: translateY(6.5px) rotate(45deg);
	}

	.nav-toggle:checked ~ .nav-toggle__button span:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle:checked ~ .nav-toggle__button span:nth-child(3) {
		transform: translateY(-6.5px) rotate(-45deg);
	}

	.site-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--paper);
		border-bottom: 1px solid var(--line);
		padding: 8px 0 16px;
	}

	.nav-toggle:checked ~ .site-nav {
		display: flex;
	}

	.site-nav__link {
		padding: 14px 24px;
		font-size: 15px;
		border-bottom: 1px solid var(--line);
	}

	.site-nav__link.is-current {
		border-bottom: 1px solid var(--line);
		color: var(--accent);
	}

	.site-nav__cta {
		margin: 16px 24px 0;
		text-align: center;
		padding: 13px 20px;
	}
}

/* =========================================================
   3. ヒーロー（トップ）＝ファーストビュー画像＋その下にリードとCTA
   ======================================================= */
.hero {
	border-bottom: 1px solid var(--line);
	background: var(--paper);
}

.hero__visual {
	max-width: 1400px;
	margin: 0 auto;
}

.hero__visual img {
	display: block;
	width: 100%;
	height: auto;
}

.hero__inner {
	max-width: var(--width-text);
	margin: 0 auto;
	padding: 44px 24px 56px;
}

/* 見出しは画像に焼き込まれているのでSEO用に置くだけ（視覚的には出さない） */
.hero__title-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.hero__lead {
	font-size: 15.5px;
	line-height: 2.15;
	color: var(--text);
	margin: 0 0 32px;
}

.hero__actions {
	display: flex;
	align-items: center;
	gap: 26px;
	flex-wrap: wrap;
}

.hero__cta {
	display: inline-block;
	background: var(--accent);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-decoration: none;
	padding: 16px 38px;
	border-radius: 3px;
	transition: background 0.2s ease, transform 0.2s ease;
}

.hero__cta:hover {
	background: var(--accent-hover);
	color: #fff;
	transform: translateY(-1px);
}

.hero__sub {
	font-size: 14px;
	color: var(--text-soft);
	text-decoration: underline;
	text-decoration-color: var(--line);
	text-underline-offset: 0.35em;
}

.hero__sub:hover {
	color: var(--accent);
}

@media (max-width: 767px) {
	.hero__inner {
		padding: 28px 18px 40px;
	}
}

/* =========================================================
   4. ページ骨格
   ======================================================= */
.page-body,
.front-body,
.lp-body {
	background: var(--paper);
}

.page-body__inner {
	max-width: var(--width-text);
	margin: 0 auto;
	padding: 40px 24px 96px;
}

.page-body__inner--wide {
	max-width: 860px;
}

.front-body__inner {
	max-width: var(--width-text);
	margin: 0 auto;
	padding: 24px 24px 96px;
}

.page-title {
	font-family: var(--font-serif);
	font-size: 27px;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1.6;
	color: var(--ink);
	margin: 28px 0 48px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--line);
	position: relative;
}

.page-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 56px;
	height: 1px;
	background: var(--accent-soft);
}

@media (max-width: 767px) {
	.page-body__inner,
	.front-body__inner {
		padding-left: 18px;
		padding-right: 18px;
		padding-bottom: 72px;
	}

	.page-title {
		font-size: 22px;
		margin: 16px 0 36px;
	}
}

/* --- パンくず --- */
.breadcrumb {
	margin: 4px 0 0;
}

.breadcrumb__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	font-size: 12px;
	color: var(--text-soft);
}

.breadcrumb__item:not(:last-child)::after {
	content: "／";
	margin: 0 4px;
	color: var(--line);
}

.breadcrumb__item a {
	color: var(--text-soft);
	text-decoration: none;
}

.breadcrumb__item a:hover {
	color: var(--accent);
}

/* =========================================================
   5. 本文タイポグラフィ（固定ページ・ブログ共通）
   ======================================================= */
.page-content,
.post-content {
	font-size: 15.5px;
	line-height: 2.1;
	color: var(--text);
}

.page-content p,
.post-content p {
	margin: 0 0 1.7em;
}

/* --- 見出し階層：記事タイトル >> h2 >> h3 >> h4 --- */
.page-content h2,
.post-content h2 {
	font-family: var(--font-serif);
	font-size: 23px;
	font-weight: 700;
	line-height: 1.65;
	letter-spacing: 0.05em;
	color: var(--ink);
	margin: 3.2em 0 1.3em;
	padding-top: 0.75em;
	position: relative;
	background: none;
	text-align: left;
}

/* h2 の道具は「上に短いテラコッタ罫」ひとつだけ（記事タイトル・h3・h4 とは別の道具にする） */
.page-content h2::before,
.post-content h2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 44px;
	height: 2px;
	background: var(--accent);
}

/* 記事本文だけ、章の切れ目に呼吸を広く取る（固定ページは等間隔にしない） */
.post-content h2 {
	margin-top: 4.2em;
}

.page-content > h2:first-child,
.post-content > h2:first-child {
	margin-top: 1.2em;
}

/* --- 見出し h3：明朝＋インクの細い縦罫 --- */
.page-content h3,
.post-content h3 {
	font-family: var(--font-serif);
	font-size: 19px;
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: 0.04em;
	color: var(--ink);
	margin: 2.8em 0 1.05em;
	padding-left: 16px;
	border-left: 2px solid var(--ink);
	background: none;
}

/* --- 見出し h4：ゴシック太字＋短いダッシュ --- */
.page-content h4,
.post-content h4 {
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--ink);
	margin: 2.2em 0 0.8em;
}

.page-content h4::before,
.post-content h4::before {
	content: "";
	display: inline-block;
	width: 14px;
	height: 2px;
	background: var(--accent-soft);
	vertical-align: middle;
	margin-right: 10px;
	margin-top: -2px;
}

@media (max-width: 767px) {
	.page-content,
	.post-content {
		font-size: 15px;
		line-height: 2;
	}

	.page-content h2,
	.post-content h2 {
		font-size: 20px;
		margin-top: 3.5em;
	}

	.page-content h3,
	.post-content h3 {
		font-size: 17px;
	}

	.page-content h4,
	.post-content h4 {
		font-size: 15.5px;
	}
}

/* --- 強調：マーカー --- */
.page-content strong,
.post-content strong {
	font-weight: 700;
	color: var(--text);
	background: linear-gradient(transparent 62%, var(--marker) 62%);
}

/* --- リスト --- */
.page-content ul,
.post-content ul,
.page-content ol,
.post-content ol {
	margin: 0 0 1.7em;
	padding-left: 1.5em;
}

.page-content li,
.post-content li {
	margin-bottom: 0.45em;
}

.page-content ul li::marker,
.post-content ul li::marker {
	color: var(--accent-soft);
}

.page-content ol li::marker,
.post-content ol li::marker {
	color: var(--ink);
	font-weight: 700;
}

/* Gutenberg のリストブロック：囲みにせず素の書式で通す */
.wp-block-list {
	background: none;
	border-radius: 0;
}

/* --- 引用 --- */
/* 引用：h3（紺の左縦罫）と道具を分ける。縦罫は使わず、左に薄いテラコッタの「」起こし＋一段下げた明朝 */
.page-content blockquote,
.post-content blockquote {
	margin: 2.4em 0 2.4em 0.6em;
	padding: 0.2em 0 0.2em 2.1em;
	border-left: none;
	color: var(--ink-soft);
	font-family: var(--font-serif);
	font-size: 16.5px;
	line-height: 2;
	letter-spacing: 0.03em;
	position: relative;
}

.page-content blockquote::before,
.post-content blockquote::before {
	content: "「";
	position: absolute;
	left: -0.15em;
	top: -0.28em;
	font-family: var(--font-serif);
	font-size: 2.1em;
	line-height: 1;
	color: var(--accent-soft);
	opacity: 0.75;
}

.page-content blockquote p:last-child,
.post-content blockquote p:last-child {
	margin-bottom: 0;
}

.page-content blockquote cite,
.post-content blockquote cite {
	display: block;
	margin-top: 0.6em;
	font-size: 13px;
	font-style: normal;
	color: var(--text-soft);
}

/* --- 目次（投稿のみ・h2/h3 から自動生成） --- */
.post-toc {
	margin: 2.4em 0 3.2em;
	padding: 1.3em 1.6em 1.3em 1.4em;
	border: 1px solid var(--line);
	background: var(--white);
	max-width: 560px;
}
.post-toc__title {
	font-family: var(--font-serif);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: var(--ink);
	margin: 0 0 0.7em;
}
.post-toc__list,
.post-toc__sub {
	margin: 0;
	padding-left: 1.4em;
	font-size: 14.5px;
	line-height: 1.9;
}
.post-toc__list > li::marker {
	color: var(--accent);
	font-weight: 700;
}
.post-toc__sub {
	list-style: none;
	padding-left: 1.1em;
	margin-top: 0.15em;
	font-size: 13.5px;
}
.post-toc__sub li::before {
	content: "－ ";
	color: var(--text-soft);
}
.post-toc li {
	margin: 0.15em 0;
	padding: 0;
}
.post-toc a {
	color: var(--ink);
	text-decoration: none;
}
.post-toc a:hover {
	text-decoration: underline;
	text-decoration-color: var(--accent-soft);
}
.post-content h2[id],
.post-content h3[id] {
	scroll-margin-top: 90px;
}

/* --- 画像・キャプション --- */
.page-content figure,
.post-content figure {
	margin: 2.4em 0;
}

/* トップ最下部のLINE入口（入口はLINE主・フォームは /contact/ に任せる） */
.front-entry {
	max-width: var(--width-text);
	margin: 0 auto;
	padding: 3.2em 0 4.5em;
	border-top: 1px solid var(--line);
}
.front-entry__title {
	font-family: var(--font-serif);
	font-size: 23px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--ink);
	margin: 0 0 0.9em;
	padding-top: 0.75em;
	position: relative;
}
.front-entry__title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 44px;
	height: 2px;
	background: var(--accent);
}
.front-entry__lead {
	margin: 0 0 1.4em;
}
.ncoach-line-banner {
	margin: 0 0 1.4em;
	max-width: 560px;
}
.ncoach-line-banner a {
	display: block;
	transition: opacity .2s;
}
.ncoach-line-banner a:hover {
	opacity: .85;
}
.ncoach-line-banner img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 4px;
}
.ncoach-note {
	font-size: 14px;
	color: var(--text-soft);
	margin: 0;
}
.ncoach-note a {
	color: var(--ink);
}

.page-content figure img,
.post-content figure img {
	border-radius: 4px;
	display: block;
}

.page-content figcaption,
.post-content figcaption {
	font-size: 12.5px;
	color: var(--text-soft);
	margin-top: 10px;
	padding-left: 26px;
	position: relative;
	letter-spacing: 0.06em;
}

.page-content figcaption::before,
.post-content figcaption::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.9em;
	width: 18px;
	height: 1px;
	background: var(--accent-soft);
}

/* --- テーブル --- */
.page-content table,
.post-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 2.2em 0;
	font-size: 14.5px;
	line-height: 1.8;
}

.page-content th,
.post-content th {
	background: var(--paper-deep);
	font-weight: 700;
	color: var(--ink);
	text-align: left;
	padding: 12px 16px;
	border: 1px solid var(--line);
}

.page-content td,
.post-content td {
	padding: 12px 16px;
	border: 1px solid var(--line);
	background: var(--white);
}

@media (max-width: 767px) {
	.page-content table,
	.post-content table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}
}

/* --- コード --- */
.page-content code,
.post-content code {
	font-family: "SF Mono", Menlo, Consolas, monospace;
	font-size: 0.88em;
	background: var(--paper-deep);
	border-radius: 3px;
	padding: 2px 7px;
}

.page-content pre,
.post-content pre {
	background: var(--ink);
	color: #eceadf;
	border-radius: 4px;
	padding: 22px 24px;
	overflow-x: auto;
	margin: 2.2em 0;
	font-size: 13.5px;
	line-height: 1.8;
}

.page-content pre code,
.post-content pre code {
	background: none;
	padding: 0;
	color: inherit;
}

/* --- 区切り線 --- */
.page-content hr,
.post-content hr {
	border: none;
	height: 1px;
	background: var(--line);
	margin: 3.5em auto;
	max-width: 120px;
	position: relative;
}

/* =========================================================
   6. CTA（SWELLブロック互換・共通ボタン）
   ======================================================= */
/* CTA: bare .swell-block-button__link is PRIMARY terracotta. Add
   .ncoach-button--secondary or .swell-block-button.is-secondary for
   SECONDARY navy-outline actions. Production radius remains 3px. */
.swell-block-button {
	margin: 2.6em 0;
	text-align: center;
}

.swell-block-button__link,
.ncoach-button {
	display: inline-block;
	background: var(--accent);
	color: #fff !important;
	font-family: var(--font-sans);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-decoration: none;
	padding: 15px 42px;
	border-radius: 3px;
	border: none;
	transition: background 0.2s ease, transform 0.2s ease;
}

.swell-block-button__link:hover,
.ncoach-button:hover {
	background: var(--accent-hover);
	color: #fff !important;
	transform: translateY(-1px);
}

.ncoach-button--accent {
	background: var(--accent);
}

.ncoach-button--accent:hover {
	background: var(--accent-hover);
}

.swell-block-button.is-secondary .swell-block-button__link,
.swell-block-button__link.ncoach-button--secondary,
.ncoach-button--secondary {
	background: transparent;
	color: var(--ink) !important;
	border: 1px solid var(--ink);
}

.swell-block-button.is-secondary .swell-block-button__link:hover,
.swell-block-button__link.ncoach-button--secondary:hover,
.ncoach-button--secondary:hover {
	background: var(--ink-hover-bg);
	border-color: var(--ink);
	color: var(--ink) !important;
}

/* =========================================================
   7. 料金ページ（pricing-* 現行クラス互換）
   ======================================================= */
.pricing-lead {
	max-width: 620px;
	margin: 0 auto 3.5em;
	font-size: 15.5px;
	line-height: 2.15;
}

.pricing-box {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: 40px 36px 36px;
	margin: 3em 0;
	position: relative;
}

.pricing-box--premium {
	border: 2px solid var(--ink);
	padding-top: 48px;
}

.pricing-box__badge {
	position: absolute;
	top: -13px;
	left: 32px;
	background: var(--ink);
	color: #fff;
	padding: 5px 18px;
	border-radius: 3px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	white-space: nowrap;
}

h3.pricing-box__name,
.page-content h3.pricing-box__name {
	font-family: var(--font-serif);
	font-size: 21px;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: var(--ink);
	margin: 0 0 6px;
	padding: 0;
	border: none;
	background: none;
}

h3.pricing-box__name::before,
h3.pricing-box__name::after {
	content: none;
}

.pricing-box__tag {
	font-size: 13px;
	letter-spacing: 0.06em;
	color: var(--text-soft);
	margin: 0 0 1.6em;
}

.pricing-box__price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 0.2em;
	flex-wrap: wrap;
}

.pricing-box__price-main {
	font-family: var(--font-serif);
	font-size: 44px;
	font-weight: 500;
	color: var(--ink);
	letter-spacing: 0.02em;
	line-height: 1.1;
}

.pricing-box__price-main::before {
	content: "¥";
	font-size: 0.5em;
	margin-right: 4px;
	color: var(--text-soft);
}

.pricing-box__price-unit {
	font-size: 15px;
	color: var(--text-soft);
	font-weight: 500;
}

.pricing-box__price-tax {
	font-size: 12px;
	color: var(--text-soft);
	letter-spacing: 0.05em;
	margin-bottom: 1em;
}

.pricing-box__subprice {
	font-size: 13px;
	color: var(--text-soft);
	margin: 0 0 1.4em;
}

.pricing-box__summary {
	font-size: 14.5px;
	line-height: 2.05;
	margin: 1em 0 1.2em;
}

.pricing-note {
	background: var(--paper);
	border-left: 2px solid var(--accent-soft);
	padding: 14px 18px;
	font-size: 13.5px;
	line-height: 1.9;
	color: var(--text);
	margin: 1em 0 1.4em;
}

.pricing-note strong {
	color: var(--accent);
	background: none;
}

.pricing-check {
	list-style: none !important;
	padding: 0 !important;
	margin: 1.2em 0 1.8em !important;
	background: none !important;
}

.pricing-check li {
	position: relative;
	padding-left: 26px !important;
	font-size: 14.5px;
	line-height: 1.9;
	margin-bottom: 8px !important;
	list-style: none !important;
}

.pricing-check li::marker {
	content: "" !important;
}

.pricing-check li::before {
	content: "";
	position: absolute;
	left: 3px;
	top: 0.5em;
	width: 6px;
	height: 11px;
	border-right: 2px solid var(--accent-soft);
	border-bottom: 2px solid var(--accent-soft);
	transform: rotate(45deg);
}

.pricing-box__cta {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 1.6em;
}

.pricing-button {
	display: inline-block;
	text-align: center;
	background: var(--accent);
	color: #fff !important;
	padding: 15px 32px;
	border-radius: 3px;
	font-size: 14.5px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-decoration: none;
	border: 1.5px solid var(--accent);
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pricing-button:hover {
	background: var(--accent-hover);
	border-color: var(--accent-hover);
	color: #fff !important;
}

.pricing-button--line {
	background: transparent;
	color: var(--ink) !important;
	border: 1.5px solid var(--ink);
}

.pricing-button--line:hover {
	background: var(--ink-hover-bg);
	border-color: var(--ink);
	color: var(--ink) !important;
}

/* 含まれる／含まれない */
.pricing-include {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin: 2em 0;
}

.pricing-include__col {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: 24px;
}

.pricing-include__col h4 {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin: 0 0 12px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--line);
	color: var(--ink);
}

.pricing-include__col h4::before {
	content: none;
}

.pricing-include__col--no h4 {
	color: var(--text-soft);
}

.pricing-include__col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pricing-include__col li {
	padding: 6px 0 6px 22px;
	position: relative;
	font-size: 13.5px;
	line-height: 1.8;
}

.pricing-include__col--yes li::before {
	content: "○";
	position: absolute;
	left: 0;
	color: var(--accent-soft);
	font-weight: 700;
}

.pricing-include__col--no li::before {
	content: "—";
	position: absolute;
	left: 0;
	color: var(--text-soft);
}

/* FAQ */
.pricing-faq details {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 6px;
	margin-bottom: 10px;
	overflow: hidden;
}

.pricing-faq summary {
	padding: 18px 46px 18px 22px;
	font-size: 15px;
	font-weight: 700;
	color: var(--ink);
	cursor: pointer;
	list-style: none;
	position: relative;
	letter-spacing: 0.03em;
}

.pricing-faq summary::-webkit-details-marker {
	display: none;
}

.pricing-faq summary::after {
	content: "";
	position: absolute;
	right: 22px;
	top: 50%;
	width: 7px;
	height: 7px;
	border-right: 1.5px solid var(--accent-soft);
	border-bottom: 1.5px solid var(--accent-soft);
	transform: translateY(-70%) rotate(45deg);
	transition: transform 0.25s ease;
}

.pricing-faq details[open] summary::after {
	transform: translateY(-30%) rotate(-135deg);
}

.pricing-faq details > *:not(summary) {
	padding: 0 22px 20px;
	font-size: 14px;
	line-height: 2;
}

/* フッターCTA */
.pricing-footer-cta {
	background: var(--paper-deep);
	border-radius: 6px;
	padding: 44px 32px;
	text-align: center;
	margin: 3em 0;
}

.pricing-footer-cta h3 {
	font-family: var(--font-serif);
	font-size: 19px;
	color: var(--ink);
	letter-spacing: 0.06em;
	margin: 0 0 0.8em;
	padding: 0;
	border: none;
}

.pricing-footer-cta p {
	font-size: 14px;
	margin-bottom: 1.8em;
}

.pricing-footer-cta .pricing-button {
	display: inline-block;
	margin: 4px 6px;
}

@media (max-width: 599px) {
	.pricing-box {
		padding: 32px 20px 26px;
	}

	.pricing-box--premium {
		padding-top: 40px;
	}

	.pricing-box__price-main {
		font-size: 36px;
	}

	.pricing-include {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}

/* =========================================================
   8. Contact Form 7
   ======================================================= */
.wpcf7 {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: 32px 28px;
	margin-top: 1.5em;
}

.wpcf7 label {
	font-size: 13px;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: 0.04em;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 3px;
	padding: 11px 14px;
	font-size: 16px;
	font-family: var(--font-sans);
	background: var(--paper);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
	border-color: var(--ink);
	outline: none;
	box-shadow: 0 0 0 3px rgba(28, 35, 81, 0.08);
	background: #fff;
}

.wpcf7 input[type="submit"] {
	background: var(--accent);
	color: #fff;
	border: none;
	border-radius: 3px;
	padding: 14px 44px;
	font-size: 15px;
	font-weight: 700;
	font-family: var(--font-sans);
	letter-spacing: 0.06em;
	cursor: pointer;
	transition: background 0.2s ease;
}

.wpcf7 input[type="submit"]:hover {
	background: var(--accent-hover);
}

@media (max-width: 599px) {
	.wpcf7 {
		padding: 20px 16px;
	}
}

/* =========================================================
   9. ブログ：記事一覧
   ======================================================= */
.archive-header {
	margin: 28px 0 12px;
}

.archive-header__title {
	font-family: var(--font-serif);
	font-size: 27px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--ink);
	margin: 0 0 10px;
}

.archive-header__desc {
	font-size: 13.5px;
	color: var(--text-soft);
	margin: 0;
}

.post-list {
	margin-top: 16px;
	border-top: 1px solid var(--line);
}

.post-card {
	border-bottom: 1px solid var(--line);
}

.post-card__link {
	display: block;
	padding: 30px 4px;
	text-decoration: none;
	color: inherit;
	transition: background 0.2s ease;
}

.post-card__link:hover {
	background: rgba(255, 253, 249, 0.9);
	color: inherit;
}

.post-card__meta {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 12.5px;
	color: var(--text-soft);
	letter-spacing: 0.08em;
	margin-bottom: 10px;
}

.post-card__cat {
	color: var(--accent);
	border: 1px solid var(--accent-soft);
	border-radius: 2px;
	font-size: 11.5px;
	padding: 1px 10px;
	letter-spacing: 0.1em;
}

.post-card__title {
	font-family: var(--font-serif);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: 0.03em;
	color: var(--ink);
	margin: 0 0 10px;
	transition: color 0.2s ease;
}

.post-card__link:hover .post-card__title {
	color: var(--accent);
}

.post-card__excerpt {
	font-size: 14px;
	line-height: 1.95;
	color: var(--text-soft);
	margin: 0;
}

.post-list__empty {
	padding: 48px 0;
	color: var(--text-soft);
}

/* --- ページネーション --- */
.pagination {
	margin-top: 48px;
}

.pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 8px;
	font-size: 14px;
	color: var(--ink);
	text-decoration: none;
	border: 1px solid var(--line);
	border-radius: 3px;
	background: var(--white);
	transition: all 0.2s ease;
}

.pagination .page-numbers.current {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}

.pagination a.page-numbers:hover {
	border-color: var(--accent);
	color: var(--accent);
}

/* =========================================================
   10. ブログ：記事ページ
   ======================================================= */
.entry__header {
	margin: 28px 0 40px;
}

.entry__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	font-size: 12.5px;
	color: var(--text-soft);
	letter-spacing: 0.08em;
	margin-bottom: 14px;
}

.entry__cats a {
	color: var(--accent);
	border: 1px solid var(--accent-soft);
	border-radius: 2px;
	font-size: 11.5px;
	padding: 1px 10px;
	letter-spacing: 0.1em;
	text-decoration: none;
	margin-right: 6px;
}

.entry__cats a:hover {
	background: var(--accent);
	color: #fff;
}

.entry__title {
	font-family: var(--font-serif);
	font-size: 32px;
	font-weight: 600;
	line-height: 1.55;
	letter-spacing: 0.05em;
	color: var(--ink);
	margin: 0;
	padding-bottom: 36px;
	position: relative;
}

.entry__thumb {
	margin: 0 0 40px;
}

.entry__thumb img {
	border-radius: 4px;
	display: block;
	width: 100%;
}

.entry__tags {
	margin-top: 48px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.entry__tags a {
	font-size: 12.5px;
	color: var(--text-soft);
	text-decoration: none;
	border: 1px solid var(--line);
	border-radius: 2px;
	padding: 3px 12px;
	transition: all 0.2s ease;
}

.entry__tags a:hover {
	color: var(--accent);
	border-color: var(--accent-soft);
}

@media (max-width: 767px) {
	.entry__title {
		font-size: 25px;
		padding-bottom: 22px;
	}
}

/* --- 前後記事 --- */
.post-nav {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 56px;
	padding-top: 28px;
	border-top: 1px solid var(--line);
	font-size: 13.5px;
}

.post-nav__prev,
.post-nav__next {
	max-width: 46%;
}

.post-nav__next {
	margin-left: auto;
	text-align: right;
}

.post-nav a {
	color: var(--text-soft);
	text-decoration: none;
	line-height: 1.8;
}

.post-nav a:hover {
	color: var(--accent);
}

/* =========================================================
   11. フッター
   ======================================================= */
.site-footer {
	background: var(--ink);
	color: #c9c7d6;
	margin-top: 0;
}

.site-footer__inner {
	max-width: var(--width-wide);
	margin: 0 auto;
	padding: 64px 24px 40px;
}

.site-footer__logo {
	margin: 0 0 10px;
}

.site-footer__logo-jp {
	display: block;
	font-family: var(--font-serif);
	font-size: 19px;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: #fff;
}

.site-footer__logo-en {
	display: block;
	font-size: 8.5px;
	letter-spacing: 0.34em;
	color: #8f8da6;
	margin-top: 4px;
}

.site-footer__note {
	font-size: 13px;
	color: #a5a3ba;
	margin: 0 0 36px;
}

.site-footer__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 26px;
	padding: 22px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__nav a {
	font-size: 13px;
	color: #c9c7d6;
	text-decoration: none;
}

.site-footer__nav a:hover {
	color: #fff;
}

.site-footer__sns {
	display: flex;
	gap: 22px;
	margin-top: 22px;
}

.site-footer__sns a {
	font-size: 12.5px;
	letter-spacing: 0.1em;
	color: #a5a3ba;
	text-decoration: none;
}

.site-footer__sns a:hover {
	color: #fff;
}

.site-footer__copy {
	font-size: 11.5px;
	color: #8f8da6;
	margin: 36px 0 0;
	letter-spacing: 0.08em;
}

/* =========================================================
   12. LPページ（/lp/ 配下・素のまま出す）
   ======================================================= */
.lp-body {
	min-height: 60vh;
}
