/*
Theme Name: ほんま武久 公式サイト
Theme URI: https://homma-takehisa.com
Description: ほんま 武久 公式ウェブサイト用 WordPress テーマ
Version: 1.0
Author: ほんま武久事務所
Text Domain: homma-takehisa
*/

/*
Theme Name: ほんま武久 公式サイト
Description: ほんま武久 千葉市議会議員候補 公式サイト用スタイルシート
Version: 1.0
*/

/* ==============================================================
   TABLE OF CONTENTS
   01. CSS Variables
   02. Reset & Base
   03. Utility
   04. Notice Bar
   05. Header & Logo
   06. Navigation (Desktop)
   07. Header SNS Icons & SNS Colors
   08. Hamburger Toggle (Base)
   09. Page Hero（下層ページ共通）
   10. CTA Section（共通ボタン）
   11. Footer
   12. Responsive — 970px（Hamburger Panel）
   13. Responsive — Mobile（フォントサイズ等）
============================================================== */


/* ==============================================================
   01. CSS VARIABLES
============================================================== */
:root {
  --navy:   #1B4FA0;
  --navy-d: #0d2c63;
  --red:    #C81E2E;
  --red-d:  #a31624;
  --ink:    #333333;
  --gray:   #5d626c;
  --lgray:  #9aa0ac;
  --line:   #e3e6ec;
  --base:   #f4f5f7;
}

/*
 * NOTE: プロフィールページのみ以下を上書きしてください
 *   --ink: #1f1f1f;
 *   --gray: #5d626c;
 */


/* ==============================================================
   02. RESET & BASE
============================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}


/* ==============================================================
   03. UTILITY
============================================================== */
/* スクロール表示アニメーション */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}


/* ==============================================================
   04. NOTICE BAR
============================================================== */
.notice-bar {
  background: var(--navy);
  height: 5px;
}


/* ==============================================================
   05. HEADER & LOGO
============================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

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

/* ロゴ */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}

.logo-ruby {
  font-size: 12px;
  letter-spacing: 0.34em;
  color: var(--lgray);
}

.logo-name {
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.10em;
}

.logo-name small {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: .12em;
  margin-left: 6px;
}


/* ==============================================================
   06. NAVIGATION（デスクトップ）
============================================================== */
.nav-main {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-main a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #2c2f36;
  letter-spacing: 0.04em;
  padding: 10px 13px;
  position: relative;
}

.nav-main a::after {
  content: '';
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 4px;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.nav-main a:hover { color: var(--navy); }
.nav-main a:hover::after,
.nav-main a.active::after { transform: scaleX(1); }
.nav-main a.active { color: var(--navy); }

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* 後援会ボタン（ヘッダー内） */
.btn-join {
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 11px 20px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background .2s;
}
.btn-join:hover { background: var(--red-d); }


/* ==============================================================
   07. HEADER SNS ICONS & SNS COLOR CLASSES
============================================================== */
.header-sns {
  display: flex;
  gap: 7px;
}

.header-sns a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: opacity .2s;
}
.header-sns a:hover { opacity: .72; }
.header-sns svg { width: 14px; height: 14px; fill: #fff; }

/* フッター SNS */
.f-sns {
  display: flex;
  gap: 8px;
}

.f-sns a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
}
.f-sns a:hover { opacity: .72; }
.f-sns svg { width: 14px; height: 14px; fill: #fff; }

/* SNS カラー（ヘッダー・フッター・モバイルメニュー共通） */
.ic-x    { background: #000; }
.ic-fb   { background: #1877f2; }
.ic-ig   { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.ic-yt   { background: #ff0000; }
.ic-line { background: #06c755; }


/* ==============================================================
   08. HAMBURGER TOGGLE（デスクトップ時は非表示）
============================================================== */
/* モバイルメニュー内 SNS ──デスクトップでは非表示 */
.nav-mobile-sns { display: none; }

/* ハンバーガーボタン ──デスクトップでは非表示 */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform .3s, opacity .3s;
}

/* 開いた状態（×アイコン） */
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ==============================================================
   09. PAGE HERO（下層ページ共通）
============================================================== */
.page-hero {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.page-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 20, 48, .80) 0%,
    rgba(8, 20, 48, .42) 50%,
    rgba(8, 20, 48, .12) 100%
  );
}

.page-hero-inner {
  position: absolute;
  inset: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 52px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-hero-en {
  font-size: 11px;
  letter-spacing: 0.30em;
  color: rgba(255, 255, 255, .6);
  font-weight: 700;
  margin-bottom: 12px;
}

.page-hero-ja {
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.1;
  font-family: "Times New Roman", Georgia, serif;
}

.page-hero-ja span {
  display: inline-block;
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin-left: 18px;
  color: rgba(255, 255, 255, .82);
  vertical-align: middle;
}

/* パンくずリスト */
.breadcrumb {
  position: absolute;
  top: 26px;
  left: 0;
  right: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255, 255, 255, .6); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: .4; }


/* ==============================================================
   10. CTA SECTION（共通ボタン類）
============================================================== */
/* ネイビー背景 CTA（policy等で使用） */
.cta-sec {
  background: var(--navy);
  padding: 80px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent, transparent 40px,
    rgba(255, 255, 255, .025) 40px,
    rgba(255, 255, 255, .025) 80px
  );
}

.cta-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.cta-en {
  font-size: 11px;
  letter-spacing: 0.30em;
  color: rgba(255, 255, 255, .5);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-title {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-bottom: 18px;
}

.cta-text {
  font-size: 16px;
  color: rgba(255, 255, 255, .75);
  line-height: 2.0;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ホワイトボタン */
.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 15px 32px;
  border-radius: 2px;
  transition: opacity .2s;
}
.btn-white:hover { opacity: .88; }

/* アウトラインホワイトボタン */
.btn-outline-white {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, .6);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 15px 32px;
  border-radius: 2px;
  transition: background .2s;
}
.btn-outline-white:hover { background: rgba(255, 255, 255, .12); }

/* 後援会入会 Google Form ボタン */
.btn-cta-join {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 22px 64px;
  border-radius: 3px;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 20px rgba(200, 30, 46, .30);
}
.btn-cta-join:hover {
  background: var(--red-d);
  transform: translateY(-2px);
}
.btn-cta-join svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }


/* ==============================================================
   11. FOOTER
============================================================== */
footer {
  background: var(--navy-d);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.footer-top {
  padding: 64px 0 52px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  align-items: start;
}

.footer-brand .f-name {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.footer-brand .f-ruby {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 22px;
}

.footer-brand address {
  font-style: normal;
  font-size: 12.5px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 24px;
}

.f-sns {
  display: flex;
  gap: 8px;
}

.f-sns a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: opacity .2s;
}
.f-sns a:hover { opacity: .72; }
.f-sns svg { width: 14px; height: 14px; fill: #fff; }

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, .4);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-col ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}

.footer-col ul li { padding: 0; }

.footer-col ul a {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  transition: color .2s;
}
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
}

