/* robo_col_white.css - Apple-like white base (derived from faauto_style.css) */
:root{
  --bg:#ffffff;
  --bg2:#f6f7fb;
  --txt:#0b1220;
  --muted:#5c6573;
  --line:rgba(15,20,30,.10);
  --line2:rgba(15,20,30,.14);
  --shadow: 0 12px 30px rgba(0,0,0,.10);
  --shadow2: 0 18px 50px rgba(0,0,0,.14);
  --radius-lg: 20px;
  --radius: 16px;
  --navH: 72px;
  --navH-small: 56px;
  --navAlpha: .72;
  --navAlphaSolid: .92;
  --acc1:#06c;          /* Apple-ish blue */
  --acc2:#41b6ff;       /* cyan */
  --chip:#f1f3f7;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--txt);
  background:linear-gradient(180deg,var(--bg),var(--bg2));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Links (site wide) */
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:none; }

/* Fixed Global Nav */
.g-nav{
  position:fixed; inset-inline:0; top:0; z-index:100;
  height:var(--navH);
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,var(--navAlpha));
  border-bottom:1px solid var(--line);
  backdrop-filter:saturate(140%) blur(10px);
  transition: height .28s ease, background-color .28s ease, box-shadow .28s ease;
}
.g-nav.shrink{
  height:var(--navH-small);
  background: rgba(255,255,255,var(--navAlphaSolid));
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}
.g-wrap{
  width:100%;
  max-width:min(1380px, 96vw);
  display:flex; align-items:center; justify-content:space-between;
  gap:20px;
  padding:0 10px;
  flex-wrap:nowrap;
}
.brand{
  display:flex; align-items:center; gap:10px;
  color:#0b1220;
  text-decoration:none;
  white-space:nowrap;
  min-width:0;
}
.brand img{ height:28px; width:auto; }
.brand .name{
  font-weight:800;
  font-size:clamp(12px,1.9vw,16px);
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  max-width: 56vw;
}

.nav-right{ display:flex; align-items:center; gap:18px; flex-wrap:nowrap; }
.nav-links{ display:flex; align-items:center; gap: clamp(18px, 3.2vw, 32px); flex-wrap:nowrap; }
.nav-links > a, .nav-links > .dd > a{
  font-weight:800;
  font-size:13px;
  padding:8px 10px;
  border-radius:10px;
  border:1px solid transparent;
  color:#0b1220;
  position:relative;
  overflow:hidden;
}
.nav-links > a:hover, .nav-links > .dd:hover > a{
  border-color: var(--line);
  background: rgba(0,0,0,.03);
}

/* Dropdown */
.dd{ position:relative }
.dd-menu{
  position:absolute; top: calc(100% + 8px); left:0; min-width:240px;
  background: rgba(255,255,255,.96);
  border:1px solid var(--line2);
  border-radius:14px;
  padding:8px;
  display:none;
  box-shadow: var(--shadow);
}
.dd.open .dd-menu{ display:block }
.dd-menu a{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  font-weight:800;
  color:#0b1220;
  position:relative;
  overflow:hidden;
}
.dd-menu a:hover{ background: rgba(0,0,0,.04); }

/* Language */
.lang-switch{ display:flex; gap:8px }
.lang-switch a{
  border:1px solid var(--line2);
  padding:6px 10px;
  border-radius:10px;
  font-weight:800;
  color:#0b1220;
  background: rgba(255,255,255,.65);
}
.lang-switch a:hover{ background: rgba(0,0,0,.03); }

/* CTA */
.nav-cta{
  display:inline-flex; align-items:center; justify-content:center;
  gap:.6em;
  padding:10px 12px;
  border-radius:14px;
  background: linear-gradient(135deg,var(--acc1),var(--acc2));
  color:#fff;
  font-weight:900;
  box-shadow: var(--shadow);
  border:1px solid rgba(0,0,0,.06);
}
.nav-cta:hover{ filter:brightness(1.03); }
.tel-cta{ display:none; }

/* SP toggle */
.sp-toggle{ display:none; }
.sp-toggle button{
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line2);
  color: #0b1220;
  padding: 8px 10px;
  border-radius: 12px;
  font-weight: 900;
  white-space:nowrap;
}

