/* ============================================================
   home.css — Tokigane top page v5 section styles
   ============================================================ */

/* Home-level token bridge. Core owns the base palette/type scale; individual
   home sections only add their local semantic aliases beneath this layer. */
:root {
  --home-section-serif: var(--font-serif);
  --home-section-heading: var(--heading);
  --home-section-copy: var(--muted);
  --home-section-rule: var(--hairline);
  --home-section-heading-feature: clamp(2rem, 3.3vw, 2.72rem);
  --home-section-heading-sub: clamp(1.72rem, 2.5vw, 2.14rem);
  --home-section-copy-size: clamp(0.95rem, 1.1vw, 1.02rem);
  --home-section-motion-ease: cubic-bezier(.22, .72, .24, 1);

  /* Top-page closing bridge. The site palette remains owned by core.css;
     the home closing area only assigns semantic roles and tonal variants. */
  --home-closing-stage: #142b50;
  --home-closing-stage-deep: #102341;
  --home-closing-stage-light: #18345a;
  --home-closing-gold: #ddbd73;
  --home-closing-gold-rgb: 221, 189, 115;
  --home-closing-text: #fffdf8;
  --home-closing-arrival: #fbfaf6;
  --home-closing-paper: var(--paper, #fff9f1);
  --home-closing-business: var(--navy, #2b4075);
  --home-closing-business-deep: var(--navy-deep, #1d2d56);
  --home-closing-business-soft: #467ca9;
  --home-closing-pension: var(--ibis, #df5f58);
  --home-closing-pension-deep: var(--ibis-deep, #b9413d);
}

/* =================== 01 HERO =================== */
.hero {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}
.hero__media { display: block; }
.hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center bottom;
}
.hero__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.hero__body {
  pointer-events: auto;
  max-width: 660px;
}
.hero__eyebrow {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.hero__title {
  font-family: var(--font-serif);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: clamp(1.95rem, 3.5vw, 2.9rem);
  line-height: 1.34;
}
.hero__title-line { display: block; }
.hero__lead {
  margin-top: 22px;
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  color: var(--ink);
  line-height: 1.9;
  max-width: 30em;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 26px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-deep);
  backdrop-filter: blur(4px);
}
.hero__badge .tkg-icon { width: 17px; height: 17px; color: var(--gold); }
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero__ctas .btn { min-width: 264px; }
.hero__note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero__note::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ibis);
}

@media (max-width: 1023px) {
  /* SP: text overlays the paper-safe area (upper-left); tiki top-right,
     navy brush wave sits at the lower portion of the image. */
  .hero { background: var(--paper); }
  .hero__img {
    object-position: center top;
    min-height: 96svh;
    max-height: 150svh;
  }
  .hero__inner {
    align-items: flex-start;
    padding-top: clamp(20px, 6vw, 40px);
  }
  .hero__body { max-width: 100%; }
  .hero__eyebrow { margin-bottom: 12px; }
  .hero__title { font-size: clamp(1.95rem, 8vw, 2.7rem); }
  .hero__lead { margin-top: 16px; font-size: 1rem; }
  .hero__badges { margin-top: 20px; }
  .hero__ctas { flex-direction: column; margin-top: 22px; max-width: 360px; }
  .hero__ctas .btn { width: 100%; min-width: 0; padding-inline: 20px; }
  .hero__note {
    align-self: flex-start;
    background: rgba(255, 249, 241, 0.82);
    backdrop-filter: blur(3px);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
  }
}

@media (max-width: 380px) {
  .hero__title { font-size: 7.4vw; }
  .hero__badges { gap: 8px; }
  .hero__badge { padding: 6px 12px; font-size: 0.8rem; }
  .hero__ctas .btn { font-size: 0.95rem; padding-inline: 16px; gap: 8px; }
  .hero__ctas .btn .tkg-icon { width: 17px; height: 17px; }
}

/* =================== FLOW: TRUST + BUSINESS =================== */
/* No confining section box: paper bleeds through; one navy brush
   ribbon flows the eye from the trust band down into the service band. */
.flow { position: relative; background: var(--paper); overflow: hidden; }
.flow__crane {
  position: absolute;
  top: clamp(-30px, -2vw, -10px);
  right: clamp(-30px, -1vw, 0px);
  width: clamp(200px, 28vw, 440px);
  color: #cfd4de;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.flow__crane svg { width: 100%; height: auto; }

/* ---- TRUST ---- */
.trust { position: relative; z-index: 1; padding-top: var(--section-y); padding-bottom: clamp(36px, 5vw, 60px); }
.trust__intro { text-align: center; max-width: 720px; margin: 0 auto clamp(30px, 4vw, 46px); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: ""; width: 22px; height: 1px; background: var(--gold);
}
.trust__statement {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  color: var(--navy-deep);
  margin-top: 16px;
  line-height: 1.55;
}
.trust__lead { margin-top: 16px; color: var(--ink-soft); font-size: 0.95rem; }

.trust-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-soft);
  padding: clamp(18px, 2.2vw, 28px) clamp(6px, 1vw, 14px);
  backdrop-filter: blur(3px);
}
.trust-panel__col {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px clamp(16px, 2vw, 28px);
  position: relative;
}
.trust-panel__col + .trust-panel__col::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 1px;
  background: var(--border);
}
.trust-panel__icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-pill);
  background: var(--navy-pale);
  color: var(--navy);
}
.trust-panel__icon .tkg-icon { width: 24px; height: 24px; }
.trust-panel__title { font-size: 1rem; color: var(--navy-deep); }
.trust-panel__body { margin-top: 6px; color: var(--ink-soft); font-size: 0.85rem; line-height: 1.7; }

