/* ============================================================
   nucca.jp — 現行デザイン再現版
   色はすべて、いただいた画面録画から実測した値です。
   変更する場合はこの :root だけを編集してください。
   ============================================================ */

:root {
  /* --- 実測カラー --- */
  --blue:        #2ea3f2;   /* トップバー・リンク・ボタン・見出し（Diviのアクセント） */
  --blue-dk:     #1b8fdd;   /* hover */
  --periwinkle:  #8ba6dd;   /* 「Call 847-272-1000」ボックス */
  --green:       #4ce799;   /* セクション見出しの丸アイコン */
  --card:        #f3f3f3;   /* THE DIFFERENCE のカード背景 */
  --footer:      #3e3e3e;   /* フッター上段 */
  --footer-dk:   #2a2a2a;   /* フッター最下段 */
  --black:       #000000;   /* Success Story セクション */

  --heading:     #333333;
  --text:        #666666;
  --text-lt:     #999999;
  --bg:          #ffffff;
  --line:        #e4e4e4;

  /* --- タイポグラフィ ---
     現行サイトは Divi 標準の Open Sans です。Webフォントを読み込まない
     ぶん軽くなりますが、端末に無い場合は下のフォールバックになります。 */
  --font: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
          "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;

  --wrap: 1080px;
  --gutter: 20px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.7em;
  color: var(--text);
  background: var(--bg);
}
img, iframe, video { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dk); }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
p { margin: 0 0 1em; }

