@charset "UTF-8";
/* =============================================================
   テークオフ株式会社 — Figma "TakeOff" design system
   Pure HTML + CSS (no JS framework). Mobile menu uses a CSS
   checkbox toggle. Design tokens live in :root for one-place edits.
   Palette / type adapted from the Figma file "Design TakeOff Homepage".
   ============================================================= */

:root {
  /* Brand palette */
  --navy: #023F97;
  --navy-deep: #012d6d;
  --navy-darkest: #011433;
  --gold: #F9C360;
  --mint: #5CCEA9;
  --teal-soft: #e4f3f9;
  --bg: #f8fafb;
  --ink: #3A4244;
  --white: #ffffff;

  /* Derived tints */
  --ink-70: rgba(58, 66, 68, 0.7);
  --ink-55: rgba(58, 66, 68, 0.55);
  --ink-35: rgba(58, 66, 68, 0.35);
  --navy-15: rgba(2, 63, 151, 0.15);
  --navy-10: rgba(2, 63, 151, 0.10);
  --teal-tint: rgba(228, 243, 249, 0.55);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-55: rgba(255, 255, 255, 0.55);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-12: rgba(255, 255, 255, 0.12);

  /* Type */
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Barlow Condensed", sans-serif;

  /* Metrics */
  --container: 1200px;
  --pad: 1.5rem;
  --nav-h: 4rem;
}

/* ---------------- Reset ---------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body {
  font-family: var(--font-jp);
  font-weight: 500;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; vertical-align: bottom; border: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s, opacity 0.2s, background-color 0.2s, border-color 0.2s; }
h1, h2, h3, h4 { font-family: var(--font-jp); font-weight: 700; line-height: 1.3; }
/* All plain paragraph / body text uses Noto Sans JP. Barlow Condensed is
   reserved for the Latin eyebrow labels, codes and numeric badges below. */
p { font-family: var(--font-jp); }
iframe { border: 0; }

/* ---------------- Helpers ---------------- */
.container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.en { font-family: var(--font-en); }
.u-sp-only { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Hexagon "take-off" arrow used in section labels and lists */
.hex { flex-shrink: 0; }

/* Section scaffolding */
.section { padding: 6rem 0; }
.section--tint { background: var(--teal-tint); }
.section--white { background: var(--white); }
.section__head { margin-bottom: 3.5rem; }
.section__head--split { display: flex; flex-direction: column; gap: 1.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--navy-15); }
.seclabel { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-en); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; }
.seclabel--gold { color: var(--gold); }
.seclabel--mint { color: var(--mint); }
.seclabel--navy { color: var(--navy); }
.section__title { font-weight: 900; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.2; color: var(--navy); margin-top: 0.5rem; }
.section__title--sm { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
.section__intro { font-weight: 400; font-size: 0.875rem; line-height: 1.9; color: var(--ink-70); max-width: 640px; }

/* Generic buttons */
.btn { display: inline-flex; align-items: center; gap: 0.75rem; font-family: var(--font-jp); font-weight: 700; font-size: 0.9rem; padding: 0.85rem 1.75rem; cursor: pointer; border: 1px solid transparent; }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { opacity: 0.9; }
.btn--navy { background: var(--navy); color: var(--white); font-size: 0.875rem; padding: 0.65rem 1.25rem; }
.btn--navy:hover { opacity: 0.85; }
.btn--lg { font-size: 0.95rem; padding: 0.85rem 2rem; }
.btn--outline-light { border-color: rgba(255,255,255,0.4); color: var(--white); font-weight: 500; }
.btn--outline-light:hover { background: rgba(255,255,255,0.1); }
.arrow-r { width: 16px; height: 12px; flex-shrink: 0; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: var(--white); box-shadow: 0 1px 6px rgba(2,63,151,0.10); }
.nav__utility { display: flex; align-items: center; justify-content: space-between; max-width: var(--container); margin: 0 auto; padding: 0.35rem var(--pad); border-bottom: 1px solid var(--navy-10); }
.nav__utility-text { font-family: var(--font-en); font-size: 0.72rem; letter-spacing: 0.2em; color: var(--ink-55); }
.nav__utility-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; font-weight: 500; color: var(--navy); }
.nav__utility-link:hover { opacity: 0.7; }