.footer-links a {
  color: rgba(255, 255, 255, .3);
  font-size: 12px;
  transition: color .2s;
}
.footer-links a:hover { color: rgba(255, 255, 255, .6); }


/* ==============================================================
   12. RESPONSIVE — 970px（ハンバーガーメニュー展開）
============================================================== */
@media (max-width: 1100px) {

  /* オーバーレイ背景 */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 270;
  }
  body.nav-open .nav-overlay { display: block; }

  /* デスクトップ専用要素を非表示 */
  .header-right { display: none; }
  .header-sns   { display: none; }

  /* ハンバーガーボタン表示 */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    z-index: 320;
  }

  /* スライドインパネル */
  .nav-main {
    position: fixed;
    top: 0;
    right: 0;
    width: 76%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 96px 28px 40px;
    gap: 0;
    box-shadow: -8px 0 40px rgba(0, 0, 0, .16);
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 280;
  }
  body.nav-open .nav-main { transform: translateX(0); }

  .nav-main a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }
  .nav-main a::after { display: none; }

  /* モバイルメニュー内 SNS アイコン */
  .nav-mobile-sns {
    display: flex;
    gap: 10px;
    padding-top: 28px;
    margin-top: 8px;
    border-top: 1px solid var(--line);
  }

  .nav-mobile-sns a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: opacity .2s;
  }
  .nav-mobile-sns a:hover { opacity: .72; }
  .nav-mobile-sns svg { width: 15px; height: 15px; fill: #fff; }

  /* フッターを1カラムに */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}


/* ==============================================================
   13. RESPONSIVE — モバイル（520px / 680px）
============================================================== */
@media (max-width: 680px) {
  body { font-size: 14px; }

  /* PAGE HERO */
  .page-hero { height: 220px; }
  .page-hero-ja { font-size: 30px; }

  /* CTA */
  .cta-title { font-size: 22px; }
}

@media (max-width: 520px) {
  body { font-size: 14px; } /* 680px が効いていない場合の保険 */
}



/* ================================================================
   PAGE: TOP
================================================================ */
/* ==============================================================
   HERO
============================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 580px;
  max-height: 880px;
  overflow: hidden;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    rgba(8,20,48,.82) 0%,
    rgba(8,20,48,.46) 46%,
    rgba(8,20,48,.08) 100%);
}
.hero-inner {
  position: absolute;
  inset: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-en {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,.7);
  margin-bottom: 22px;
}
.hero-catch {
  color: #fff;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0.04em;
  text-shadow: 0 4px 30px rgba(0,0,0,.35);
  padding-left: 26px;
  border-left: 5px solid var(--red);
}
.hero-sub {
  color: rgba(255,255,255,.9);
  font-size: 16px;
  line-height: 2;
  margin-top: 28px;
  font-weight: 400;
  max-width: 460px;
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
}
.hero-scroll {
  position: absolute;
  right: 30px; bottom: 34px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.6);
  font-size: 10px;
  letter-spacing: 0.22em;
}
.hero-scroll-bar {
  width: 1px; height: 56px;
  background: rgba(255,255,255,.3);
  position: relative; overflow: hidden;
}
.hero-scroll-bar::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 1px; height: 100%;
  background: #fff;
  animation: scrollAnim 2.2s ease-in-out infinite;
}
@keyframes scrollAnim { 0% { top: -100%; } 100% { top: 200%; } }

/* ==============================================================
   SECTION COMMON
============================================================== */
.sec { padding: 110px 28px; }
.sec-inner { max-width: 1200px; margin: 0 auto; }
.sec-head { text-align: center; margin-bottom: 64px; }
.sec-head-en {
  font-size: 56px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.06em;
  line-height: 1;
  font-family: "Times New Roman", "Georgia", serif;
}
.sec-head-ja {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.28em;
  margin-top: 16px;
  padding-top: 16px;
  position: relative;
}
.sec-head-ja::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 34px; height: 2px;
  background: var(--red);
}
.sec-head.light .sec-head-en { color: #fff; }
.sec-head.light .sec-head-ja { color: rgba(255,255,255,.75); }

/* ==============================================================
   MESSAGE
============================================================== */
.message-sec { background: #fff; }
.message-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 76px;
  align-items: center;
}
.message-photo-wrap { position: relative; }
.message-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 20%;
}
.message-photo-frame {
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 2px solid var(--navy);
  z-index: -1;
}
.message-photo-label {
  position: absolute;
  left: 0; bottom: 22px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 600;
  padding: 8px 20px;
}
.message-lead {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.6;
  color: var(--ink);
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}
.message-lead span { color: var(--navy); }
.message-body {
  font-size: 15.5px;
  line-height: 2.05;
  color: #45494f;
  margin-bottom: 34px;
}
.message-sign {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 32px;
}
.message-sign small { font-size: 12px; color: var(--gray); letter-spacing: .1em; }
.message-sign strong { font-size: 24px; font-weight: 900; color: var(--ink); letter-spacing: .08em; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.12em;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 4px;
  transition: opacity .2s;
}
.link-arrow:hover { opacity: .6; }
.link-arrow::after { content: "→"; }

