/*
Theme Name: すずらん経営支援事務所
Theme URI: https://suzu-run-msp.com/
Author: すずらん経営支援事務所
Description: Twenty Twenty-Five をベースにした、すずらん経営支援事務所の専用ブロックテーマ。コンテンツは管理画面のブロックエディタから編集できます。
Template: twentytwentyfive
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: suzuran-child
*/

/* ============================================================
   ネイティブブロック構造（wp-block-*）の補正
   ============================================================ */

/* Group ブロックのデフォルト余白をリセット */
.wp-block-group { margin-top: 0; margin-bottom: 0; }

/* 段落と見出しの余白を本サイト用に微調整 */
.wp-block-group p,
.wp-block-column p { margin: 0 0 8px; }
.wp-block-group p:last-child,
.wp-block-column p:last-child { margin-bottom: 0; }
.wp-block-heading { margin: 0 0 12px; }

/* Columns: 既定のflexはそのまま使うが、グリッド化指定もできるよう用意 */
.wp-block-columns {
  margin: 0;
  gap: 32px;
}
.wp-block-columns.is-grid {
  display: grid;
}

/* List: 既定のmargin除去 */
.wp-block-list { margin: 0; }

/* セパレーター */
.wp-block-separator { border: 0; height: 1px; }

/* Section共通：背景がきれいに広がるよう */
.wp-block-group.suzuran-section,
.wp-block-group.suzuran-hero,
.wp-block-group.suzuran-philosophy {
  width: 100%;
  max-width: none;
}

/* SECTION HEADERのデフォ余白 */
.suzuran-section-header { text-align: left; margin-bottom: 32px; }
.suzuran-section-header.is-centered,
.suzuran-section-header.is-centered p,
.suzuran-section-header.is-centered h2 { text-align: center; }
.suzuran-related-title { text-align: center; }

/* CONCEPT/SERVICES/FEATURES のColumnsをグリッドに */
.wp-block-columns.suzuran-concept-grid,
.wp-block-columns.suzuran-services-grid,
.wp-block-columns.suzuran-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 48px;              /* ライブと同じ */
  gap: 24px;
}

/* PROFILEのColumnsをグリッドに */
.wp-block-columns.suzuran-profile-grid {
  display: grid;
  grid-template-columns: 300px 1fr;  /* ライブ：300px */
  gap: 64px;                          /* ライブ：64px */
  margin-top: 48px;
  align-items: start;                 /* stickyが効くようにstretch→startへ */
}

/* HEROのColumnsをグリッドに */
.wp-block-columns.suzuran-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Footerのカラム → グリッド */
.wp-block-columns.suzuran-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

/* Value-grid: PHILOSOPHYで使用 */
.wp-block-columns.suzuran-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 840px;             /* 720px → 840px：カード幅を広げて1行に収める */
  margin: 16px auto;
}
/* 3カード（明確な方向・着実・持続）：2列→3つ目が1つ目の下に */
.wp-block-columns.suzuran-value-grid.is-3col {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 840px;             /* 4カードグリッドと同じ幅に統一 */
}

/* LOGO STORY: 横並び（画像+本文） */
.wp-block-columns.suzuran-logo-story-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 24px;
}
.wp-block-columns.suzuran-logo-story-row > .wp-block-column { flex: 0 0 auto; }
.wp-block-columns.suzuran-logo-story-row > .wp-block-column.suzuran-logo-story-text {
  flex: 1;
}

/* PROFILE左カラム：写真+名前のセンタリング */
.suzuran-profile-left .wp-block-image,
.suzuran-profile-left figure { margin: 0 auto; }  /* 写真を左カラム内で左右中央揃え */
.suzuran-profile-left p { margin: 8px 0 0; }

/* HEROカード：Group内の調整 */
.suzuran-hero-card .wp-block-group { margin: 0; }
.suzuran-hero-card > p,
.suzuran-hero-card > ul { margin-bottom: 12px; }

/* HERO solution: アイコンと文を横並び（ライブ：白背景＋薄緑ボーダー） */
/* ※後述の HERO セクション内の宣言が優先されるため、ここは削除しても可 */

/* 関連リンク */
.suzuran-related-links {
  background: #f9fdf9;
  padding: 60px 20px;
  border-top: 1px solid #e0e0e0;
}
.suzuran-related-links-inner {
  max-width: 800px;
  margin: 0 auto;
}
.suzuran-related-title {
  font-size: 1.2rem;
  color: var(--ocean);
  margin-bottom: 32px;
  font-weight: bold;
}
.suzuran-related-card {
  background: #fff;
  border: 1px solid #d0e8d0;
  border-radius: 8px;
  padding: 24px;
}
.suzuran-related-name {
  font-size: 1.05rem;
  font-weight: bold;
  margin: 0 0 4px;
}
.suzuran-related-name a { color: var(--ocean); text-decoration: none; }
.suzuran-related-url {
  font-size: 0.85rem;
  color: var(--gray-muted);
  margin: 0 0 8px;
}
.suzuran-related-desc {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin: 0;
}

/* テーブル：ネイティブfigure.wp-block-tableのリセット */
figure.wp-block-table {
  margin: 0;
}
figure.wp-block-table.suzuran-overview-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}
figure.wp-block-table.suzuran-profile-simple-table table {
  width: 100%;
  border-collapse: collapse;
}

/* CONTACT wrapper */
.suzuran-contact-wrapper {
  max-width: 780px;
  margin: 0 auto;
}

/* =================================================================
   レスポンシブ（ライブサイト準拠：1024 / 768 / 480 の3段階）
   ================================================================= */

