:root{
  --base:#f1ead6;
  --ink:#0b1020;
  --muted:rgba(11,16,32,.62);
  --soft:rgba(11,16,32,.35);
  --line:rgba(11,16,32,.12);

  --max:1120px;

  --r:18px;
  --r2:28px;

  --shadow: 0 26px 70px rgba(10,15,30,.14);
  --shadow2: 0 14px 44px rgba(10,15,30,.10);

  --scrollProgress:0; /* JSで更新 */

  /* Heroの文字位置：上げたい/下げたい時はここだけ */
  --heroShift:-22px;

  /* 下固定CTAの高さ（だいたい） */
  --ctaH: 0px;

  /* spacing scale (8pt-ish) */
  --s1:8px;
  --s2:12px;
  --s3:16px;
  --s4:20px;
  --s5:28px;
  --s6:36px;
  --s7:48px;
  --s8:64px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  color:var(--ink);
  font-family:"Inter","Noto Sans JP",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-size:15px;
  background:
    radial-gradient(1000px 700px at 18% 8%, rgba(125,227,255,.14), transparent 65%),
    radial-gradient(900px 640px at 82% 12%, rgba(255,210,74,.14), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.44), rgba(255,255,255,0)),
    var(--base);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
.wrap{ max-width:var(--max); margin:0 auto; padding:0 20px; }

/* subtle grain（高級感） */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.055;
  mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

/* --- 改行対策：特定の“かたまり”を分割しない --- */
.keep{
  display:inline-block;
  white-space:nowrap;
}
@media (max-width: 480px){
  .keep{
    display:inline;
    white-space:normal;
  }
}

/* Header */
.header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  background: rgba(241,234,214,.72);
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(11,16,32,.10);
}
.header::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:2px;
  background: rgba(11,16,32,.22);
  transform: scaleX(var(--scrollProgress));
  transform-origin:left;
}
.headerInner{
  height:88px;
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap:18px;
}

/* Brand */
.brand{ display:flex; align-items:center; min-width:200px; }
.brandLogo{
  height:40px;
  width:auto;
  max-width:280px;
  object-fit:contain;
  filter: drop-shadow(0 10px 18px rgba(10,15,30,.10));
}

/* Nav */
.nav{
  display:flex;
  align-items:center;
  gap:24px;
  letter-spacing:1.2px;
  font-weight:700;
  font-size:12px;
  color: rgba(11,16,32,.72);
  flex-wrap:wrap;
  justify-content:center;
}
.nav a{
  position:relative;
  padding:10px 2px;
  white-space:nowrap;
}
.nav a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:2px;
  width:20px;
  height:2px;
  background: rgba(11,16,32,.62);
  border-radius:999px;
  transform: translateX(-50%) scaleX(0);
  transform-origin:center;
  transition: .18s ease;
  opacity:.9;
}
.nav a:hover::after{ transform: translateX(-50%) scaleX(1); }
.nav a.isActive::after{ transform: translateX(-50%) scaleX(1); }

/* Button */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid rgba(11,16,32,.10);
  background: rgba(11,16,32,.92);
  color: var(--base);
  font-weight:900;
  font-size:12px;
  letter-spacing:.9px;
  box-shadow: var(--shadow2);
  transition: .18s ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); }

.btnGhost{
  background: rgba(255,255,255,.46);
  color: rgba(11,16,32,.84);
  border-color: rgba(11,16,32,.12);
}
.btnGhost:hover{ background: rgba(255,255,255,.62); }

/* Hero */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:flex-end;
  padding-bottom: 144px;
}
.heroSlides{
  position:absolute;
  inset:0;
  overflow:hidden;
  background:
    radial-gradient(900px 560px at 25% 25%, rgba(255,255,255,.42), transparent 65%),
    radial-gradient(900px 560px at 80% 70%, rgba(255,255,255,.34), transparent 65%);
}
.heroSlides img{
  position:absolute;
  inset:-2%;
  width:104%;
  height:104%;
  object-fit:cover;
  opacity:0;
  transform: scale(1.05);
  filter: saturate(.95) contrast(.98);
  animation: heroFade 18s infinite;
}
.heroSlides img:nth-child(2){ animation-delay: 6s; }
.heroSlides img:nth-child(3){ animation-delay: 12s; }

