@charset "utf-8";

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

:root {
  --ink:       #0d1f28;
  --ink-mid:   #1a3848;
  --teal:      #00a5b5;
  --teal-dark: #007a88;
  --teal-pale: #e0f5f7;
  --gold:      #c8933a;
  --gold-dark: #a87828;
  --gold-light:#f5e9d0;
  --gold-pale: #fdf8f0;
  --stone:     #f7f5f0;
  --muted:     #5a7a84;
  --serif: 'Noto Serif JP', serif;
  --sans:  'Noto Sans JP', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--stone); 
      color: var(--ink); line-height: 1.8; }
html, body {
  overflow-x: hidden;
  width: 100%;
}

a{
  text-decoration: none;
  word-break: break-all;
  /*改行しなければテキストがコンテンツボックスからあふれる場合に、
  ブラウザーが改行を挿入するかどうかを指定します。*/
}
/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,31,40,0.97);
  padding: 0 56px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  backdrop-filter: blur(10px);
}
.nav-logo {
  font-family: var(--serif); font-size: 16px;
  color: white; letter-spacing: 0.1em;
}
.nav-logo .gold { color: var(--gold); }
.nav-subtitle {
  font-size: 11px; color: rgba(255,255,255,0.3);
  margin-left: 12px; letter-spacing: 0.12em;
}
.nav-right { display: flex; align-items: center; gap: 32px; }
.nav-lang { display: flex; gap: 16px; }
.nav-lang a {
  font-size: 11px; color: rgba(255,255,255,0.4);
  text-decoration: none; letter-spacing: 0.08em;
  transition: color 0.2s;
}
.nav-lang a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: white;
  padding: 9px 20px; border-radius: 2px;
  font-size: 12px; letter-spacing: 0.08em;
  text-decoration: none; font-weight: 500;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-dark); }
/**********************************
NAV
**********************************/

.site-nav{
  position:sticky;
  top:0;
  z-index:100;

  height:64px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:0 56px;

  background:rgba(13,31,40,.97);
  backdrop-filter:blur(10px);
}

/* ロゴ部分 */

.nav-brand{
  display:flex;
  align-items:center;
}

.nav-logo{
  font-family:var(--serif);
  font-size:16px;
  color:#fff;
  letter-spacing:.1em;
}

.nav-logo .gold{
  color:var(--gold);
}

.nav-subtitle{
  margin-left:12px;

  font-size:11px;
  color:rgba(255,255,255,.3);
  letter-spacing:.12em;
}

/* 右側 */

.nav-right{
  display:flex;
  align-items:center;
  gap:32px;
}

/* 言語 */

.nav-lang{
  display:flex;
  gap:16px;
}

.nav-lang a{
  text-decoration:none;

  font-size:11px;
  color:rgba(255,255,255,.4);
  letter-spacing:.08em;

  transition:.2s;
}

.nav-lang a:hover{
  color:var(--gold);
}

/* ボタン */

.nav-cta{
  display:inline-block;

  padding:9px 20px;

  background:var(--gold);
  color:#fff;

  border-radius:2px;

  text-decoration:none;

  font-size:12px;
  font-weight:500;
  letter-spacing:.08em;

  transition:.2s;
}

.nav-cta:hover{
  background:var(--gold-dark);
}

/* ハンバーガー */

.nav-toggle{
  display:none;
}
@media (max-width: 860px) {

}


/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(170deg, #0d1f28 0%, #0f3040 55%, #0d4a5a 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 100px 56px 120px;
  text-align: center;
}
.hero-art {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
}
.dragon-mark {
  width: 210px; height: 210px;
  border-radius: 50%;
  border: 1px solid rgba(200,147,58,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 44px;
  position: relative; z-index: 2;
}
.dragon-inner {
  width: 146px; 
  height: 146px; 
  border-radius: 50%;
  border: 1px solid rgba(200,147,58,0.38);
  display: flex; 
  align-items: center; 
  justify-content: center;
}
.dragon-char {
  font-family: var(--serif); font-size: 68px; font-weight: 200;
  color: var(--gold); opacity: 0.88;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.24em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 28px;
  position: relative; z-index: 2;
}
.hero-h1 {
  font-family: var(--serif); font-size: 64px; font-weight: 200;
  color: white; line-height: 1.5; letter-spacing: 0.1em;
  margin-bottom: 20px; position: relative; z-index: 2;
}
.hero-h1 em { color: var(--gold); font-style: normal; }
.hero-tagline {
  font-family: var(--serif); font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,0.55); letter-spacing: 0.14em;
  margin-bottom: 56px; position: relative; z-index: 2;
}
.hero-scroll {
  position: absolute; bottom: 44px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase; z-index: 2;
}
.hero-scroll::after {
  content: ''; display: block; width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(200,147,58,0.4), transparent);
  margin: 10px auto 0;
}