/* ==============================================================
   BLOG
============================================================== */
.blog-sec { background: var(--base); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(13,28,63,.12); }
.blog-thumb-wrap { overflow: hidden; }
.blog-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform .4s ease;
}
.blog-card:hover .blog-thumb { transform: scale(1.05); }
.blog-body { padding: 20px 22px 26px; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.blog-date { font-size: 12px; color: var(--lgray); letter-spacing: 0.06em; }
.blog-cat {
  font-size: 11px; font-weight: 700;
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 2px 9px;
  letter-spacing: 0.06em;
}
.blog-card h3 { font-size: 15.5px; font-weight: 700; line-height: 1.7; color: var(--ink); }
.sec-foot { text-align: center; margin-top: 56px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink);
  border: 1.5px solid #bcc1cc;
  padding: 14px 44px;
  transition: border-color .2s, color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); background: #fff; }
.btn-outline::after { content: "→"; }

/* ==============================================================
   POLICY  — 6 numbered pillars (Kobayashi-style list)
============================================================== */
.policy-sec { background: #fff; }
.policy-intro {
  text-align: center;
  font-size: 15.5px;
  color: var(--gray);
  line-height: 2;
  max-width: 720px;
  margin: -34px auto 70px;
}
.policy-list { display: flex; flex-direction: column; gap: 0; }

/* ── Alternating image / text layout ── */
.policy-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  overflow: hidden;
}

/* Even items: swap order so image is on the right */
.policy-item:nth-child(even) .policy-thumb { order: 2; }
.policy-item:nth-child(even) .policy-body  { order: 1; }

.policy-thumb {
  overflow: hidden;
  position: relative;
}
.policy-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .8s ease;
  display: block;
}
.policy-item:hover .policy-thumb img { transform: scale(1.04); }

.policy-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 52px;
  background: #fff;
}

/* Number badge overlaid on photo */
.policy-num-badge {
  position: absolute;
  top: 0; left: 0;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900;
  font-family: "Times New Roman", Georgia, serif;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--navy);
  z-index: 2;
}

.policy-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  align-self: flex-start;
  color: var(--red);
}
.policy-tag::before {
  content: "★";
  font-size: 13px;
}

.policy-title {
  font-size: 30px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin-bottom: 20px;
}
.policy-title .accent { color: var(--navy); }
.policy-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 2.0;
  margin-bottom: 24px;
}
.policy-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  display: inline-block;
  align-self: flex-start;
  transition: opacity .2s;
}
.policy-more:hover { opacity: .65; }

/* ==============================================================
   SNS
============================================================== */
.sns-sec { background: var(--base); }
.sns-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.sns-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--line);
}
.sns-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.sns-item:hover img { transform: scale(1.09); }
.sns-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(27,79,160,.5);
  opacity: 0;
  transition: opacity .25s;
}
.sns-item:hover::after { opacity: 1; }
.sns-follow {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-top: 40px;
}
.sns-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 700;
  color: #fff;
  padding: 12px 26px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  transition: opacity .2s;
}
.sns-btn:hover { opacity: .82; }
.sns-btn svg { width: 16px; height: 16px; fill: #fff; }

/* ==============================================================
   SUPPORTER
============================================================== */
.supporter-sec {
  position: relative;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-d) 100%);
  color: #fff;
  padding: 110px 28px;
  overflow: hidden;
}
.supporter-sec::before,
.supporter-sec::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}
.supporter-sec::before {
  width: 420px; height: 420px;
  background: rgba(255,255,255,.04);
  top: -160px; right: -120px;
}
.supporter-sec::after {
  width: 300px; height: 300px;
  background: rgba(200,30,46,.16);
  bottom: -150px; left: -80px;
}
.supporter-inner { max-width: 880px; margin: 0 auto; position: relative; text-align: center; }
.supporter-lead {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.supporter-lead span { color: #ffd24a; }
.supporter-text {
  font-size: 15.5px;
  line-height: 2.1;
  color: rgba(255,255,255,.86);
  margin-bottom: 38px;
}
.supporter-notes {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 42px;
}
.supporter-notes span {
  font-size: 13px;
  font-weight: 600;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: 9px 20px;
  border-radius: 40px;
}
.btn-supporter {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--red);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 19px 56px;
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(200,30,46,.36);
  transition: background .2s, transform .15s;
}
.btn-supporter:hover { background: var(--red-d); transform: translateY(-2px); }
.btn-supporter::after { content: "›"; font-size: 20px; }
.supporter-subline {
  margin-top: 26px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.supporter-subline a { color: #fff; text-decoration: underline; text-underline-offset: 3px; margin: 0 6px; }

/* ================================================================
   PAGE: PROFILE
================================================================ */
/* ==============================================================
   PROFILE MAIN
============================================================== */
.profile-sec {
  padding: 96px 28px 80px;
}
.profile-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* — name block — */
.profile-top {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 80px;
}
.profile-photo-wrap {
  position: sticky;
  top: 100px;
  overflow: hidden;
}
.profile-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 2px;
}
.profile-photo-caption {
  margin-top: 14px;
  font-size: 11px;
  color: var(--lgray);
  letter-spacing: 0.08em;
  text-align: center;
}

.profile-info {}
.profile-title {
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 10px;
}
.profile-name {
  font-size: 38px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: 0.12em;
  line-height: 1.15;
  border-left: 5px solid var(--red);
  padding-left: 20px;
  margin-bottom: 6px;
}
.profile-name-ruby {
  font-size: 13px;
  color: var(--lgray);
  letter-spacing: 0.22em;
  padding-left: 25px;
  margin-bottom: 36px;
}

/* — message quote — */
.profile-quote {
  background: var(--base);
  border-left: 4px solid var(--navy);
  padding: 28px 32px;
  margin-bottom: 40px;
  border-radius: 0 4px 4px 0;
}
.profile-quote p {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.06em;
  line-height: 1.6;
}
.profile-quote small {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--lgray);
  letter-spacing: 0.08em;
  font-weight: 400;
}

/* — bio text — */
.profile-bio {
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 36px;
  margin-bottom: 40px;
}
.profile-bio p + p { margin-top: 1.4em; }

/* — personal data — */
.profile-data {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  margin-bottom: 0;
}
.profile-data dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
}
.profile-data dt {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--lgray);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.profile-data dd {
  font-size: 16px;
  color: var(--ink);
  padding: 14px 0 14px 20px;
  border-bottom: 1px solid var(--line);
}