/* ----------- 1024px 以下：タブレット（ライブと同じ挙動） ----------- */
@media (max-width: 1024px) {
  /* HERO：1 カラム化 */
  .wp-block-columns.suzuran-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .suzuran-hero-card { max-width: 520px; margin: 0 auto; }

  /* 3カラムグリッド → 2カラム */
  .wp-block-columns.suzuran-concept-grid,
  .wp-block-columns.suzuran-services-grid,
  .wp-block-columns.suzuran-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* PROFILE → 1 カラム */
  .wp-block-columns.suzuran-profile-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* フッター → 2 カラム */
  .wp-block-columns.suzuran-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ----------- 768px 以下：PCナビ非表示・ハンバーガー表示（ライブサイト準拠） ----------- */
@media (max-width: 768px) {
  .suzuran-header .suzuran-nav { display: none; }
  .suzuran-header .suzuran-nav.is-open { display: flex; }
}

/* ----------- 768px 以下：スマホ ----------- */
@media (max-width: 768px) {
  .suzuran-section { padding: 64px 20px; }

  .wp-block-columns.suzuran-hero-inner,
  .wp-block-columns.suzuran-profile-grid,
  .wp-block-columns.suzuran-footer-top {
    grid-template-columns: 1fr !important;
  }
  .wp-block-columns.suzuran-logo-story-row {
    flex-direction: column;
    align-items: center;
  }
  .wp-block-columns.suzuran-value-grid {
    grid-template-columns: 1fr !important;
  }
  .wp-block-columns.suzuran-concept-grid,
  .wp-block-columns.suzuran-services-grid,
  .wp-block-columns.suzuran-features-grid {
    grid-template-columns: 1fr;
  }

  /* プロフィール：スマホ時は左カラムを中央揃え */
  .suzuran-profile-left {
    text-align: center;
    position: static; /* sticky解除 */
  }
  .suzuran-profile-photo {
    max-width: 260px;
    margin: 0 auto;    /* 写真を中央に */
  }
  .suzuran-profile-certified {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ----------- 480px 以下：小型スマホ ----------- */
@media (max-width: 480px) {
  body { font-size: 14px; }
  .suzuran-section { padding: 48px 16px; }
  .suzuran-hero { padding-top: 130px; padding-left: 16px; padding-right: 16px; }
  .suzuran-section-title { font-size: clamp(22px, 6vw, 28px); }
  .suzuran-hero-catch { font-size: clamp(22px, 6vw, 30px); }
  .suzuran-hero-card { padding: 24px 18px; }
  .suzuran-hero-card-title { font-size: 14px; }
  .suzuran-hero-issues li { font-size: 13px; }
  .suzuran-btn-primary,
  .suzuran-btn-secondary { padding: 12px 22px; font-size: 13px; }
  .suzuran-overview-table tr td:first-child { font-size: 11px; }
  .suzuran-overview-table tr td:last-child { font-size: 12px; }
  .suzuran-profile-simple-table tr td:first-child {
    width: auto;
    display: block;
    padding-bottom: 0;
  }
  .suzuran-profile-simple-table tr td:last-child {
    display: block;
    padding-top: 4px;
    font-size: 12px;
  }
  .suzuran-footer { padding: 48px 16px 24px; }
  .suzuran-related-links { padding: 40px 16px; }
}

/* ============ カスタム CSS 変数（ライブサイトと統一） ============ */
:root {
  /* カラー */
  --ocean: #6a9c5a;
  --ocean-dark: #4a7a3a;
  --ocean-light: #eef4e8;
  --sage: #9dc88d;
  --sage-light: #f2f8ee;
  --navy: #6a9c5a;           /* ライブはoceanと同じ */
  --water: #6aace0;
  --water-light: #eaf4fb;
  --water-dark: #4a8abf;
  --earth: #8a6a3a;
  --earth-light: #f8f4ec;
  --white: #ffffff;
  --off-white: #f7f9f4;
  --border: #e2e8f0;
  --text: #2a3a28;
  --text-mid: #5a7050;
  --text-light: #7a9070;
  --bg-soft: #f9fdf9;
  --gray-text: #5a7050;
  --gray-muted: #7a9070;

  /* フォント（ライブサイトと同じ変数名・同じスタック） */
  --font-body: 'UDデジタル教科書体 NP-R', 'UD Digi Kyokasho NP-R', 'BIZ UDPGothic',
               'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic UI', 'Meiryo UI', sans-serif;
  --font-mincho: 'Shippori Mincho', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
}

/* ============ 基本タイポ ============ */
html, body {
  overflow-x: hidden;   /* 横スクロール防止 */
  max-width: 100%;
}
body {
  font-family: var(--font-body);         /* ライブ準拠：変数で一元管理 */
  font-size: 16px;
  color: var(--text);                    /* #2a3a28（ライブ準拠） */
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
  overflow-wrap: anywhere;
}
img { max-width: 100%; height: auto; }

/* ============================================================
   見出し基盤ルール（WordPress化対策・必須）

   【理由】
   theme.json の styles.elements.h3 は WordPress の global styles
   として出力されるが、優先度が低く・読み込まれない状況もある。
   style.css に明示的に記述することで、どの状況でも
   Shippori Mincho（明朝体）が確実に適用される。

   【ルール】
   - class なし / class あり どちらの見出しにも適用
   - より詳細なセレクタ（.suzuran-section-title 等）で上書き可
   ============================================================ */
h1, h2, h3, h4, h5, h6,
.wp-block-heading {
  font-family: var(--font-mincho);       /* 明朝体：Shippori Mincho */
  font-weight: 600;
}

.font-mincho,
h1.suzuran-mincho,
h2.suzuran-mincho,
h3.suzuran-mincho,
.suzuran-mincho {
  font-family: var(--font-mincho);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ============ ヘッダー ============ */
/* ===== 固定ヘッダー ===== */
.suzuran-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1100;              /* nav(1000)より上に重ねてメニューオープン時もヘッダーを表示 */
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  padding: 14px 0;
}

/* 固定ヘッダー分は HEROの padding-top: 72px で吸収（ライブと同じ） */

/* アンカーリンク（#philosophy 等）が固定ヘッダーに隠れないように */
section[id] {
  scroll-margin-top: 80px;
}
.suzuran-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
/* ロゴリンク（クリックでトップページへ） */
.suzuran-logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
}
.suzuran-logo-link:hover {
  opacity: 0.8;
}
.suzuran-logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.suzuran-logo-icon img {
  width: 44px; height: 44px; object-fit: contain;
}
.suzuran-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.suzuran-logo-name { font-weight: 700; color: var(--ocean); font-size: 16px; }
.suzuran-logo-sub { font-size: 10px; color: var(--ocean); font-weight: 500; margin-top: 2px; } /* ライブ：10px / ocean / 500 */

.suzuran-nav { display: flex; gap: 24px; align-items: center; }
.suzuran-nav a {
  color: #333; text-decoration: none; font-size: 14px;
  transition: color .2s;
}
.suzuran-nav a:hover { color: var(--ocean); }
.suzuran-nav a.nav-cta {
  background: var(--ocean) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 6px !important;          /* 角丸長方形 */
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
  text-decoration: none !important;
}
.suzuran-nav a.nav-cta:hover {
  background: var(--ocean-dark) !important;
  color: white !important;
  transform: translateY(-1px);
}

/* ============ セクション共通 ============ */
*, *::before, *::after { box-sizing: border-box; }

.suzuran-section {
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}
.suzuran-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.suzuran-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--ocean);
  border: none;                        /* 枠なし（ライブサイト準拠） */
  padding: 4px 0;
  margin-bottom: 24px;
}
.suzuran-section-title {
  font-family: var(--font-mincho);       /* 変数参照に統一 */
  font-size: clamp(24px, 3vw, 36px);    /* ライブ準拠 */
  font-weight: 600;
  color: var(--navy);                    /* #6a9c5a（ライブ準拠） */
  line-height: 1.5;
  margin-bottom: 16px;
}
.suzuran-section-lead {
  font-size: 16px;                       /* ライブ準拠 */
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 640px;                      /* ライブ準拠 */
}