/* =================================
Hero
================================= */

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  overflow:hidden;
  text-align:center;
}

.hero-art{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:0;
}

.hero-circle{
  fill:none;
}

.hero-circle-1{
  stroke:rgba(200,147,58,.05);
  stroke-width:1;
}

.hero-circle-2{
  stroke:rgba(200,147,58,.07);
  stroke-width:.5;
}

.hero-circle-3{
  stroke:rgba(200,147,58,.10);
  stroke-width:.5;
}

.hero-circle-4{
  stroke:rgba(200,147,58,.15);
  stroke-width:.5;
}

.hero-line{
  fill:none;
}

.hero-line-v1,
.hero-line-v4{
  stroke:rgba(0,165,181,.04);
  stroke-width:.5;
}

.hero-line-v2,
.hero-line-v3,
.hero-line-h1,
.hero-line-h2,
.hero-line-h3{
  stroke:rgba(0,165,181,.03);
  stroke-width:.5;
}

.hero-ellipse{
  fill:rgba(0,100,130,.06);
}

.hero-wave{
  fill:none;
}

.hero-wave-1{
  stroke:rgba(200,147,58,.07);
  stroke-width:1;
}

.hero-wave-2{
  stroke:rgba(200,147,58,.04);
  stroke-width:.5;
}

/* 道マーク */

.dragon-mark{
  position:relative;
  z-index:2;
  margin-bottom:2rem;
}

.dragon-inner{
  width:120px;
  height:120px;
  border:1px solid rgba(200,147,58,.3);
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
}

.dragon-char{
  font-size:4rem;
  color:#c8933a;
  font-family:"Noto Serif JP",serif;
}

/* テキスト */

.hero-eyebrow{
  position:relative;
  z-index:2;
  letter-spacing:.15em;
  margin-bottom:1rem;
}

.hero-h1{
  position:relative;
  z-index:2;
  font-size:clamp(2.5rem,6vw,5rem);
  line-height:1.4;
}

.hero-h1 em{
  font-style:normal;
  color:#c8933a;
}

.hero-tagline{
  position:relative;
  z-index:2;
  margin-top:1.5rem;
  font-size:1.1rem;
}

.hero-scroll{
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);
  z-index:2;
  letter-spacing:.2em;
  text-transform:uppercase;
}


p {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 300;
    color: #0d1f28;
    line-height: 2.4;
    letter-spacing: 0.06em;
    margin-bottom: 0;

} 
/**********************************
設立の経緯
**********************************/

.founder-section{
  background:#fff;
  padding:90px 56px;
  border-bottom:1px solid #f0e8d8;
}

.founder-inner{
  max-width:820px;
  margin:0 auto;
  text-align:center;
}

.founder-text{
  font-family:'Noto Serif JP', serif;
  font-size:24px;
  font-weight:300;
  color:#0d1f28;
  line-height:2.4;
  letter-spacing:0.06em;
  margin-bottom:0;
}

.academy-name{
  color:#00a5b5;
  font-weight:400;
}

.founder-line{
  width:40px;
  height:1px;
  background:#c8933a;
}

.founder-line-top{
  margin:0 auto 40px;
}

.founder-line-bottom{
  margin:40px auto 0;
}

@media (max-width: 860px) {
  
.founder-text{
  font-size:18px;
  line-height:2.4;
  letter-spacing:0.06em;
}
.founder-text span {
  display: inline-block;
}
.founder-section{
  padding:90px 35px;
}
}

/**********************************
INTRO
**********************************/

.intro{
  padding:110px 56px;
  background:#fff;
}

.intro-inner{
  max-width:820px;
  margin:0 auto;
  text-align:center;
}
/* 上部ラベル */