/* ==============================================================
   ROLES SECTION
============================================================== */
.roles-sec {
  background: var(--base);
  padding: 80px 28px;
}
.roles-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sec-head-block {
  margin-bottom: 48px;
}
.sec-head-block .sec-en {
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.06em;
  line-height: 1;
  font-family: "Times New Roman", "Georgia", serif;
}
.sec-head-block .sec-ja {
  display: inline-block;
  margin-top: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.18em;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 4px;
}

.roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}
.role-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.role-item::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--navy);
  flex-shrink: 0;
}
.role-text {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.55;
}

/* ==============================================================
   CAREER TIMELINE
============================================================== */
.career-sec {
  padding: 80px 28px 100px;
}
.career-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.timeline {
  margin-top: 48px;
}

.tl-group {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 48px;
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.tl-group:last-child { border-bottom: 1px solid var(--line); }

.tl-year {}
.tl-year-label {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.04em;
  line-height: 1;
  padding-top: 4px;
}

.tl-events {}
.tl-event {
  padding: 4px 0;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.85;
}
.tl-event + .tl-event { margin-top: 2px; }
.tl-event-text {}
.tl-highlight {
  padding: 4px 0;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.85;
}
.tl-highlight + .tl-event { margin-top: 2px; }
.tl-highlight strong { font-weight: 400; }

/* 次点バッジ */
.badge-close {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink);
  border: 1px solid var(--lgray);
  border-radius: 2px;
  padding: 1px 6px;
  letter-spacing: 0.06em;
  vertical-align: middle;
  margin-left: 6px;
  white-space: nowrap;
  opacity: .7;
}

/* ==============================================================
   SUPPORTER CTA (light strip)
============================================================== */
.profile-cta {
  background: var(--navy);
  padding: 64px 28px;
  text-align: center;
}
.profile-cta p {
  color: rgba(255,255,255,.82);
  font-size: 16px;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}
.profile-cta .cta-lead {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.btn-cta-white {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 44px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  transition: background .2s, color .2s;
}
.btn-cta-white:hover { background: var(--base); }

/* ================================================================
   PAGE: POLICY
================================================================ */
/* ==============================================================
   POLICY NAV（目次）
============================================================== */
.policy-nav {
  background: var(--navy);
  position: sticky;
  top: 74px;
  z-index: 200;
}
.policy-nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: stretch;
}
.policy-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,.65);
  border-right: 1px solid rgba(255,255,255,.1);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.policy-nav-item:first-child { border-left: 1px solid rgba(255,255,255,.1); }
.policy-nav-item:hover { color: #fff; background: rgba(255,255,255,.08); }
.policy-nav-item .pn-num {
  font-size: 11px; font-weight: 900;
  font-family: "Times New Roman", Georgia, serif;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.45);
}

/* ==============================================================
   INTRO
============================================================== */
.intro-wrap {
  max-width: 800px; margin: 0 auto; padding: 60px 28px 0;
  text-align: center;
}
.intro-wrap h2 {
  font-size: 16px; font-weight: 700; letter-spacing: 0.20em;
  color: var(--navy); margin-bottom: 20px;
}
.intro-wrap p {
  font-size: 16px; line-height: 2.2; color: var(--ink);
}

/* ==============================================================
   POLICY SECTIONS
============================================================== */
.policy-list { margin-top: 64px; }

.policy-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-top: 1px solid var(--line);
}
.policy-block:last-child { border-bottom: 1px solid var(--line); }

/* 偶数番は写真右 */
.policy-block:nth-child(even) .policy-media { order: 2; }
.policy-block:nth-child(even) .policy-body  { order: 1; }

/* 写真エリア */
.policy-media {
  position: relative;
  overflow: hidden;
  min-height: 440px;
}
.policy-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform .9s ease;
  display: block;
}
.policy-block:hover .policy-media img { transform: scale(1.04); }

/* 番号バッジ */
.policy-num-badge {
  position: absolute; top: 0; left: 0;
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 900;
  font-family: "Times New Roman", Georgia, serif;
  letter-spacing: 0.06em; color: #fff;
  background: var(--navy); z-index: 2;
}
.policy-block:nth-child(even) .policy-num-badge { left: auto; right: 0; }

/* テキストエリア */
.policy-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 60px;
  background: #fff;
}
.policy-block:nth-child(even) .policy-body { padding: 56px 60px; }

.policy-cat {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 15px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--red); margin-bottom: 18px; align-self: flex-start;
}
.policy-cat::before { content: "★"; font-size: 12px; }

.policy-title {
  font-size: 30px; font-weight: 900; color: var(--ink);
  letter-spacing: 0.03em; line-height: 1.5;
  margin-bottom: 20px;
}
.policy-title .accent { color: var(--navy); }

.policy-lead {
  font-size: 16px; color: var(--gray); line-height: 2.0;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

/* 具体的な取り組みリスト */
.policy-points {}
.policy-points-label {
  font-size: 14px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--navy); margin-bottom: 14px;
}
.policy-points ul { display: flex; flex-direction: column; gap: 0; }
.policy-points ul li {
  display: flex; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 16px; line-height: 1.8; color: var(--ink);
  align-items: flex-start;
}
.policy-points ul li:last-child { border-bottom: none; }
.policy-points ul li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ==============================================================
   CTA