/* ============ HERO ============ */
.suzuran-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 72px 24px 96px;
  position: relative;
  overflow: hidden;
}
.suzuran-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.suzuran-hero-badge {
  display: inline-block;
  background: white;
  border: 1px solid rgba(106,156,90,0.2); /* ライブ：0.2 opacity */
  color: var(--ocean);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 28px;
}
.suzuran-hero-catch {
  font-family: var(--font-mincho);       /* 変数参照に統一 */
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.6;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.suzuran-hero-catch em {
  color: var(--ocean);
  font-style: normal;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-decoration-color: var(--ocean);
}
.suzuran-hero-sub {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.9;
  margin-bottom: 36px;
}
.suzuran-hero-cta-group { display: flex; flex-wrap: wrap; gap: 16px; }

/* ボタンの実体は .wp-block-button__link なので、こちらをターゲットに */
.suzuran-btn-primary .wp-block-button__link,
.suzuran-btn-secondary .wp-block-button__link {
  display: inline-block;
  padding: 16px 32px;                  /* ライブ：16px 32px */
  border-radius: 10px;                 /* ライブ：8px（角丸四角） */
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;                     /* ライブ：15px */
  transition: all .25s;
  white-space: nowrap;
}
.suzuran-btn-primary .wp-block-button__link {
  background: var(--ocean);
  color: white;
  box-shadow: 0 8px 24px rgba(58,125,68,0.25);
}
.suzuran-btn-primary .wp-block-button__link:hover {
  transform: translateY(-2px);
  background: var(--sage);
}
/* secondary ボタン：枠なし、テキストリンク風（ライブと同じ） */
.suzuran-btn-secondary .wp-block-button__link {
  background: transparent !important;
  color: var(--ocean) !important;
  border: none !important;
  padding: 4px 0 !important;
  border-radius: 0 !important;
  border-bottom: 1px solid transparent !important;
  box-shadow: none !important;
  transition: border-color 0.2s !important;
  white-space: nowrap;
}
.suzuran-btn-secondary .wp-block-button__link:hover {
  background: transparent !important;
  border-bottom-color: var(--ocean) !important;
  transform: none !important;
}

.suzuran-hero-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 12px 48px rgba(45,74,45,0.15);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 480px;
  position: relative;
}
.suzuran-hero-card-title {
  font-weight: 600;
  color: var(--ocean);
  margin-bottom: 20px;  /* ライブ：20px */
  font-size: 13px;
}
.suzuran-hero-issues {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px; /* ライブ：8px */
}
.suzuran-hero-issues li {
  font-size: 13.5px;             /* ライブ：13.5px */
  display: flex; gap: 8px;       /* ライブ：8px */
  color: var(--text);            /* ライブ：var(--text) */
  background-color: rgb(249, 250, 248); /* ライブ：薄グレー白 #f9faf8 */
  border-radius: 8px;            /* ライブ：8px */
  padding: 10px 14px;            /* ライブ：10px 14px */
}
.suzuran-hero-issues .icon { color: var(--text); flex-shrink: 0; } /* ライブ：var(--text) */
.suzuran-hero-arrow {
  text-align: center;
  margin: 20px 0;
  color: var(--ocean);
  font-size: 24px;
}
.suzuran-hero-solution {
  background: var(--white);      /* ライブ：白 */
  padding: 16px 18px;            /* ライブ：16px 18px */
  border-radius: 10px;           /* ライブ：10px */
  display: flex; align-items: center; gap: 12px; /* ライブ：12px */
  border: 1px solid rgba(106,156,90,0.2);
}
.suzuran-hero-solution .sol-icon {
  font-size: 18px;               /* ライブ：18px */
  flex-shrink: 0;
}
.suzuran-hero-solution p {
  margin: 0; font-weight: 600; color: var(--ocean); line-height: 1.6;
}