/* ---- BUSINESS ---- */
.business { position: relative; z-index: 1; padding-top: clamp(16px, 2vw, 32px); }
.business__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
.business__ribbon {
  position: absolute;
  top: -2vw;
  bottom: clamp(-90px, -6vw, -40px);
  left: 38%;
  right: calc(50% - 50vw); /* bleed to the viewport's right edge */
  z-index: 0;
  pointer-events: none;
}
.business__ribbon svg { width: 100%; height: 100%; display: block; }

.business__head { grid-column: 1 / 7; grid-row: 1; position: relative; z-index: 1; padding-top: 6px; }
.business__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy-deep);
  margin-top: 14px;
  line-height: 1.38;
}
.business__title-line { display: block; }
.business__title .accent { color: var(--ibis); }
.business__lead { margin-top: 18px; color: var(--ink-soft); font-size: 0.96rem; max-width: 26em; }

/* floating cards + hanging feather pin */
.biz-float { position: relative; z-index: 1; }
.biz-float__pin {
  position: absolute;
  top: -28px;
  left: clamp(22px, 7%, 44px);
  width: 26px; height: 44px;
  pointer-events: none;
}
.biz-float__pin .tkg-feather {
  width: 100%; height: 100%;
  filter: drop-shadow(0 4px 6px rgba(20, 40, 64, 0.18));
}

.biz-float--p1 { grid-column: 7 / 13; grid-row: 1; margin-top: 22px; }
.biz-float--p2 { grid-column: 1 / 7; grid-row: 2; }
.omoi-panel { grid-column: 7 / 13; grid-row: 2; margin-top: 26px; }