/* Drawer */
.drawer{ display:none }
@media (max-width: 960px){
  .nav-links, .lang-switch, .nav-cta{ display:none; }
  .tel-cta{ display:inline-flex; }
  .sp-toggle{ display:inline-flex; align-items:center; gap:6px; }
  .drawer{
    position:fixed; inset:0;
    background:rgba(0,0,0,.40);
    z-index:90;
    display:none;
  }
  .drawer.show{ display:block; }
  .drawer-panel{
    position:fixed;
    top: calc(var(--navH-small) + 8px);
    right:0;
    height: calc(100% - (var(--navH-small) + 8px));
    width:min(86vw, 340px);
    background: rgba(255,255,255,.96);
    border-left:1px solid var(--line);
    padding: 12px 14px;
    overflow:auto;
    box-shadow: -20px 0 40px rgba(0,0,0,.20);
    transform: translateX(100%);
    transition: transform .28s ease;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: max(14px, env(safe-area-inset-bottom));
  }
  .drawer.show .drawer-panel{ transform: translateX(0); }

  .drawer .close{
    position: sticky;
    top: 0;
    padding: 6px 0 10px;
    margin-bottom: 10px;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.82));
    z-index: 1;
    text-align: right;
  }
  .drawer .close button{
    border: 1px solid var(--line2);
    background: rgba(0,0,0,.02);
    color: #0b1220;
    padding: 8px 10px;
    border-radius: 12px;
    font-weight: 900;
  }

  .drawer a{ display:block; padding:14px 12px; border-bottom:1px solid rgba(0,0,0,.08); color:#0b1220; }
  .drawer .group-title{ margin:10px 4px 2px; color:#0b1220; font-weight:900; font-size:13px; opacity:.75; }

  /* Accordion head: link + chevron */
  .acc-head{ display:flex; align-items:center; justify-content:space-between; gap:8px; margin: 10px 0 2px; }
  .acc-link{
    display:inline-flex; align-items:center;
    padding: 12px 10px;
    border:1px solid rgba(0,0,0,.10);
    border-radius:14px;
    background: rgba(0,0,0,.02);
    font-weight:900;
    flex: 1 1 auto;
  }
  .acc-btn{
    width: 42px; height: 42px;
    display:inline-flex; align-items:center; justify-content:center;
    border:1px solid rgba(0,0,0,.10);
    border-radius:14px;
    background: rgba(0,0,0,.02);
    color:#0b1220;
    font-weight:900;
  }
  .acc-btn .chev{ transition: transform .2s ease; }
  .acc-btn[aria-expanded="true"] .chev{ transform: rotate(90deg); }
  .acc-panel{ display:none; }
  .acc-panel.open{ display:block; }
  .acc-panel a{ padding-left:18px; }
}

/* Hero */
html{ scroll-padding-top: var(--navH); }
@media (max-width:960px){ html{ scroll-padding-top: var(--navH-small); } }
.hero{
  padding-top: calc(var(--navH) + 26px);
  min-height: 40svh;
  display:grid;
  place-items:center;
  border-bottom:1px solid var(--line);
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(1000px 420px at 10% 0%, rgba(65,182,255,.16), transparent 60%),
    radial-gradient(900px 380px at 90% 10%, rgba(0,102,204,.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(246,247,251,.92));
}
@media (max-width:960px){ .hero{ padding-top: calc(var(--navH-small) + 18px); } }

.hero.has-bg::before{
  content:"";
  position:absolute; inset:0;
  background: var(--hero-bg) center/cover no-repeat;
  filter: saturate(1.05) contrast(1.02);
  opacity: 1;
}
.hero.has-bg::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(120% 80% at 50% -10%, rgba(255,255,255,.85) 0%, rgba(255,255,255,.62) 55%, rgba(246,247,251,.92) 100%);
  pointer-events:none;
}
.hero-inner{ position:relative; text-align:center; padding: 0 12px; }
.hero .title{
  margin:0;
  font-size: clamp(24px, 4.2vw, 44px);
  font-weight: 900;
  letter-spacing: .02em;
}
.hero .lead{
  margin:.55em 0 0;
  color: var(--muted);
  font-weight: 700;
}

/* Sections */
.section{ max-width:min(1120px, 92vw); margin: clamp(26px, 5.6vw, 70px) auto; }
.grid{ display:grid; gap:16px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px){ .grid{ grid-template-columns: 1fr; } }

/* Cards */
.card{
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position:relative;
}
.card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow2);
  border-color: rgba(0,0,0,.14);
}
.card img{
  width:100%;
  height: clamp(170px, 22vw, 220px);
  object-fit: cover;
  object-position: center;
  display:block;
  background: #e9edf5;
}
.card-body{ padding: 14px 16px 16px; }
.card-title{ font-weight: 900; margin: 0 0 6px; font-size: 16px; }
.card-more{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight: 900;
  color: var(--acc1);
}
.card-more::after{
  content:"→";
  font-weight: 900;
  transform: translateY(-.5px);
}