/* ============ PHILOSOPHY（緑背景セクション）============ */
.suzuran-philosophy {
  background: #3a5c2a;
  color: white;
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}
.suzuran-philosophy::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,138,58,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.suzuran-philosophy::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,158,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.suzuran-philosophy .suzuran-section-inner { position: relative; z-index: 1; }
.suzuran-philosophy-block { text-align: center; margin-bottom: 80px; }
.suzuran-philosophy-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.25em;
  border: 1px solid rgba(106,156,90,0.5);
  padding: 6px 20px; border-radius: 100px;
  margin-bottom: 28px;
  color: var(--ocean);                  /* 理念・役割：緑 */
}
.suzuran-philosophy-label.is-earth {
  color: var(--earth);
  border-color: rgba(138,106,58,0.5);   /* 基本方針：土色 */
}
.suzuran-philosophy-label.is-muted {
  color: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.15); /* 大切にしていること：白/淡 */
}

/* ライブサイト準拠：理念＞役割＞基本方針 の3段階フォントサイズ */
.suzuran-philosophy-text {
  font-family: var(--font-mincho);       /* 変数参照に統一 */
  font-size: clamp(28px, 4vw, 52px);   /* 理念（最大） */
  font-weight: 600;
  color: var(--white);
  line-height: 1.65;
  letter-spacing: 0.06em;
}
.suzuran-philosophy-text.is-medium {
  font-size: clamp(22px, 3vw, 40px);   /* 役割（中） */
  color: var(--white);
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.suzuran-philosophy-text.is-small {
  font-size: clamp(18px, 2.4vw, 32px); /* 基本方針（小） */
  color: var(--white);
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.suzuran-philosophy-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--ocean), var(--sage));
  margin: 0 auto 80px;
  border-radius: 2px;
}
/* ============ Value グリッド（私たちが大切にしていること：4カード） ============ */
.suzuran-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 840px;             /* 720px → 840px：1行に収めるため */
  margin: 0 auto;
}
.suzuran-value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
}
.suzuran-value-card-title {
  font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 6px;
}
.suzuran-value-card-desc {
  font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.8;
}

/* ============ 3カード（明確な方向・着実・持続）：ライブサイト準拠スタイル ============ */
/* 2列配置：持続する体制が明確な方向の下に来るように */
.wp-block-columns.suzuran-value-grid.is-3col .suzuran-value-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;          /* ライブと同じ */
  padding: 28px 24px;           /* ライブと同じ */
  text-align: center;           /* ライブと同じ */
}
.suzuran-value-icon {
  font-size: 28px;              /* ライブと同じ */
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}
.wp-block-columns.suzuran-value-grid.is-3col .suzuran-value-card-title {
  font-size: 15px;              /* ライブと同じ */
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.wp-block-columns.suzuran-value-grid.is-3col .suzuran-value-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* ============ 「私たちが大切にしていること」セクション ============ */
.suzuran-value-section {
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 64px;
  text-align: center;           /* inline-block のラベルを中央に */
}
/* ラベル：コンテンツ幅のpill（カードの半分くらいの幅） */
.suzuran-value-section .suzuran-philosophy-label {
  display: inline-block;        /* コンテンツ幅のみ（全幅にしない） */
  text-align: center;
  margin-bottom: 36px;
}
/* カード内テキストは左揃えを維持 */
.suzuran-value-section .suzuran-value-card {
  text-align: left;
}
/* カードが並ぶグリッドは左揃えに戻す */
.suzuran-value-section .wp-block-columns {
  text-align: left;
}

/* ============ LOGO STORY ============ */
.suzuran-logo-story {
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 64px;
}
.suzuran-logo-story-inner {
  max-width: 860px;
  margin: 0 auto;
}
.suzuran-logo-story-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.suzuran-logo-story-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 24px;
}
.suzuran-logo-story-icon {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px;
}
.suzuran-logo-story-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.suzuran-logo-story-text {
  flex: 1;
}
.suzuran-logo-story-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 2.1;
  margin: 0 0 18px;
}
.suzuran-logo-story-text p:last-child { margin-bottom: 0; }
.suzuran-logo-story-text .ls-ocean { color: var(--sage); font-weight: 600; }
.suzuran-logo-story-text .ls-earth { color: var(--earth); font-weight: 600; }
.suzuran-logo-story-text .ls-water { color: var(--water); font-weight: 600; }


/* ============ CONCEPT セクション（ライブサイト準拠） ============ */

/* 背景：ネイビーグリーン + 右側グラデーション装飾 */
.suzuran-concept {
  background: var(--navy);       /* #6a9c5a */
}
.suzuran-concept::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(45,74,45,0.15));
  pointer-events: none;
  z-index: 0;
}
.suzuran-concept .suzuran-section-inner { position: relative; z-index: 1; }