/* service cards */
.service-card { position: relative; background: var(--white); color: var(--ink); }
.service-card--primary {
  padding: clamp(24px, 2.6vw, 34px);
  border-radius: var(--radius-soft);
  border: 1px solid rgba(220, 225, 221, 0.7);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.service-card__no {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.service-card__concern {
  margin-top: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px dashed var(--border);
}
.service-card__main { display: flex; align-items: flex-start; gap: 18px; }
.service-card--primary .service-card__icon { width: 88px; height: 88px; flex: none; }
.service-card__title { font-size: 1.3rem; color: var(--navy-deep); }
.service-card__body { margin-top: 10px; color: var(--ink-soft); font-size: 0.93rem; }
.service-card__cta {
  margin-top: auto;
  padding-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--navy);
}
.service-card__cta .btn__arrow {
  width: 26px; height: 26px;
  padding: 5px;
  border-radius: 50%;
  background: var(--navy-pale);
  margin-left: 4px;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.service-card__cta:hover .btn__arrow { transform: translateX(3px); background: var(--navy); color: var(--white); }

/* navy "想い" panel — a floating card, not a section box */
.omoi-panel {
  align-self: start;
  background: linear-gradient(155deg, #2a3c63 0%, var(--navy-deep) 100%);
  color: var(--white);
  border-radius: var(--radius-soft);
  padding: clamp(24px, 2.6vw, 34px);
  box-shadow: 0 20px 46px rgba(20, 40, 64, 0.3);
}
.omoi-panel__title {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  color: var(--white);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.omoi-panel__lines p { color: rgba(255, 255, 255, 0.9); font-size: 0.95rem; line-height: 1.95; }

/* bottom navy band — full-bleed wave pool holding the secondary cards */
.business__band {
  position: relative;
  margin-top: clamp(44px, 6vw, 84px);
  background: var(--navy-deep);
  padding-block: clamp(60px, 7vw, 104px) clamp(56px, 7vw, 96px);
}
.business__band .wave-edge {
  position: absolute;
  left: 0;
  width: 100%;
  height: clamp(36px, 5vw, 80px);
  z-index: 1;
}
.business__band .wave-edge--top { top: -1px; }
.business__band .wave-edge--bottom { bottom: -1px; }
.business__band .container { position: relative; z-index: 2; }
.business__secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.service-card--secondary {
  padding: clamp(22px, 2.2vw, 28px);
  border-radius: var(--radius-soft);
  border: none;
  box-shadow: 0 16px 34px rgba(8, 18, 40, 0.32);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card--secondary .service-card__no { font-size: 1.2rem; }
.service-card--secondary .service-card__icon { width: 60px; height: 60px; margin: 10px 0 4px; }
.service-card--secondary .service-card__title { font-size: 1.08rem; }
.service-card--secondary .service-card__body { font-size: 0.88rem; }
.service-card__cta--sm { font-size: 0.9rem; padding-top: 16px; }
.service-card__cta--sm .btn__arrow { width: 22px; height: 22px; padding: 4px; }

@media (max-width: 1023px) {
  .flow__crane { width: clamp(160px, 38vw, 240px); opacity: 0.4; top: -8px; }
  .business__ribbon { display: none; }
  .business__grid { grid-template-columns: 1fr; gap: clamp(34px, 8vw, 50px); }
  .business__head,
  .biz-float--p1,
  .biz-float--p2,
  .omoi-panel {
    grid-column: 1 / -1;
    grid-row: auto;
    margin-top: 0;
  }
  .business__lead { max-width: none; }
  .business__secondary { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .trust-panel { grid-template-columns: 1fr; padding: 8px clamp(8px, 3vw, 16px); }
  .trust-panel__col { padding: 16px clamp(8px, 3vw, 18px); }
  .trust-panel__col + .trust-panel__col::before {
    left: 6px; right: 6px; top: 0; bottom: auto; width: auto; height: 1px;
  }
}

/* =================== 03 DISABILITY =================== */
.disability__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.disability__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.4vw, 3rem);
  color: var(--ibis-deep);
  margin-top: 18px;
  line-height: 1.4;
}
.disability__title-line { display: block; }
.disability__lead { margin-top: 20px; font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.disability__support { margin-top: 14px; color: var(--ink-soft); font-size: 0.96rem; }
.disability__ctas { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; }
.disability__note { margin-top: 18px; font-size: 0.85rem; color: var(--ink-soft); }

/* notebook panel */
.note-panel {
  border-radius: var(--radius-soft);
  border-color: #f0d8ce;
  background:
    repeating-linear-gradient(180deg, transparent, transparent 47px, rgba(223, 95, 88, 0.12) 47px, rgba(223, 95, 88, 0.12) 48px),
    #fffaf7;
  box-shadow: var(--shadow-soft);
  padding: clamp(22px, 2.6vw, 32px);
  position: relative;
}
.note-panel::before {
  content: "";
  position: absolute;
  left: clamp(40px, 7%, 64px);
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(223, 95, 88, 0.25);
}
.note-panel__head { margin-bottom: 8px; }
.note-panel__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--ibis);
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
}
.note-panel__tab .tkg-icon { width: 17px; height: 17px; }
.note-panel__caption { color: var(--ink-soft); font-size: 0.85rem; margin: 4px 0 8px; }
.note-panel__list { display: flex; flex-direction: column; }
.note-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(223, 95, 88, 0.25);
}
.note-row:last-child { border-bottom: none; }
.note-row__mark {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 7px;
  background: var(--ibis-pale);
  color: var(--ibis-deep);
}
.note-row__mark .tkg-icon { width: 16px; height: 16px; }
.note-row__text { display: flex; flex-direction: column; }
.note-row__title { font-size: 1rem; color: var(--ibis-deep); }
.note-row__body { font-size: 0.9rem; color: var(--ink-soft); }

@media (max-width: 860px) {
  .disability__grid { grid-template-columns: 1fr; }
  .disability__ctas .btn { width: 100%; }
}

/* =================== 04 VOICES =================== */
.voices__reader { margin-top: 8px; }
.voices__list { display: flex; flex-direction: column; gap: 14px; }

.voice {
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}
.voice[open] { border-color: var(--navy); box-shadow: var(--shadow-soft); }
.voice__summary {
  list-style: none;
  cursor: pointer;
  padding: 20px clamp(20px, 2.4vw, 28px);
  display: grid;
  gap: 8px;
}
.voice__summary::-webkit-details-marker { display: none; }
.voice__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.voice__tag {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--moss);
  background: #eef2ef;
  border-radius: var(--radius-pill);
  padding: 3px 11px;
}
.voice__summary-text {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy-deep);
  position: relative;
  padding-right: 28px;
}
.voice__summary-text::after {
  content: "";
  position: absolute;
  right: 4px; top: 50%;
  width: 11px; height: 11px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.voice[open] .voice__summary-text::after { transform: translateY(-30%) rotate(-135deg); }
.voice__summary-meta { font-size: 0.84rem; color: var(--ink-soft); }

.voice__body {
  padding: 4px clamp(20px, 2.4vw, 28px) 24px;
  border-top: 1px solid var(--border);
}
.voice__body-text { margin-top: 16px; color: var(--ink); font-size: 0.96rem; }
.voice__highlights { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 10px; }
.voice__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--navy-pale);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
}
.voice__highlights .tkg-icon { width: 15px; height: 15px; color: var(--gold); }