h1, h2, h3, h4 { font-weight: 300; color: var(--heading); line-height: 1.25em; margin: 0 0 .5em; }
h1 { font-size: 30px; }
h2 { font-size: 26px; }
h3 { font-size: 18px; font-weight: 700; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: 54px 0; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; z-index: 99; background: #fff; padding: 10px 16px; }

/* ---------- トップバー（青帯） ---------- */
.topbar { background: var(--blue); color: #fff; font-size: 12px; }
.topbar .wrap { display: flex; gap: 18px; align-items: center; min-height: 30px; }
.topbar a { color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; opacity: .8; }
.topbar svg { width: 13px; height: 13px; fill: currentColor; flex: none; }

/* ---------- ヘッダー ---------- */
.site-header { background: #fff; box-shadow: 0 1px 0 rgba(0,0,0,.06); position: relative; z-index: 40; }
.site-header .wrap { display: flex; align-items: center; min-height: 46px; gap: 14px; }
.brand { margin-right: auto; display: flex; align-items: center; padding: 6px 0; }
.brand img { height: 30px; width: auto; }
.nav-toggle { margin-left: auto; background: none; border: 1px solid var(--line);
  padding: 6px 11px; font: inherit; font-size: 13px; color: var(--text); cursor: pointer; }
.nav { display: none; }
.nav ul { list-style: none; margin: 0; padding: 0; }
.nav > ul > li > a, .nav .sub a {
  display: block; padding: 10px 0; font-size: 14px; color: var(--text);
  border-bottom: 1px solid var(--line);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--blue); }
.nav.is-open { display: block; width: 100%; padding-bottom: 10px; }
.search-btn { background: none; border: 0; padding: 6px; cursor: pointer; color: var(--text-lt); }
.search-btn svg { width: 15px; height: 15px; fill: currentColor; }

@media (min-width: 981px) {
  .nav-toggle { display: none; }
  .nav { display: block !important; }
  .nav > ul { display: flex; gap: 22px; align-items: center; }
  .nav > ul > li { position: relative; }
  .nav > ul > li > a { padding: 14px 0; border: 0; }
  .sub { display: none; position: absolute; left: -18px; top: 100%; min-width: 230px;
    background: #fff; border-top: 3px solid var(--blue);
    box-shadow: 0 2px 10px rgba(0,0,0,.14); padding: 8px 18px; z-index: 50; }
  .has-sub:hover .sub, .has-sub:focus-within .sub { display: block; }
  .sub a { border-bottom: 1px solid var(--line); }
  .sub li:last-child a { border-bottom: 0; }
  .has-sub > a::after { content: " \25be"; font-size: 10px; color: var(--text-lt); }
}
@media (max-width: 980px) { .sub { padding-left: 16px; } }

/* ---------- ヒーロー ---------- */
.hero { position: relative; min-height: 260px; background: #eef1f3 center/cover no-repeat;
  display: grid; place-items: center; padding: 80px 20px; }
.hero h1 { font-size: clamp(28px, 5vw, 44px); font-weight: 700; color: #4a4a4a;
  text-align: center; margin: 0; text-shadow: 0 1px 3px rgba(255,255,255,.6); }

/* ---------- セクション見出し（緑の丸 + 細字） ---------- */
.sec-head { display: flex; align-items: center; gap: 14px; margin-bottom: 34px; }
.sec-head::before { content: ""; flex: none; width: 17px; height: 17px;
  border-radius: 50%; background: var(--green); }
.sec-head h2 { font-size: 26px; font-weight: 300; margin: 0; color: #555; }
.sec-head--center { justify-content: center; }

/* ---------- 4カラムのカード（THE DIFFERENCE） ---------- */
.blurbs { display: grid; gap: 20px; }
@media (min-width: 620px) { .blurbs { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 981px) { .blurbs { grid-template-columns: repeat(4, 1fr); } }
.blurb { background: var(--card); padding: 30px 24px 32px; border-radius: 4px;
         display: flex; flex-direction: column; }
.blurb .icon { display: block; width: 30px; height: 30px; margin-bottom: 18px;
              fill: none; stroke: var(--blue); stroke-width: 1.6;
              stroke-linecap: round; stroke-linejoin: round; }
.blurb h3 { font-size: 17px; font-weight: 700; color: var(--heading); margin-bottom: 12px;
            line-height: 1.4; }
.blurb p { font-size: 13px; line-height: 1.75em; margin: 0; }
.blurbs { align-items: stretch; }

/* ---------- 2カラム（テキスト + 埋め込み） ---------- */
.split { display: grid; gap: 30px; align-items: start; }
@media (min-width: 981px) { .split { grid-template-columns: 1fr 1.15fr; gap: 40px; } }
.split h2 { color: var(--blue); font-size: 26px; font-weight: 700; line-height: 1.3em; }
.split h3 { font-size: 18px; font-weight: 400; color: #555; margin-top: 1.4em; }

/* ---------- ボタン ---------- */
.btn { display: inline-block; padding: 8px 20px; font-size: 13px;
  background: var(--blue); color: #fff; border: 1px solid var(--blue);
  border-radius: 3px; cursor: pointer; font-family: inherit; }
.btn:hover { background: var(--blue-dk); color: #fff; }
.btn--outline { background: transparent; color: var(--blue); }
.btn--outline:hover { background: var(--blue); color: #fff; }
.btn--white { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--white:hover { background: rgba(255,255,255,.15); color: #fff; }

/* ---------- Success Story（黒帯のスライダー） ---------- */
.slider { background: var(--black); padding: 60px 0; color: #fff; text-align: center; position: relative; }
.slider h2 { color: #dcdcdc; font-weight: 300; font-size: 26px; margin-bottom: 26px; }
.slide { display: none; }
.slide.is-on { display: block; }
.slide .media { max-width: 480px; margin: 0 auto 22px; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: rgba(255,255,255,.55);
  font-size: 26px; padding: 10px 14px; cursor: pointer; line-height: 1; }
.slider-arrow:hover { color: #fff; }
.slider-arrow.prev { left: 4px; }
.slider-arrow.next { right: 4px; }
.dots { display: flex; gap: 9px; justify-content: center; margin-top: 26px; }
.dots button { width: 7px; height: 7px; border-radius: 50%; border: 0; padding: 0;
  background: rgba(255,255,255,.35); cursor: pointer; }
.dots button[aria-current="true"] { background: #fff; }

/* ---------- Media / 3カラム ---------- */
.cols3 { display: grid; gap: 26px; }
@media (min-width: 700px) { .cols3 { grid-template-columns: repeat(3, 1fr); } }
.col-title { color: var(--blue); font-size: 14px; margin-bottom: 12px; }

/* ---------- Location ---------- */
.loc-row { display: grid; gap: 24px; }
@media (min-width: 700px) { .loc-row { grid-template-columns: repeat(2, 1fr); max-width: 620px; } }
.loc { text-align: center; }
.loc img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain;
  border: 1px solid var(--line); margin-bottom: 14px; background: #fff; }

/* ---------- CTA（薄い青紫のボックス） ---------- */
.cta-box { background: var(--periwinkle); color: #fff; text-align: center;
  padding: 30px 24px; max-width: 340px; }
.cta-box p { color: #fff; font-size: 15px; margin-bottom: 18px; }

/* ---------- 埋め込み（クリックまで読み込まない） ---------- */
.yt, .embed { position: relative; aspect-ratio: 16/9; width: 100%;
  border: 0; padding: 0; margin: 0; cursor: pointer; overflow: hidden;
  background: #111 center/cover no-repeat; display: grid; place-items: center; }
.yt::after { content: ""; position: absolute; inset: 0; margin: auto;
  width: 60px; height: 42px; border-radius: 10px; background: rgba(0,0,0,.7); }
.yt::before { content: ""; position: absolute; inset: 0; margin: auto; z-index: 2;
  width: 0; height: 0; border-style: solid; border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent #fff; transform: translateX(3px); }
.yt:hover::after { background: #c00; }
.yt iframe, .embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.embed { background: #f7f7f7; border: 1px solid var(--line); }
.embed-load { background: var(--blue); color: #fff; border: 0; padding: 10px 22px;
  font: inherit; font-size: 13px; cursor: pointer; border-radius: 3px; }
.embed-load:hover { background: var(--blue-dk); }
.embed--tall { aspect-ratio: 3/4; }

/* ---------- 汎用 ---------- */
.fineprint { font-size: 12px; color: var(--text-lt); }
.plainlist { list-style: none; padding: 0; margin: 0 0 1.4em; }
.plainlist li { padding: 5px 0; border-bottom: 1px solid var(--line); }
.notice { background: #f7f9fb; border-left: 3px solid var(--blue); padding: 14px 18px; font-size: 13px; }
.notice p:last-child { margin-bottom: 0; }
.portrait { width: 100%; }
.quote { border-bottom: 1px solid var(--line); padding-bottom: 22px; margin-bottom: 26px; }
.quote h3 { color: var(--blue); font-size: 17px; font-weight: 400; }
.attrib { font-weight: 700; color: var(--heading); }
.grid { display: grid; gap: 26px; }
@media (min-width: 700px) { .grid--2 { grid-template-columns: repeat(2,1fr); }
  .grid--3 { grid-template-columns: repeat(3,1fr); } }

/* ---------- フッター ---------- */
.site-footer { background: var(--footer); color: #a9a9a9; font-size: 13px; padding-top: 44px; }
.site-footer .cols { display: grid; gap: 30px; padding-bottom: 34px; }
@media (min-width: 700px) { .site-footer .cols { grid-template-columns: repeat(2, 1fr); } }
.site-footer h3 { color: var(--blue); font-size: 15px; font-weight: 400; margin-bottom: 14px; }
.site-footer p { margin-bottom: .6em; color: #a9a9a9; }
.site-footer a { color: var(--blue); }
.footer-nav { border-top: 1px solid rgba(255,255,255,.08); padding: 14px 0; }
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 20px; }
.footer-nav a { font-size: 13px; }
.footer-bottom { background: var(--footer-dk); padding: 14px 0; font-size: 12px; color: #8f8f8f; }
.footer-bottom .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }

/* ---- About US ---- */
.split--bio { grid-template-columns: 1fr; }
@media (min-width: 981px) { .split--bio { grid-template-columns: 1.7fr 1fr; gap: 40px; } }
.bio-media { display: grid; gap: 18px; align-content: start; }
.bio-media img { width: 100%; height: auto; }
.rule-blue { border: 0; border-top: 2px solid var(--blue); margin: 0; max-width: 62%; }
@media (max-width: 980px) { .rule-blue { max-width: 100%; } }
h4 { font-size: 15px; font-weight: 700; color: var(--heading); margin: 1.6em 0 .5em; }
.dotlist { list-style: none; padding: 0; margin: 0 0 1.2em; }
.dotlist li { padding: 2px 0 2px 1.1em; position: relative; }
.dotlist li::before { content: "\30fb"; position: absolute; left: -.15em; color: var(--text-lt); }
.logos { list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 34px; align-items: center; }
@media (min-width: 700px) { .logos { grid-template-columns: repeat(3, 1fr); } }
.logos img { width: 100%; height: 74px; object-fit: contain; object-position: center; }
.logos a { display: block; }

/* ---- お問い合わせフォーム ---- */
.form { max-width: 100%; }
.field { margin-bottom: 18px; }
.field-row { display: grid; gap: 0 18px; }
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-weight: 700; font-size: 13px; margin-bottom: 5px; color: var(--heading); }
.field .hint { font-weight: 400; color: var(--text-lt); }
.field input, .field select, .field textarea {
  width: 100%; padding: 10px 12px; font: inherit; font-size: 14px;
  border: 1px solid #ccd4da; border-radius: 3px; background: #fff; color: var(--heading);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); }
.field textarea { min-height: 110px; resize: vertical; }
.field input:invalid:not(:placeholder-shown) { border-color: #d93025; }
.req { color: #d93025; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: 13px; margin: 12px 0 0; }
.form-status.is-busy { color: var(--text-lt); }
.form-status.is-error { color: #d93025; }
.form-done { background: #eef7ff; border-left: 3px solid var(--blue); padding: 20px 24px; }
.form-done h3 { color: var(--blue); margin-bottom: .4em; }
.form-done p { margin: 0; }

/* ---------- 認定ドクター一覧と分布図 ---------- */
.nmap-wrap { margin: 2rem 0 2.5rem; }
.nmap { display: block; width: 100%; height: auto; }
.nmap-neighbour { fill: #f3f3f3; stroke: var(--line); stroke-width: 1; }
.nmap-state     { fill: #fafafa; stroke: var(--line); stroke-width: 1; }
.nmap-leader    { stroke: #b9b9b9; stroke-width: 1; }
.nmap-dot       { fill: #b9b9b9; }
.nmap-pin       { fill: var(--blue); transition: fill .15s; }
.nmap-num       { fill: #fff; font-size: 12px; font-weight: 700; text-anchor: middle;
                  font-family: var(--font); pointer-events: none; }
.nmap-pins a:hover .nmap-pin, .nmap-pins a:focus .nmap-pin { fill: var(--blue-dk); }
.nmap-pins a:focus { outline: none; }
.nmap-pins a:focus-visible .nmap-pin { stroke: var(--heading); stroke-width: 2; }
.nmap-wrap figcaption { margin-top: 10px; }

.doclist { list-style: none; padding: 0; margin: 0; display: grid; gap: 22px; }
@media (min-width: 700px) { .doclist { grid-template-columns: repeat(2, 1fr); gap: 22px 30px; } }
.doc { display: flex; gap: 14px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.doc:target { background: #eef7ff; border-bottom-color: var(--blue); }
.doc-n { flex: 0 0 26px; height: 26px; border-radius: 50%; background: var(--blue);
         color: #fff; font-size: 12px; font-weight: 700; line-height: 26px;
         text-align: center; margin-top: 2px; }
.doc h3 { font-size: 16px; color: var(--heading); margin-bottom: .2em; }
.doc p { margin: 0 0 .3em; font-size: 14px; }
.doc-practice { color: var(--heading); }
.doc-addr { color: var(--text-lt); }

/* 自院オフィスのピンと凡例 */
.nmap-pin--ours { fill: var(--green); }
.nmap-pins a:hover .nmap-pin--ours, .nmap-pins a:focus .nmap-pin--ours { fill: #2fce7d; }
.nmap-key { display: inline-block; width: 11px; height: 11px; border-radius: 50%;
            background: var(--blue); vertical-align: -1px; margin-right: 3px; }
.nmap-key--ours { background: var(--green); }
.doc--ours .doc-n { background: var(--green); }
.doclist--ours { margin-bottom: 0; }
.nmap-inset-box { fill: none; stroke: var(--line); stroke-width: 1; }
.nmap-inset-label { fill: var(--text-lt); font-size: 11px; font-family: var(--font); }
.tag { display: inline-block; font-size: 11px; font-weight: 400; letter-spacing: .04em;
       text-transform: uppercase; color: #fff; background: var(--blue);
       padding: 2px 8px; border-radius: 10px; vertical-align: 2px; margin-left: 6px; }
h3 .tag { vertical-align: 1px; }
.nmap-wrap--header { margin: 1.5rem 0 0; }
.nmap-label { fill: var(--heading); font-size: 15px; font-weight: 700; font-family: var(--font); }
.nmap-wrap--header { margin: 1.5rem 0 0; }
.nmap-wrap--narrow { max-width: 420px; }
.nmap-label { fill: var(--heading); font-size: 15px; font-weight: 700; font-family: var(--font); }
.nmap-label--sm { font-size: 11px; }

/* ---------- アクセス（1ページ集約） ---------- */
.locmap { display: block; border: 1px solid var(--line); border-radius: 4px;
          padding: 10px; text-decoration: none; transition: border-color .15s; }
.locmap:hover { border-color: var(--blue); }
.locmap .locmap-svg { height: 190px; width: 100%; }
.locmap-cap { display: block; margin-top: 8px; font-size: 13px; font-weight: 700;
              color: var(--heading); text-align: center; }
.locmap:hover .locmap-cap { color: var(--blue); }
.sec-title { font-size: 30px; }
#usa, #japan { scroll-margin-top: 20px; }

/* ---------- アクセスページの国別マップ ---------- */
:root { --map-land: #c9cdd6; --map-on: #ec1e63; --map-wm: #d7d7d7; }
.locmap-svg { display: block; width: 100%; height: auto; }
.locmap-off { fill: var(--map-land); stroke: #fff; stroke-width: 1.2; }
.locmap-on  { fill: var(--map-on);   stroke: #fff; stroke-width: 1.2; }
.locmap-wm  { fill: var(--map-wm); font-family: var(--font); font-weight: 800;
              letter-spacing: .02em; }
.locmap-pin      { fill: #fff; stroke: #b3123f; stroke-width: 1.6; }
.locmap-pin-hole { fill: #b3123f; }
.locmap-name { fill: #fff; font-family: var(--font); font-weight: 800; font-size: 21px;
               paint-order: stroke; stroke: #b3123f; stroke-width: 5; stroke-linejoin: round; }
.locmap-full { margin: 1.5rem 0 2rem; }
/* max-height は SVG の箱を潰して中身を縮めてしまうので使わない */
/* ラベルは縁取りをやめ、州の隣に大きく置く */
.locmap-name { fill: var(--map-on); font-family: var(--font); font-weight: 800;
               stroke: none; paint-order: normal; }
.locmap-pin  { fill: #fff; stroke: #a30f39; stroke-width: 3.5; }
.locmap-pin-hole { display: none; }
/* 本院と巡回オフィスを色で分ける */
:root { --map-main: #1f7ac0; --map-main-dk: #16598d; }
.locmap-on--main { fill: var(--map-main); }
.locmap-name--main { fill: var(--map-main); }
.locmap-pin--main { stroke: var(--map-main-dk); }
.locmap-full { margin: 1.2rem 0 1.6rem; }
.maplegend { display: flex; gap: 18px; font-size: 13px; color: var(--text);
             margin: -.6rem 0 1.6rem; }
.maplegend span::before { content: ""; display: inline-block; width: 11px; height: 11px;
             border-radius: 2px; margin-right: 6px; vertical-align: -1px; }
.maplegend .lg-main::before  { background: var(--map-main); }
.maplegend .lg-visit::before { background: var(--map-on); }
.section--tight { padding-top: 28px; padding-bottom: 10px; }
.section--tight h1 { margin-bottom: 1rem; }
.locmaps { margin-top: 0; }
.locmap-water { fill: #fff; stroke: #fff; stroke-width: 1; }

/* Japan セクション: 左=地図 / 右=オフィス情報＋予約。地図の高さは右側に合わせる */
.jpsplit { align-items: stretch; }
.locmap-col { position: relative; margin: 0; min-height: 300px; }
.locmap-col .locmap-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
@media (max-width: 699px) {
  .locmap-col { position: static; height: auto; }
  .locmap-col .locmap-svg { position: static; height: auto; }
}
.card--fill { background: var(--card); padding: 24px 22px 26px; border-radius: 4px; }
.card--fill h3 { color: var(--heading); margin-bottom: .5em; }
.steps { margin-top: 1rem; }
.nmap-water { fill: #fff; stroke: #fff; stroke-width: 1; }

/* 「Check Your Unique Misalignment」の誘導ボックス（現行サイトの配色を踏襲） */
.promo { background: #6fbdf2; color: #fff; text-align: center; padding: 40px 28px;
         border-radius: 4px; }
.promo h2 { color: #fff; margin-bottom: 1rem; }
.promo p { margin: 0; }

/* トップページ: ツールのデモ動画（クリックで /how_does_it_work へ） */
.vidcard { position: relative; display: block; overflow: hidden; border-radius: 4px;
           background: #1c1c1c; text-decoration: none; aspect-ratio: 1564 / 686; }
.vidcard-video { position: absolute; inset: 0; width: 100%; height: 100%;
                 object-fit: cover; display: block; }
.vidcard-btn { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
               background: rgba(255,255,255,.94); color: var(--blue); font-weight: 700;
               font-size: 15px; padding: 12px 30px; border-radius: 3px;
               box-shadow: 0 2px 14px rgba(0,0,0,.25); transition: background .15s; }
.vidcard:hover .vidcard-btn { background: #fff; color: var(--blue-dk); }
/* 動画を全幅で見せる（左右の余白なし） */
.section--flush { padding-left: 0; padding-right: 0; }
/* aspect-ratio と max-height を併用すると幅が縮むので、高さを直接指定して
   object-fit: cover で切り抜く。これで常に全幅になる。 */
.vidcard--full { border-radius: 0; aspect-ratio: auto;
                 height: clamp(200px, 34vw, 440px); }
.vidcard--full .vidcard-btn { font-size: 17px; padding: 14px 38px; }

/* WHAT WE DO */
.dolist { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px 34px; }
@media (min-width: 700px) { .dolist { grid-template-columns: repeat(2, 1fr); } }
.dolist li { position: relative; padding: 14px 0 14px 34px; font-size: 15px;
             color: var(--heading); border-bottom: 1px solid var(--line); }
.dolist li::before { content: ""; position: absolute; left: 4px; top: 19px;
             width: 9px; height: 9px; border-radius: 50%; background: var(--green); }



/* ---------- 言語切り替え / 日本語版のご案内 ---------- */
.langswitch { font-size: 12px; font-weight: 700; color: var(--blue);
              text-decoration: none; padding: 6px 12px; border: 1px solid var(--line);
              border-radius: 20px; white-space: nowrap; margin-left: auto; }
.langswitch:hover { border-color: var(--blue); background: #f2f9ff; }
.langhint { position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%);
            z-index: 190; display: flex; align-items: center; gap: 14px;
            background: #fff; border: 1px solid var(--line); border-radius: 6px;
            padding: 12px 14px 12px 20px; font-size: 13px; color: var(--heading);
            box-shadow: 0 6px 24px rgba(0,0,0,.16); max-width: calc(100% - 24px); }
.langhint .btn { padding: 7px 16px; font-size: 12px; }
.langhint-close { background: none; border: 0; font-size: 20px; line-height: 1;
                  color: var(--text-lt); cursor: pointer; padding: 0 4px; }
@media (max-width: 620px) { .langhint { flex-wrap: wrap; gap: 10px; } }
