@charset "UTF-8";
/* ============================================================
   パーソナルジム Footwork 豊中緑地公園店 - 共通スタイル
   トーン: 落ち着いた上質系(白ベース+ブランドオレンジ差し色)
   ============================================================ */

:root {
  --bg: #fbf9f5;
  --bg-alt: #f3eee6;
  --white: #ffffff;
  --ink: #33302c;
  --ink-light: #6f6a63;
  --accent: #ea5532;
  --accent-deep: #c9431f;
  --line: #e3dcd1;
  --serif: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }
body { overflow-x: clip; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; transition: opacity .25s ease; }
a:hover { opacity: .75; }

ul, ol { list-style: none; }

.inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-logo img { height: 34px; width: auto; }

.gnav { display: none; }

.header-cta {
  display: none;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  white-space: nowrap;
}
.header-cta:hover { background: var(--accent-deep); opacity: 1; }

@media (min-width: 960px) {
  .gnav { display: block; }
  .gnav ul { display: flex; gap: 28px; }
  .gnav a {
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
  }
  .gnav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width .25s ease;
  }
  .gnav a:hover { opacity: 1; }
  .gnav a:hover::after { width: 100%; }
  .header-cta { display: inline-block; }
  .menu-toggle { display: none; }
}

/* ハンバーガー */
.menu-toggle {
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 10px;
  width: 24px; height: 2px;
  background: var(--ink);
  transition: .3s ease;
}
.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 29px; }
.menu-toggle.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* モバイルドロワー */
.drawer {
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 32px 28px;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
@media (min-width: 960px) { .drawer { display: none; } }
.drawer ul { border-top: 1px solid var(--line); }
.drawer li { border-bottom: 1px solid var(--line); }
.drawer a {
  display: block;
  padding: 16px 4px;
  font-size: 16px;
  font-weight: 500;
}
.drawer .drawer-cta {
  margin-top: 28px;
  display: block;
  text-align: center;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: 16px;
  border-radius: 999px;
  border-bottom: none;
}

/* ---------- モバイル固定CTA ---------- */
.sp-fixed-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.92);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.sp-fixed-cta a {
  display: block;
  text-align: center;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(234,85,50,.35);
}
@media (min-width: 960px) { .sp-fixed-cta { display: none; } }
body { padding-bottom: 76px; }
@media (min-width: 960px) { body { padding-bottom: 0; } }