============================================================== */
.cta-sec {
  background: var(--navy);
  padding: 80px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-sec::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(255,255,255,.025) 40px, rgba(255,255,255,.025) 80px
  );
}
.cta-inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta-en {
  font-size: 11px; letter-spacing: 0.30em; color: rgba(255,255,255,.5);
  font-weight: 700; margin-bottom: 16px;
}
.cta-title {
  font-size: 28px; font-weight: 900; color: #fff;
  letter-spacing: 0.04em; line-height: 1.5; margin-bottom: 18px;
}
.cta-text {
  font-size: 16px; color: rgba(255,255,255,.75); line-height: 2.0; margin-bottom: 36px;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  display: inline-block;
  background: #fff; color: var(--navy);
  font-size: 14px; font-weight: 700; letter-spacing: 0.06em;
  padding: 15px 32px; border-radius: 2px;
  transition: opacity .2s;
}
.btn-white:hover { opacity: .88; }
.btn-outline-white {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.6); color: #fff;
  font-size: 14px; font-weight: 700; letter-spacing: 0.06em;
  padding: 15px 32px; border-radius: 2px;
  transition: background .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); }

/* ================================================================
   PAGE: KOENKAI
================================================================ */
/* ==============================================================
   共通セクションヘッド
============================================================== */
.sec-head {
  text-align: center;
  margin-bottom: 56px;
}
.sec-head-en {
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 10px;
}
.sec-head-ja {
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.sec-head-lead {
  margin-top: 20px;
  font-size: 16px;
  color: var(--gray);
  line-height: 2.0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ==============================================================
   MESSAGE (設立の趣旨)
============================================================== */
.message-sec {
  padding: 96px 0 80px;
  background: #fff;
}
.message-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  align-items: center;
}
.message-text h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.message-text h2 em {
  font-style: normal;
  color: var(--red);
}
.message-text p {
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink);
  margin-bottom: 20px;
}
.message-text p:last-child { margin-bottom: 0; }
.message-sign {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--lgray);
  letter-spacing: 0.06em;
}
.message-sign strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-top: 6px;
  letter-spacing: 0.08em;
}
.message-photo {
  position: relative;
}
.message-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: 50% 15%;
}
.message-photo::before {
  content: '';
  position: absolute;
  top: -12px; right: -12px;
  width: 100%; height: 100%;
  border: 3px solid var(--navy);
  z-index: -1;
}

/* ==============================================================
   BENEFITS（入会特典）
============================================================== */
.benefits-sec {
  padding: 80px 0;
  background: var(--base);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.benefit-card {
  background: #fff;
  padding: 40px 32px;
  text-align: center;
  border-top: 3px solid var(--navy);
}
.benefit-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.benefit-icon svg { width: 26px; height: 26px; fill: #fff; }
.benefit-card h3 {
  font-size: 17px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}
.benefit-card p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.9;
}

/* ==============================================================
   STEPS（入会の流れ）
============================================================== */
.steps-sec {
  padding: 80px 0;
  background: #fff;
}
.steps-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.step-item {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 48px; height: 48px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 900;
  font-family: "Times New Roman", Georgia, serif;
  letter-spacing: 0.04em;
  margin: 0 auto 20px;
  position: relative;
}
.step-item:last-child .step-num {
  background: var(--red);
}
.step-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.step-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.step-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
}

/* ==============================================================
   FEE（年会費）
============================================================== */
.fee-sec {
  padding: 72px 0;
  background: var(--navy);
}
.fee-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}
.fee-en {
  font-size: 14px;
  letter-spacing: 0.30em;
  color: rgba(255,255,255,.5);
  font-weight: 700;
  margin-bottom: 10px;
}
.fee-ja {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 40px;
  letter-spacing: 0.06em;
}
.fee-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  padding: 44px 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 28px;
}
.fee-amount {
  font-size: 60px;
  font-weight: 900;
  color: #fff;
  font-family: "Times New Roman", Georgia, serif;
  line-height: 1;
}
.fee-amount small {
  font-size: 18px;
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  margin-right: 6px;
}
.fee-amount span {
  font-size: 18px;
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
}
.fee-note {
  font-size: 16px;
  color: rgba(255,255,255,.55);
  line-height: 2.0;
}
.fee-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,.2);
}
.fee-unit-text {
  text-align: left;
}
.fee-unit-text p {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.9;
}
.fee-unit-text strong {
  color: #fff;
  font-size: 16px;
}

/* ==============================================================
   CTA（入会ボタン）
============================================================== */
.cta-sec {
  padding: 96px 0 96px;
  background: #fff;
  text-align: center;
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 28px;
}
.cta-lead {
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink);
  margin-bottom: 16px;
}
.cta-notice {
  background: var(--base);
  border-left: 4px solid var(--navy);
  padding: 18px 24px;
  font-size: 16px;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 44px;
  text-align: left;
}
.cta-notice strong { color: var(--navy); }
.btn-cta-join {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 22px 64px;
  border-radius: 3px;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 20px rgba(200,30,46,.30);
}
.btn-cta-join:hover {
  background: var(--red-d);
  transform: translateY(-2px);
}
.btn-cta-join svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }
.cta-sub {
  margin-top: 20px;
  font-size: 15px;
  color: var(--lgray);
  line-height: 1.8;
}

/* ==============================================================
   OFFICE（事務所情報）
============================================================== */
.office-sec {
  padding: 80px 0;
  background: var(--base);
}
.office-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
}
.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.office-card {
  background: #fff;
  padding: 36px 32px;
}
.office-card h3 {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.office-card address {
  font-style: normal;
  font-size: 15px;
  line-height: 2.0;
  color: var(--ink);
}
.office-card address a {
  color: var(--navy);
}

/* ================================================================
   PAGE: CONTACT
================================================================ */
/* ==============================================================
   INTRO SECTION
============================================================== */
.intro-sec {
  background: var(--base);
  padding: 52px 28px;
  border-bottom: 1px solid var(--line);
}
.intro-inner {
  max-width: 800px; margin: 0 auto; text-align: center;
}
.intro-inner p {
  font-size: 16px; line-height: 2.2; color: var(--ink);
}
.intro-inner p + p { margin-top: 14px; }

/* ==============================================================
   CONTACT LAYOUT
============================================================== */
.contact-wrap {
  max-width: 800px; margin: 0 auto;
  padding: 72px 28px 100px;
}

/* ==============================================================
   FORM
============================================================== */
.form-sec {}
.sec-label {
  font-size: 14px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--navy); margin-bottom: 36px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--navy);
  display: flex; align-items: center; gap: 12px;
}
.sec-label::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}