.nav__bar { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.nav__brand { display: flex; align-items: center; }
.nav__brand img { height: 2rem; width: auto; display: block; }

.nav__links { display: flex; align-items: center; gap: 0.25rem; }
.nav__link { padding: 0.5rem 0.75rem; font-size: 0.8rem; font-weight: 500; color: var(--ink); }
.nav__link:hover { color: var(--navy); }
.nav__link--highlight { color: #0f8e74; font-weight: 700; }
.nav__link--highlight:hover { color: var(--navy); }
.nav__cta { margin-left: 0.5rem; padding: 0.55rem 1rem; background: var(--gold); color: var(--navy); font-weight: 700; font-size: 0.8rem; }
.nav__cta:hover { opacity: 0.9; }

/* CSS-only mobile drawer */
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav__burger { display: none; cursor: pointer; padding: 0.4rem; color: var(--navy); }
.nav__burger .bar { display: block; width: 24px; height: 2px; background: currentColor; transition: transform 0.3s, opacity 0.3s; }
.nav__burger .bar + .bar { margin-top: 6px; }
.nav__drawer { display: none; background: var(--white); border-top: 1px solid var(--navy-10); }
.nav__drawer a { display: flex; align-items: center; gap: 0.5rem; padding: 0.85rem var(--pad); font-size: 0.9rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--navy-10); }
.nav__drawer a:hover { color: var(--navy); }
.nav__drawer a.is-cta { color: var(--navy); font-weight: 700; }
.nav__drawer a.is-highlight { color: #0f8e74; font-weight: 700; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: calc(var(--nav-h) + 3rem) 0 3.5rem;
  background-color: var(--navy);
  background-image: linear-gradient(100deg, rgba(1,20,51,0.92) 0%, rgba(2,63,151,0.72) 45%, rgba(2,63,151,0.30) 78%, rgba(2,63,151,0.12) 100%), url(../img/header-horizontal2.jpeg);
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center right;
  background-size: cover, cover; }
.hero__lines { position: absolute; inset: 0; pointer-events: none; }
.hero__inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; padding: 50px var(--pad) 0; }
.hero__tag { display: inline-flex; align-items: center; gap: 0.75rem; border: 1px solid rgba(249,195,96,0.45); padding: 0.5rem 1rem; margin-bottom: 2rem; }
.hero__tag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.hero__tag-en { font-family: var(--font-en); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.22em; color: var(--gold); }
.hero__tag-jp { font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.6); }
.hero__title { font-weight: 900; font-size: clamp(1.9rem, 4.5vw, 3.2rem); line-height: 1.25; color: var(--white); margin-bottom: 2rem; }
.hero__title span { color: var(--gold); font-size: 0.72em; }
.hero__lead { font-weight: 400; font-size: 0.95rem; line-height: 1.9; color: var(--white-70); max-width: 560px; margin-bottom: 2rem; }
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-bottom: 2.5rem; }
.hero__quicklinks { display: flex; flex-wrap: wrap; gap: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--white-12); }
.hero__quicklink { display: flex; align-items: center; gap: 0.5rem; font-weight: 500; font-size: 0.875rem; color: var(--white-55); }
.hero__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); animation: pulse 2s infinite; flex-shrink: 0; }

/* ============================================================
   SERVICES (card grid on 1px gridlines)
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: transparent; }
.svc-card { position: relative; overflow: hidden; background: var(--white); border: 1px solid var(--navy-10); padding: 2rem; transition: background-color 0.3s; }
.svc-photo { grid-column: span 2; overflow: hidden; border: 1px solid var(--navy-10); min-height: 220px; }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-card:hover { background: var(--teal-tint); }
.svc-card__corner { position: absolute; top: 0; right: 0; opacity: 0.06; }
.svc-card__icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border: 1px solid; margin-bottom: 1.25rem; }
.svc-card__title { font-weight: 900; font-size: 1.1rem; color: var(--navy); margin-bottom: 0.25rem; }
.svc-card__sub { font-family: var(--font-en); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-35); margin-bottom: 0.85rem; }
.svc-card__desc { font-weight: 400; font-size: 0.875rem; line-height: 1.85; color: var(--ink-70); }
.svc-card__bar { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.svc-card:hover .svc-card__bar { transform: scaleX(1); }

.svc-cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem; border: 1px solid var(--navy-15); background: var(--teal-tint); }
.svc-cta p { font-weight: 500; font-size: 0.9rem; color: var(--navy); }

/* ============================================================
   SUPPORT
   ============================================================ */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.sup-card { position: relative; overflow: hidden; background: var(--white); border: 1px solid var(--navy-15); padding: 2rem; }