/* ---------- 見出し ---------- */
.sec-head { text-align: center; margin-bottom: 48px; }
.sec-head .en {
  display: block;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sec-head .ja {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media (max-width: 599px) { .sec-head .ja { font-size: 24px; } }

.sec-head.left { text-align: left; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-block;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 48px;
  border-radius: 999px;
  transition: .25s ease;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(234,85,50,.3);
}
.btn-primary:hover { background: var(--accent-deep); opacity: 1; transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { background: var(--ink); color: #fff; opacity: 1; }
.btn-note {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-light);
}

/* ---------- セクション共通 ---------- */
.section { padding: 96px 0; }
.section.alt { background: var(--bg-alt); }
@media (max-width: 599px) { .section { padding: 64px 0; } }

/* フェードイン */
.fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade.is-visible { opacity: 1; transform: none; }

/* ---------- ヒーロー(トップ) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 30%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(251,249,245,.96) 0%, rgba(251,249,245,.86) 34%, rgba(251,249,245,.25) 68%, rgba(251,249,245,0) 100%);
}
.hero-body {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 120px 24px 130px;
}
.hero-eyebrow {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}
.hero-lead {
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* FV: 信頼チップ */
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-chips li {
  font-size: 13px;
  font-weight: 500;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 16px;
}

/* FV: オファー */
.hero-offer { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.offer-item {
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 12px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 150px;
}
.offer-item .offer-label { font-size: 12.5px; font-weight: 700; color: var(--ink-light); letter-spacing: 0.04em; }
.offer-item .offer-value {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.3;
  color: var(--accent);
  font-weight: 600;
}
.offer-item .offer-value small { font-size: 15px; }
.offer-item .offer-value s { font-size: 15px; color: var(--ink-light); font-family: var(--sans); margin-right: 2px; }

/* CTA下のマイクロコピー */
.cta-micro { font-size: 12.5px; color: var(--ink-light); margin-top: 14px; }
.cta-micro.light { color: rgba(255,255,255,.65); margin-top: 18px; margin-bottom: 0; }
@media (max-width: 599px) {
  .hero-body { padding: 72px 24px 300px; }
  .hero-title { font-size: 30px; }
  .hero-media img { object-position: 66% 30%; }
  .hero-media::after {
    background: linear-gradient(180deg, rgba(251,249,245,.97) 0%, rgba(251,249,245,.9) 42%, rgba(251,249,245,.3) 72%, rgba(251,249,245,0) 100%);
  }
  .hero-actions .btn { width: 100%; }
}

/* ---------- 悩みセクション ---------- */
.worries-list {
  max-width: 640px;
  margin: 0 auto 40px;
  display: grid;
  gap: 14px;
}
.worries-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 24px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.worries-list li::before {
  content: "";
  flex: none;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.worries-close {
  text-align: center;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1.9;
}
.worries-close strong { color: var(--accent); font-weight: 600; }

/* ---------- 特徴カード ---------- */
.feature-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 800px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.feature-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.feature-card .thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.feature-card .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.feature-card .body { padding: 26px 26px 30px; flex: 1; }
.feature-card .num {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.feature-card h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 12px;
}
.feature-card p { font-size: 14.5px; color: var(--ink-light); }

/* ---------- 数字セクション ---------- */
.stats-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
@media (min-width: 700px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
.stat {
  background: var(--white);
  text-align: center;
  padding: 40px 20px;
}
.stat .label { font-size: 14px; color: var(--ink-light); display: block; margin-bottom: 6px; }
.stat .value {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--ink);
  line-height: 1.2;
}
.stat .value small { font-size: 16px; margin-left: 4px; }

/* ---------- 2カラム(画像+テキスト) ---------- */
.split {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; gap: 64px; }
  .split.reverse .split-media { order: 2; }
}
.split-media img {
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split-media.portrait img { aspect-ratio: 3 / 3.6; object-position: top; }
.split-body .en {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.split-body h2, .split-body .h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 20px;
}
.split-body p { margin-bottom: 16px; color: var(--ink); }
.split-body .muted { color: var(--ink-light); font-size: 14.5px; }
@media (max-width: 599px) { .split-body h2, .split-body .h2 { font-size: 23px; } }

/* ---------- 料金カード ---------- */
.price-cards {
  display: grid;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}
@media (min-width: 800px) { .price-cards { grid-template-columns: 1fr 1fr; } }
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.price-card.highlight { border: 2px solid var(--accent); }
.price-card .head {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.12em;
  padding: 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.price-card.highlight .head { background: var(--accent); color: #fff; border-bottom: none; }
.price-card .body { padding: 34px 26px 38px; flex: 1; }
.price-card .plan-name { font-size: 15px; font-weight: 500; color: var(--ink-light); margin-bottom: 10px; }
.price-card .amount {
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1.2;
  color: var(--ink);
}
.price-card .amount small { font-size: 17px; margin-left: 2px; }
.price-card .amount .tax { font-size: 13px; color: var(--ink-light); display: block; margin-top: 4px; font-family: var(--sans); }
.price-card .per {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 6px 18px;
}
.price-card .per strong { color: var(--accent); }
.price-note {
  max-width: 860px;
  margin: 28px auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 30px;
}
.price-note dt { font-weight: 700; margin-bottom: 4px; }
.price-note dd { color: var(--ink-light); font-size: 14.5px; margin-bottom: 16px; }
.price-note dd:last-child { margin-bottom: 0; }
.strike { text-decoration: line-through; color: var(--ink-light); }

/* 料金セクションのキャンペーン行 */
.price-campaign {
  max-width: 860px;
  margin: 26px auto 0;
  text-align: center;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
}
.price-campaign s { color: var(--ink-light); font-weight: 400; }
.price-campaign strong { color: var(--accent); font-size: 22px; font-family: var(--serif); }
.accent-text { color: var(--accent); font-weight: 700; }

/* ---------- トレーナーカード(トップ抜粋) ---------- */
.trainer-meta { margin: 18px 0 24px; }
.trainer-meta li {
  display: inline-block;
  font-size: 13.5px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 6px 16px;
  margin: 0 8px 8px 0;
}
.trainer-name-large {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.trainer-name-large small {
  display: block;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--ink-light);
  margin-bottom: 6px;
}

/* ---------- ビフォーアフター ---------- */
.ba-grid { display: grid; gap: 28px; }
@media (min-width: 800px) { .ba-grid { grid-template-columns: repeat(3, 1fr); } }
.ba-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.ba-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.ba-card .body { padding: 20px 22px 24px; }
.ba-card .tag { font-size: 12.5px; color: var(--accent); font-weight: 700; letter-spacing: 0.06em; }
.ba-card p { font-size: 14px; color: var(--ink-light); margin-top: 6px; }
.ba-disclaimer { text-align: center; font-size: 12.5px; color: var(--ink-light); margin-top: 24px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  letter-spacing: 0.03em;
}
.faq-q::before {
  content: "Q";
  font-family: var(--serif);
  color: var(--accent);
  font-size: 19px;
  flex: none;
}
.faq-q::after {
  content: "";
  margin-left: auto;
  flex: none;
  width: 9px; height: 9px;
  border-right: 2px solid var(--ink-light);
  border-bottom: 2px solid var(--ink-light);
  transform: rotate(45deg);
  transition: transform .3s ease;
}
.faq-item.is-open .faq-q::after { transform: rotate(-135deg); }
.faq-a {
  display: none;
  padding: 0 22px 22px 55px;
  color: var(--ink-light);
  font-size: 15px;
}
.faq-item.is-open .faq-a { display: block; }

/* ---------- 体験の流れ ---------- */
.flow-list { max-width: 760px; margin: 0 auto; display: grid; gap: 18px; }
.flow-item {
  display: flex;
  gap: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 28px;
}
.flow-item .step {
  flex: none;
  font-family: var(--serif);
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.1em;
  padding-top: 3px;
  width: 64px;
}
.flow-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.flow-item p { font-size: 14.5px; color: var(--ink-light); }

/* ---------- アクセス ---------- */
.access-grid { display: grid; gap: 40px; }
@media (min-width: 860px) { .access-grid { grid-template-columns: 1fr 1.2fr; gap: 56px; } }
.access-info dt {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-family: var(--serif);
  margin-bottom: 4px;
}
.access-info dd { margin-bottom: 22px; }
.access-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 14px;
  display: block;
}

/* ---------- お知らせ ---------- */
.news-list { max-width: 760px; margin: 0 auto; }
.news-list li { border-bottom: 1px solid var(--line); }
.news-list li:first-child { border-top: 1px solid var(--line); }
.news-list a {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 20px 8px;
  align-items: baseline;
}
.news-list time {
  font-family: var(--serif);
  font-size: 13.5px;
  color: var(--ink-light);
  flex: none;
  letter-spacing: 0.06em;
}
.news-list .cat {
  flex: none;
  font-size: 11.5px;
  color: var(--accent);
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 1px 12px;
}
.news-list .title { font-size: 15px; }

/* ---------- CTAバンド ---------- */
.cta-band {
  background: linear-gradient(135deg, #3a342d 0%, #33302c 100%);
  color: #fff;
  text-align: center;
  padding: 88px 24px;
}
.cta-band .en {
  font-family: var(--serif);
  letter-spacing: 0.3em;
  font-size: 13px;
  color: #e8b7a5;
  display: block;
  margin-bottom: 14px;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 18px;
}
.cta-band p { color: rgba(255,255,255,.8); font-size: 15px; margin-bottom: 34px; }
@media (max-width: 599px) { .cta-band h2 { font-size: 23px; } }

/* CTAバンド: 3ステップ */
.cta-steps {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 auto 34px;
  max-width: 760px;
}
.cta-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  color: rgba(255,255,255,.92);
}
.cta-steps li span {
  font-family: var(--serif);
  color: #e8b7a5;
  font-size: 15px;
}
@media (max-width: 599px) {
  .cta-steps { flex-direction: column; align-items: stretch; }
  .cta-steps li { justify-content: flex-start; }
}

/* ---------- 下層ページヒーロー ---------- */
.page-hero {
  background: var(--bg-alt);
  padding: 72px 24px;
  text-align: center;
}
.page-hero .en {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media (max-width: 599px) { .page-hero h1 { font-size: 25px; } .page-hero { padding: 52px 24px; } }

/* パンくず */
.breadcrumb {
  font-size: 12.5px;
  color: var(--ink-light);
  padding: 14px 0;
}
.breadcrumb a { text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb span::before { content: "／"; margin: 0 8px; }

/* ---------- フッター ---------- */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 64px 0 0;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 40px;
}
@media (min-width: 860px) { .footer-inner { grid-template-columns: 1.2fr 1fr; } }
.footer-brand img { height: 40px; width: auto; margin-bottom: 18px; }
.footer-brand address {
  font-style: normal;
  font-size: 14px;
  color: var(--ink-light);
  line-height: 2;
}
.footer-sns { margin-top: 16px; display: flex; gap: 14px; align-items: center; }
.footer-sns a {
  font-size: 13px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 7px 20px;
}
.footer-nav { columns: 2; font-size: 14px; }
.footer-nav li { margin-bottom: 12px; break-inside: avoid; }
.copyright {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 12px;
  color: var(--ink-light);
  padding: 20px 24px;
  letter-spacing: 0.08em;
}

/* ---------- ブログ一覧(WP) ---------- */
.post-grid { display: grid; gap: 28px; }
@media (min-width: 700px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.post-card > a { display: block; height: 100%; }
.post-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-thumb img.post-thumb-fallback { width: 72px; height: auto; opacity: .4; }
.post-body { padding: 20px 22px 24px; }
.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.post-meta time {
  font-family: var(--serif);
  font-size: 13.5px;
  color: var(--ink-light);
  letter-spacing: 0.06em;
}
.post-meta .post-updated { font-size: 12px; color: var(--ink-light); }
.post-meta .cat {
  font-size: 11.5px;
  color: var(--accent);
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 1px 12px;
}
.post-card .post-title { font-size: 16px; font-weight: 700; line-height: 1.6; margin-bottom: 8px; }
.post-card .post-excerpt { font-size: 13.5px; color: var(--ink-light); }

/* ページネーション(WP) */
.pagination .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.pagination .page-numbers {
  display: inline-block;
  min-width: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 14px;
  text-align: center;
}
.pagination .page-numbers.current { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- 記事詳細(WP) ---------- */
.post-single { max-width: 760px; }
.post-eyecatch { margin: 24px 0 32px; }
.post-eyecatch img { border-radius: 14px; width: 100%; }
.entry-content { line-height: 2.1; }
.entry-content > * + * { margin-top: 1.2em; }
.entry-content h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  margin-top: 2em;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.entry-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 1.8em;
  padding-left: 12px;
  border-left: 3px solid var(--accent);
}
.entry-content ul, .entry-content ol { padding-left: 1.4em; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.entry-content img { border-radius: 12px; }
.entry-content blockquote {
  background: var(--bg-alt);
  border-left: 3px solid var(--line);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  color: var(--ink-light);
}
.entry-content .wp-block-button__link {
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 14px 40px;
  font-weight: 700;
  text-decoration: none;
}
.entry-content p.is-style-lead {
  font-size: 1.08em;
  font-weight: 500;
  line-height: 2;
  padding: 20px 22px;
  background: var(--bg-alt);
  border-radius: 12px;
}
.entry-content p.is-style-note {
  position: relative;
  padding: 18px 20px 18px 48px;
  background: #fff8ee;
  border: 1px solid #efd7b8;
  border-radius: 10px;
}
.entry-content p.is-style-note::before {
  content: "i";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font: 700 13px/21px var(--sans);
  text-align: center;
}
.entry-content ul.is-style-check-list {
  list-style: none;
  padding-left: 0;
}
.entry-content ul.is-style-check-list li {
  position: relative;
  padding-left: 30px;
  margin: 8px 0;
}
.entry-content ul.is-style-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.entry-content h2.is-style-plain,
.entry-content h3.is-style-plain {
  padding: 0;
  border: 0;
}
.entry-content .wp-block-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.entry-content table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
}
.entry-content th,
.entry-content td {
  padding: 12px 14px;
  border: 1px solid var(--line);
  text-align: left;
}
.entry-content th { background: var(--bg-alt); font-weight: 700; }
.entry-content figcaption {
  margin-top: 8px;
  color: var(--ink-light);
  font-size: 12px;
  text-align: center;
}
.entry-content pre {
  overflow-x: auto;
  padding: 18px 20px;
  border-radius: 10px;
  background: #23201d;
  color: #fff;
  font-size: 13px;
}
.entry-content code {
  padding: .15em .4em;
  border-radius: 4px;
  background: var(--bg-alt);
  font-size: .9em;
}
.entry-content pre code { padding: 0; background: transparent; }
.entry-content .wp-block-separator { margin: 2.4em auto; border-color: var(--line); }
.entry-content .wp-block-embed,
.entry-content .wp-block-video { margin-top: 2em; margin-bottom: 2em; }
.entry-content .footwork-point-box,
.entry-content .footwork-article-cta {
  padding: 24px;
  border-radius: 14px;
}
.entry-content .footwork-point-box {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
}
.entry-content .footwork-point-box h3 { color: var(--accent); font-family: var(--serif); }
.entry-content .footwork-article-cta {
  background: #fff8ee;
  border: 1px solid #efd7b8;
  text-align: center;
}
.entry-content .footwork-article-cta h3 { font-family: var(--serif); font-size: 22px; }
.entry-content .alignwide { width: min(100%, 960px); }
.entry-content .alignfull { width: 100%; }
.page-links { margin-top: 32px; font-size: 14px; }
.post-toc {
  margin: 8px 0 40px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-alt);
}
.post-toc-title { margin: 0 0 10px; font-family: var(--serif); font-size: 17px; font-weight: 600; }
.post-toc ol { margin: 0; padding-left: 1.4em; }
.post-toc li + li { margin-top: 6px; }
.post-toc a { color: var(--ink); text-decoration: none; }
.post-toc a:hover { color: var(--accent); }
.post-navigation { margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line); }
.post-navigation .nav-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.post-navigation .nav-next { text-align: right; }
.post-navigation a { display: block; color: var(--ink); text-decoration: none; }
.post-nav-label { display: block; margin-bottom: 5px; color: var(--ink-light); font-size: 12px; }
.post-nav-title { display: block; font-weight: 700; line-height: 1.6; }
@media (max-width: 599px) {
  .entry-content h2 { font-size: 21px; }
  .entry-content .footwork-point-box,
  .entry-content .footwork-article-cta { padding: 20px; }
  .post-navigation .nav-links { grid-template-columns: 1fr; }
  .post-navigation .nav-next { text-align: left; }
}

/* ---------- 最新の投稿ブロック(トップ) ---------- */
ul.wp-block-latest-posts {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
ul.wp-block-latest-posts > li {
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 24px;
  padding: 20px 8px;
  margin: 0;
}
ul.wp-block-latest-posts > li:first-child { border-top: 1px solid var(--line); }
.wp-block-latest-posts__post-date {
  order: -1;
  font-family: var(--serif);
  font-size: 13.5px;
  color: var(--ink-light);
  letter-spacing: 0.06em;
}
ul.wp-block-latest-posts > li > a { font-size: 15px; }

/* ---------- FAQアコーディオン(WP detailsブロック) ---------- */
.faq-group { max-width: 760px; margin: 0 auto; padding: 0 24px 96px; }
.wp-block-details.faq-details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}
.wp-block-details.faq-details summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  letter-spacing: 0.03em;
}
.wp-block-details.faq-details summary::-webkit-details-marker { display: none; }
.wp-block-details.faq-details summary::before {
  content: "Q";
  font-family: var(--serif);
  color: var(--accent);
  font-size: 19px;
  flex: none;
}
.wp-block-details.faq-details summary::after {
  content: "";
  margin-left: auto;
  flex: none;
  width: 9px; height: 9px;
  border-right: 2px solid var(--ink-light);
  border-bottom: 2px solid var(--ink-light);
  transform: rotate(45deg);
  transition: transform .3s ease;
}
.wp-block-details.faq-details[open] summary::after { transform: rotate(-135deg); }
.wp-block-details.faq-details > :not(summary) {
  padding: 0 22px 22px 55px;
  color: var(--ink-light);
  font-size: 15px;
  margin: 0;
}

/* ---------- 汎用 ---------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.lead-block { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.lead-block p { color: var(--ink); }
@media (max-width: 599px) { .lead-block { text-align: left; } }