/* section-label / title / lead：緑背景用の色 */
.suzuran-concept .suzuran-section-label {
  color: var(--sage);                  /* CONCEPTは白文字系のsage */
}
.suzuran-concept .suzuran-section-title  { color: var(--white); }
.suzuran-concept .suzuran-section-lead   {
  color: rgba(255,255,255,0.7);
  max-width: 720px;
}

/* カードグリッド */
.suzuran-concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;              /* ライブと同じ */
}

/* カード本体 */
.suzuran-concept-card {
  background: rgba(255,255,255,0.06);   /* ライブと同じ半透明 */
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid var(--ocean);   /* 01：デフォルト */
  border-radius: 16px;
  padding: 32px 28px;                   /* ライブと同じ */
  transition: all 0.3s;
  position: relative;
}
.suzuran-concept-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
}
/* 02：水色 / 03：土色 */
.suzuran-concept-card.is-water { border-top-color: var(--water); }
.suzuran-concept-card.is-earth { border-top-color: var(--earth); }

/* アイコン（PHPクラス名: concept-icon） */
.suzuran-concept-card .concept-icon {
  font-size: 28px;
  margin: 0 0 14px !important;   /* ライブと同じ */
  display: block;
  line-height: 1;
}

/* 番号（PHPクラス名: concept-num） */
.suzuran-concept-card .concept-num {
  font-size: 36px;
  font-weight: 900;
  color: rgba(255,255,255,0.5);  /* white 50% */
  line-height: 1;
  margin: 0 0 16px !important;
  font-family: var(--font-mincho);       /* 変数参照に統一 */
}

/* カード見出し h3 */
.suzuran-concept-card h3 {
  font-family: var(--font-body);  /* ライブ：ゴシック（h3明朝継承を上書き） */
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.5;
}

/* カード説明文 */
.suzuran-concept-card p:not(.concept-icon):not(.concept-num) {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
}

/* ============ SERVICES セクション（ライブサイト準拠） ============ */
.suzuran-services {
  background: var(--white);
}

/* サービスカード */
.suzuran-service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
/* ホバー時：上辺に緑バーがスライドイン */
.suzuran-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ocean);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.suzuran-service-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}
.suzuran-service-card:hover::before {
  transform: scaleX(1);
}

/* アイコンbox（PHPクラス名: service-icon） */
.suzuran-service-card .service-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 0 20px !important;
  line-height: 1;
}
/* カード1（ocean テーマ）アイコンのみ薄緑背景 */
.suzuran-service-card .service-icon.is-ocean {
  background: var(--ocean-light);
  border-bottom: 2px solid var(--ocean);
}

/* カード h3 */
.suzuran-service-card h3 {
  font-size: 17px;
  font-weight: 700;
  font-family: var(--font-body);       /* ライブ：ゴシック（h3明朝継承を上書き） */
  color: var(--ocean);
  margin-bottom: 12px;
  line-height: 1.5;
}
.suzuran-service-card h3.is-ocean { color: var(--ocean); }
.suzuran-service-card h3.is-water { color: var(--water-dark); }
.suzuran-service-card h3.is-earth { color: var(--earth); }

/* フィーチャーリスト（PHPクラス名: suzuran-feature-list） */
.suzuran-feature-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0 !important;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.suzuran-feature-list li {
  font-size: 13px;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}
/* → 矢印：カード1 ocean、カード2・3 water-dark */
.suzuran-feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--ocean);
  font-size: 12px;
}
.suzuran-services-grid .wp-block-column:nth-child(2) .suzuran-feature-list li::before,
.suzuran-services-grid .wp-block-column:nth-child(3) .suzuran-feature-list li::before {
  color: var(--water-dark);
}

/* ============ FEATURES セクション（ライブサイト準拠） ============ */
.suzuran-features {
  background: var(--bg-soft);         /* ライブ：薄いオフホワイト */
}

/* カード本体（wp-block-column = suzuran-feature-item） */
.suzuran-feature-item {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid var(--border);   /* 上淵カラーなし：全辺同一ボーダー */
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.suzuran-feature-item:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}

/* 大きな番号（PHPクラス名: feature-num） */
.suzuran-feature-item .feature-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 48px;
  font-weight: 700;
  color: var(--ocean-dark);            /* ライブ：rgb(58,125,68) = ocean-dark、全カード同色 */
  opacity: 1;                          /* ライブ：1（ウォーターマークではなく実色） */
  font-family: var(--font-mincho);
  line-height: 1;
  margin: 0 !important;
}
/* 全カード同色のためnth-childカラー上書きは不要 */

/* バッジ（PHPクラス名: feature-badge） */
.suzuran-feature-item .feature-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--ocean);            /* ライブ：solid ocean */
  color: white;                        /* ライブ：white */
  margin: 0 0 16px !important;
}
.suzuran-features-grid > .wp-block-column:nth-child(2) .feature-badge {
  background: var(--earth);           /* ライブ：rgb(138,106,58) = --earth（計画カード） */
  color: white;
}
.suzuran-features-grid > .wp-block-column:nth-child(3) .feature-badge {
  background: var(--water-dark);      /* ライブ：rgb(74,138,191) = --water-dark（体制カード） */
  color: white;
}

/* 見出し h3 */
.suzuran-feature-item h3 {
  font-family: var(--font-body);       /* ライブ：ゴシック（h3明朝継承を上書き） */
  font-size: 18px;                     /* ライブ：18px */
  font-weight: 700;
  color: var(--ocean);                 /* ライブ：ocean */
  margin-bottom: 14px;
  line-height: 1.5;
}