.intro-eyebrow{
  margin-bottom:16px;

  color:var(--teal);
  font-size:11px;
  font-weight:500;
  letter-spacing:.22em;
  text-transform:uppercase;
}

/* ゴールドライン */

.intro-line{
  width:40px;
  height:1px;

  margin:0 auto 36px;

  background:var(--gold);
}

/* 見出し */

.intro-title{
  margin-bottom:36px;

  color:var(--ink);

  font-family:var(--serif);
  font-size:38px;
  font-weight:300;
  line-height:1.6;
  letter-spacing:.06em;
}

.intro-title em{
  color:var(--teal);
  font-style:normal;
}

@media (max-width: 860px) {
  .intro-title {
  font-size:clamp(1.6rem, 4vw, 2.5rem);
  }
}
/* 本文 */

.intro-body{
  color:#3a5060;

  font-size:16px;
  line-height:2.4;

  text-align:left;
}
.section-eyebrow {
  color:var(--gold);
}

    /* ── TIMELINE ── */
    .timeline { padding: 110px 56px; background: var(--gold-pale); }
    .timeline-inner { max-width: 840px; margin: 0 auto; }
    .timeline-header { text-align: center; margin-bottom: 72px; }
    .tl-h2 {
      font-family: var(--serif); font-size: 38px; font-weight: 300;
      color: var(--ink); letter-spacing: 0.06em;
    }
    .tl-items { position: relative; padding-left: 40px; }
    .tl-items::before {
      content: ''; position: absolute;
      left: 4px; top: 10px; bottom: 10px;
      width: 1px;
      background: linear-gradient(to bottom, var(--gold), var(--teal));
    }
    .tl-item { position: relative; margin-bottom: 56px; padding-left: 36px; }
    .tl-item:last-child { margin-bottom: 0; }
    .tl-item::before {
      content: ''; position: absolute;
      left: -41px; top: 9px;
      width: 10px; height: 10px; border-radius: 50%;
      background: var(--gold);
      border: 2px solid var(--gold-pale);
      box-shadow: 0 0 0 2px var(--gold);
    }
    .tl-item:last-child::before {
      background: var(--teal);
      border-color: var(--gold-pale);
      box-shadow: 0 0 0 2px var(--teal);
    }
    .tl-year {
      font-size: 12px; letter-spacing: 0.16em;
      color: var(--gold); font-weight: 500; margin-bottom: 8px;
    }
    .tl-item:last-child .tl-year { color: var(--teal); }
    .tl-title {
      font-family: var(--serif); font-size: 21px; font-weight: 400;
      color: var(--ink); margin-bottom: 10px;
    }
    .tl-desc { font-size: 14px; color: #4a6070; line-height: 2.1; }

    /* ── BRIDGE ── */
    .bridge {
      padding: 110px 56px;
      background: linear-gradient(170deg, #0d1f28 0%, #0f3848 100%);
    }
    .bridge-inner { max-width: 960px; margin: 0 auto; }
    .bridge-header { text-align: center; margin-bottom: 80px; }
    .bridge-eyebrow {
      font-size: 11px; letter-spacing: 0.22em;
      color: var(--gold); font-weight: 500;
      text-transform: uppercase; margin-bottom: 16px;
    }
    .bridge-line { width: 40px; height: 1px; background: var(--gold); margin: 20px auto 32px; }
    .bridge-h2 {
      font-family: var(--serif); font-size: 42px; font-weight: 200;
      color: white; letter-spacing: 0.06em; line-height: 1.6;
    }
    .bridge-h2 em { color: var(--teal); font-style: normal; }
    .bridge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 64px; }
    .bridge-card {
      background: rgba(255,255,255,0.04);
      padding: 52px 44px;
      border-top: 2px solid transparent;
      transition: background 0.2s;
    }
    .bridge-card:hover { background: rgba(255,255,255,0.07); }
    .bridge-card:first-child { border-top-color: var(--gold); }
    .bridge-card:last-child  { border-top-color: var(--teal); }
    .bc-label {
      font-size: 10px; letter-spacing: 0.22em;
      text-transform: uppercase; margin-bottom: 20px; font-weight: 500;
    }
    .bridge-card:first-child .bc-label { color: var(--gold); }
    .bridge-card:last-child  .bc-label { color: var(--teal); }
    .bc-title {
      font-family: var(--serif); font-size: 26px; font-weight: 300;
      color: white; margin-bottom: 20px; letter-spacing: 0.06em;
      line-height: 1.5;
    }
    .bc-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 2.2; }
    .bridge-arrow {
      display: flex; align-items: center; justify-content: center;
      margin: 0 0 56px;
    }
    .arrow-line { flex: 1; height: 1px; background: rgba(255,255,255,0.08); }
    .arrow-icon { font-size: 20px; color: rgba(255,255,255,0.18); margin: 0 28px; }
    .bridge-cta-wrap { text-align: center; }
    .bridge-cta-text {
      font-family: var(--serif); font-size: 17px;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.06em; margin-bottom: 36px; line-height: 2.2;
    }
    .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-gold {
      display: inline-block;
      background: var(--gold); color: white;
      padding: 18px 48px; border-radius: 2px;
      font-size: 15px; letter-spacing: 0.1em;
      text-decoration: none; font-weight: 500;
      font-family: var(--sans);
      transition: background 0.2s;
    }
    .btn-gold:hover { background: var(--gold-dark); }
    .btn-teal {
      display: inline-block;
      background: transparent; color: var(--teal);
      padding: 18px 48px; border-radius: 2px;
      font-size: 15px; letter-spacing: 0.1em;
      text-decoration: none; font-weight: 400;
      font-family: var(--sans);
      border: 1px solid var(--teal);
      transition: all 0.2s;
    }
    .btn-teal:hover { background: var(--teal); color: white; }
    .bridge-note {
      font-size: 12px; color: rgba(255,255,255,0.25);
      margin-top: 20px; letter-spacing: 0.04em;
    }

    /* ── TAOISM ── */
    .taoism { padding: 110px 56px; background: white; }
    .taoism-inner {
      max-width: 1060px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 100px; align-items: center;
    }
    .taoism-h2 {
      font-family: var(--serif); font-size: 38px; font-weight: 300;
      color: var(--ink); line-height: 1.6; letter-spacing: 0.06em;
      margin-bottom: 28px;
    }
    .taoism-h2 em { color: var(--gold); font-style: normal; }
    .taoism-body { font-size: 15px; color: #3a5060; line-height: 2.4; }


/**********************************
TAOISM VISUAL
**********************************/

.taoism-visual{
  position:relative;
  width:100%;
  max-width:500px;
  aspect-ratio:1/1;
  margin:40px auto 0;
  overflow:hidden;
}

.taoism-svg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
@media (max-width:768px){

  .taoism-inner{
    grid-template-columns:1fr;
    gap:40px;
  }

}
/* グラデーション */

.glow-start{
  stop-color:#0d4a5a;
  stop-opacity:.8;
}

.glow-end{
  stop-color:#0d1f28;
  stop-opacity:1;
}

.tao-bg{
  fill:url(#taoGlow);
}
@media (max-width: 860px) {
 
}
/* 円 */

.tao-circle{
  fill:none;
}

.tao-circle-1{
  stroke:rgba(200,147,58,.12);
  stroke-width:1;
}

.tao-circle-2{
  stroke:rgba(200,147,58,.16);
  stroke-width:.5;
}

.tao-circle-3{
  stroke:rgba(200,147,58,.22);
  stroke-width:.5;
}

.tao-circle-4{
  stroke:rgba(200,147,58,.30);
  stroke-width:.5;
}

/* 十字線 */

.tao-axis{
  stroke:rgba(0,165,181,.12);
  stroke-width:.5;
}

/* 斜線 */

.tao-diagonal{
  stroke:rgba(200,147,58,.07);
  stroke-width:.5;
}

/* 道 */

.tao-kanji{
  fill:rgba(200,147,58,.55);

  font-family:'Noto Serif JP', serif;
  font-size:88px;
  font-weight:200;
}

/* TAOISM */

.tao-label{
  fill:rgba(255,255,255,.1);

  font-size:11px;
  font-family:sans-serif;
  letter-spacing:10px;
}
.area-block{
  margin-bottom:80px;
}

.area-title{
  margin-bottom:24px;
  padding-left:16px;

  border-left:3px solid var(--gold);

  font-family:var(--serif);
  font-size:28px;
  font-weight:300;
  color:var(--ink);
}
    /* ── LOCATIONS ── */
    .locations { padding: 110px 56px; background: var(--teal-pale); }
    .locations-inner { max-width: 1060px; margin: 0 auto; }
    .locations-header { text-align: center; margin-bottom: 64px; }
    .locations-h2 {
      font-family: var(--serif); font-size: 38px; font-weight: 300;
      color: var(--ink); letter-spacing: 0.06em;
    }
    .locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .loc-card {
      background: white; padding: 36px 32px; border-radius: 2px;
      border-top: 2px solid var(--teal);
    }
    .loc-name {
      font-family: var(--serif); font-size: 18px; font-weight: 400;
      color: var(--ink); margin-bottom: 8px;
    }
    .loc-area { font-size: 12px; color: var(--muted); letter-spacing: 0.06em; margin-bottom: 16px; }
    .loc-link {
      font-size: 13px; color: var(--teal); text-decoration: none;
      letter-spacing: 0.06em; border-bottom: 1px solid var(--teal);
      padding-bottom: 2px;
    }

    /* ── FOOTER ── */
    footer { background: var(--ink); padding: 80px 56px 48px; }
    .footer-inner { max-width: 1060px; margin: 0 auto; }
    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      gap: 64px; margin-bottom: 56px;
    }
    .footer-brand {
      font-family: var(--serif); font-size: 16px;
      color: white; margin-bottom: 16px; letter-spacing: 0.08em;
    }
    .footer-brand .gold { color: var(--gold); }
    .footer-tagline {
      font-size: 12px; color: rgba(255,255,255,0.3);
      letter-spacing: 0.06em; margin-bottom: 20px;
    }
    .footer-address { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 2.2; }
    .footer-address a { color: var(--teal); text-decoration: none; }
    .footer-col-title {
      font-size: 10px; letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.22); margin-bottom: 20px;
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a {
      font-size: 14px; color: rgba(255,255,255,0.45);
      text-decoration: none; transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding-top: 28px;
      display: flex; justify-content: space-between; align-items: center;
      font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 0.06em;
    }
    .footer-bottom-links { display: flex; gap: 24px; }
    .footer-bottom-links a { color: rgba(255,255,255,0.2); text-decoration: none; }
    .footer-bottom-links a:hover { color: rgba(255,255,255,0.5); }

    /* ── HAMBURGER (mobile nav) ── */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 28px; height: 28px;
      background: none; border: none;
      cursor: pointer; padding: 0;
      z-index: 110;
    }
    .nav-toggle span {
      display: block; width: 100%; height: 1.5px;
      background: white; transition: 0.25s;
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* ── RESPONSIVE ── */
    @media (max-width: 860px) {
      nav { padding: 0 20px; }
      .hero, .intro, .timeline, .bridge, .taoism, .locations { padding-left: 24px; padding-right: 24px; }
      footer { padding: 64px 24px 32px; }

      .hero-h1 { font-size: 36px; letter-spacing: 0.04em; }
      .hero-tagline { font-size: 14px; margin-bottom: 40px; }
      .dragon-mark { width: 140px; height: 140px; margin-bottom: 32px; }
      .dragon-inner { width: 96px; height: 96px; }
      .dragon-char { font-size: 44px; }

      .intro-h2, .tl-h2, .taoism-h2, .locations-h2 { font-size: 26px; }
      .bridge-h2 { font-size: 28px; }
      .intro-body, .taoism-body { font-size: 14px; }

      .timeline-inner { padding: 0; }
      .tl-items { padding-left: 24px; }
      .tl-item { padding-left: 24px; margin-bottom: 40px; }
      .tl-item::before { left: -29px; }
      .tl-title { font-size: 18px; }

      .bridge-grid { grid-template-columns: 1fr; gap: 12px; }
      .bridge-card { padding: 36px 28px; }

      .taoism-inner { grid-template-columns: 1fr; gap: 40px; }
      .taoism-visual { aspect-ratio: 16/10; }

      .locations-grid { grid-template-columns: 1fr; gap: 16px; }

      .footer-top { grid-template-columns: 1fr; gap: 40px; }
      .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }

      .cta-btns { flex-direction: column; align-items: center; }
      .btn-gold, .btn-teal { width: 100%; max-width: 320px; text-align: center; padding: 16px 32px; }
    }

    @media (max-width: 640px) {
      /* ナビをハンバーガー化 */
      .nav-toggle { display: flex; }
      .nav-right {
        position: fixed; top: 64px; right: 0;
        width: 100%; max-width: 320px; height: 0;
        background: rgba(13,31,40,0.98);
        flex-direction: column; align-items: flex-start;
        gap: 0; overflow: hidden;
        transition: height 0.25s ease;
      }
      .nav-right.open { height: calc(100vh - 64px); padding: 24px 28px; }
      .nav-lang { flex-direction: column; gap: 18px; margin-bottom: 28px; }
      .nav-lang a { font-size: 14px; }
      .nav-cta { width: 100%; text-align: center; box-sizing: border-box; }
      .nav-subtitle { display: none; }

      .hero-h1 { font-size: 28px; }
      .hero-eyebrow { font-size: 9px; }

      .loc-card { padding: 28px 24px; }
    }