.voices__foot {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.voices__footnote { font-size: 0.82rem; color: var(--ink-soft); }

/* JS-enhanced two-column reader */
.voices__reader.is-enhanced {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(20px, 2.6vw, 32px);
  align-items: start;
}
.voices__reader.is-enhanced .voices__list { max-height: 560px; overflow-y: auto; padding-right: 6px; }
.voices__reader.is-enhanced .voice { box-shadow: none; border: 1px solid var(--border); }
.voices__reader.is-enhanced .voice__summary { padding: 16px 18px; }
.voices__reader.is-enhanced .voice__body { display: none; }
.voices__reader.is-enhanced .voice.is-active {
  border-color: var(--navy);
  background: var(--navy-pale);
}
.voices__reader.is-enhanced .voice__summary-text::after { display: none; }

.voices__viewer {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 3vw, 36px);
}
.voices__viewer .vv-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: var(--navy-deep);
  line-height: 1.6;
  position: relative;
  padding-left: 30px;
}
.voices__viewer .vv-quote::before {
  content: "“";
  position: absolute;
  left: -4px; top: -14px;
  font-size: 3rem;
  color: rgba(43, 64, 117, 0.18);
  font-family: var(--font-serif);
}
.voices__viewer .vv-meta { margin-top: 18px; font-weight: 700; color: var(--ink); }
.voices__viewer .vv-meta span { display: block; font-weight: 400; font-size: 0.85rem; color: var(--ink-soft); }
.voices__viewer .vv-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.voices__viewer .vv-tags .voice__tag { background: #eef2ef; }
.voices__viewer .vv-body { margin-top: 18px; color: var(--ink); font-size: 0.96rem; }
.voices__viewer .voice__highlights { margin-top: 18px; }

@media (max-width: 860px) {
  .voices__reader.is-enhanced { grid-template-columns: 1fr; }
  .voices__reader.is-enhanced .voices__list { max-height: none; }
  .voices__viewer { position: static; }
}

/* =================== 05 AREA =================== */
.area__top {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(24px, 3.4vw, 48px);
  align-items: center;
}
.area__map { position: relative; }
.area__map img { width: 100%; height: auto; }
.area__map-credit { margin-top: 8px; font-size: 0.72rem; color: var(--ink-soft); text-align: center; }
.area__qa-title { font-size: 1.2rem; color: var(--navy-deep); margin-bottom: 16px; }
.area__qa-list { display: flex; flex-direction: column; gap: 12px; }
.area-qa-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow-card);
}
.area-qa-card__icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: var(--radius-pill);
  background: var(--navy-pale);
  color: var(--navy);
}
.area-qa-card__text { flex: 1; }
.area-qa-card__title { font-size: 1rem; color: var(--navy-deep); }
.area-qa-card__body { font-size: 0.88rem; color: var(--ink-soft); margin-top: 2px; }
.area-qa-card__tag {
  flex: none;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--ibis-deep);
  background: var(--ibis-pale);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
}