/* 説明文 p */
.suzuran-feature-item > .wp-block-paragraph {
  font-size: 14px;                    /* ライブ：14px */
  color: var(--text-mid);
  line-height: 1.9;
}

/* ============ PROFILE（ライブサイト準拠） ============ */
.suzuran-profile-section {
  background: var(--white);
  overflow: unset !important; /* .suzuran-section の overflow:hidden を無効化しstickyを有効にする */
}
.suzuran-profile-grid {
  display: grid;
  grid-template-columns: 300px 1fr;  /* ライブ：300px */
  gap: 64px;                          /* ライブ：64px */
  margin-top: 48px;
  align-items: start;                 /* stickyが効くようにstretch→startへ */
}
.suzuran-profile-left {
  position: sticky;
  top: 96px;
  align-self: start;
}
.suzuran-profile-left .wp-block-image,
.suzuran-profile-left figure { margin: 0 auto; }   /* 写真を左カラム内で左右中央揃え */
.suzuran-profile-left p { margin: 8px 0 0; }
.suzuran-profile-photo {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.suzuran-profile-photo img {
  width: 100%;
  height: auto;          /* ライブ：自然な縦横比を維持 */
  display: block;
}
/* 資格ラベル */
.suzuran-profile-title {
  font-size: 12px;
  color: var(--ocean);
  font-weight: 600;
  margin-top: 20px;
  letter-spacing: 0.1em;               /* ライブ：1.2px / 12px = 0.1em */
}
/* 名前（日本語）：ライブ→明朝 26px */
.suzuran-profile-name-ja {
  font-family: var(--font-mincho);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.08em;
  margin-top: 8px;
}
/* 名前（英語） */
.suzuran-profile-name-en {
  font-size: 12px;
  font-weight: 400;                    /* ライブ：400 */
  color: var(--text-light);
  letter-spacing: 0.15em;
  margin-top: 4px;
}
/* 認定機関バッジ：ライブ→ 角丸四角ボーダー */
.suzuran-profile-certified {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(45,74,45,0.25);
  background: var(--white);
  color: var(--ocean-dark);          /* ライブ：rgb(74,122,58) = #4a7a3a */
  padding: 8px 14px;                 /* ライブ：8px 14px */
  border-radius: 8px;                /* ライブ：8px（pillではなく角丸四角） */
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
/* 自己紹介文 */
.suzuran-profile-bio {
  font-size: 15px;                    /* ライブ：15px */
  line-height: 2;
  color: var(--text-mid);
  padding-bottom: 48px;              /* ライブ：48px */
  margin-bottom: 48px !important;    /* ライブ：48px（.wp-block-column p の 8px を上書き） */
  border-bottom: 1px solid rgb(226, 232, 240);  /* ライブ：#e2e8f0 */
}
/* セクションタイトル（h4）：ライブ→12px body font */
.suzuran-profile-section-title {
  font-family: var(--font-body);     /* h4のため明朝が適用されるのを上書き */
  font-size: 12px;                   /* ライブ：12px */
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--ocean);
  border: none;                      /* ライブ：ボーダーなし */
  padding: 0;
  margin: 32px 0 20px;               /* ライブ：margin-bottom 20px */
  display: block;                    /* ライブ：block */
}
.suzuran-profile-section-title.water {
  color: var(--ocean);               /* ライブ：すべてocean色 */
}
.suzuran-profile-section-title.earth {
  color: var(--ocean);               /* ライブ：すべてocean色 */
}
/* plain-list（資格・役職・所属） */
.suzuran-profile-plain-list {
  list-style: none;
  padding: 0 0 0 40px;              /* ライブ：padding-left 40px */
  margin: 0 0 32px;                 /* ライブ：margin-bottom 32px */
}
.suzuran-profile-plain-list li {
  font-size: 14px;                   /* ライブ：14px */
  line-height: 1.9;
  color: var(--text);                /* ライブ：#2a3a28 */
  padding: 6px 0;                    /* ライブ：6px 0 */
  margin: 0;                         /* ライブ：margin 0 */
  border-bottom: 1px solid var(--border);
}
.suzuran-profile-plain-list li:first-child {
  border-top: 1px solid var(--border);
}
/* 略歴テーブル */
.suzuran-profile-simple-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;                   /* ライブ：14px（継承の16pxを上書き） */
}
.suzuran-profile-simple-table tr {
  border-bottom: 1px solid rgb(226, 232, 240); /* ライブ：行区切り #e2e8f0 */
}
.suzuran-profile-simple-table tr:nth-child(odd) {
  background-color: rgb(250, 251, 252); /* ライブ：奇数行 #fafbfc */
}
.suzuran-profile-simple-table tr:nth-child(even) {
  background-color: transparent;         /* ライブ：偶数行は白 */
}
.suzuran-profile-simple-table td {
  padding: 10px 12px;
  border: none;                        /* 余計な線を消す：行区切りはtrのborder-bottomのみ */
  vertical-align: top;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text);
}
.suzuran-profile-simple-table tr td:first-child {
  white-space: nowrap;
  color: var(--text);
  font-weight: 400;
  width: 140px;
  font-size: 13px;
  padding: 10px 20px 10px 12px;     /* 左右にもpadding */
}