.sup-card__rule { position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.sup-card__top { display: flex; align-items: center; justify-content: space-between; gap: 0.9rem; margin-bottom: 1.25rem; }
.sup-card__badge { padding: 0.3rem 0.75rem; color: var(--white); font-weight: 700; font-size: 0.95rem; }
.sup-card__icon { width: 48px; height: 48px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: 1px solid; }
.sup-card__title { font-weight: 900; font-size: 1.25rem; color: var(--navy); margin-bottom: 0.2rem; }
.sup-card__title--mint { color: var(--mint); }
.sup-card__sub { font-family: var(--font-en); font-weight: 600; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-35); margin-bottom: 0.85rem; }
.sup-card__desc { font-weight: 400; font-size: 0.875rem; line-height: 1.9; color: var(--ink-70); margin-bottom: 1.5rem; }
.steps { margin-bottom: 1.5rem; }
.steps__item { display: flex; align-items: flex-start; gap: 0.75rem; }
.steps__num-col { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.steps__num { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; color: var(--white); font-family: var(--font-en); font-weight: 800; font-size: 0.8rem; }
.steps__line { width: 1px; height: 20px; }
.steps__label { display: flex; align-items: center; min-height: 24px; line-height: 1.4; font-weight: 500; font-size: 0.875rem; color: var(--ink); }
.sup-card__link { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.25rem; border: 1px solid var(--mint); color: var(--mint); font-weight: 700; font-size: 0.875rem; }
.sup-card__link:hover { background: var(--mint); color: var(--white); }

.info-strip { margin-top: 2.5rem; display: flex; flex-wrap: wrap; border: 1px solid rgba(2,63,151,0.18); }
.info-strip__item { flex: 1; min-width: 220px; display: flex; align-items: center; gap: 1rem; padding: 1rem 1.5rem; background: var(--white); border-left: 1px solid var(--navy-10); }
.info-strip__item:first-child { border-left: 0; }
.info-strip__label { font-family: var(--font-jp); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.08em; color: rgba(2,63,151,0.6); margin-bottom: 0.2rem; }
.info-strip__value { font-weight: 700; font-size: 0.875rem; color: var(--navy); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 2.5rem; align-items: start; }
.mission { position: relative; border: 1px solid rgba(2,63,151,0.2); padding: 1rem 1.25rem; margin-bottom: 0; }
.mission::before { content: ""; position: absolute; top: 0; left: 1.25rem; right: 1.25rem; height: 1px; background: var(--gold); }
.mission__text { font-weight: 600; font-size: 1.05rem; line-height: 1.85; color: var(--ink); }
.mission__tag { margin-top: 1rem; display: flex; align-items: center; justify-content: flex-end; }
.mission__tag span { font-family: var(--font-en); font-weight: 700; font-size: 1.5rem; letter-spacing: 0.14em; color: rgba(58,66,68,0.20); }
.subnav-card { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border: 1px solid var(--navy-15); margin-top: 1rem; }
.subnav-card:hover { border-color: rgba(2,63,151,0.4); background: rgba(228,243,249,0.6); }
.subnav-card__left { display: flex; align-items: center; gap: 0.75rem; }
.subnav-card__label { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.subnav-card__sub { font-family: var(--font-en); font-weight: 700; font-size: 1.2rem; letter-spacing: 0.12em; text-transform: uppercase; text-align: right; color: rgba(58,66,68,0.20); }

.company-table { border: 1px solid var(--navy-15); }
.company-table__row { display: grid; grid-template-columns: 1fr 2fr; border-bottom: 1px solid var(--navy-10); }
.company-table__row:last-child { border-bottom: 0; }
.company-table__th { display: flex; align-items: flex-start; gap: 0.5rem; padding: 1rem 1.25rem; background: var(--teal-tint); font-weight: 700; font-size: 0.875rem; color: var(--ink); line-height: 1.6; }
.company-table__td { padding: 1rem 1.25rem; background: var(--white); font-weight: 400; font-size: 0.875rem; line-height: 1.8; color: var(--ink); }

/* ============================================================
   ONLINE SHOP BANNERS
   ============================================================ */
.shop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.shop-card { display: flex; border: 1px solid rgba(2,63,151,0.2); }
.shop-card__accent { width: 4px; flex-shrink: 0; }
.shop-card__body { flex: 1; padding: 1.5rem; background: var(--white); }
.shop-card:hover .shop-card__body { background: rgba(228,243,249,0.5); }
.shop-card__head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 0.75rem; }
.shop-card__code { font-family: var(--font-en); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.18em; color: var(--ink-35); margin-bottom: 0.3rem; }
.shop-card__name { font-weight: 900; font-size: 1.1rem; color: var(--navy); line-height: 1.3; }
.shop-card__sub { font-family: var(--font-en); font-weight: 600; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-35); }
.shop-card__ext { width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: 1px solid var(--navy-15); margin-left: 1rem; color: rgba(2,63,151,0.5); }
.shop-card:hover .shop-card__ext { background: var(--navy); border-color: var(--navy); color: var(--white); }
.shop-card__desc { font-weight: 400; font-size: 0.875rem; line-height: 1.85; color: var(--ink-70); }
.shop-card__more { margin-top: 1rem; display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 0.8rem; }
.shop-card--navy .shop-card__more { color: var(--navy); }
.shop-card--mint .shop-card__more { color: var(--mint); }
.shop-card--mint .shop-card__name { color: var(--mint); }
.shop-card--mint .shop-card__ext { border-color: rgba(92,206,169,0.5); color: rgba(92,206,169,0.7); }
.shop-card--mint:hover .shop-card__ext { background: var(--mint); border-color: var(--mint); }