.area__groups { margin-top: clamp(36px, 5vw, 56px); }
.area__groups-title { text-align: center; font-size: 1.2rem; color: var(--navy-deep); margin-bottom: 22px; }
.area__groups-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 20px);
}
.region-card { padding: 20px; box-shadow: var(--shadow-card); }
.region-card__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.02rem;
  color: var(--navy-deep);
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.region-card__pin {
  display: inline-flex;
  width: 26px; height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ibis-pale);
  color: var(--ibis-deep);
}
.region-card__pin .tkg-icon { width: 15px; height: 15px; }
.region-card__areas { display: flex; flex-wrap: wrap; gap: 7px; }
.region-card__area {
  font-size: 0.82rem;
  color: var(--ink);
  background: var(--neutral);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
}
.area__note { text-align: center; margin-top: 20px; font-size: 0.85rem; color: var(--ink-soft); }
.area__ctas {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 900px) {
  .area__top { grid-template-columns: 1fr; }
  .area__map { max-width: 520px; margin-inline: auto; }
  .area__groups-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .area__groups-grid { grid-template-columns: 1fr; }
  .area__ctas .btn { width: 100%; }
}

/* =================== 06 EXTERNAL =================== */
.external__layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(20px, 2.6vw, 32px);
  align-items: start;
}
.external__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 1.8vw, 20px);
}
.external-card { padding: 22px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.external-card__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.external-card__logo { height: 40px; display: inline-flex; align-items: center; }
.external-card__logo img { max-height: 40px; width: auto; }
.external-card__category {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid rgba(185, 135, 47, 0.4);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
}
.external-card__title { font-size: 1.02rem; color: var(--navy-deep); }
.external-card__body { font-size: 0.88rem; color: var(--ink-soft); margin-top: 8px; }
.external-card__tag {
  align-self: flex-start;
  margin-top: 14px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--moss);
  background: #eef2ef;
  border-radius: var(--radius-pill);
  padding: 4px 12px;
}

.chatwork-card {
  padding: clamp(24px, 2.8vw, 32px);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  background: var(--white);
}
.chatwork-card__logo { height: 36px; margin-bottom: 8px; }
.chatwork-card__logo img { max-height: 36px; width: auto; }
.chatwork-card__title { font-size: 1.12rem; color: var(--navy-deep); }
.chatwork-card__body { font-size: 0.9rem; color: var(--ink-soft); }
.chatwork-card .btn { margin-top: 14px; }

@media (max-width: 900px) {
  .external__layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .external__cards { grid-template-columns: 1fr; }
}

/* =================== 07 CONTACT =================== */
.contact__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.2vw, 24px);
}
.contact-card {
  padding: clamp(26px, 3vw, 36px);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 4px solid var(--navy);
}
.contact-card--disability { border-top-color: var(--ibis); }
.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border-radius: var(--radius-pill);
  background: var(--navy-pale);
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-card--disability .contact-card__icon { background: var(--ibis-pale); color: var(--ibis-deep); }
.contact-card__icon .tkg-icon { width: 26px; height: 26px; }
.contact-card__title { font-size: 1.18rem; color: var(--navy-deep); }
.contact-card__body { margin: 10px 0 22px; color: var(--ink-soft); font-size: 0.93rem; }
.contact-card .btn { margin-top: auto; }

.phone-panel {
  margin-top: clamp(18px, 2.4vw, 26px);
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  padding: clamp(20px, 2.4vw, 28px) clamp(24px, 3vw, 40px);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-card);
  flex-wrap: wrap;
  justify-content: center;
}
.phone-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: var(--radius-pill);
  background: var(--navy);
  color: var(--white);
}
.phone-panel__label { font-size: 0.85rem; color: var(--ink-soft); }
.phone-panel__tel {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: 0.02em;
}
.phone-panel__hours { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.7; }

@media (max-width: 700px) {
  .contact__cards { grid-template-columns: 1fr; }
  .phone-panel { flex-direction: column; text-align: center; }
}