.form-note {
  font-size: 16px; color: var(--lgray); margin-bottom: 36px;
  line-height: 1.9;
}
.form-note .req-mark {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700; padding: 2px 7px;
  margin-right: 4px; vertical-align: middle;
}

.form-row { margin-bottom: 26px; }
.form-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700; color: var(--ink);
  margin-bottom: 8px;
}
.req {
  display: inline-block;
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 2px 7px; letter-spacing: 0.06em;
}
.opt {
  display: inline-block;
  background: var(--lgray); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 2px 7px; letter-spacing: 0.06em;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 13px 16px;
  font-size: 16px;
  color: var(--ink);
  font-family: inherit;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,79,160,.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: #bbbec7; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%239aa0ac' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.form-textarea { resize: vertical; min-height: 180px; line-height: 1.85; }

/* Privacy agree */
.form-agree {
  margin: 32px 0 40px;
  background: var(--base);
  padding: 20px 24px;
  border: 1px solid var(--line);
}
.form-agree label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; font-size: 16px; line-height: 1.8; color: var(--ink);
}
.form-agree input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px;
  accent-color: var(--navy); cursor: pointer;
}
.form-agree a { color: var(--navy); text-decoration: underline; }

.btn-submit {
  display: block; width: 100%;
  background: var(--navy); color: #fff;
  font-size: 16px; font-weight: 700;
  letter-spacing: 0.10em; padding: 18px;
  border: none; border-radius: 2px;
  cursor: pointer; text-align: center;
  transition: background .2s;
}
.btn-submit:hover { background: var(--navy-d); }

/* Thanks message (hidden initially) */
.form-thanks {
  display: none;
  background: rgba(27,79,160,.06);
  border: 1px solid var(--navy);
  padding: 36px 32px;
  text-align: center;
  margin-top: 32px;
}
.form-thanks .thanks-icon { font-size: 40px; margin-bottom: 14px; }
.form-thanks h3 { font-size: 20px; font-weight: 900; color: var(--navy); margin-bottom: 12px; }
.form-thanks p { font-size: 16px; line-height: 2.0; color: var(--ink); }

/* ================================================================
   PAGE: THANKS
================================================================ */
/* THANKS MAIN */
.thanks-wrap {
  min-height: calc(100vh - 79px - 260px);
  display: flex; align-items: center; justify-content: center;
  padding: 80px 28px;
}
.thanks-card {
  max-width: 640px; width: 100%;
  text-align: center;
  animation: fadeUp .8s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* アイコン円 */
.thanks-icon-wrap {
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(27,79,160,.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 36px;
  border: 2px solid rgba(27,79,160,.18);
}
.thanks-icon-wrap svg {
  width: 44px; height: 44px; fill: var(--navy);
}

/* タイトル */
.thanks-en {
  font-size: 14px; letter-spacing: 0.30em; color: var(--lgray);
  font-weight: 700; margin-bottom: 14px;
}
.thanks-title {
  font-size: 30px; font-weight: 900; color: var(--navy);
  letter-spacing: 0.04em; margin-bottom: 32px;
  line-height: 1.4;
}

/* 区切り */
.thanks-divider {
  width: 48px; height: 3px; background: var(--navy);
  margin: 0 auto 32px;
}

/* 本文 */
.thanks-body {
  font-size: 16px; line-height: 2.2; color: var(--ink);
  margin-bottom: 14px;
}
.thanks-body strong { color: var(--navy); font-weight: 700; }

.thanks-note {
  font-size: 15px; color: var(--lgray); line-height: 1.9;
  background: var(--base);
  padding: 18px 24px;
  margin: 28px 0 44px;
  border-left: 3px solid var(--line);
  text-align: left;
}

/* ボタン群 */
.thanks-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: #fff;
  font-size: 16px; font-weight: 700; letter-spacing: 0.06em;
  padding: 14px 28px; border-radius: 2px;
  transition: background .2s;
}
.btn-primary:hover { background: var(--navy-d); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--navy); color: var(--navy);
  font-size: 16px; font-weight: 700; letter-spacing: 0.06em;
  padding: 14px 28px; border-radius: 2px;
  transition: all .2s;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* カウントダウン */
.auto-redirect {
  margin-top: 32px;
  font-size: 14px; color: var(--lgray);
}
.auto-redirect span { color: var(--navy); font-weight: 700; }

/* ================================================================
   PAGE: PRIVACY
================================================================ */
/* ==============================================================
   CONTENT
============================================================== */
.content-wrap {
  max-width: 860px; margin: 0 auto;
  padding: 72px 28px 100px;
}

.updated-note {
  font-size: 14px; color: var(--lgray); text-align: right;
  margin-bottom: 48px; padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

/* Lead */
.lead {
  font-size: 16px; line-height: 2.1;
  background: var(--base); padding: 28px 32px;
  border-left: 4px solid var(--navy);
  margin-bottom: 60px;
}

/* Section */
.pp-section { margin-bottom: 56px; }
.pp-section h2 {
  font-size: 18px; font-weight: 900; color: var(--navy);
  letter-spacing: 0.04em; line-height: 1.45;
  padding: 14px 20px;
  background: rgba(27,79,160,.06);
  border-left: 4px solid var(--navy);
  margin-bottom: 22px;
}
.pp-section p {
  font-size: 16px; line-height: 2.1; color: var(--ink);
  margin-bottom: 18px;
}
.pp-section p:last-child { margin-bottom: 0; }
.pp-section ul {
  list-style: none; margin: 0 0 18px; padding: 0;
}
.pp-section ul li {
  font-size: 16px; line-height: 2.0;
  padding: 8px 0 8px 22px; position: relative;
  border-bottom: 1px dashed var(--line);
  color: var(--ink);
}
.pp-section ul li::before {
  content: '▶';
  position: absolute; left: 0; top: 12px;
  font-size: 8px; color: var(--red);
}
.pp-section ul li:last-child { border-bottom: none; }

/* Contact box */
.contact-box {
  background: var(--base); padding: 28px 32px;
  border: 1px solid var(--line);
  margin-top: 18px;
}
.contact-box p { font-size: 16px; line-height: 2.0; margin: 0; }
.contact-box strong { color: var(--navy); }

/* Divider */
.divider {
  border: none; border-top: 1px solid var(--line);
  margin: 56px 0;
}

/* ================================================================
   PAGE: BLOG_LIST
================================================================ */
/* ==============================================================
   BLOG MAIN
============================================================== */
.blog-main {
  max-width: 1200px; margin: 0 auto;
  padding: 64px 28px 96px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}

/* ==============================================================
   FILTER TABS
============================================================== */
.filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 44px;
}
.filter-btn {
  font-size: 14px; font-weight: 700; letter-spacing: 0.06em;
  padding: 8px 20px; border-radius: 2px;
  border: 1px solid var(--line);
  background: #fff; color: var(--lgray);
  cursor: pointer; transition: all .2s;
}
.filter-btn:hover { border-color: var(--navy); color: var(--navy); }
.filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ==============================================================
   BLOG CARDS
============================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(13,28,63,.12); }
.blog-thumb-wrap { overflow: hidden; position: relative; }
.blog-thumb {
  width: 100%; aspect-ratio: 16/10;
  object-fit: cover; object-position: center top;
  transition: transform .4s ease;
}
.blog-card:hover .blog-thumb { transform: scale(1.05); }
.blog-body { padding: 20px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.blog-date { font-size: 12px; color: var(--lgray); letter-spacing: 0.06em; }
.blog-cat {
  font-size: 11px; font-weight: 700; color: var(--navy);
  background: rgba(27,79,160,.08);
  padding: 2px 10px; border-radius: 2px; letter-spacing: 0.06em;
}
.blog-card h3 { font-size: 16px; font-weight: 700; line-height: 1.7; color: var(--ink); flex: 1; }
.blog-card-link {
  display: block; margin-top: 16px;
  font-size: 12px; font-weight: 700; color: var(--navy);
  letter-spacing: 0.08em;
}
.blog-card-link:hover { opacity: .7; }

/* 非表示カード（フィルター用） */
.blog-card.hidden { display: none; }

/* ==============================================================
   PAGINATION
============================================================== */
.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 6px; margin-top: 52px;
}
.page-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  border: 1px solid var(--line);
  color: var(--lgray); cursor: pointer;
  transition: all .2s;
}
.page-btn:hover { border-color: var(--navy); color: var(--navy); }
.page-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.page-btn.arrow { font-size: 16px; }