/* -------------------------
top button
------------------------- */

.go-top{
  position:fixed;
  right:30px;
  bottom:30px;
  z-index:999;
}

.go-top a{
  width:60px;
  height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#7d9a82;
  color:#fff;
  font-size:13px;
}

/**********************************
PAGE HEADER（下層ページ共通）
**********************************/
.page-hero {
  position: relative;
  padding: 96px 56px 72px;
  background: var(--ink);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "道";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: 340px;
  font-weight: 200;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  line-height: 1;
}
.breadcrumb {
  position: relative;
  margin-bottom: 22px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
}
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 8px; color: rgba(255,255,255,0.2); }
.page-eyebrow {
  position: relative;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.page-title {
  position: relative;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #fff;
}
.page-title .gold { color: var(--gold); }

/**********************************
サイトポリシーセクション
**********************************/
.policy-section {
  padding: 110px 56px;
  background: #fff;
}
.policy-inner {
  max-width: 860px;
  margin: 0 auto;
}
.policy-block { margin-bottom: 88px; }
.policy-block:last-child { margin-bottom: 0; }
.policy-block-title {
  margin-bottom: 8px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--ink);
}
.policy-block-sub {
  margin-bottom: 36px;
  padding-left: 19px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.policy-table tr { border-bottom: 1px solid var(--gold-light); }
.policy-table tr:first-child { border-top: 1px solid var(--gold-light); }
.policy-table th,
.policy-table td {
  padding: 22px 20px;
  text-align: left;
  vertical-align: top;
  line-height: 1.9;
}
.policy-table th {
  width: 160px;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--teal-dark);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.policy-table td { color: var(--ink-mid); }
.policy-table td a { color: var(--teal); border-bottom: 1px solid var(--teal); padding-bottom: 1px; }

.office-section {
  padding: 110px 56px;
  background: var(--teal-pale);
}
.office-inner { max-width: 1060px; margin: 0 auto; }
.office-header { text-align: center; margin-bottom: 64px; }
.office-h2 {
  font-family: var(--serif); font-size: 34px; font-weight: 300;
  color: var(--ink); letter-spacing: 0.06em;
}
.office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.office-grid.is-single { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto 0; }
.office-card {
  background: white; padding: 32px 30px; border-radius: 2px;
  border-top: 2px solid var(--gold);
}
.office-card.is-hq { border-top-color: var(--teal); }
.office-name {
  font-family: var(--serif); font-size: 17px; font-weight: 400;
  color: var(--ink); margin-bottom: 10px;
}
.office-name .tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--teal-dark);
  background: var(--teal-pale);
  border-radius: 2px;
  vertical-align: middle;
}
.office-addr { font-size: 12.5px; color: var(--muted); letter-spacing: 0.02em; margin-bottom: 6px; line-height: 1.9; }
.office-tel { font-size: 13px; color: var(--ink-mid); letter-spacing: 0.04em; }
.office-tel span { color: var(--gold-dark); font-weight: 500; }

@media (max-width: 860px) {
  .page-hero { padding: 72px 24px 56px; }
  .page-hero::before { font-size: 220px; }
  .page-title { font-size: 28px; }
  .policy-section, .office-section { padding: 72px 24px; }
  .policy-block-title { font-size: 22px; }
  .policy-table { font-size: 13.5px; }
  .policy-table th, .policy-table td { padding: 16px 12px; }
  .policy-table th { width: 110px; white-space: normal; }
  .office-grid { grid-template-columns: 1fr; }
}
