@charset "UTF-8";
/* =========================================================
   ねんきんGo リニューアル — 共通デザインシステム / トップページ
   配色・タイポ・ボタン・ヘッダー/フッター は全ページ共通
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand colors */
  --blue-900: #0a3da0;
  --blue-700: #0b57d0;
  --blue-600: #1a6fe0;
  --blue-500: #2e86f0;
  --blue-100: #e7f0fe;
  --blue-050: #f2f6fc;

  --green-600: #16a34a;
  --green-500: #1bb55c;
  --green-line: #06c755;

  --kakao: #fae100;
  --kakao-text: #3a1d1d;

  --ink-900: #1f2a44;
  --ink-700: #404a60;
  --ink-500: #6b7689;
  --ink-300: #9aa3b2;

  --line: #e3e8f0;
  --bg: #ffffff;
  --bg-soft: #f4f7fc;

  --star: #ffb400;

  /* Layout */
  --maxw: 1120px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 3px rgba(16,38,76,.08);
  --shadow: 0 6px 24px rgba(16,38,76,.10);
  --shadow-lg: 0 16px 48px rgba(16,38,76,.16);

  --header-h: 72px;
  --font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.7;
  font-size: 19.2px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.4; font-weight: 700; }
p { margin: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }
.sp-only { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 18px; line-height: 1;
  padding: 14px 22px; border-radius: var(--radius-pill);
  border: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-green { background: var(--green-500); color: #fff; }
.btn-green:hover { background: var(--green-600); }
.btn-blue { background: var(--blue-700); color: #fff; }
.btn-blue:hover { background: var(--blue-900); }
.btn-outline { background: #fff; color: var(--blue-700); border: 1.5px solid var(--blue-100); }
.btn-white { background: #fff; color: var(--blue-700); box-shadow: var(--shadow); }
.btn-white:hover { background: #f4f8ff; }
.btn-lg { padding: 18px 30px; font-size: 20.4px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo { font-size: 31.2px; font-weight: 800; letter-spacing: -.5px; white-space: nowrap; }
.logo .nen { color: var(--blue-700); }
.logo .go { color: var(--green-500); }
.nav { display: flex; align-items: center; gap: 20px; }
.nav a { font-size: 16px; font-weight: 700; color: var(--ink-700); transition: color .15s; white-space: nowrap; }
.nav a:hover { color: var(--blue-700); }
.header__right { display: flex; align-items: center; gap: 14px; }
.lang {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius-pill); padding: 9px 14px;
  font-size: 16.2px; font-weight: 600; color: var(--ink-700); cursor: pointer; white-space: nowrap;
}
.lang svg { width: 12px; height: 12px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink-900); margin: 5px 0; transition: .3s; }

/* ---------- Section base ---------- */
.section { padding: 76px 0; }
.section--soft { background: var(--bg-soft); }
.section__head { text-align: center; margin-bottom: 48px; }
.section__eyebrow { color: var(--blue-600); font-weight: 700; font-size: 16.8px; letter-spacing: .08em; }
.section__title { font-size: 38.4px; margin-top: 8px; }
.section__title .accent { color: var(--blue-700); }
.section__lead { color: var(--ink-500); margin-top: 14px; font-size: 19.2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    linear-gradient(100deg, rgba(8,52,150,.94) 0%, rgba(11,72,190,.82) 34%, rgba(11,87,208,.30) 56%, rgba(11,87,208,0) 72%),
    #0b57d0 url("../img/hero.png") right center / cover no-repeat;
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: 64px 0 76px; }
.hero__more { margin-top: 28px; }
.hero__more .arr { transition: transform .2s; }
.hero__more:hover .arr { transform: translateX(4px); }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.35);
  padding: 8px 16px; border-radius: var(--radius-pill); font-size: 16.2px; font-weight: 600;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #ffd84d; }
.hero h1 { font-size: 20.4px; font-weight: 600; opacity: .95; margin-top: 22px; }
.hero h1 strong { display: block; font-size: 50px; font-weight: 800; line-height: 1.25; margin-top: 6px; letter-spacing: -.5px; }
.hero__lead { margin-top: 22px; font-size: 19.2px; opacity: .95; max-width: 460px; }
.hero__pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero__pills span {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.14); padding: 8px 14px; border-radius: var(--radius-pill);
  font-size: 15.6px; font-weight: 600;
}
.hero__pills svg { width: 15px; height: 15px; }

/* hero right: image + floating feature cards */
.hero__visual { position: relative; }
.hero__photo {
  border-radius: var(--radius-lg); aspect-ratio: 4/3; width: 100%;
  background: linear-gradient(160deg,#bfe0ff,#7db9ff 70%,#4a92f0);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero__photo .ph-note { position: absolute; bottom: 10px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.85); font-size: 14.4px; }
.hero__photo .person { width: 62%; height: auto; filter: drop-shadow(0 8px 16px rgba(0,0,0,.12)); margin-bottom: 6px; }
.hero__features { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.feature-card {
  background: #fff; color: var(--ink-900); border-radius: 12px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-lg); width: 350px;
}
.feature-card .fc-icon { width: 34px; height: 34px; border-radius: 9px; background: var(--blue-100); color: var(--blue-700); display: grid; place-items: center; flex-shrink: 0; }
.feature-card .fc-icon svg { width: 18px; height: 18px; }
.feature-card b { font-size: 16.2px; display: block; }
.feature-card small { font-size: 13.2px; color: var(--ink-500); }

/* ---------- Stats ---------- */
.stats { margin-top: -42px; position: relative; z-index: 5; }
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.stat {
  background: #fff; border-radius: var(--radius); padding: 24px 18px; text-align: center;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.stat .ico { color: var(--blue-600); height: 34px; display: flex; align-items: center; justify-content: center; gap: 4px; }
.stat .ico svg { width: 30px; height: 30px; }
.stat .ico--star { color: var(--star); }
.stat .ico--stars { color: var(--star); gap: 3px; }
.stat .ico--stars svg { width: 24px; height: 24px; }
.stat .ico.flags { gap: 4px; }
.stat .ico.flags .flag { width: 30px; height: 20px; border-radius: 3px; box-shadow: 0 1px 2px rgba(0,0,0,.15); }
.stat__label { font-size: 15.6px; font-weight: 700; color: var(--ink-700); margin-top: 10px; }
.stat .num { font-size: 36px; font-weight: 800; color: var(--blue-700); margin-top: 2px; line-height: 1.1; }
.stat .num small { font-size: 19.2px; }
.stat__sub { font-size: 13.8px; font-weight: 400; color: var(--ink-500); margin-top: 7px; line-height: 1.5; }

/* ---------- Trust badges ---------- */
.trust { padding: 44px 0; }
.trust__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.trust__item {
  display: flex; align-items: center; gap: 12px; padding: 16px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
}
.trust__item .t-ico { width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px; background: var(--blue-100); color: var(--blue-700); display: grid; place-items: center; }
.trust__item .t-ico svg { width: 20px; height: 20px; }
.trust__item b { font-size: 16.2px; display: block; }
.trust__item small { font-size: 13.2px; color: var(--ink-500); }

/* ---------- Flow ---------- */
.flow__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; position: relative; }
.flow__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm); position: relative;
}
.flow__num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green-500); color: #fff;
  font-weight: 800; font-size: 21.6px; display: grid; place-items: center; margin: 0 auto 8px;
}
.flow__icon { width: 72px; height: 72px; border-radius: 50%; background: var(--blue-050); color: var(--blue-700); display: grid; place-items: center; margin: 14px auto; }
.flow__icon svg { width: 34px; height: 34px; }
.flow__card h3 { font-size: 21.6px; }
.flow__card p { font-size: 16.2px; color: var(--ink-500); margin-top: 10px; }
.flow__arrow { position: absolute; top: 50%; right: -18px; transform: translateY(-50%); color: var(--blue-500); font-size: 26.4px; z-index: 2; }
.flow__note { text-align: center; margin-top: 30px; }
.flow__note .pill { display: inline-flex; align-items: center; gap: 10px; background: var(--blue-100); color: var(--blue-900); padding: 12px 22px; border-radius: var(--radius-pill); font-weight: 700; }
.flow__note .pill b { font-size: 26.4px; }
.flow__note small { display: block; color: var(--ink-500); font-size: 14.4px; margin-top: 8px; }

/* ---------- Voice / Testimonials ---------- */
.voice__head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.voice__head h2 { font-size: 33.6px; }
.voice__head .tag { color: var(--ink-500); font-size: 18px; font-weight: 600; }
.google-rate { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 8px 16px; box-shadow: var(--shadow-sm); }
.google-rate b { font-size: 21.6px; }
.google-rate .stars { color: var(--star); }
.google-rate small { color: var(--ink-500); }
.voice__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.review__top { display: flex; align-items: center; gap: 12px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 21.6px; flex-shrink: 0; }
.review__name { font-weight: 700; font-size: 18px; }
.review__meta { font-size: 14.4px; color: var(--ink-500); }
.review .stars { color: var(--star); margin: 12px 0 8px; letter-spacing: 1px; }
.review p { font-size: 16.2px; color: var(--ink-700); }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 18px 20px; font-size: 18px; font-weight: 600; color: var(--ink-900); display: flex; justify-content: flex-start; align-items: flex-start; gap: 4px; font-family: inherit; }
.faq__q .q-mark { color: var(--blue-600); font-weight: 800; margin-right: 4px; }
/* 常時オープン表示（開閉動作なし） */
.faq__q { cursor: default; padding-bottom: 6px; }
.faq__a p { padding: 0 20px 18px; font-size: 16.2px; color: var(--ink-500); border-top: 1px solid var(--bg-soft); margin-top: 4px; padding-top: 12px; }

/* ---------- CTA ---------- */
.cta { background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); color: #fff; }
.cta .container { padding-top: 56px; padding-bottom: 56px; }
.cta h2 { font-size: 36px; text-align: center; }
.cta__lead { text-align: center; opacity: .92; margin-top: 12px; }
.cta__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 36px; }
.contact-card {
  background: #fff; border-radius: var(--radius); padding: 22px 16px; text-align: center; color: var(--ink-900);
  display: flex; flex-direction: column; align-items: center; gap: 6px; transition: transform .15s, box-shadow .15s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-card .cc-ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; color: #fff; }
.contact-card .cc-ico svg { width: 26px; height: 26px; }
.cc-line { background: var(--green-line); }
.cc-kakao { background: var(--kakao); color: var(--kakao-text); }
.cc-tel { background: var(--blue-600); }
.cc-mail { background: var(--ink-900); }
.contact-card b { font-size: 19.2px; margin-top: 4px; }
.contact-card small { font-size: 14.4px; color: var(--ink-500); }

/* ---------- Footer ---------- */
.footer { background: #0f1b33; color: #c4cde0; padding: 56px 0 28px; font-size: 16.2px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer .logo { color: #fff; }
.footer .logo .nen { color: #fff; }
.footer__about p { margin-top: 14px; color: #9fb0cc; font-size: 15.6px; max-width: 260px; }
.footer h4 { font-size: 16.8px; color: #fff; margin-bottom: 14px; }
.footer__col p { font-size: 15px; line-height: 1.9; color: #9fb0cc; }
.footer__col li { margin-bottom: 9px; }
.footer__col a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; text-align: center; font-size: 14.4px; color: #8294b3; }

/* back to top */
.totop { position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%; background: var(--blue-700); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 90; border: none; cursor: pointer; }
.totop.show { opacity: 1; pointer-events: auto; }

/* ---------- 返金シミュレーション ---------- */
.sim { max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.sim__form { padding: 12px 30px 30px; }
.sim__row { padding: 24px 0; border-bottom: 1px dashed var(--line); }
.sim__row:first-child { border-top: none; }
.sim__q { display: flex; align-items: center; gap: 12px; font-size: 19.2px; }
.sim__n { width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%; background: var(--blue-700); color: #fff; display: grid; place-items: center; font-size: 18px; font-weight: 800; }
.sim__radios { display: flex; gap: 14px; margin-top: 16px; }
.sim__radio { flex: 1; }
.sim__radio input { position: absolute; opacity: 0; }
.sim__radio span { display: block; text-align: center; padding: 14px; border: 2px solid var(--line); border-radius: var(--radius); font-weight: 700; cursor: pointer; transition: .15s; }
.sim__radio input:checked + span { border-color: var(--blue-600); background: var(--blue-100); color: var(--blue-700); }
.sim__term { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px; margin-top: 16px; }
.sim__seg { display: inline-flex; align-items: center; gap: 6px; }
.sim__term em { font-style: normal; font-weight: 700; color: var(--ink-500); }
.sim__term i { font-style: normal; color: var(--ink-500); font-size: 16.8px; }
.sim select, .sim__salary input { font-family: inherit; font-size: 18px; padding: 10px 12px; border: 1.5px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink-900); }
.sim select { min-width: 78px; }
.sim__hint { font-size: 15.6px; color: var(--ink-500); margin-top: 12px; background: var(--bg-soft); padding: 12px 14px; border-radius: 10px; }
.sim__salary { display: flex; align-items: center; gap: 8px; margin-top: 14px; }
.sim__salary input { flex: 1; }
.sim__btn { display: block; margin: 28px auto 0; min-width: 260px; }
.sim__result { background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); color: #fff; padding: 32px 30px; text-align: center; }
.sim__month { font-size: 18px; opacity: .9; }
.sim__main { margin-top: 8px; font-size: 21.6px; font-weight: 600; }
.sim__main .price { font-size: 48px; font-weight: 800; margin: 0 6px; }
.sim__detail { margin-top: 14px; font-size: 16.8px; line-height: 1.9; }
.sim__detail .num { font-weight: 800; font-size: 21.6px; }
.sim__note { margin-top: 18px; font-size: 14.4px; opacity: .85; }

/* ---------- ご利用の流れ タイトル ---------- */
.flow__title { display: flex; flex-direction: column; gap: 2px; }
.flow__title-sm { font-size: 21.6px; font-weight: 700; }
.flow__title-lg { font-size: 38.4px; font-weight: 800; }

/* ---------- 料金 ---------- */
.price__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.price__grid--two { grid-template-columns: repeat(2,1fr); max-width: 760px; margin: 0 auto; }
.price__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 24px; text-align: center; box-shadow: var(--shadow-sm); }
.price__card--main { border: 2px solid var(--blue-600); box-shadow: var(--shadow); }
.price__card--free { border-top: 4px solid var(--green-500); }
.price__card--blue { border-top: 4px solid var(--blue-600); }
.price__name { font-size: 18px; font-weight: 700; color: var(--ink-700); min-height: 48px; display: flex; align-items: center; justify-content: center; }
.price__amount { font-size: 48px; font-weight: 800; color: var(--blue-700); margin: 6px 0 14px; }
.price__card--free .price__amount { color: var(--green-600); }
.price__amount small { font-size: 21.6px; }
.price__desc { font-size: 15px; color: var(--ink-500); text-align: left; }
.price__notes { margin-top: 26px; background: var(--bg-soft); border-radius: var(--radius); padding: 18px 22px; }
.price__notes li { font-size: 15.6px; color: var(--ink-700); margin: 6px 0; }
.price-note-link { font-weight: 700; text-decoration: underline; color: var(--blue-700); }
.price-note-link:hover { color: var(--blue-600); }
.price__onlytax { margin-top: 22px; text-align: center; }

/* ---------- 利用登録フォーム ---------- */
/* 紹介パートナー名バナー（登録画面・LP登録口） */
.partner-banner { max-width: 720px; margin: 0 auto 20px; padding: 12px 18px; background: var(--blue-50, #eaf1fd); border: 1px solid var(--blue-200, #c7dafc); border-left: 4px solid var(--blue-600, #0b57d0); border-radius: 10px; color: var(--ink-700, #344054); font-size: 15px; }
.partner-banner strong { color: var(--blue-700, #0843a0); font-weight: 700; }
.partner-banner--cta { max-width: 560px; background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.35); border-left-color: #ffd84d; color: #fff; }
.partner-banner--cta strong { color: #fff; }
.signup__card { max-width: 560px; margin: 32px auto 0; background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg); color: var(--ink-900); }
.signup__email { width: 100%; font-family: inherit; font-size: 19.2px; padding: 16px; border: 1.5px solid var(--line); border-radius: 12px; }
.signup__note { font-size: 15px; color: var(--ink-500); margin: 14px 0; text-align: center; }
.signup__note a { color: var(--blue-700); text-decoration: underline; }
.signup__recaptcha { display: flex; align-items: center; gap: 10px; font-size: 15.6px; color: var(--ink-500); background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; margin-bottom: 18px; }
.signup__recaptcha .rc-box { width: 22px; height: 22px; border: 2px solid var(--ink-300); border-radius: 4px; background: #fff; flex-shrink: 0; }

/* ---------- 下層ページ（サービス紹介 等） ---------- */
.page-hero { background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); color: #fff; padding: 48px 0 56px; }
.breadcrumb { font-size: 15.6px; opacity: .9; }
.breadcrumb a { text-decoration: underline; }
.page-hero__title { font-size: 43.2px; margin-top: 12px; }
.page-hero__lead { margin-top: 14px; opacity: .95; }
.page-hero__catch { display: block; font-size: 24px; font-weight: 800; margin-bottom: 6px; opacity: 1; }
.service-block { max-width: 880px; }
.service-num { display: inline-block; font-size: 16.8px; font-weight: 800; color: #fff; background: var(--blue-700); border-radius: var(--radius-pill); padding: 6px 18px; letter-spacing: .1em; }
.service-h2 { font-size: 28.8px; margin-top: 18px; line-height: 1.5; }
.service-p { margin-top: 18px; color: var(--ink-700); }
.service-h3 { font-size: 21.6px; margin-top: 30px; color: var(--blue-700); display: flex; align-items: center; gap: 10px; }
.service-h3::before { content: ""; width: 6px; height: 22px; background: var(--green-500); border-radius: 3px; }
.service-list { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.service-list li { position: relative; padding-left: 34px; color: var(--ink-700); }
.service-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 24px; height: 24px; background: var(--blue-100); color: var(--blue-700); border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 15.6px; }
.service-status { margin-top: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.service-status__lead { font-weight: 600; }
.service-status__flow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.service-status__flow span { position: relative; font-size: 15px; font-weight: 600; background: var(--blue-050); color: var(--blue-900); border: 1px solid var(--blue-100); border-radius: var(--radius-pill); padding: 7px 14px; }
.service-status__flow span:not(:last-child)::after { content: "→"; margin-left: 8px; color: var(--blue-500); }

/* ---------- 組織概要 / 法務ページ ---------- */
.legal { max-width: 880px; }
/* 規約・ポリシー本文中のリンク（お問い合わせフォーム等）は下線付きで明示 */
.legal a { color: var(--blue-700); text-decoration: underline; }
.legal__intro { color: var(--ink-700); margin-bottom: 8px; }
.legal__updated { color: var(--ink-500); font-size: 15px; margin-top: 28px; text-align: right; }
.legal__art { margin-top: 28px; }
.legal__art h3 { font-size: 19.2px; color: var(--blue-700); display: flex; align-items: center; gap: 10px; }
.legal__art h3::before { content: ""; width: 5px; height: 20px; background: var(--green-500); border-radius: 3px; flex-shrink: 0; }
.legal__art p { margin-top: 10px; color: var(--ink-700); }
.legal__art ul { margin-top: 10px; padding-left: 1.3em; list-style: disc; }
.legal__art ul li { margin-top: 6px; color: var(--ink-700); }
.legal__divider { border: none; border-top: 2px dashed var(--line); margin: 48px 0 8px; }
.legal__orig-heading { font-size: 17px; color: var(--ink-500); font-weight: 700; margin: 24px 0 12px; }
.org-table { width: 100%; border-collapse: collapse; margin-top: 4px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.org-table th, .org-table td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--line); vertical-align: top; font-size: 16.2px; }
.org-table tr:last-child th, .org-table tr:last-child td { border-bottom: none; }
.org-table th { width: 32%; background: var(--bg-soft); font-weight: 700; color: var(--ink-700); white-space: nowrap; }
.org-table td { color: var(--ink-900); }
.org-table a { color: var(--blue-700); text-decoration: underline; }
/* テーブル内のボタンリンクは .org-table a の色/下線指定より優先させる（青地に青文字で消える対策） */
.org-table a.btn { text-decoration: none; }
.org-table a.btn-blue, .org-table a.btn-green { color: #fff; }
.org-table a.btn-outline, .org-table a.btn-white { color: var(--blue-700); }
@media (max-width: 560px) {
  .org-table th, .org-table td { display: block; width: 100%; }
  .org-table th { border-bottom: none; padding-bottom: 4px; }
}

/* =========================================================
   会員系画面（ログイン / 会員登録 / マイページ 等）
   ========================================================= */

/* ---------- 小ボタン / ユーザーチップ / ヘッダー会員メニュー ---------- */
.btn-sm { padding: 9px 16px; font-size: 15px; }
.nav a.active { color: var(--blue-700); font-weight: 700; }
.user-chip { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: var(--ink-700); white-space: nowrap; }
.user-chip__avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--blue-100); color: var(--blue-700); display: grid; place-items: center; font-weight: 800; font-size: 15px; }

/* ---------- 認証レイアウト（ログイン / 登録） ---------- */
.auth { min-height: calc(100vh - var(--header-h)); display: grid; place-items: center; background: var(--bg-soft); padding: 48px 20px; }
.auth__card { width: 100%; max-width: 440px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 40px 34px; }
.auth__logo { text-align: center; margin-bottom: 14px; }
.auth__logo .logo { font-size: 34px; }
.auth__title { text-align: center; font-size: 24px; margin-bottom: 6px; }
.auth__sub { text-align: center; color: var(--ink-500); font-size: 15px; margin-bottom: 26px; }
.auth__foot { text-align: center; margin-top: 22px; font-size: 15px; color: var(--ink-500); }
.auth__foot a { color: var(--blue-700); text-decoration: underline; font-weight: 600; }
.auth__divider { display: flex; align-items: center; gap: 12px; margin: 24px 0 18px; color: var(--ink-300); font-size: 14px; }
.auth__divider::before, .auth__divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.auth__error { background: #fde8e8; border: 1px solid #f5b5b5; color: #b42318; font-size: 14.5px; border-radius: 10px; padding: 12px 14px; margin-bottom: 18px; }
.auth__success { background: #e7f6ec; border: 1px solid #b7e0c4; color: #1b7a3d; font-size: 14.5px; border-radius: 10px; padding: 14px 16px; margin-bottom: 18px; line-height: 1.7; }

/* ---------- 汎用フォーム ---------- */
.form { max-width: 660px; margin: 0 auto; }
.form__row { margin-top: 22px; }
.form__row:first-child { margin-top: 0; }
.form__label { display: block; font-weight: 700; font-size: 16.2px; margin-bottom: 8px; }
.req { display: inline-block; background: #ffe0e0; color: #d23030; font-size: 11.5px; font-weight: 700; border-radius: 4px; padding: 2px 7px; margin-left: 7px; vertical-align: middle; }
.opt { display: inline-block; background: var(--bg-soft); color: var(--ink-500); font-size: 11.5px; font-weight: 700; border-radius: 4px; padding: 2px 7px; margin-left: 7px; vertical-align: middle; border: 1px solid var(--line); }
.form__input, .form__select, .form__textarea { width: 100%; font-family: inherit; font-size: 17px; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink-900); }
.form__input:focus, .form__select:focus, .form__textarea:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px var(--blue-100); }
.form__textarea { resize: vertical; min-height: 120px; line-height: 1.7; }
.form__hint { font-size: 14px; color: var(--ink-500); margin-top: 7px; }
.form__static { font-weight: 700; font-size: 17px; padding: 12px 0; color: var(--ink-900); }
.form__inline { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.form__inline i { font-style: normal; color: var(--ink-500); }
.form__inline .form__select, .form__inline .form__input { width: auto; }
.form__half { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__zip { display: flex; gap: 10px; align-items: center; }
.form__zip .form__input { max-width: 200px; }
.form__actions { display: flex; gap: 14px; margin-top: 34px; }
.form__actions .btn { flex: 1; }
.form__actions--center { justify-content: center; }
.form__actions--center .btn { flex: 0 1 auto; min-width: 220px; }

/* 選択カード（年金種別 / 性別 等） */
.radio-cards { display: flex; gap: 12px; }
.radio-cards--col { flex-direction: column; }
.radio-card { flex: 1; }
.radio-card input { position: absolute; opacity: 0; }
.radio-card span { display: block; text-align: center; padding: 14px; border: 2px solid var(--line); border-radius: var(--radius); font-weight: 700; cursor: pointer; transition: .15s; }
.radio-card input:checked + span { border-color: var(--blue-600); background: var(--blue-100); color: var(--blue-700); }

/* ---------- 登録ステップインジケーター ---------- */
.steps { display: flex; max-width: 640px; margin: 0 auto 36px; position: relative; list-style: none; padding: 0; }
.steps__item { flex: 1; text-align: center; position: relative; font-size: 13px; font-weight: 700; color: var(--ink-300); }
.steps__item:not(:last-child)::after { content: ""; position: absolute; top: 17px; left: 50%; width: 100%; height: 2px; background: var(--line); }
.steps__item--done:not(:last-child)::after { background: var(--green-500); }
.steps__dot { position: relative; z-index: 1; width: 36px; height: 36px; border-radius: 50%; background: #fff; border: 2px solid var(--line); color: var(--ink-300); display: grid; place-items: center; margin: 0 auto 8px; font-weight: 800; font-size: 15px; }
.steps__item--done .steps__dot { background: var(--green-500); border-color: var(--green-500); color: #fff; }
.steps__item--current .steps__dot { background: var(--blue-700); border-color: var(--blue-700); color: #fff; box-shadow: 0 0 0 4px var(--blue-100); }
.steps__item--current { color: var(--blue-700); }

/* ---------- 会員ナビ（タブ） ---------- */
.member-nav { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: var(--header-h); z-index: 50; }
.member-nav__inner { display: flex; gap: 4px; overflow-x: auto; }
.member-nav a { padding: 16px 18px; font-weight: 700; font-size: 15.5px; color: var(--ink-700); border-bottom: 3px solid transparent; white-space: nowrap; }
.member-nav a:hover { color: var(--blue-700); }
.member-nav a.active { color: var(--blue-700); border-bottom-color: var(--blue-700); }
.member-nav a .badge { display: inline-grid; place-items: center; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: #e8442e; color: #fff; font-size: 11px; margin-left: 6px; }

/* ---------- マイページ ---------- */
.member-wrap { background: var(--bg-soft); padding: 36px 0 64px; }
.member-head { margin-bottom: 24px; }
.member-head h1 { font-size: 28px; }
.member-head p { color: var(--ink-500); margin-top: 4px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 28px; }
.card + .card { margin-top: 22px; }
.card__title { font-size: 20px; display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.card__title::before { content: ""; width: 6px; height: 22px; background: var(--green-500); border-radius: 3px; }
.card__title .card__link { margin-left: auto; font-size: 14.5px; font-weight: 600; color: var(--blue-700); text-decoration: underline; }

/* ステータスバナー */
.status-banner { background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); color: #fff; border-radius: var(--radius-lg); padding: 26px 30px; display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; box-shadow: var(--shadow); }
.status-banner__label { font-size: 14px; opacity: .9; }
.status-banner__status { font-size: 27px; font-weight: 800; margin-top: 2px; }
.status-banner__msg { font-size: 14.5px; opacity: .92; margin-top: 8px; }
.status-banner .btn { flex-shrink: 0; }

/* 進捗タイムライン */
.timeline { margin-top: 4px; }
.timeline__item { position: relative; padding: 0 0 22px 40px; }
.timeline__item::before { content: ""; position: absolute; left: 13px; top: 6px; bottom: -2px; width: 2px; background: var(--line); }
.timeline__item:last-child::before { display: none; }
.timeline__dot { position: absolute; left: 4px; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 2px solid var(--line); display: grid; place-items: center; }
.timeline__dot svg { width: 12px; height: 12px; color: #fff; }
.timeline__item--done .timeline__dot { background: var(--green-500); border-color: var(--green-500); }
.timeline__item--done::before { background: var(--green-500); }
.timeline__item--current .timeline__dot { background: var(--blue-700); border-color: var(--blue-700); box-shadow: 0 0 0 4px var(--blue-100); }
.timeline__title { font-weight: 700; font-size: 16px; }
.timeline__item--todo .timeline__title { color: var(--ink-300); font-weight: 600; }
.timeline__meta { font-size: 13.5px; color: var(--ink-500); margin-top: 2px; }
.timeline__item--current .timeline__title { color: var(--blue-700); }

/* 情報サマリ */
.info-list { margin: 0; }
.info-row { display: flex; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-row dt { width: 180px; flex-shrink: 0; color: var(--ink-500); font-size: 14.5px; font-weight: 600; }
.info-row dd { margin: 0; font-weight: 600; font-size: 16px; }

/* 還付シミュレーション結果（マイページ） */
.refund-box { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.refund-box .refund-num { font-size: 40px; font-weight: 800; color: var(--blue-700); }
.refund-note { font-size: 14px; color: var(--ink-500); margin-top: 12px; }

/* ---------- お問い合わせスレッド ---------- */
/* 並びは「上＝入力欄（.thread-compose）／その下に新しいメッセージ→古いメッセージ」 */
.thread { display: flex; flex-direction: column; gap: 16px; }
.thread-compose { margin-bottom: 26px; }
.msg { max-width: 80%; }
.msg__bubble { padding: 14px 18px; border-radius: 16px; font-size: 15.5px; line-height: 1.7; }
.msg__meta { font-size: 12.5px; color: var(--ink-500); margin-top: 6px; }
.msg--user { align-self: flex-end; }
.msg--user .msg__bubble { background: var(--blue-700); color: #fff; border-bottom-right-radius: 4px; }
.msg--user .msg__meta { text-align: right; }
.msg--admin { align-self: flex-start; }
.msg--admin .msg__bubble { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.msg__attach { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 13.5px; color: var(--blue-700); text-decoration: underline; }
.msg__attach svg { width: 14px; height: 14px; }
.thread-lock { background: var(--bg-soft); border: 1px dashed var(--line); border-radius: 10px; padding: 12px 16px; font-size: 14px; color: var(--ink-500); }

/* ---------- カナ入力パッド（現行システム KanaInput を移植） ---------- */
.kanapad__field { background: var(--bg-soft); cursor: default; }
.kanapad__toggle { margin-top: 10px; }
.kanapad__panel { margin-top: 14px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; }
.kanapad__display { display: grid; grid-template-columns: repeat(10, 1fr); gap: 4px; margin-bottom: 14px; }
.kanapad__cell { height: 34px; background: #fff; border: 1px solid var(--line); border-radius: 6px; display: grid; place-items: center; font-weight: 700; font-size: 16px; }
.kanapad__cell--filled { background: #fff7cc; border-color: #f0d44a; }
.kanapad__keys { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.kanapad__key { padding: 12px 0; background: #fff; border: 1.5px solid var(--line); border-radius: 8px; font-weight: 700; font-size: 17px; cursor: pointer; transition: .12s; font-family: inherit; color: var(--ink-900); }
.kanapad__key:hover { background: var(--blue-700); color: #fff; border-color: var(--blue-700); }
.kanapad__key--empty { visibility: hidden; }
.kanapad__key--fn { background: var(--blue-050); font-size: 14px; color: var(--ink-700); }

/* ---------- 「その他」自由入力 ---------- */
.other-input { margin-top: 10px; }

/* ---------- 郵便番号→住所 変換フィールド ---------- */
.form__convert-label { font-size: 13.5px; color: var(--ink-500); margin-bottom: 8px; }
.field-title { font-weight: 700; font-size: 14px; color: var(--ink-700); margin: 12px 0 6px; }
.field-title:first-child { margin-top: 0; }
.form__input[readonly] { background: var(--bg-soft); color: var(--ink-700); cursor: default; }

/* ---------- 同意チェック ---------- */
.consent { display: flex; gap: 12px; align-items: flex-start; background: var(--blue-050); border: 1px solid var(--blue-100); border-radius: var(--radius); padding: 16px 18px; margin-top: 26px; }
.consent input { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; accent-color: var(--blue-700); }
.consent label { font-weight: 600; font-size: 15.5px; line-height: 1.6; }

/* ---------- トグルスイッチ（2段階認証） ---------- */
.switch { display: inline-flex; align-items: center; gap: 12px; cursor: pointer; }
.switch input { position: absolute; opacity: 0; }
.switch__track { width: 52px; height: 30px; border-radius: 999px; background: var(--ink-300); position: relative; transition: .2s; flex-shrink: 0; }
.switch__track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%; background: #fff; transition: .2s; }
.switch input:checked + .switch__track { background: var(--green-500); }
.switch input:checked + .switch__track::after { transform: translateX(22px); }
.switch__state { font-weight: 700; color: var(--ink-500); }
.switch input:checked ~ .switch__state { color: var(--green-600); }

/* ---------- セグメントタブ（変更画面のサブナビ） ---------- */
.seg-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.seg-tabs a { padding: 10px 18px; border-radius: var(--radius-pill); border: 1.5px solid var(--line); background: #fff; font-weight: 700; font-size: 14.5px; color: var(--ink-700); }
.seg-tabs a:hover { border-color: var(--blue-500); color: var(--blue-700); }
.seg-tabs a.active { background: var(--blue-700); border-color: var(--blue-700); color: #fff; }

/* ---------- 情報サマリ 左ラベル広め ---------- */
.info-list--wide .info-row dt { width: 270px; }

/* ---------- ステータスパターン一覧（マイページ・モック確認用） ---------- */
.status-variants__note { background: #fff7e6; border: 1px solid #f5d98a; color: #8a6d1b; border-radius: 10px; padding: 12px 16px; font-size: 14px; margin-bottom: 18px; }
.status-variant { margin-bottom: 14px; }
.status-variant__tag { font-size: 13px; font-weight: 700; color: var(--ink-500); margin-bottom: 6px; }

/* ---------- モーダル（提出書類確認 / 支給金額確認） ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; }
.modal.open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(15,27,51,.55); }
.modal__dialog { position: relative; max-width: 660px; margin: 6vh auto; width: calc(100% - 32px); background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); max-height: 88vh; display: flex; flex-direction: column; }
.modal__head { padding: 18px 24px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.modal__head h3 { font-size: 19px; }
.modal__close { background: none; border: none; font-size: 26px; cursor: pointer; color: var(--ink-500); line-height: 1; padding: 0 4px; }
.modal__body { padding: 20px 24px; overflow-y: auto; }
.modal__foot { padding: 16px 24px; border-top: 1px solid var(--line); display: flex; gap: 12px; justify-content: flex-end; align-items: center; flex-wrap: wrap; }
.modal__caution { font-size: 13px; color: var(--ink-500); margin-right: auto; }

.checklist__group { margin-bottom: 14px; }
.checklist__group h4 { font-size: 15px; color: var(--blue-700); margin-bottom: 6px; }
.checklist__item { display: flex; gap: 10px; align-items: flex-start; padding: 9px 0; border-top: 1px solid var(--bg-soft); }
.checklist__item input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; accent-color: var(--blue-700); }
.checklist__item label { font-size: 14px; line-height: 1.6; cursor: pointer; }

.pay-list { font-size: 16px; }
.pay-list .info-row dt { width: 200px; }
.pay-list .info-row dd { font-weight: 700; }
.pay-list .info-row--total dt, .pay-list .info-row--total dd { font-size: 19px; color: var(--blue-700); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
}
@media (max-width: 1080px) {
  .nav, .header .lang.pc { display: none; }
  .hamburger { display: block; }
  .hero { background: linear-gradient(180deg, rgba(8,52,150,.92), rgba(11,87,208,.78)), #0b57d0 url("../img/hero.png") center top / cover no-repeat; }
  .hero__inner { grid-template-columns: 1fr; gap: 26px; padding: 44px 0 56px; }
  .hero h1 strong { font-size: 40.8px; }
  .hero__features { flex-direction: column; align-items: stretch; margin-top: 8px; }
  .feature-card { min-width: 0; width: auto; }
  /* SP：ヒーロー下のラベルと中央4ポイントの重なりを解消（マイナスマージン解除） */
  .stats { margin-top: 28px; }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .trust__grid { grid-template-columns: 1fr; }
  .flow__grid { grid-template-columns: 1fr; }
  .flow__arrow { display: none; }
  .flow__title-lg { font-size: 31.2px; }
  .voice__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .price__grid { grid-template-columns: 1fr; }
  .cta__grid { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 0; }
  .section__title { font-size: 31.2px; }
  /* mobile nav drawer */
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 8px 20px 16px; box-shadow: var(--shadow);
  }
  .nav.open a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 18px; }
}
/* タブレット：ヒーローエリアの左右余白を確保 */
@media (min-width: 561px) and (max-width: 1080px) {
  .hero__inner { padding-left: 16px; padding-right: 16px; }
}
@media (max-width: 560px) {
  .sp-only { display: block; }
  .container { padding: 0 18px; }
  /* SP：ヒーローの上下に余白を確保し、左右も画面端に密着しないようにする */
  .hero__inner { padding: 48px 18px 52px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .cta__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero h1 strong { font-size: 32.4px; }
  .section__title { font-size: 27.6px; }
  .sim__form { padding: 8px 18px 22px; }
  .sim__term { gap: 6px; }
  .sim select { min-width: 64px; }
  .signup__card { padding: 22px; }
  .sim__main .price, .price__amount, .stat .num { font-size: 38.4px; }
}

/* ---------- 会員系画面 レスポンシブ ---------- */
@media (max-width: 1080px) {
  .user-chip { display: none; }
  .member-nav { top: 0; }
}
@media (max-width: 560px) {
  .auth__card { padding: 30px 22px; }
  .form__half { grid-template-columns: 1fr; }
  .form__actions { flex-direction: column-reverse; }
  .status-banner { padding: 22px; }
  .status-banner .btn { width: 100%; }
  .info-row { flex-direction: column; gap: 2px; }
  .info-row dt { width: auto; }
  .msg { max-width: 92%; }
  .card { padding: 22px 18px; }
  .kanapad__cell { height: 28px; font-size: 13px; }
  .kanapad__key { font-size: 15px; padding: 10px 0; }
  .kanapad__panel { padding: 12px; }
}

/* タイムライン内の請求書印刷ボタン（登録完了 行の右） */
.timeline__title { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.timeline__print { margin-left: auto; }

/* ===== 公開ヘッダー：言語切替＋登録ボタンを一段下げる（横はみ出し対策） ===== */
.header--public .header__inner {
  flex-wrap: wrap;
  height: auto;
  min-height: var(--header-h);
  padding: 8px 20px;
  row-gap: 8px;
}
@media (max-width: 560px) {
  .header--public .header__inner { padding-left: 18px; padding-right: 18px; }
}
.header--public .logo { order: 1; }
.header--public .nav { order: 2; }
.header--public .hamburger { order: 2; }
.header--public .header__right {
  order: 3;
  flex-basis: 100%;
  justify-content: flex-end;
}
/* ヘッダーの「無料で登録する」ボタンを約1.2倍（btn-sm 15px/9px16px → 18px/11px19px） */
.header--public .header__right .btn-green {
  font-size: 18px;
  padding: 11px 19px;
}
.lang-select { max-width: 170px; }
/* モバイル：ナビのドロワーは2段ヘッダーの下端から開く */
@media (max-width: 1080px) {
  .header--public .nav.open { top: 100%; }
}