/* Q&A box */
.qa-box{
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px;
}

footer{
  color: #7a8392;
  text-align:center;
  padding: 40px 12px 60px;
}
footer .copyright{ font-size: 10px; margin: 10px 0; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .card, .g-nav{ transition:none; }
  .card:hover{ transform:none; }
}


/* =========================
   Hero: make text/background crisper (requested)
   ========================= */
html[data-theme="apple"] .hero{
  position: relative;
  isolation: isolate;
}
html[data-theme="apple"] .hero::before{
  /* stronger image contrast layer */
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.35) 45%,
    rgba(0,0,0,.55) 100%);
  z-index: 0;
}
html[data-theme="apple"] .hero::after{
  /* keep accent glow but make it clearer */
  opacity: .95;
  z-index: 0;
}
html[data-theme="apple"] .hero-inner{
  position: relative;
  z-index: 1;
  padding: clamp(34px, 5.2vw, 64px) 16px;
}
html[data-theme="apple"] .hero-inner::before{
  /* subtle glass panel behind text */
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(920px, calc(100% - 24px));
  height: auto;
  min-height: 140px;
  border-radius: 22px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
  backdrop-filter: blur(10px) saturate(140%);
  z-index: -1;
}
html[data-theme="apple"] .hero .title{
  letter-spacing: -0.03em;
  font-weight: 900;
  text-shadow:
    0 2px 0 rgba(0,0,0,.30),
    0 0 16px rgba(255,255,255,.62),
    0 0 46px rgba(10,132,255,.32);
}
html[data-theme="apple"] .hero .lead{
  font-weight: 800;
  text-shadow:
    0 2px 0 rgba(0,0,0,.26),
    0 0 14px rgba(255,255,255,.44);
}

/* neon-lines: a bit stronger so it doesn't look washed out */
html[data-theme="apple"] .neon-lines{
  opacity: .30;
  mix-blend-mode: screen;
}


/* =========================
   Hero BG: balance readability with full photo
   ========================= */
.hero.has-bg::after{
  /* reduce wash */
  background: radial-gradient(120% 80% at 50% -10%,
    rgba(255,255,255,.22) 0%,
    rgba(255,255,255,.10) 55%,
    rgba(0,0,0,.28) 100%);
}
html[data-theme="apple"] .hero::before{
  /* keep text readable, but lighter than heavy dim */
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg,
    rgba(0,0,0,.30) 0%,
    rgba(0,0,0,.18) 48%,
    rgba(0,0,0,.32) 100%);
  z-index: 0;
  pointer-events:none;
}


/* =========================
   Hero text: glowing white (requested)
   ========================= */
.hero .title,
.hero .lead{
  color: rgba(255,255,255,.98) !important;
  -webkit-font-smoothing: antialiased;
}
.hero .title{
  text-shadow:
    0 2px 0 rgba(0,0,0,.28),
    0 0 12px rgba(255,255,255,.55),
    0 0 34px rgba(10,132,255,.30);
}
.hero .lead{
  text-shadow:
    0 2px 0 rgba(0,0,0,.22),
    0 0 10px rgba(255,255,255,.38);
}


/* =========================
   Card thumbnails: reduce zoom for specific images (requested)
   ========================= */