/* ============================================================
   ACCESS
   ============================================================ */
.access-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 2rem; align-items: start; }
.access-map { position: relative; border: 1px solid rgba(2,63,151,0.2); aspect-ratio: 16 / 9; overflow: hidden; }
.access-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.access-info { display: flex; flex-direction: column; gap: 1rem; }
.access-item { display: flex; align-items: flex-start; gap: 1rem; border: 1px solid var(--navy-15); background: var(--white); padding: 1rem 1.25rem; }
.access-item__icon { width: 32px; height: 32px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(2,63,151,0.25); color: var(--navy); }
.access-item__label { font-family: var(--font-jp); font-weight: 700; font-size: 0.68rem; letter-spacing: 0.08em; color: rgba(2,63,151,0.6); margin-bottom: 0.2rem; }
.access-item__value { font-weight: 500; font-size: 0.875rem; line-height: 1.75; color: var(--ink); white-space: pre-line; }
.access-item__value a { color: var(--navy); font-weight: 700; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { position: relative; overflow: hidden; background: var(--navy); color: var(--white); }
.contact__head { text-align: center; margin-bottom: 3.5rem; }
.contact__label { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-en); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.22em; color: var(--gold); margin-bottom: 1.25rem; }
.contact__title { font-weight: 900; font-size: clamp(1.4rem, 3.5vw, 2.2rem); line-height: 1.5; color: var(--white); }
.contact__title span { color: var(--gold); }
.contact__sub { margin-top: 1rem; font-weight: 400; font-size: 0.875rem; line-height: 1.9; color: #fff; }
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 2.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
/* Two contact methods side by side (static site — no form) */
.contact-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 760px; margin: 0 auto; }
.contact-note { max-width: 760px; margin: 1.5rem auto 0; text-align: center; font-weight: 400; font-size: 0.875rem; line-height: 1.9; color: #fff; }
.contact-info__card { border: 1px solid rgba(255,255,255,0.15); padding: 1.25rem; }
.contact-info__card:hover { border-color: rgba(249,195,96,0.4); }
.contact-info__top { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.contact-info__icon { width: 32px; height: 32px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(92,206,169,0.4); color: var(--mint); }
.contact-info__label { font-weight: 700; font-size: 0.75rem; color: #fff; }
.contact-info__value { font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 0.2rem; }
.contact-info__value a { color: var(--white); }
.contact-info__hint { font-weight: 400; font-size: 0.75rem; color: #fff; }
.contact-info__note { border: 1px solid rgba(249,195,96,0.3); padding: 1.25rem; font-weight: 500; font-size: 0.8rem; line-height: 1.9; color: rgba(255,255,255,0.6); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-weight: 700; font-size: 0.75rem; color: var(--white-55); margin-bottom: 0.4rem; }
.field input, .field textarea { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); outline: none; padding: 0.65rem 1rem; color: var(--white); font-family: var(--font-jp); font-size: 0.875rem; }
.field textarea { line-height: 1.7; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.35); }
.field input:focus, .field textarea:focus { border-color: rgba(249,195,96,0.5); }
.contact-form__submit { width: 100%; justify-content: center; padding: 1rem; font-weight: 900; font-size: 0.95rem; }
.contact-form__note { font-weight: 400; font-size: 0.72rem; color: rgba(255,255,255,0.3); text-align: center; line-height: 1.8; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-darkest); color: var(--white); }
.footer__main { border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem 4.5rem; max-width: var(--container); margin: 0 auto; padding: 3.5rem var(--pad); }
.footer__brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer__brand img { height: 2rem; width: auto; }
.footer__brand-name { font-weight: 900; font-size: 1rem; color: var(--white); line-height: 1.3; }
.footer__brand-en { font-family: var(--font-en); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.16em; color: rgba(255,255,255,0.35); }
.footer__desc { font-weight: 400; font-size: 0.875rem; line-height: 1.9; color: #fff; }
.footer__coltitle { font-family: var(--font-en); font-weight: 700; font-size: 0.65rem; letter-spacing: 0.2em; color: rgba(249,195,96,0.7); margin-bottom: 1.25rem; }
.footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1rem; }
.footer__links--col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__link { display: flex; align-items: center; gap: 0.4rem; font-weight: 500; font-size: 0.875rem; color: #fff; }
.footer__link:hover { color: var(--gold); }
.footer__partner { display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap; max-width: var(--container); margin: 0 auto; padding: 1.5rem var(--pad); border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__partner-label { font-family: var(--font-en); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(249,195,96,0.7); }
.footer__partner-logo { height: 3.75rem; width: auto; background: #fff; padding: 0.6rem 1rem; border-radius: 4px; }
.footer__bottom { display: flex; align-items: center; justify-content: center; max-width: var(--container); margin: 0 auto; padding: 1rem var(--pad); }
.footer__copy { font-family: var(--font-en); font-weight: 500; font-size: 0.7rem; letter-spacing: 0.14em; color: rgba(255,255,255,0.6); }
.footer__mark { display: flex; align-items: center; gap: 0.5rem; opacity: 0.3; }
.footer__mark span { font-family: var(--font-en); font-weight: 700; font-size: 0.65rem; letter-spacing: 0.18em; color: var(--white); }

/* Back to top */
.to-top { position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 40; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--navy); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.to-top:hover { background: var(--gold); color: var(--navy); }

/* ============================================================
   SUB-PAGE (support / privacy) page header band
   ============================================================ */
.page-mv { position: relative; overflow: hidden; background: var(--navy); padding: calc(var(--nav-h) + 4rem) 0 3rem; }
.page-mv__inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.page-mv__label { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-en); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.22em; color: var(--gold); margin-bottom: 0.75rem; }
.page-mv__title { font-weight: 900; font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--white); }
.page-mv__crumb { margin-top: 0.75rem; font-size: 0.875rem; font-weight: 500; color: var(--white-70); }
.page-mv__crumb a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--white-55); }
.page-mv__crumb a:hover { text-decoration-color: var(--white); }