/* ============ OVERVIEW テーブル（ライブサイト準拠） ============ */
.suzuran-overview {
  background: var(--bg-soft);
}
.suzuran-overview-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  background: var(--white);
  border-radius: 16px;               /* ライブ：16px */
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);   /* ライブ：外枠ボーダー */
}
/* 行交互背景（ライブ：奇数行 #fafbfc / 偶数行 白） */
.suzuran-overview-table tr:nth-child(odd) {
  background-color: rgb(250, 251, 252);
}
.suzuran-overview-table tr:nth-child(even) {
  background-color: transparent;
}

/* th相当（ローカルはtdのみ → td:first-child でth相当のスタイルを適用） */
.suzuran-overview-table tr td:first-child {
  width: 200px;
  padding: 20px 28px;                /* ライブ：20px 28px */
  font-size: 13px;                   /* ライブ：13px */
  font-weight: 700;
  color: var(--ocean-dark);          /* ライブ：ocean-dark */
  background: rgba(45,74,45,0.05);   /* ライブ：薄緑背景 */
  letter-spacing: 0.05em;
  border-right: 1px solid rgb(238, 238, 238); /* ライブ：薄いグレー */
  white-space: nowrap;
  vertical-align: top;
}
/* 内容セル（td:last-child） */
.suzuran-overview-table td {
  padding: 20px 28px;                /* ライブ：20px 28px */
  text-align: left;
  border: 1px solid rgb(238, 238, 238); /* WP inline CSS が border:1px solid(色なし=currentColor)を設定するため全辺を明示上書き */
  font-size: 14px;                   /* ライブ：14px */
  color: var(--text);
  vertical-align: top;
  line-height: 1.8;
}
.suzuran-overview-table tr:last-child td {
  border-bottom: none;
}

/* スマホ：項目と内容を縦に交互配置 */
@media (max-width: 768px) {
  .suzuran-overview-table table,
  .suzuran-overview-table tbody,
  .suzuran-overview-table tr,
  .suzuran-overview-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .suzuran-overview-table tr {
    border-bottom: 1px solid rgb(238, 238, 238); /* ライブ：薄いグレー */
  }
  .suzuran-overview-table td {
    border-bottom: none;
    border-right: none;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    padding: 12px 16px;
  }
  .suzuran-overview-table tr td:first-child {
    padding-bottom: 4px;
    font-size: 12px;
    letter-spacing: 0.05em;
    width: 100%;
    background: rgba(45,74,45,0.05);
  }
  .suzuran-overview-table tr td:last-child {
    padding-top: 4px;
    padding-bottom: 16px;
    background: var(--white);
    font-size: 13px;
    line-height: 1.9;
  }
}

/* ============ CONTACT ============ */
.suzuran-contact { background: var(--bg-soft); }
/* リード文：中央揃え */
.suzuran-contact .suzuran-section-lead {
  text-align: center;
  margin-left: auto;   /* max-width:640pxのブロック自体を中央に */
  margin-right: auto;
}
/* ご注意ボックス：ライブサイト準拠（白背景・全辺緑ボーダー） */
.suzuran-contact-notice {
  background: #ffffff;
  border: 1px solid rgb(168, 200, 120);  /* ライブ：薄緑ボーダー全辺 */
  border-left: 1px solid rgb(168, 200, 120);
  padding: 16px 20px;
  border-radius: 10px;                   /* ライブ：10px */
  margin-bottom: 32px;
  font-size: 13px;
  color: rgb(42, 58, 40);               /* ライブ：濃緑 */
  line-height: 1.8;
}
.suzuran-form-group { margin-bottom: 24px; }
.suzuran-form-label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--ocean);  /* ライブ：rgb(106,156,90) = --ocean */
}
.suzuran-form-label .required {
  display: inline-block;
  background: var(--ocean);  /* ライブ：緑（#6a9c5a）*/
  color: white;
  padding: 2px 7px;          /* ライブ：7px */
  border-radius: 4px;
  font-size: 10px;
  margin-left: 8px;
  font-weight: 600;           /* ライブ：600 */
}
.suzuran-form-note { font-size: 12px; color: var(--gray-muted); margin: -4px 0 8px; }
.suzuran-form-input,
.suzuran-form-textarea,
.suzuran-form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: white;
}
.suzuran-form-textarea { min-height: 140px; resize: vertical; }
.suzuran-form-input:focus,
.suzuran-form-textarea:focus,
.suzuran-form-select:focus {
  outline: none;
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(58,125,68,0.1);
}
.suzuran-form-radio-group { display: flex; flex-wrap: wrap; gap: 16px; }
.suzuran-form-radio-group .radio-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px;
}
.suzuran-checkbox-group { margin: 24px 0; }
.suzuran-checkbox-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; line-height: 1.6;
  margin-bottom: 12px;
}
.suzuran-form-submit {
  display: block; width: 100%;
  padding: 18px;
  background: var(--ocean);
  color: white;
  border: none;
  border-radius: 10px;            /* 角丸四角 */
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(58,125,68,0.25);
  transition: all .25s;
  margin-bottom: 96px;            /* ボタン下余白 */
}
.suzuran-form-submit:hover { background: var(--sage); transform: translateY(-2px); }
/* ご入力欄ノート（フォーム冒頭）：薄青 */
.form-intro-note {
  background: rgb(234, 244, 251);        /* ライブ：薄青背景 */
  padding: 14px 18px;
  border-radius: 6px;
  border: none;
  border-left: 2px solid rgb(106, 172, 224); /* ライブ：水色左ボーダー */
  margin: 20px 0;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
}
/* 送信確認ノート（フォーム末尾）：ベージュ */
.form-confirm-note {
  background: var(--earth-light);        /* ライブ：rgb(248,244,236) = --earth-light */
  padding: 14px 18px;
  border-radius: 6px;
  border: none;
  border-left: 2px solid var(--earth);   /* ライブ：rgb(138,106,58) = --earth */
  margin: 20px 0;
  font-size: 13px;
  color: rgb(42, 58, 40);               /* ライブ：濃緑テキスト */
  line-height: 1.8;
}