.card > a > img[src*="fanuc_srobo_mini.png"],
.card > a > img[src*="dmg_matrisl_s.png"],
.card > a > img[src*="mecha_s.png"]{
  object-fit: contain;     /* was cover -> looked zoomed */
  padding: 14px 16px;
  height: clamp(160px, 20vw, 210px); /* slightly lower */
  background: transparent;
}
@media (max-width: 520px){
  .card > a > img[src*="fanuc_srobo_mini.png"],
  .card > a > img[src*="dmg_matrisl_s.png"],
  .card > a > img[src*="mecha_s.png"]{
    padding: 12px 14px;
    height: 170px;
  }
}


/* =========================
   Card thumbnails: fine-tune per image (requested)
   ========================= */
.card > a > img[src*="fanuc_srobo_mini.png"]{
  padding: 18px 22px;
  height: clamp(150px, 18vw, 190px);
  transform: scale(.96);
}
.card > a > img[src*="mecha_s.png"]{
  padding: 20px 26px;
  height: clamp(145px, 17vw, 185px);
  transform: scale(.94);
}
@media (max-width: 520px){
  .card > a > img[src*="fanuc_srobo_mini.png"]{
    padding: 16px 20px;
    height: 160px;
    transform: scale(.96);
  }
  .card > a > img[src*="mecha_s.png"]{
    padding: 18px 24px;
    height: 155px;
    transform: scale(.94);
  }
}

/* =========================
   Card thumbnails: adjust size direction (requested)
   ========================= */
/* FANUC mini: show larger */
.card > a > img[src*="fanuc_srobo_mini.png"]{
  padding: 10px 12px;
  height: clamp(175px, 22vw, 240px);
  transform: scale(1.02);
}

/* Mecha: slightly smaller */
.card > a > img[src*="mecha_s.png"]{
  padding: 18px 22px;
  height: clamp(150px, 18vw, 200px);
  transform: scale(.96);
}

@media (max-width: 520px){
  .card > a > img[src*="fanuc_srobo_mini.png"]{
    padding: 10px 12px;
    height: 200px;
    transform: scale(1.02);
  }
  .card > a > img[src*="mecha_s.png"]{
    padding: 16px 20px;
    height: 170px;
    transform: scale(.96);
  }
}

/* =========================
   Card thumbnails: adjust (fanuc bg black / mecha smaller) (requested)
   ========================= */
/* FANUC mini: show larger, with black background plate */
.card > a{
  display:block;
}
.card > a > img[src*="fanuc_srobo_mini.png"]{
  object-fit: contain;
  padding: 10px 12px;
  height: clamp(175px, 22vw, 240px);
  transform: scale(1.02);
  background: #000;
  border-radius: 14px;
}

/* Mecha: smaller */
.card > a > img[src*="mecha_s.png"]{
  object-fit: contain;
  padding: 22px 26px;
  height: clamp(140px, 16vw, 185px);
  transform: scale(.92);
}

@media (max-width: 520px){
  .card > a > img[src*="fanuc_srobo_mini.png"]{
    padding: 10px 12px;
    height: 200px;
    transform: scale(1.02);
    border-radius: 14px;
  }
  .card > a > img[src*="mecha_s.png"]{
    padding: 22px 26px;
    height: 150px;
    transform: scale(.92);
  }
}

/* =========================
   Card thumbnails: adjust (fanuc+mecha bg black / mecha smaller v2) (requested)
   ========================= */
/* FANUC mini: show larger, with black background plate */
.card > a{
  display:block;
}
.card > a > img[src*="fanuc_srobo_mini.png"]{
  object-fit: contain;
  padding: 10px 12px;
  height: clamp(175px, 22vw, 240px);
  transform: scale(1.02);
  background: #000;
  border-radius: 14px;
}

/* Mecha: smaller, with black background plate */
.card > a > img[src*="mecha_s.png"]{
  object-fit: contain;
  padding: 26px 30px;
  height: clamp(130px, 15vw, 175px);
  transform: scale(.88);
  background: #000;
  border-radius: 14px;
}

@media (max-width: 520px){
  .card > a > img[src*="fanuc_srobo_mini.png"]{
    padding: 10px 12px;
    height: 200px;
    transform: scale(1.02);
    border-radius: 14px;
  }
  .card > a > img[src*="mecha_s.png"]{
    padding: 26px 30px;
    height: 140px;
    transform: scale(.88);
    border-radius: 14px;
  }
}