@keyframes heroFade{
  0%   { opacity:0; transform: scale(1.06); }
  6%   { opacity:1; transform: scale(1.02); }
  32%  { opacity:1; transform: scale(1.00); }
  38%  { opacity:0; transform: scale(1.02); }
  100% { opacity:0; transform: scale(1.06); }
}

.heroOverlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 700px at 50% 60%, rgba(241,234,214,.40), rgba(241,234,214,.72) 55%, rgba(241,234,214,.90));
}

.heroInner{
  position:relative;
  text-align:center;
  width:100%;
  transform: translateY(var(--heroShift));
}

.heroCatch{
  margin:16px 0 10px;
  font-size: clamp(44px, 6.3vw, 78px);
  letter-spacing:-0.8px;
  line-height:1.04;
  font-weight: 900;

  /* ★ここが肝：
     日本語が1文字だけ残る改行を避けるため、途中改行をさせない */
  white-space: nowrap;
  word-break: keep-all;
}

.heroSub{
  margin:0;
  font-size:15px;
  line-height:1.9;
  color: rgba(11,16,32,.64);
  font-weight:700;
  max-width: 48ch;
  margin-inline: auto;
}

/* HERO badges */
.heroBadges{
  margin-top: 14px;
  display:flex;
  justify-content:center;
  gap: 10px;
  flex-wrap:wrap;
}
.heroBadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 32px;
  padding: 0 12px;
  border-radius:999px;
  border:1px solid rgba(11,16,32,.12);
  background: rgba(255,255,255,.54);
  font-size:12px;
  font-weight:900;
  color: rgba(11,16,32,.78);
  box-shadow: var(--shadow2);
}

.heroMeta{
  margin-top:18px;
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  font-size:12px;
  letter-spacing:1.1px;
  color: rgba(11,16,32,.60);
}
.heroMeta a{
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity:.95;
}

/* SCROLL（※indexで1個だけにしたが、古いHTMLが混ざっても重ならないよう保険） */
.heroInner .scrollCue{ display:none; }

.scrollCue{
  position:absolute;
  left:50%;
  bottom: 22px;
  transform: translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  letter-spacing: 2.4px;
  font-size:11px;
  color: rgba(11,16,32,.40);
  font-weight:800;
  z-index: 5;
}
.scrollCue .dot{
  width:6px; height:6px; border-radius:999px;
  background: rgba(11,16,32,.55);
  animation: dot 1.2s ease-in-out infinite;
}
@keyframes dot{
  0%,100%{ transform: translateY(0); opacity:.55; }
  50%{ transform: translateY(8px); opacity:.20; }
}

/* Sections */
main{ position:relative; }
.section{
  padding: 112px 0;
  scroll-margin-top: 112px;
}
.section.soft{
  background: rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(11,16,32,.06);
}

.hgroup{ display:flex; align-items:flex-end; justify-content:space-between; gap:14px; }
.secEn{
  font-size:12px;
  letter-spacing: 7px;
  font-weight:900;
  color: rgba(11,16,32,.45);
}
.secJp{
  margin-top:8px;
  font-size:24px;
  font-weight:900;
  letter-spacing:.2px;
}
.hr{
  height:1px;
  background: rgba(11,16,32,.10);
  margin: 20px 0 32px;
}
.lead{
  margin: 0 0 24px;
  color: rgba(11,16,32,.58);
  font-weight:700;
  letter-spacing:.2px;
}

/* MESSAGE */
.messageCard{
  border-radius: var(--r2);
  border:1px solid rgba(11,16,32,.10);
  background: rgba(255,255,255,.46);
  box-shadow: var(--shadow);
  overflow:hidden;

  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 0;
  min-height: 340px;
}
.messageText{
  padding: 42px 42px 38px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 16px;
}
.messageText > *{
  max-width: 60ch;
}
.messageP{
  margin: 0;
  color: rgba(11,16,32,.70);
  font-weight:700;
  line-height: 1.95;
  font-size:15px;
}
.messageQuote{
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(11,16,32,.10);
}
.qTitle{
  font-weight:900;
  letter-spacing:.4px;
  margin-bottom: 10px;
  color: rgba(11,16,32,.86);
}
.qBody{
  color: rgba(11,16,32,.66);
  font-weight:700;
  line-height: 1.95;
  font-size:15px;
  /* ★これを追加：\n を改行として表示する */
  white-space: pre-line;
}
.messageSig{
  margin-top: 14px;
  font-weight: 900;
  color: rgba(11,16,32,.84);
  letter-spacing:.2px;
}
.messageMedia{
  position:relative;
  border-left: 1px solid rgba(11,16,32,.10);
  background: rgba(255,255,255,.30);
  overflow:hidden;
}
.messageMedia::after{
  content:"";
  position:absolute; inset:0;
  background: rgba(255,255,255,.10);
  pointer-events:none;
}
.messageMedia img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform: none;
  filter: saturate(.95) contrast(.98);
}