/* ============ フッター ============ */
.suzuran-footer {
  background: #3a5c2a;
  color: rgba(255,255,255,0.7);
  padding: 64px 24px 32px;
}
.suzuran-footer-inner { max-width: 1100px; margin: 0 auto; }
.suzuran-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.suzuran-footer-logo-name {
  color: white;
  font-family: var(--font-mincho);    /* ライブ：明朝体 */
  font-weight: 600;                   /* ライブ：600 */
  font-size: 18px;
  margin-bottom: 8px;                 /* ライブ：8px */
}
.suzuran-footer-logo-sub {
  font-size: 11px;
  color: rgb(106, 172, 224);          /* ライブ：水色 = var(--water) */
  font-weight: 600;
  margin-bottom: 16px;
}
.suzuran-footer-col h4 {
  color: white;
  font-family: var(--font-body);      /* ライブ：h4の明朝継承を上書き */
  font-size: 12px;                    /* ライブ：12px */
  font-weight: 700;
  margin-bottom: 18px;                /* ライブ：18px */
}
.suzuran-footer-col ul { list-style: none; padding: 0; margin: 0; }
.suzuran-footer-col ul li { margin-bottom: 8px; font-size: 13px; }
.suzuran-footer-col a {
  color: rgba(255,255,255,0.6);       /* ライブ：0.6 */
  font-size: 13px;                    /* ライブ：13px */
  text-decoration: none;
}
.suzuran-footer-col a:hover { color: white; }
.suzuran-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 12px;
  text-align: center;
  color: rgba(255,255,255,0.5);
}
.suzuran-footer-bottom p { margin: 4px 0; }

/* ============ スクロールフェードインアニメーション（ライブサイト準拠） ============ */

/* 基本状態：非表示＋下にずれた位置 */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s, transform 0.7s;
}
/* JS が .visible を付与した瞬間に表示 */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* concept / service カード：左から順に 0s / 0.1s / 0.2s 遅延 */
.suzuran-concept-grid  .wp-block-column:nth-child(2).fade-in,
.suzuran-services-grid .wp-block-column:nth-child(2).fade-in {
  transition-delay: 0.1s;
}
.suzuran-concept-grid  .wp-block-column:nth-child(3).fade-in,
.suzuran-services-grid .wp-block-column:nth-child(3).fade-in {
  transition-delay: 0.2s;
}

/* features カード：左から順に 0s / 0.12s / 0.24s 遅延 */
.suzuran-features-grid .wp-block-column:nth-child(2).fade-in {
  transition-delay: 0.12s;
}
.suzuran-features-grid .wp-block-column:nth-child(3).fade-in {
  transition-delay: 0.24s;
}

/* ============ ハンバーガーボタン ============ */
/* ボタンの共通スタイル（display は各ブレークポイントで制御） */
.suzuran-header .suzuran-hamburger {
  width: 40px; height: 40px;
  padding: 4px;               /* ライブサイトに合わせて4px */
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1010;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
/* タブレット以上（769px以上）では非表示（ライブサイト準拠：max-width:768px） */
@media (min-width: 769px) {
  .suzuran-header .suzuran-hamburger { display: none; }
}
/* スマホ（768px以下）では表示 */
@media (max-width: 768px) {
  .suzuran-header .suzuran-hamburger { display: flex; }
}
.suzuran-hamburger span {
  display: block !important;
  width: 24px !important;            /* ライブサイトに合わせて24px */
  height: 2px !important;          /* WPブロックエディタのインラインCSSが0pxにするため !important */
  min-height: 2px !important;
  background: var(--ocean) !important;
  margin: 0 !important;              /* gap で間隔管理（margin+gap の二重適用を防止） */
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  flex-shrink: 0;
}
/* オープン時：×印に変化 */
.suzuran-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.suzuran-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.suzuran-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ レスポンシブ（ハンバーガーメニュー：768px 以下、ライブサイト準拠） ============ */
@media (max-width: 768px) {
  /* モバイル時のナビ：ヘッダーの直下からスライドダウンするパネル */
  .suzuran-nav {
    position: fixed;
    top: 72px;                /* ヘッダー高さ分下げてロゴ・社名が常に見えるように */
    left: 0; right: 0;
    height: auto;
    min-height: unset;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transform: translateY(-120%);  /* ヘッダー上に完全に隠れる量 */
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 1000;
    padding: 28px 24px 28px;       /* 上部に余分な余白不要 */
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    overflow-y: auto;
  }
  .suzuran-nav.is-open { transform: translateY(0); display: flex; }
  .suzuran-nav a {
    font-size: 13px;
    line-height: 1.15;
    padding: 4px 12px;
  }
  .suzuran-nav a.nav-cta {
    padding: 9px 20px;
    font-size: 12px;
    line-height: 1.15;
    margin-top: 4px;
  }

  /* メニューが開いてる時、背景スクロールを止める用クラス（JSで body に付与） */
  body.suzuran-menu-open { overflow: hidden; }
}

/* ============ 単一記事ページ ============ */


.wp-block-group.has-link-color.has-small-font-size {
  align-items: center;
  line-height: 1;
  margin-top: 12px;
}
.wp-block-group.has-link-color.has-small-font-size > * {
  line-height: 1;
  margin: 0 !important;
  padding: 0;
}