/* =========================
   Card thumbnails: adjust (fanuc+mecha bg black / mecha smaller v3) (requested)
   ========================= */
/* FANUC mini: show larger, with black background plate */
.card > a{
  display:block;
}
.card > a > img[src*="fanuc_srobo_mini.png"]{
  object-fit: contain;
  padding: 10px 12px;
  height: clamp(175px, 22vw, 240px);
  transform: scale(1.02);
  background: #000;
  border-radius: 14px;
}

/* Mecha: smaller (more), with black background plate */
.card > a > img[src*="mecha_s.png"]{
  object-fit: contain;
  padding: 32px 36px;
  height: clamp(115px, 13vw, 155px);
  transform: scale(.82);
  background: #000;
  border-radius: 14px;
}

@media (max-width: 520px){
  .card > a > img[src*="fanuc_srobo_mini.png"]{
    padding: 10px 12px;
    height: 200px;
    transform: scale(1.02);
    border-radius: 14px;
  }
  .card > a > img[src*="mecha_s.png"]{
    padding: 30px 34px;
    height: 130px;
    transform: scale(.82);
    border-radius: 14px;
  }
}

/* =========================
   Card thumbnails: adjust (fanuc+mecha bg black / mecha smaller v4) (requested)
   ========================= */
/* FANUC mini: show larger, with black background plate */
.card > a{
  display:block;
}
.card > a > img[src*="fanuc_srobo_mini.png"]{
  object-fit: contain;
  padding: 10px 12px;
  height: clamp(175px, 22vw, 240px);
  transform: scale(1.02);
  background: #000;
  border-radius: 14px;
}

/* Mecha: smaller (more), with black background plate */
.card > a > img[src*="mecha_s.png"]{
  object-fit: contain;
  padding: 38px 42px;
  height: clamp(100px, 11vw, 140px);
  transform: scale(.76);
  background: #000;
  border-radius: 14px;
}

@media (max-width: 520px){
  .card > a > img[src*="fanuc_srobo_mini.png"]{
    padding: 10px 12px;
    height: 200px;
    transform: scale(1.02);
    border-radius: 14px;
  }
  .card > a > img[src*="mecha_s.png"]{
    padding: 34px 40px;
    height: 118px;
    transform: scale(.76);
    border-radius: 14px;
  }
}

/* =========================
   Card thumbnails: adjust (fanuc+mecha bg black / mecha smaller v5) (requested)
   ========================= */
/* FANUC mini: show larger, with black background plate */
.card > a{
  display:block;
}
.card > a > img[src*="fanuc_srobo_mini.png"]{
  object-fit: contain;
  padding: 10px 12px;
  height: clamp(175px, 22vw, 240px);
  transform: scale(1.02);
  background: #000;
  border-radius: 14px;
}

/* Mecha: smaller (more), with black background plate */
.card > a > img[src*="mecha_s.png"]{
  object-fit: contain;
  padding: 46px 52px;
  height: clamp(82px, 9.5vw, 118px);
  transform: scale(.66);
  background: #000;
  border-radius: 14px;
}

@media (max-width: 520px){
  .card > a > img[src*="fanuc_srobo_mini.png"]{
    padding: 10px 12px;
    height: 200px;
    transform: scale(1.02);
    border-radius: 14px;
  }
  .card > a > img[src*="mecha_s.png"]{
    padding: 40px 48px;
    height: 104px;
    transform: scale(.66);
    border-radius: 14px;
  }
}

/* =========================
   Minirobo taste: accordion model cards + prose blocks
   ========================= */
.section .kicker{
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: none;
  margin: 0 0 8px;
  font-size: 12px;
}
.section h2{
  margin: 0 0 10px;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 900;
  letter-spacing: -0.01em;
}
.section .lead2{
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.75;
  font-weight: 700;
}
.section .bullets{
  display: grid;
  gap: 6px;
  padding-left: 0;
  margin: 10px 0 18px;
  list-style: none;
}
.section .bullets li{
  position: relative;
  padding-left: 22px;
  color: #2b3340;
  font-weight: 750;
}
.section .bullets li::before{
  content:"✓";
  position:absolute; left: 0; top: 0;
  color: var(--acc1);
  font-weight: 900;
}