/* Services */
.services{ display:grid; gap: 34px; }
.serviceCard{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  align-items:center;
  gap: 34px;
}
.serviceMedia{
  border-radius: var(--r2);
  overflow:hidden;
  border:1px solid rgba(11,16,32,.10);
  background: rgba(255,255,255,.46);
  box-shadow: var(--shadow);
  min-height: 360px;
  position:relative;
}
.serviceMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.01);
  transition: transform .55s ease;
}
.serviceCard:hover .serviceMedia img{ transform: scale(1.05); }
.serviceBody{ padding-right: 8px; }
.serviceNo{
  font-weight:900;
  letter-spacing: 2px;
  color: rgba(11,16,32,.40);
  font-size:12px;
}
.serviceTitle{
  margin:10px 0 10px;
  font-size: 22px;
  letter-spacing:.2px;
  font-weight: 900;
}
.serviceText{
  margin:0;
  color: rgba(11,16,32,.62);
  line-height:1.9;
  font-weight:700;
  font-size:15px;
}
.tags{ margin-top: 16px; display:flex; gap: 10px; flex-wrap:wrap; }
.tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 32px;
  padding: 0 12px;
  border-radius:999px;
  border:1px solid rgba(11,16,32,.12);
  background: rgba(255,255,255,.54);
  font-size:12px;
  font-weight:900;
  color: rgba(11,16,32,.78);
}

/* Fields */
.fields{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.fieldCard{
  border-radius: 22px;
  border:1px solid rgba(11,16,32,.10);
  background: rgba(255,255,255,.46);
  box-shadow: var(--shadow2);
  padding: 18px;
  transition: .18s ease;
}
.fieldCard:hover{ transform: translateY(-2px); background: rgba(255,255,255,.56); }
.fieldBadge{
  font-size:11px;
  letter-spacing: 3px;
  font-weight:900;
  color: rgba(11,16,32,.46);
}
.fieldTitle{
  margin:10px 0 8px;
  font-size:15px;
  font-weight:900;
}
.fieldText{
  margin:0;
  color: rgba(11,16,32,.62);
  line-height:1.9;
  font-weight:700;
  font-size:12.5px;
}

/* Partner / Recruit card */
.wantCard{
  border-radius: var(--r2);
  border:1px solid rgba(11,16,32,.10);
  background: rgba(255,255,255,.46);
  box-shadow: var(--shadow);
  overflow:hidden;

  display:grid;
  grid-template-columns: 1.15fr .85fr;
}
.wantMedia{
  min-height: 340px;
  position:relative;
  background: rgba(255,255,255,.38);
}
.wantMedia img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.01);
  transition: transform .55s ease;
  filter: saturate(.95) contrast(.98);
}
.wantCard:hover .wantMedia img{ transform: scale(1.05); }