/* Generic prose block for sub-pages */
.prose { max-width: 1100px; }
.prose p { font-size: 0.9rem; line-height: 1.95; margin-bottom: 1.25rem; color: var(--ink); }
.prose p .accent { color: #cc0000; font-weight: 700; }
.hint-text { font-size: 0.8rem; color: var(--ink-70); }
.subhead { display: flex; align-items: center; gap: 0.6rem; margin: 2.5rem 0 1rem; padding-left: 0.9rem; border-left: 4px solid var(--navy); font-weight: 700; font-size: 1.1rem; color: var(--navy); }
.placeholder-box { margin-top: 1rem; padding: 1.25rem 1.5rem; border: 1px dashed rgba(2,63,151,0.4); background: var(--teal-tint); font-size: 0.85rem; line-height: 1.9; color: var(--navy); }
.text-right { text-align: right; }

/* Privacy policy page overrides */
#privacy .prose p, #secret .prose p { font-weight: 500; font-size: 1.05rem; }
#privacy .subhead, #secret .subhead { font-size: 1.4rem; }
#secret .hang { display: block; padding-left: 1.6em; text-indent: -1.6em; }
#privacy .prose p { line-height: 2.4; }

/* Homepage utility color helpers (formerly inline styles) */
.icon-navy { border-color: rgba(2,63,151,.3); color: #023F97; }
.icon-mint { border-color: rgba(92,206,169,.5); color: #5CCEA9; }
.icon-gold { border-color: rgba(249,195,96,.6); color: #caa23f; }
.badge-navy { background: #023F97; }
.badge-mint { background: #5CCEA9; }
.bar-navy { background: #023F97; }
.bar-mint { background: #5CCEA9; }
.bar-gold { background: #F9C360; }
.steps__line--navy { background: rgba(2,63,151,.25); }
.steps__line--mint { background: rgba(92,206,169,.45); }
.section--border-top { border-top: 1px solid var(--navy-10); }
.bg-navy { background: #023F97; }
.bg-mint { background: #5CCEA9; }
.text-mint { color: #5CCEA9; }
.text-navy-bold { color: var(--navy); font-weight: 700; }
.text-xs { font-size: .8rem; }

/* Numbered how-to flow (remote service guide on support page) */
.prose-box { border: 1px solid var(--navy-15); background: var(--white); padding: 1.25rem 1.5rem; margin-bottom: 1.25rem; }
.prose-box p { margin-bottom: 0; }
.flow { counter-reset: flow; display: grid; gap: 1.25rem; margin-top: 1.5rem; }
.flow__item { display: flex; gap: 1rem; border: 1px solid var(--navy-15); background: var(--white); padding: 1.25rem 1.5rem; }
.flow__num { width: 30px; height: 30px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--navy); color: var(--white); font-family: var(--font-en); font-weight: 800; }
.flow__body p { font-size: 0.875rem; line-height: 1.8; }
.flow__body .sub { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.75rem; }
.flow__body .sub span { font-size: 0.875rem; color: var(--ink-70); padding-left: 1rem; position: relative; }
.flow__body .sub span::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; background: var(--mint); }
.dl-cta { margin: 2rem 0; padding: 1.75rem; background: var(--teal-tint); border: 1px solid var(--navy-15); text-align: center; }
.dl-cta p { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 1rem; }
.dl-cta .remark { font-weight: 400; font-size: 0.8rem; color: var(--ink-70); margin-top: 0.75rem; margin-bottom: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .about-grid, .access-grid, .contact-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .prose { padding-left: 1rem; padding-right: 1rem; }
  .section { padding: 4rem 0; }
  .u-sp-only { display: block; }
  .nav__utility { display: none; }
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav-toggle:checked ~ .nav .nav__drawer { display: block; }
  .nav-toggle:checked ~ .nav .nav__burger .bar1 { transform: translateY(8px) rotate(45deg); }
  .nav-toggle:checked ~ .nav .nav__burger .bar2 { opacity: 0; }
  .nav-toggle:checked ~ .nav .nav__burger .bar3 { transform: translateY(-8px) rotate(-45deg); }
  .support-grid, .shop-grid, .field-row, .contact-methods { grid-template-columns: 1fr; }
  .svc-photo { display: none; }
  .svc-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .svc-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.75rem; }
  .footer__links { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
}