/* Accordion cards */
.model-acc{
  display: grid;
  gap: 14px;
}
.model-acc details{
  background: rgba(255,255,255,.90);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: clip;
  transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
}
.model-acc details:hover{
  border-color: rgba(0,0,0,.14);
  box-shadow: var(--shadow2);
  transform: translateY(-2px);
}
.model-acc details[open]{
  border-color: rgba(0,0,0,.16);
}
.model-acc summary{
  list-style: none;
  cursor: pointer;
  padding: 12px 12px;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 14px;
  align-items: center;
}
.model-acc summary::-webkit-details-marker{ display:none; }

.model-acc .thumb{
  width: 120px;
  height: 90px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.04));
  border: 1px solid rgba(0,0,0,.08);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.model-acc .thumb img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px 12px;
}

.model-acc .meta h3{
  margin: 0;
  font-size: 16px;
  font-weight: 900;
}
.model-acc .meta .sub{
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 750;
  font-size: 12px;
  line-height: 1.55;
}
.model-acc .chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.model-acc .chip{
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: var(--chip);
  border: 1px solid rgba(0,0,0,.08);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  color: #111827;
}
.model-acc .chip b{
  font-weight: 900;
  color: #111827;
}
.model-acc .chip span{
  font-weight: 800;
  color: #475266;
}

.model-acc .chev{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.02);
  display: grid;
  place-items: center;
  color: #111827;
  font-weight: 900;
  transition: transform .2s ease;
}
.model-acc details[open] .chev{ transform: rotate(90deg); }

.model-acc .panel{
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 12px 14px 14px;
  display: grid;
  gap: 12px;
}
.model-acc .panel dl{
  margin: 0;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 8px 12px;
}
.model-acc .panel dt{
  color: #374151;
  font-weight: 900;
  font-size: 13px;
}
.model-acc .panel dd{
  margin: 0;
  color: #111827;
  font-weight: 750;
  font-size: 13px;
  line-height: 1.6;
}
.model-acc .panel .actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.85);
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}
.btn.primary{
  background: linear-gradient(135deg,var(--acc1),var(--acc2));
  color: #fff;
  border-color: rgba(0,0,0,.06);
}
.btn:hover{ filter: brightness(1.02); }

@media (max-width: 760px){
  .model-acc summary{
    grid-template-columns: 92px 1fr auto;
    gap: 12px;
  }
  .model-acc .thumb{ width: 92px; height: 76px; border-radius: 14px; }
  .model-acc .panel dl{ grid-template-columns: 1fr; }
}

/* Q&A: boxed like minirobo */
.qa-box h3{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 900;
}
.qa-box .qa-item{
  padding: 10px 0;
  border-top: 1px solid rgba(0,0,0,.08);
}
.qa-box .qa-item:first-of-type{ border-top: 0; }
.qa-box .q{
  font-weight: 900;
  margin: 0 0 6px;
}
.qa-box .a{
  margin: 0;
  color: #2b3340;
  line-height: 1.75;
  font-weight: 750;
}

/* ==========================
   SPヘッダー：電話/メニュー（index.htmlと同等の挙動に寄せる）
   - iPhoneで「電話」だけ縦に見える（1文字改行 or 変形）対策
   ========================== */
@media (max-width: 960px){
  /* 「電話」ボタン */
  a.tel-cta.nav-cta{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    padding: 7px 8px !important;
    border-radius: 10px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    letter-spacing: .02em !important;

    /* “縦書き/回転”系の上書き（iOS/Safari保険） */
    -webkit-writing-mode: horizontal-tb !important;
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    transform: none !important;
  }

  /* 「メニュー」ボタン */
  .sp-toggle{ gap: 4px !important; }
  .sp-toggle button{
    padding: 7px 8px !important;
    border-radius: 10px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    -webkit-writing-mode: horizontal-tb !important;
    writing-mode: horizontal-tb !important;
    transform: none !important;
  }

  /* スクロールで縮小状態のときは、さらに密度アップ */
  .g-nav.shrink a.tel-cta.nav-cta{ padding: 6px 8px !important; }
  .g-nav.shrink .sp-toggle button{ padding: 6px 8px !important; }
}