.wantBody{
  padding: 30px;
  border-left: 1px solid rgba(11,16,32,.10);
}
.wantTitle{
  margin:0 0 10px;
  font-size: 20px;
  letter-spacing:.2px;
  font-weight: 900;
}
.wantText{
  margin:0 0 14px;
  color: rgba(11,16,32,.62);
  font-weight:700;
  line-height:1.9;
  font-size:15px;
}
.wantList{
  margin:0;
  padding-left: 18px;
  color: rgba(11,16,32,.64);
  font-weight:700;
  line-height: 1.95;
  font-size:15px;
}
.wantActions{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

/* Company table */
.table{
  border-radius: var(--r2);
  border:1px solid rgba(11,16,32,.10);
  background: rgba(255,255,255,.46);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.row{
  display:grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 18px 22px;
  border-top: 1px solid rgba(11,16,32,.08);
}
.row:first-child{ border-top:none; }
.k{
  font-size:12px;
  letter-spacing: 3px;
  font-weight:900;
  color: rgba(11,16,32,.46);
  text-transform: uppercase;
}
.v{
  font-weight:800;
  color: rgba(11,16,32,.76);
  line-height:1.85;
  font-size:15px;
}
.actions{ margin-top:16px; display:flex; gap: 12px; flex-wrap:wrap; }

/* Contact */
.contactBox{
  border-radius: var(--r2);
  background: rgba(11,16,32,.92);
  box-shadow: var(--shadow);
  padding: 38px;
  color: rgba(241,234,214,.92);
  border: 1px solid rgba(255,255,255,.10);
}
.contactBox .secEn{ color: rgba(241,234,214,.70); }
.contactLead{
  margin: 12px 0 18px;
  color: rgba(241,234,214,.78);
  font-weight:700;
  line-height:1.9;
}
.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-top: 8px;
}
.contactLabel{
  font-size:11px;
  letter-spacing: 4px;
  font-weight:900;
  color: rgba(241,234,214,.64);
}
.contactValue{
  margin-top: 8px;
  font-size:18px;
  font-weight:900;
  letter-spacing:.2px;
}
.contactValue a{ text-decoration: underline; text-underline-offset: 4px; }
.contactBox .btn{
  background: rgba(241,234,214,.92);
  color: rgba(11,16,32,.92);
  border-color: rgba(241,234,214,.20);
}
.miniActions{
  margin-top: 10px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.miniActions a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border:1px solid rgba(241,234,214,.24);
  color: rgba(241,234,214,.90);
  background: rgba(255,255,255,.06);
  font-weight:900;
  letter-spacing:.8px;
  font-size:12px;
  transition:.18s ease;
}
.miniActions a:hover{ transform: translateY(-1px); background: rgba(255,255,255,.10); }

.footer{
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(241,234,214,.18);
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  color: rgba(241,234,214,.70);
  font-size:12px;
}

/* Reveal */
.reveal{
  opacity:0;
  transform: translateY(10px);
  filter: blur(6px);
  transition: opacity .75s ease, transform .75s ease, filter .75s ease;
  transition-delay: var(--d, 0ms);
}
.reveal.in{
  opacity:1;
  transform: translateY(0);
  filter: blur(0);
}

/* ToTop ring */
.toTop{
  position:fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1001;
  opacity:0;
  transform: translateY(10px);
  pointer-events:none;
  transition: .25s ease;
}
.toTop.show{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}
.circle{
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: rgba(255,255,255,.50);
  border:1px solid rgba(11,16,32,.12);
  box-shadow: var(--shadow2);
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.circle::after{
  content:"↑";
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(11,16,32,.92);
  color: var(--base);
  font-weight: 900;
  font-size: 22px;
  position:absolute;
}
.ring{
  position:absolute;
  inset:0;
  animation: spin 8s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }

/* ===== スマホ下固定CTA（電話/メール） ===== */
.mobileCta{
  position:fixed;
  left:0; right:0;
  bottom:0;
  z-index: 1002;
  display:none;
  gap: 12px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(241,234,214,.60);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(11,16,32,.10);
}
.mobileCtaBtn{
  flex:1;
  height: 64px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  font-weight: 900;
  letter-spacing:.6px;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(11,16,32,.12);
}
.mobileCtaIcon{
  font-size: 18px;
  line-height: 1;
}
.mobileCtaTel{
  background: rgba(11,16,32,.92);
  color: var(--base);
  border-color: rgba(11,16,32,.10);
}
.mobileCtaMail{
  background: rgba(255,255,255,.56);
  color: rgba(11,16,32,.86);
}

/* Responsive */
@media (max-width: 1100px){
  .nav{ gap: 18px; }
}

@media (max-width: 980px){
  :root{ --heroShift:-10px; }

  .nav{ display:none; }
  .headerInner{ height:80px; }
  .brandLogo{ height:34px; max-width:240px; }
  .hero{ padding-bottom: 112px; }

  .messageCard{ grid-template-columns: 1fr; }
  .messageMedia{ border-left:none; border-top: 1px solid rgba(11,16,32,.10); min-height: 240px; position:relative; }
  .messageMedia img{ position:absolute; }

  .serviceCard{ grid-template-columns: 1fr; }
  .serviceMedia{ min-height: 260px; }

  .fields{ grid-template-columns: repeat(2, 1fr); }

  .wantCard{ grid-template-columns: 1fr; }
  .wantBody{ border-left:none; border-top: 1px solid rgba(11,16,32,.10); }

  .row{ grid-template-columns: 120px 1fr; }
  .contactGrid{ grid-template-columns: 1fr; }
}

/* Reduce Motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .heroSlides img{ animation:none !important; opacity:0; }
  .heroSlides img:first-child{ opacity:1; }
  .scrollCue .dot{ animation:none; }
  .ring{ animation:none; }
  .btn:hover{ transform:none; }
  .fieldCard:hover{ transform:none; }
  .serviceCard:hover .serviceMedia img{ transform: scale(1.01); }
  .wantCard:hover .wantMedia img{ transform: scale(1.01); }
}

.messageP, .qBody, .fieldText, .serviceText{
  word-break: normal;
  overflow-wrap: break-word;
}

/* ===== Mobile polish ===== */
.spBr{ display:none; }

.heroBox{
  max-width: 920px;
  margin: 0 auto;
}

/* HERO のTEL/MAILをチップ化 */
.heroChip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(11,16,32,.12);
  background: rgba(255,255,255,.40);
  box-shadow: var(--shadow2);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .4px;
  color: rgba(11,16,32,.78);
  text-decoration:none;
}

/* iPhoneノッチ・ホームバーの安全余白 */
@supports (padding: max(0px)) {
  .header{
    padding-top: env(safe-area-inset-top, 0);
  }
}

/* スマホ専用（ここが本体） */
@media (max-width: 768px){
  /* 下固定CTAを表示 */
  .mobileCta{ display:flex; }

  /* CTAぶん、本文が隠れないように */
  body{
    padding-bottom: calc(var(--ctaH) + env(safe-area-inset-bottom, 0px));
  }

  /* ヘッダーを少しコンパクトに */
  .headerInner{ height: 72px; }
  .brandLogo{ height: 34px; max-width: 220px; }
  .btn{ height: 40px; padding: 0 14px; letter-spacing: .6px; }

  /* ヒーロー：縦詰まり解消 */
  .hero{
    min-height: 100svh;
    align-items: center;
    padding-top: 96px;
    padding-bottom: calc(72px + var(--ctaH));
  }

  .heroBox{
    background: rgba(255,255,255,.34);
    border: 1px solid rgba(11,16,32,.10);
    border-radius: 26px;
    backdrop-filter: blur(14px);
    padding: 22px 14px;
    box-shadow: var(--shadow);
  }

  /* 見出し：スマホでも「1行」に収まるサイズへ最適化 */
  .heroCatch{
    font-size: clamp(26px, 8.6vw, 42px);
    line-height: 1.12;
    margin: 10px 0 8px;
    letter-spacing: -0.8px;
  }

  .heroSub{
    font-size: 14px;
    line-height: 1.9;
    max-width: 28ch;
    margin: 0 auto;
  }

  .heroBadges{ gap: 8px; }
  .heroBadge{ height: 30px; font-size: 12px; }

  /* スマホは下固定があるので、ヒーロー内TEL/MAILは隠す */
  .heroMeta{ display:none; }

  /* SCROLLは、下固定CTAより“上”に逃がす（重なり防止） */
  .scrollCue{
    bottom: calc(12px + var(--ctaH) + env(safe-area-inset-bottom, 0px));
    font-size: 10px;
    letter-spacing: 2px;
  }

  /* ToTopもCTAより上へ */
  .toTop{
    bottom: calc(18px + var(--ctaH) + env(safe-area-inset-bottom, 0px));
  }

  /* セクション余白もスマホ用に */
  .section{ padding: 76px 0; scroll-margin-top: 92px; }
  .secJp{ font-size: 20px; }
  .messageText{ padding: 26px 20px 22px; }
  .wantBody{ padding: 22px 18px; }
}