/* ==============================================================
   SIDEBAR
============================================================== */
.sidebar { position: sticky; top: 94px; }
.sidebar-block { margin-bottom: 40px; }
.sidebar-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--navy); margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
}
.sidebar-cats { display: flex; flex-direction: column; gap: 0; }
.sidebar-cat-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px; color: var(--ink);
  transition: color .2s;
  cursor: pointer;
}
.sidebar-cat-link:hover { color: var(--navy); }
.sidebar-cat-link span { font-size: 12px; color: var(--lgray); }

.sidebar-recent { display: flex; flex-direction: column; gap: 0; }
.sidebar-post {
  display: grid; grid-template-columns: 72px 1fr; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  align-items: start;
}
.sidebar-post:first-child { padding-top: 0; }
.sidebar-post img { width: 72px; aspect-ratio: 4/3; object-fit: cover; }
.sidebar-post-body {}
.sidebar-post-date { font-size: 11px; color: var(--lgray); margin-bottom: 4px; }
.sidebar-post-title { font-size: 14px; line-height: 1.55; color: var(--ink); transition: color .2s; }
.sidebar-post:hover .sidebar-post-title { color: var(--navy); }

.sidebar-profile { text-align: center; padding: 28px 24px; background: var(--base); }
.sidebar-profile img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; }
.sidebar-profile h4 { font-size: 16px; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.sidebar-profile p { font-size: 12px; color: var(--gray); line-height: 1.8; }
.sidebar-profile a {
  display: inline-block; margin-top: 16px;
  background: var(--navy); color: #fff;
  font-size: 12px; font-weight: 700; padding: 9px 20px; border-radius: 2px;
  transition: background .2s;
}
.sidebar-profile a:hover { background: var(--navy-d); }

/* ================================================================
   PAGE: BLOG_DETAIL
================================================================ */
/* ==============================================================
   POST HERO
============================================================== */
.post-hero { position: relative; height: 460px; overflow: hidden; }
.post-hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,20,48,.85) 0%, rgba(8,20,48,.2) 60%, rgba(8,20,48,.05) 100%);
}
.post-hero-inner {
  position: absolute; inset: 0;
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 52px;
}
.breadcrumb {
  position: absolute; top: 24px; left: 0; right: 0;
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  font-size: 12px; color: rgba(255,255,255,.6);
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: .4; }
.post-hero-meta {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.post-hero-cat {
  font-size: 11px; font-weight: 700; letter-spacing: 0.10em;
  background: var(--red); color: #fff;
  padding: 4px 14px;
}
.post-hero-date { font-size: 13px; color: rgba(255,255,255,.7); letter-spacing: 0.06em; }
.post-hero-title {
  font-size: 34px; font-weight: 900; color: #fff;
  line-height: 1.45; letter-spacing: 0.03em;
  max-width: 860px;
}

/* ==============================================================
   POST MAIN LAYOUT
============================================================== */
.post-main {
  max-width: 1200px; margin: 0 auto;
  padding: 64px 28px 96px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}

/* ==============================================================
   ARTICLE
============================================================== */
.post-article {}

/* SNS Share */
.post-share {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 44px; padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.post-share p { font-size: 12px; font-weight: 700; color: var(--lgray); letter-spacing: 0.10em; }
.share-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 2px;
  font-size: 12px; font-weight: 700; color: #fff;
  cursor: pointer; transition: opacity .2s;
}
.share-btn:hover { opacity: .8; }
.share-btn svg { width: 14px; height: 14px; fill: #fff; }
.share-x   { background: #000; }
.share-fb  { background: #1877f2; }
.share-line { background: #06c755; }

/* Article Body */
.post-body { font-size: 16px; line-height: 2.1; color: var(--ink); }
.post-body p { margin-bottom: 28px; }
.post-body h2 {
  font-size: 22px; font-weight: 900; color: var(--navy);
  margin: 48px 0 20px; padding-left: 16px;
  border-left: 4px solid var(--navy); line-height: 1.45;
}
.post-body h3 {
  font-size: 18px; font-weight: 900; color: var(--ink);
  margin: 36px 0 16px; padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.post-body figure {
  margin: 36px 0;
}
.post-body figure img { width: 100%; }
.post-body figcaption {
  font-size: 13px; color: var(--lgray); margin-top: 10px; text-align: center;
}
.post-body ul {
  list-style: none; margin: 0 0 28px; padding: 0;
}
.post-body ul li {
  padding: 6px 0 6px 22px; position: relative;
  font-size: 16px; border-bottom: 1px dashed var(--line);
}
.post-body ul li::before {
  content: '▶';
  position: absolute; left: 0; top: 8px;
  font-size: 9px; color: var(--red);
}
.post-body .highlight-box {
  background: var(--base); border-left: 4px solid var(--navy);
  padding: 24px 28px; margin: 36px 0;
  font-size: 16px; line-height: 2.0;
}
.post-body .highlight-box strong { color: var(--navy); }

/* Tags */
.post-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 48px; padding-top: 28px;
  border-top: 1px solid var(--line);
}
.post-tag {
  font-size: 12px; color: var(--navy);
  border: 1px solid var(--navy);
  padding: 4px 12px; border-radius: 2px;
  transition: all .2s;
}
.post-tag:hover { background: var(--navy); color: #fff; }

/* Post Navigation */
.post-nav {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; margin-top: 52px;
  border-top: 2px solid var(--navy);
}
.post-nav-item {
  padding: 24px 20px; background: var(--base);
  transition: background .2s;
}
.post-nav-item:hover { background: var(--line); }
.post-nav-item.next { text-align: right; }
.post-nav-label { font-size: 11px; letter-spacing: 0.14em; color: var(--lgray); margin-bottom: 8px; }
.post-nav-title { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.55; }

.back-to-list {
  display: block; text-align: center;
  margin-top: 40px;
  font-size: 13px; font-weight: 700; color: var(--navy);
  letter-spacing: 0.08em; padding: 16px;
  border: 1px solid var(--navy);
  transition: all .2s;
}
.back-to-list:hover { background: var(--navy); color: #fff; }

/* ==============================================================
   SIDEBAR (same as list page)
============================================================== */
.sidebar { position: sticky; top: 94px; }
.sidebar-block { margin-bottom: 40px; }
.sidebar-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--navy); margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
}
.sidebar-cats { display: flex; flex-direction: column; gap: 0; }
.sidebar-cat-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--line);
  font-size: 14px; color: var(--ink); transition: color .2s;
}
.sidebar-cat-link:hover { color: var(--navy); }
.sidebar-cat-link span { font-size: 12px; color: var(--lgray); }
.sidebar-recent { display: flex; flex-direction: column; gap: 0; }
.sidebar-post {
  display: grid; grid-template-columns: 72px 1fr; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--line); align-items: start;
}
.sidebar-post:first-child { padding-top: 0; }
.sidebar-post img { width: 72px; aspect-ratio: 4/3; object-fit: cover; }
.sidebar-post-date { font-size: 11px; color: var(--lgray); margin-bottom: 4px; }
.sidebar-post-title { font-size: 14px; line-height: 1.55; color: var(--ink); transition: color .2s; }
.sidebar-post:hover .sidebar-post-title { color: var(--navy); }
.sidebar-profile { text-align: center; padding: 28px 24px; background: var(--base); }
.sidebar-profile img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; }
.sidebar-profile h4 { font-size: 16px; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.sidebar-profile p { font-size: 12px; color: var(--gray); line-height: 1.8; }
.sidebar-profile a {
  display: inline-block; margin-top: 16px;
  background: var(--navy); color: #fff;
  font-size: 12px; font-weight: 700; padding: 9px 20px; border-radius: 2px;
  transition: background .2s;
}
.sidebar-profile a:hover { background: var(--navy-d); }

/* ==============================================================
   RELATED POSTS
============================================================== */
.related-sec {
  background: var(--base);
  padding: 64px 0;
}
.related-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
}
.related-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; color: var(--navy);
  margin-bottom: 32px; padding-bottom: 12px; border-bottom: 2px solid var(--navy);
  display: inline-block;
}
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.blog-card {
  background: #fff; border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(13,28,63,.12); }
.blog-thumb-wrap { overflow: hidden; }
.blog-thumb { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: center top; transition: transform .4s ease; }
.blog-card:hover .blog-thumb { transform: scale(1.05); }
.blog-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.blog-date { font-size: 12px; color: var(--lgray); letter-spacing: 0.06em; }
.blog-cat {
  font-size: 11px; font-weight: 700; color: var(--navy);
  background: rgba(27,79,160,.08); padding: 2px 10px; border-radius: 2px;
}
.blog-card h3 { font-size: 16px; font-weight: 700; line-height: 1.65; color: var(--ink); }