/*
Theme Name: ReliOral
Theme URI: https://relioral.jp/
Author: ReliOral
Author URI: https://relioral.jp/
Description: 株式会社ReliOral 公式サイト用のオリジナルテーマ。介護現場の口腔ケア・介護美容サポートを伝えるシンプルでエディトリアルなベージュ基調のデザイン。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: relioral
*/

/* =========================================================
   Design tokens
   ========================================================= */
:root{
  --bg:        #FDFBF7;  /* warm off-white */
  --cream:     #F6F1EA;  /* section alt bg */
  --ink:       #2E2620;  /* espresso headings */
  --body:      #4D4339;  /* body text */
  --muted:     #8C8178;  /* secondary text */
  --beige:     #A5937F;  /* uniform beige accent */
  --sand:      #CBBBA8;  /* light beige (numerals) */
  --sage:      #789083;
  --sage-soft: #E9F0EA;
  --rose:      #B8877F;
  --rose-soft: #F5E9E6;
  --hairline:  #E3D9CC;  /* dividers */
  --dark:      #2E2620;  /* dark sections */
  --dark-soft: #4A3F35;
  --white:     #FFFFFF;

  --serif: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans:  "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;

  --maxw: 1140px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* =========================================================
   Reset-ish
   ========================================================= */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
html.has-cookie-modal{ overflow:hidden; }
body{
  margin:0;
  background:var(--bg);
  color:var(--body);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.85;
  font-feature-settings:"palt";
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  padding-bottom:74px;
}
body::before{
  content:"";
  position:fixed;
  inset:-12vh -10vw;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(circle at 16% calc(18% + var(--scroll-shift, 0px)), rgba(120,144,131,.12), transparent 26%),
    radial-gradient(circle at 86% calc(48% - var(--scroll-shift, 0px)), rgba(184,135,127,.10), transparent 28%),
    linear-gradient(180deg, var(--bg), var(--cream));
  transform:translate3d(0, calc(var(--scroll-shift, 0px) * -0.28), 0);
  transition:transform .18s linear;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; transition:opacity .25s ease, color .25s ease; }
a:hover{ opacity:.7; }
h1,h2,h3,h4,p,figure{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }

/* =========================================================
   Layout helpers
   ========================================================= */
.container{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gutter); }
.section{ padding-block:clamp(64px,10vw,128px); position:relative; overflow:hidden; }
.section::before{
  content:"";
  position:absolute;
  inset:-20%;
  pointer-events:none;
  background:
    radial-gradient(circle at 12% calc(22% + var(--scroll-shift, 0px)), rgba(120,144,131,.08), transparent 22%),
    radial-gradient(circle at 88% calc(50% - var(--scroll-shift, 0px)), rgba(184,135,127,.07), transparent 24%);
  transform:translate3d(0, calc(var(--scroll-shift, 0px) * -0.16), 0);
  transition:transform .18s linear;
}
.section > *{ position:relative; z-index:1; }
.section--cream{ background:var(--cream); }
.section--dark{ background:var(--dark); color:var(--cream); }

.kicker{
  font-family:var(--sans);
  font-size:12px;
  font-weight:700;
  letter-spacing:.28em;
  color:var(--beige);
  text-transform:uppercase;
  margin:0 0 18px;
}
.section--dark .kicker{ color:var(--sand); }

.heading{
  font-family:var(--serif);
  font-weight:600;
  color:var(--ink);
  line-height:1.4;
  letter-spacing:.01em;
}
.section--dark .heading{ color:var(--cream); }
.heading--xl{ font-size:clamp(28px,4.4vw,46px); }
.heading--lg{ font-size:clamp(24px,3.4vw,34px); }
.heading--md{ font-size:clamp(19px,2.2vw,23px); }

.lead{ font-size:clamp(15px,1.6vw,17px); color:var(--body); line-height:2; }
.muted{ color:var(--muted); }

.rule{ height:1px; background:var(--hairline); border:0; margin:0; }

/* =========================================================
   Header
   ========================================================= */
.site-header{
  position:sticky; top:0; z-index:50;
  background:color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter:saturate(120%) blur(8px);
  border-bottom:1px solid var(--hairline);
}
.site-header__inner{
  display:flex; align-items:center; justify-content:space-between;
  height:72px;
}
.site-logo img{ height:34px; width:auto; }
.site-logo .site-logo__text{
  font-family:var(--serif); font-size:21px; font-weight:600; color:var(--ink); letter-spacing:.02em;
}
.nav{ display:flex; align-items:center; gap:clamp(14px,1.7vw,26px); }
.nav a{
  font-size:12.5px; letter-spacing:.04em; color:var(--body); font-weight:500;
}
.nav__cta{
  font-size:12.5px; font-weight:600; letter-spacing:.08em;
  color:var(--white)!important; background:var(--ink);
  padding:11px 22px; border-radius:999px;
}
.nav__cta:hover{ opacity:.85; }

.nav-toggle{ display:none; background:none; border:0; cursor:pointer; padding:8px; }
.nav-toggle span{ display:block; width:22px; height:1.5px; background:var(--ink); margin:5px 0; transition:.3s; }

/* =========================================================
   Hero
   ========================================================= */
.hero{ position:relative; }
.hero__grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  min-height:min(86vh,720px);
}
.hero__text{
  display:flex; flex-direction:column; justify-content:center;
  padding:clamp(40px,7vw,90px) var(--gutter);
  padding-right:clamp(30px,5vw,70px);
  margin-left:auto;
  width:100%;
  max-width:calc(var(--maxw) / 2 + var(--gutter));
}
.hero__lead{ font-size:13px; letter-spacing:.18em; color:var(--muted); margin:0 0 22px; }
.hero__title{
  font-family:var(--serif); font-weight:600; color:var(--ink);
  font-size:clamp(30px,4.6vw,52px); line-height:1.32; letter-spacing:.02em;
  margin:0 0 26px;
}
.hero__title-line{
  display:block;
  white-space:nowrap;
}
.hero__title .en{ display:block; font-size:.62em; color:var(--beige); letter-spacing:.04em; margin-top:6px; }
.hero__copy{ font-size:clamp(15px,1.7vw,18px); line-height:2; color:var(--body); margin:0 0 34px; }
.hero__services{ display:flex; flex-direction:column; gap:10px; margin:0 0 38px; }
.hero__services li{ display:flex; gap:14px; align-items:baseline; font-size:14.5px; color:var(--body); }
.hero__services .no{ font-family:var(--serif); color:var(--sand); font-size:18px; line-height:1; }
.hero__actions{ display:flex; gap:16px; flex-wrap:wrap; }

.hero__media{ position:relative; overflow:hidden; }
.hero__media img{ width:100%; height:100%; object-fit:cover; object-position:center; }

.hero-message{
  position:relative;
  background:linear-gradient(180deg, var(--bg) 0%, #f7f1e7 100%);
  overflow:hidden;
}
.hero-message::before{
  content:"";
  position:absolute;
  inset:18% auto auto 8%;
  width:220px;
  height:220px;
  border:1px solid rgba(164,137,90,.18);
  border-radius:50%;
  transform:translateY(var(--scroll-shift, 0));
}
.hero-message__inner{
  position:relative;
  padding-block:clamp(48px,7vw,86px);
  max-width:980px;
}
.hero-message__title{
  font-family:var(--serif);
  color:var(--ink);
  font-size:clamp(25px,3vw,36px);
  line-height:1.55;
  margin:0 0 24px;
}
.hero-message__body{
  max-width:820px;
  color:var(--body);
  font-size:clamp(15px,1.45vw,17px);
  line-height:2.05;
}
.hero-message__body p{ margin:0 0 18px; }
.hero-message__body p:last-child{ margin-bottom:0; }
.hero-message__statement{
  font-family:var(--serif);
  color:var(--ink);
  font-size:clamp(19px,2.1vw,25px);
  line-height:1.8;
  padding-left:22px;
  border-left:2px solid var(--sand);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-size:14px; font-weight:600; letter-spacing:.06em;
  padding:14px 30px; border-radius:999px; cursor:pointer;
  transition:opacity .25s ease, background .25s ease, color .25s ease;
}
.btn--solid{ background:var(--ink); color:var(--white); }
.btn--solid:hover{ opacity:.85; }
.btn--ghost{ border:1px solid var(--hairline); color:var(--ink); background:transparent; }
.btn--ghost:hover{ background:var(--cream); opacity:1; }
.btn--light{ background:var(--cream); color:var(--ink); }
.btn--dark{ color:var(--cream); border-color:var(--dark-soft); }
.btn--dark:hover{ background:var(--dark-soft); color:var(--cream); }
.btn .arrow{ font-size:16px; }

/* =========================================================
   Intro / About
   ========================================================= */
.about__grid{
  display:grid; grid-template-columns:1fr 1fr; gap:clamp(40px,6vw,90px); align-items:center;
}
.about__media{ position:relative; }
.about__media img{ width:100%; aspect-ratio:4/5; object-fit:cover; }
.about__media .tag{
  position:absolute; left:-1px; bottom:24px;
  background:var(--bg); color:var(--ink);
  font-family:var(--serif); font-size:14px; letter-spacing:.04em;
  padding:12px 22px;
}
.about__body .heading--lg{ margin-bottom:26px; }
.about__body p + p{ margin-top:20px; }
.about__points{ margin-top:30px; border-top:1px solid var(--hairline); }
.about__points li{
  padding:18px 0; border-bottom:1px solid var(--hairline);
  display:flex; gap:18px; align-items:flex-start;
}
.about__points .no{ font-family:var(--serif); color:var(--sand); font-size:20px; line-height:1.3; min-width:34px; }
.about__points b{ color:var(--ink); font-weight:600; display:block; font-size:15.5px; margin-bottom:2px; }
.about__points span{ font-size:13.5px; color:var(--muted); }

/* =========================================================
   Services (2 pillars)
   ========================================================= */
.services__head{ max-width:900px; margin-bottom:clamp(40px,6vw,68px); }
.services__head .lead{ margin-top:18px; }
.pillars{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,4vw,56px); }
.pillar{ }
.pillar__no{ font-family:var(--serif); font-size:40px; color:var(--sand); line-height:1; margin-bottom:18px; }
.pillar__title{ font-family:var(--serif); font-size:clamp(20px,2.4vw,26px); color:var(--ink); margin-bottom:8px; }
.pillar__sub{ font-size:12.5px; letter-spacing:.06em; color:var(--beige); font-weight:600; margin-bottom:20px; }
.pillar__desc{ font-size:14.5px; line-height:2; color:var(--body); margin-bottom:24px; }
.pillar__list{ border-top:1px solid var(--hairline); }
.pillar__list li{ padding:13px 0; border-bottom:1px solid var(--hairline); font-size:14px; color:var(--body); display:flex; gap:12px; }
.pillar__list li::before{ content:""; width:5px; height:5px; border-radius:50%; background:var(--beige); margin-top:11px; flex:none; }

/* =========================================================
   Pickup (image + text band)
   ========================================================= */
.pickup__grid{ display:grid; grid-template-columns:.9fr 1.1fr; }
.pickup__media img{ width:100%; height:100%; object-fit:cover; min-height:360px; }
.pickup__body{
  display:flex; flex-direction:column; justify-content:center;
  padding:clamp(40px,6vw,80px) var(--gutter);
}
.pickup__body .heading--lg{ margin:14px 0 6px; }
.pickup__sub{ font-size:12.5px; letter-spacing:.06em; color:var(--beige); font-weight:600; margin-bottom:24px; }
.pickup__body p{ font-size:15px; line-height:2; color:var(--body); margin-bottom:28px; max-width:520px; }
.pickup__care{ border-top:1px solid var(--hairline); max-width:520px; }
.pickup__care li{ padding:14px 0; border-bottom:1px solid var(--hairline); font-size:14.5px; color:var(--body); }

/* =========================================================
   Lineup table
   ========================================================= */
.lineup__grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(36px,5vw,72px); margin-top:clamp(36px,5vw,56px); }
.lineup__col h3{ font-family:var(--serif); font-size:22px; color:var(--ink); margin-bottom:6px; }
.lineup__col .scope{ font-size:12.5px; color:var(--muted); letter-spacing:.04em; margin-bottom:24px; }
.lineup__rows{ border-top:1px solid var(--hairline); }
.lineup__row{ padding:16px 0; border-bottom:1px solid var(--hairline); }
.lineup__row .cat{ font-size:11px; font-weight:700; letter-spacing:.08em; color:var(--beige); display:block; margin-bottom:4px; }
.lineup__row .name{ font-size:15px; font-weight:600; color:var(--ink); }
.lineup__row .note{ font-size:12.5px; color:var(--muted); margin-top:3px; }

/* =========================================================
   Company
   ========================================================= */
.company__grid{ display:grid; grid-template-columns:1.4fr 1fr; gap:clamp(40px,6vw,80px); align-items:start; }
.dl{ border-top:1px solid var(--hairline); }
.dl__row{ display:grid; grid-template-columns:130px 1fr; gap:18px; padding:15px 0; border-bottom:1px solid var(--hairline); }
.dl__row dt{ font-size:12.5px; font-weight:700; letter-spacing:.06em; color:var(--beige); }
.dl__row dd{ margin:0; font-size:14.5px; color:var(--body); }
.company__biz{ margin-top:30px; }
.company__biz h4{ font-size:14px; font-weight:600; color:var(--ink); margin-bottom:12px; }
.company__biz li{ font-size:13px; color:var(--body); padding:7px 0; display:flex; gap:10px; }
.company__biz li::before{ content:""; width:4px; height:4px; border-radius:50%; background:var(--beige); margin-top:10px; flex:none; }
.company__media img{ width:100%; aspect-ratio:3/4; object-fit:cover; }

/* =========================================================
   Page / content components
   ========================================================= */
.page-main{ background:var(--bg); }
.breadcrumb{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  padding-top:24px; font-size:12px; color:var(--muted);
}
.breadcrumb a{ color:var(--body); text-decoration:underline; text-underline-offset:3px; }
.page-hero{
  padding-block:clamp(58px,9vw,108px) clamp(44px,7vw,80px);
  max-width:820px;
}
.page-hero--center{ margin-inline:auto; text-align:center; }
.page-hero .heading{ margin-bottom:22px; }
.page-hero .lead{ max-width:760px; }
.page-hero--center .lead{ margin-inline:auto; }
.strength-hero,
.service-hero{
  max-width:none;
  display:grid;
  grid-template-columns:minmax(0, .92fr) minmax(320px, .78fr);
  gap:clamp(34px,6vw,72px);
  align-items:center;
}
.strength-hero__media,
.service-hero__media{
  position:relative;
  overflow:hidden;
  border-radius:8px;
}
.strength-hero__media::after,
.service-hero__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 58%, rgba(46,38,32,.16));
  pointer-events:none;
}
.strength-hero__media img,
.service-hero__media img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
}
.service-hero__media img{ aspect-ratio:4/3; }
.section--flush{ padding-top:0; }
.hero__actions--center{ justify-content:center; margin-top:32px; }

.problem-grid,
.service-cards,
.flow-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:clamp(16px,2.2vw,26px);
}
.mini-card,
.service-card,
.flow-card{
  background:var(--bg);
  border:1px solid var(--hairline);
  border-radius:8px;
  padding:clamp(22px,3vw,30px);
}
.mini-card span,
.service-card__num,
.flow-card__num,
.detail-block__num{
  display:block;
  font-family:var(--serif);
  color:var(--sage);
  font-size:24px;
  line-height:1;
  margin-bottom:18px;
}
.mini-card:nth-child(even) span,
.service-card:nth-child(even) .service-card__num,
.flow-card:nth-child(even) .flow-card__num{ color:var(--rose); }
.mini-card p,
.service-card p,
.flow-card p{ font-size:14px; line-height:1.85; color:var(--body); }
.mini-card--image{
  display:grid;
  grid-template-rows:auto 1fr;
  gap:18px;
  padding:14px 14px 22px;
}
.mini-card--image img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:6px;
}
.mini-card--image p{
  padding-inline:8px;
}
.service-card h3,
.service-card h4,
.flow-card h3{
  font-family:var(--serif);
  color:var(--ink);
  font-size:19px;
  line-height:1.45;
  margin-bottom:12px;
}
.flow-grid{
  gap:clamp(28px,4vw,44px);
}
.flow-card{
  position:relative;
  padding-top:clamp(24px,3vw,34px);
}
.flow-card:not(:last-child)::after{
  content:"";
  position:absolute;
  top:46px;
  right:calc(clamp(28px,4vw,44px) / -1 + 8px);
  width:20px;
  height:20px;
  border-top:1px solid var(--sage);
  border-right:1px solid var(--sage);
  transform:rotate(45deg);
  opacity:.72;
}
.flow-card__num{
  display:inline-flex;
  align-items:baseline;
  gap:7px;
  font-family:var(--sans);
  font-size:22px;
  font-weight:700;
  letter-spacing:.02em;
  color:var(--sage);
  margin-bottom:16px;
}
.flow-card__num span{
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--beige);
}
.service-pillars{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(22px,3.5vw,42px);
}
.service-pillar{
  border:1px solid var(--hairline);
  border-radius:8px;
  background:color-mix(in srgb, var(--sage-soft) 42%, var(--bg));
  overflow:hidden;
}
.service-pillar--beauty{
  background:color-mix(in srgb, var(--rose-soft) 54%, var(--bg));
}
.service-pillar__head{
  position:relative;
  padding:clamp(24px,3.4vw,34px);
  border-bottom:1px solid var(--hairline);
  min-height:190px;
}
.service-pillar__icon{
  position:absolute;
  top:clamp(20px,3vw,28px);
  right:clamp(20px,3vw,30px);
  width:clamp(54px,7vw,82px);
  aspect-ratio:1;
  object-fit:contain;
  opacity:.9;
}
.service-pillar__head span{
  display:block;
  font-family:var(--serif);
  color:var(--sage);
  font-size:30px;
  line-height:1;
  margin-bottom:16px;
  padding-right:86px;
}
.service-pillar--beauty .service-pillar__head span{ color:var(--rose); }
.service-pillar__head h3{
  font-family:var(--serif);
  color:var(--ink);
  font-size:clamp(22px,2.6vw,30px);
  line-height:1.4;
  margin-bottom:10px;
  padding-right:86px;
}
.service-pillar__head p{
  color:var(--body);
  font-size:14.5px;
  line-height:1.85;
}
.service-pillar__items{
  display:grid;
  gap:1px;
  background:var(--hairline);
}
.service-card--compact{
  border:0;
  border-radius:0;
  background:var(--bg);
  min-height:210px;
}
.service-card--detail{
  min-height:0;
  padding:clamp(24px,3vw,32px);
}
.service-card--detail .check-list{
  margin-top:20px;
  grid-template-columns:1fr;
  gap:9px;
}
.service-card--detail .check-list li{
  font-size:13.5px;
  line-height:1.7;
}
.service-card--compact .service-card__num{
  font-size:20px;
  margin-bottom:14px;
}
.section-link{ margin-top:clamp(30px,4vw,44px); }
.section-link a{
  display:inline-flex; align-items:center; gap:10px;
  color:var(--ink); font-weight:700; font-size:14px;
  border-bottom:1px solid var(--ink); padding-bottom:5px;
}
.split{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:clamp(36px,6vw,76px);
  align-items:start;
}
.split__body .lead{ margin-bottom:28px; }
.reason-list{ display:grid; gap:0; }
.reason-row{
  display:grid;
  grid-template-columns:42px 1fr;
  gap:clamp(14px,2vw,22px);
  padding:24px 0;
  border-top:1px solid var(--hairline);
}
.reason-row:last-child{ border-bottom:1px solid var(--hairline); }
.reason-row > span{
  font-family:var(--serif);
  color:var(--sage);
  font-size:28px;
  line-height:1;
}
.reason-row:nth-child(even) > span{ color:var(--rose); }
.reason-row > .check-mark{
  position:relative;
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  margin-top:0;
}
.reason-row > .check-mark::after{
  content:"\2713";
  color:var(--sage);
  font-family:var(--sans);
  font-size:34px;
  font-weight:800;
  line-height:1;
  transform:scale(.35);
  opacity:0;
  transition:transform .74s cubic-bezier(.22,1,.36,1), opacity .48s ease;
}
.reason-row:nth-child(even) > .check-mark::after{ color:var(--rose); }
.reason-row.is-visible > .check-mark::after{
  transform:scale(1);
  opacity:1;
}
.reason-row:nth-child(1) > .check-mark::after{ transition-delay:.12s; }
.reason-row:nth-child(2) > .check-mark::after{ transition-delay:.24s; }
.reason-row:nth-child(3) > .check-mark::after{ transition-delay:.36s; }
.reason-row:nth-child(4) > .check-mark::after{ transition-delay:.48s; }
.reason-row h3,
.reason-row h2{
  color:var(--ink);
  font-family:var(--serif);
  font-size:clamp(19px,2vw,24px);
  line-height:1.45;
  margin-bottom:8px;
}
.reason-row p{ color:var(--body); font-size:14.5px; line-height:1.9; }
.reason-row--large{ grid-template-columns:48px 1fr; padding:32px 0; }
.scene-band{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1px;
  background:var(--hairline);
  border:1px solid var(--hairline);
}
.scene-band > div{
  background:var(--bg);
  padding:clamp(26px,4vw,44px);
}
.scene-band h3{
  font-family:var(--serif);
  color:var(--ink);
  font-size:22px;
  margin-bottom:12px;
}
.scene-band p{ font-size:14.5px; line-height:1.9; }
.company-summary{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:clamp(36px,6vw,72px);
  align-items:start;
}
.company-summary .lead{ margin:18px 0 28px; }

.detail-block{
  display:grid;
  grid-template-columns:86px 1fr;
  gap:clamp(20px,4vw,44px);
  padding:clamp(28px,5vw,48px) 0;
  border-top:1px solid var(--hairline);
}
.detail-block:last-child{ border-bottom:1px solid var(--hairline); }
.detail-block .heading{ margin-bottom:12px; }
.detail-block p{ font-size:15px; line-height:1.95; }
.check-list{ margin-top:22px; display:grid; grid-template-columns:1fr 1fr; gap:10px 22px; }
.check-list li{
  position:relative;
  padding-left:18px;
  font-size:14px;
  color:var(--body);
}
.check-list li::before{
  content:"";
  position:absolute; left:0; top:.86em;
  width:6px; height:6px; border-radius:50%;
  background:var(--sage);
}
.policy-text{
  font-size:15px;
  line-height:2;
  color:var(--body);
}
.policy-text p + p{ margin-top:18px; }
.business-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px 30px;
  border-top:1px solid var(--hairline);
  padding-top:24px;
}
.business-list li{
  position:relative;
  padding-left:18px;
  font-size:14.5px;
}
.business-list li::before{
  content:"";
  position:absolute; left:0; top:.82em;
  width:6px; height:6px; border-radius:50%;
  background:var(--rose);
}

.faq-list{ max-width:860px; margin-inline:auto; }
.faq-item{
  border-top:1px solid var(--hairline);
  padding:0;
}
.faq-item:last-child{ border-bottom:1px solid var(--hairline); }
.faq-item summary{
  display:grid;
  grid-template-columns:36px 1fr;
  gap:14px;
  align-items:start;
  cursor:pointer;
  color:var(--ink);
  font-weight:700;
  font-size:16px;
  line-height:1.7;
  padding:22px 34px 22px 0;
  list-style:none;
  position:relative;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::before,
.faq-item p::before{
  display:inline-grid;
  place-items:center;
  width:30px;
  height:30px;
  border-radius:50%;
  font-family:var(--serif);
  font-size:15px;
  line-height:1;
}
.faq-item summary::before{
  content:"Q";
  color:var(--white);
  background:var(--sage);
  margin-top:1px;
}
.faq-item summary::after{
  content:"+";
  position:absolute;
  right:2px;
  top:20px;
  color:var(--sage);
  font-size:22px;
  line-height:1;
}
.faq-item[open] summary::after{ content:"-"; }
.faq-item p{
  position:relative;
  color:var(--body);
  font-size:14.5px;
  line-height:1.95;
  padding:0 0 24px 50px;
}
.faq-item p::before{
  content:"A";
  position:absolute;
  left:0;
  top:1px;
  color:var(--rose);
  background:var(--rose-soft);
  border:1px solid color-mix(in srgb, var(--rose) 34%, var(--hairline));
}
.cta-panel{
  border:1px solid var(--hairline);
  background:var(--bg);
  border-radius:8px;
  padding:clamp(30px,5vw,54px);
  text-align:center;
}
.cta-panel p{ max-width:720px; margin:16px auto 28px; line-height:1.9; }
.cta__actions{ display:flex; gap:16px; flex-wrap:wrap; }

.legal-content{
  max-width:860px;
  color:var(--body);
}
.legal-content h2{
  font-family:var(--serif);
  color:var(--ink);
  font-size:22px;
  line-height:1.5;
  margin:34px 0 10px;
}
.legal-content h2:first-child{ margin-top:0; }
.legal-content p,
.legal-content li{ font-size:15px; line-height:2; }
.legal-content a{ color:var(--ink); text-decoration:underline; text-underline-offset:3px; }
.sitemap-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(24px,4vw,40px);
}
.sitemap-box{
  border:1px solid var(--hairline);
  background:var(--cream);
  border-radius:8px;
  padding:clamp(26px,4vw,38px);
}
.sitemap-box h2{
  font-family:var(--serif);
  color:var(--ink);
  font-size:22px;
  margin-bottom:16px;
}
.sitemap-box li + li{ margin-top:10px; }
.sitemap-box a{ text-decoration:underline; text-underline-offset:3px; }
.news-list{ max-width:900px; }
.news-row{
  display:grid;
  grid-template-columns:130px 1fr;
  gap:24px;
  padding:26px 0;
  border-top:1px solid var(--hairline);
}
.news-row:last-child{ border-bottom:1px solid var(--hairline); }
.news-row time{ color:var(--muted); font-size:13px; }
.news-row h2{
  font-family:var(--serif);
  color:var(--ink);
  font-size:22px;
  line-height:1.45;
  margin-bottom:8px;
}
.news-row p{ font-size:14px; line-height:1.85; color:var(--body); }
.empty-state{
  border:1px solid var(--hairline);
  background:var(--cream);
  border-radius:8px;
  padding:clamp(28px,5vw,48px);
}
.empty-state p{ margin-top:12px; font-size:14.5px; line-height:1.9; }
.article{ max-width:860px; margin-inline:auto; }
.article__date{ color:var(--muted); font-size:13px; }
.article__body{ padding-bottom:clamp(70px,10vw,120px); }

/* =========================================================
   Native contact form
   ========================================================= */
.ro-form{
  display:grid;
  gap:22px;
  border:1px solid var(--hairline);
  background:var(--bg);
  border-radius:8px;
  padding:clamp(26px,5vw,46px);
}
.ro-form__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}
.ro-field{ display:grid; gap:8px; }
.ro-field span,
.ro-consent span,
.ro-choice legend{
  color:var(--ink);
  font-size:13px;
  font-weight:700;
}
.ro-field em,
.ro-consent em,
.ro-choice em{
  color:var(--rose);
  font-style:normal;
  font-size:11px;
  margin-left:4px;
}
.ro-field input,
.ro-field select,
.ro-field textarea{
  width:100%;
  border:1px solid var(--hairline);
  background:var(--white);
  color:var(--ink);
  border-radius:6px;
  padding:13px 14px;
  font:inherit;
  font-size:15px;
  line-height:1.6;
}
.ro-field textarea{ resize:vertical; min-height:180px; }
.ro-choice{
  border:1px solid var(--hairline);
  border-radius:6px;
  padding:16px 18px 18px;
  display:grid;
  gap:12px;
}
.ro-choice legend{ padding:0 6px; }
.ro-choice label{
  display:flex;
  align-items:center;
  gap:9px;
  font-size:14px;
  color:var(--body);
  line-height:1.6;
}
.ro-choice input[type="checkbox"],
.ro-choice input[type="radio"]{
  width:16px;
  height:16px;
  accent-color:var(--sage);
  flex:none;
}
.ro-choice__other{
  display:grid!important;
  grid-template-columns:auto auto 1fr;
}
.ro-choice__other input[type="text"]{
  min-width:0;
  border:1px solid var(--hairline);
  border-radius:5px;
  padding:8px 10px;
  font:inherit;
}
.ro-field input:focus,
.ro-field select:focus,
.ro-field textarea:focus,
.ro-choice__other input[type="text"]:focus{
  outline:2px solid var(--sage-soft);
  border-color:var(--sage);
}
.ro-consent{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.ro-consent input{ margin-top:5px; }
.ro-consent a{ text-decoration:underline; text-underline-offset:3px; }
.ro-form__trap{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}
.ro-form__submit{
  width:min(320px, 100%);
  justify-self:center;
  justify-content:center;
  text-align:center;
  border:0;
}
.ro-form__submit .arrow{ margin-left:2px; }
.form-message{
  max-width:720px;
  margin:0 auto 18px;
  padding:14px 18px;
  border-radius:6px;
  font-size:14px;
  line-height:1.7;
}
.form-message--success{ background:var(--sage-soft); color:#31493b; border:1px solid #cbdace; }
.form-message--error{ background:var(--rose-soft); color:#7a3b34; border:1px solid #e1c6c0; }

/* =========================================================
   Contact
   ========================================================= */
.contact{ }
.contact__head{ text-align:center; max-width:640px; margin:0 auto clamp(40px,6vw,60px); }
.contact__head .lead{ margin-top:18px; }
.contact__form{ max-width:720px; margin-inline:auto; }
/* Forminator overrides (graceful) */
.contact__form .forminator-ui.forminator-custom-form,
.contact__form .forminator-custom-form{ font-family:var(--sans)!important; }

/* =========================================================
   Minimal LP
   ========================================================= */
.lp-page{ padding-bottom:86px; }
.lp-header{
  position:absolute;
  inset:0 0 auto;
  z-index:20;
  padding-top:20px;
}
.lp-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.lp-logo img{ height:34px; width:auto; }
.lp-header__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  border:1px solid var(--hairline);
  border-radius:999px;
  padding:0 18px;
  background:rgba(253,251,247,.82);
  color:var(--ink);
  font-size:12.5px;
  font-weight:700;
  letter-spacing:.05em;
}
.lp-main{ overflow:hidden; }
.lp-hero{
  padding-block:clamp(112px,13vw,168px) clamp(70px,9vw,118px);
  background:linear-gradient(180deg, var(--bg), var(--cream));
}
.lp-hero__grid{
  display:grid;
  grid-template-columns:minmax(0, .92fr) minmax(320px, .78fr);
  gap:clamp(34px,6vw,76px);
  align-items:center;
}
.lp-hero__title{
  font-family:var(--serif);
  color:var(--ink);
  font-size:clamp(32px,5vw,56px);
  line-height:1.32;
  letter-spacing:.02em;
  margin:10px 0 24px;
}
.lp-hero__lead{
  max-width:680px;
  color:var(--body);
  font-size:clamp(15px,1.55vw,18px);
  line-height:2;
}
.lp-hero__actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:16px 22px;
  margin-top:34px;
}
.lp-hero__actions > span{
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}
.lp-hero__media{
  overflow:hidden;
  border-radius:8px;
}
.lp-hero__media img{
  width:100%;
  aspect-ratio:4/5;
  min-height:420px;
  object-fit:cover;
}
.lp-section{ padding-block:clamp(72px,10vw,118px); }
.lp-section--cream{ background:var(--cream); }
.lp-section--form{ background:linear-gradient(180deg, var(--cream), var(--bg)); }
.lp-summary__head{
  max-width:820px;
  margin-bottom:clamp(34px,5vw,58px);
}
.lp-summary__head--center{
  margin-inline:auto;
  text-align:center;
}
.lp-issue-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:clamp(16px,2.2vw,26px);
}
.lp-issue{
  background:var(--bg);
  border:1px solid var(--hairline);
  border-radius:8px;
  overflow:hidden;
}
.lp-issue img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}
.lp-issue p{
  padding:18px 18px 22px;
  color:var(--body);
  font-size:14px;
  line-height:1.8;
}
.lp-service-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(22px,3.5vw,42px);
}
.lp-service{
  border:1px solid var(--hairline);
  border-radius:8px;
  padding:clamp(26px,4vw,42px);
  background:color-mix(in srgb, var(--sage-soft) 42%, var(--bg));
}
.lp-service--beauty{ background:color-mix(in srgb, var(--rose-soft) 54%, var(--bg)); }
.lp-service img{
  width:72px;
  aspect-ratio:1;
  object-fit:contain;
  margin-bottom:18px;
}
.lp-service h3{
  font-family:var(--serif);
  color:var(--ink);
  font-size:clamp(24px,3vw,32px);
  line-height:1.35;
  margin-bottom:12px;
}
.lp-service p{
  color:var(--body);
  font-size:14.5px;
  line-height:1.9;
}
.lp-service ul{
  margin-top:22px;
  border-top:1px solid var(--hairline);
}
.lp-service li{
  padding:14px 0;
  border-bottom:1px solid var(--hairline);
  color:var(--ink);
  font-weight:700;
  font-size:14px;
}
.lp-strengths{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:clamp(34px,6vw,74px);
  align-items:start;
}
.lp-strengths__body .lead{ margin-top:18px; }
.lp-strengths__photo{
  width:min(260px, 100%);
  aspect-ratio:4/5;
  object-fit:cover;
  border-radius:8px;
  margin-top:28px;
}
.lp-checks .reason-row:first-child{ border-top:0; }
.lp-flow{ margin-top:0; }
.lp-company{
  border:1px solid var(--hairline);
  border-radius:8px;
  background:var(--bg);
  padding:clamp(26px,4vw,42px);
}
.lp-company summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  cursor:pointer;
  list-style:none;
}
.lp-company summary::-webkit-details-marker{ display:none; }
.lp-company summary .kicker,
.lp-company summary .heading{
  display:block;
}
.lp-company__toggle{
  flex:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  border:1px solid var(--hairline);
  border-radius:999px;
  padding:0 16px;
  color:var(--ink);
  font-size:12px;
  font-weight:700;
  letter-spacing:.05em;
}
.lp-company[open] .lp-company__toggle{ color:var(--sage); }
.lp-company[open] .lp-company__toggle::before{ content:"閉じる"; }
.lp-company[open] .lp-company__toggle{ font-size:0; }
.lp-company[open] .lp-company__toggle::before{ font-size:12px; }
.lp-company__body{
  display:grid;
  grid-template-columns:.72fr 1fr;
  gap:clamp(28px,5vw,62px);
  align-items:start;
  padding-top:clamp(22px,4vw,34px);
}
.lp-company .lead{
  font-size:14.5px;
  line-height:1.9;
}
.lp-company__list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 28px;
  margin:0;
}
.lp-company__list div{
  display:grid;
  grid-template-columns:88px 1fr;
  gap:12px;
  padding:13px 0;
  border-bottom:1px solid var(--hairline);
}
.lp-company__list dt{
  color:var(--beige);
  font-size:12px;
  font-weight:700;
  letter-spacing:.06em;
}
.lp-company__list dd{
  margin:0;
  color:var(--body);
  font-size:13.5px;
  line-height:1.7;
}
.lp-form{
  display:grid;
  grid-template-columns:.78fr minmax(360px, 1fr);
  gap:clamp(34px,6vw,74px);
  align-items:start;
}
.lp-form__head{
  position:sticky;
  top:96px;
}
.lp-form__head .lead{ margin-top:18px; }
.lp-form__body .ro-form{
  box-shadow:0 18px 48px rgba(46,38,32,.08);
}
.lp-footer{
  background:var(--bg);
  border-top:1px solid var(--hairline);
  padding-block:28px;
}
.lp-footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.lp-footer img{ height:24px; width:auto; }
.lp-footer p{
  color:var(--muted);
  font-size:12px;
  letter-spacing:.04em;
}
.contact__fallback{
  border:1px solid var(--hairline); background:var(--bg);
  padding:clamp(28px,4vw,44px); text-align:center;
}
.contact__fallback p{ color:var(--muted); font-size:14px; margin-bottom:22px; }

.contact__info{
  display:flex; flex-wrap:wrap; justify-content:center; gap:30px 56px;
  margin-top:clamp(40px,6vw,56px); padding-top:clamp(30px,4vw,40px);
  border-top:1px solid var(--hairline); text-align:center;
}
.contact__info .item{ }
.contact__info .label{ font-size:11px; font-weight:700; letter-spacing:.1em; color:var(--beige); display:block; margin-bottom:7px; }
.contact__info .val{ font-size:15px; color:var(--ink); font-weight:500; }

/* =========================================================
   CTA band (dark)
   ========================================================= */
.cta{ text-align:left; }
.cta__title{ font-family:var(--serif); font-size:clamp(26px,4vw,40px); color:var(--cream); line-height:1.5; margin-bottom:clamp(36px,5vw,52px); }
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:clamp(20px,3vw,34px); }
.steps__item{ }
.steps__no{ font-family:var(--serif); font-size:28px; color:var(--beige); margin-bottom:14px; }
.steps__txt{ font-size:13.5px; color:var(--cream); line-height:1.7; }
.cta__contactline{ margin-top:clamp(40px,5vw,56px); padding-top:28px; border-top:1px solid var(--dark-soft); font-size:13.5px; color:var(--cream); letter-spacing:.04em; }
.cta__contactline a{ text-decoration:none; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer{ background:var(--bg); border-top:1px solid var(--hairline); padding-block:48px; }
.site-footer__inner{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px; }
.site-footer__logo img{ height:26px; }
.site-footer__meta{ font-size:12px; color:var(--muted); letter-spacing:.04em; }
.site-footer__nav{ display:flex; flex-wrap:wrap; gap:12px 22px; justify-content:center; }
.site-footer__nav a{ font-size:12.5px; color:var(--body); white-space:nowrap; }

.sticky-cta{
  position:fixed;
  left:50%;
  bottom:16px;
  z-index:60;
  transform:translate(-50%, 10px);
  display:block;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .28s ease, transform .28s ease, visibility .28s ease;
}
.sticky-cta.is-visible{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translate(-50%, 0);
}
.sticky-cta a{
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-width:310px;
  min-height:64px;
  border-radius:999px;
  padding:9px 28px 10px;
  font-size:15px;
  font-weight:700;
  white-space:nowrap;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 14px 34px rgba(46,38,32,.22), inset 0 1px 0 rgba(255,255,255,.14);
}
.sticky-cta__note{
  position:relative;
  z-index:1;
  color:rgba(255,255,255,.76);
  font-size:11px;
  font-weight:600;
  letter-spacing:.08em;
  line-height:1.4;
}
.sticky-cta__label{
  position:relative;
  z-index:1;
  color:var(--white);
  font-size:15.5px;
  line-height:1.45;
}
.sticky-cta__main::after{
  content:"";
  position:absolute;
  inset:-30% auto -30% -55%;
  width:38%;
  transform:skewX(-18deg);
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  animation:ctaShine 6.5s ease-in-out infinite;
}
.sticky-cta__main{ background:linear-gradient(135deg, var(--ink), #3d352e); color:var(--white); }
.cookie-consent{
  position:fixed;
  inset:0;
  z-index:70;
  display:grid;
  place-items:center;
  padding:24px;
  background:rgba(46,38,32,.42);
  backdrop-filter:blur(4px);
}
.cookie-consent[hidden]{ display:none; }
.cookie-consent__panel{
  width:min(460px, 100%);
  background:var(--white);
  padding:clamp(24px,5vw,34px);
  box-shadow:0 22px 60px rgba(46,38,32,.28);
}
.cookie-consent h2{
  color:var(--ink);
  font-family:var(--sans);
  font-size:20px;
  font-weight:700;
  line-height:1.5;
  margin:0 0 16px;
}
.cookie-consent p{
  color:var(--ink);
  font-size:14px;
  line-height:1.75;
  margin-bottom:20px;
}
.cookie-consent__actions{
  display:grid;
  gap:12px;
  margin-bottom:14px;
}
.cookie-consent button{
  appearance:none;
  border:0;
  background:#000;
  color:#fff;
  min-height:44px;
  padding:10px 16px;
  font:inherit;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
}
.cookie-consent button:hover{ opacity:.84; }
.cookie-consent a{
  color:var(--ink);
  font-size:12px;
  text-decoration:underline;
  text-underline-offset:3px;
}
.cookie-consent__settings{
  display:grid;
  gap:10px;
  border:1px solid var(--hairline);
  padding:14px;
  margin-bottom:16px;
}
.cookie-consent__settings[hidden]{ display:none; }
.cookie-consent__settings label{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
}

@keyframes ctaShine{
  0%, 72%{ left:-55%; opacity:0; }
  78%{ opacity:1; }
  90%{ left:120%; opacity:0; }
  100%{ left:120%; opacity:0; }
}

/* =========================================================
   Section header (generic)
   ========================================================= */
.sec-head{ margin-bottom:clamp(36px,5vw,60px); }
.sec-head--center{ text-align:center; }
.sec-head .heading{ margin-top:4px; }

/* Content remains visible even if JavaScript or scroll observers fail. */
.reveal{ opacity:1; transform:none; transition:opacity .45s ease, transform .45s ease; }
.reveal.is-visible{ opacity:1; transform:none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 920px){
  .hero__grid{ grid-template-columns:1fr; }
  .lp-hero__grid,
  .lp-strengths,
  .lp-company__body,
  .lp-form{ grid-template-columns:1fr; }
  .lp-form__head{ position:static; }
  .lp-company__list{ grid-template-columns:1fr; }
  .lp-issue-grid{ grid-template-columns:1fr 1fr; }
  .hero__media{ order:initial; aspect-ratio:16/10; min-height:0; }
  .hero__text{ max-width:none; margin-left:0; padding-block:clamp(48px,9vw,72px); }
  .strength-hero,
  .service-hero{ grid-template-columns:1fr; }
  .strength-hero__media,
  .service-hero__media{ max-width:620px; }
  .about__grid{ grid-template-columns:1fr; gap:40px; }
  .about__media{ max-width:440px; }
  .pillars{ grid-template-columns:1fr; gap:48px; }
  .pickup__grid{ grid-template-columns:1fr; }
  .pickup__media img{ min-height:280px; aspect-ratio:16/10; }
  .lineup__grid{ grid-template-columns:1fr; gap:48px; }
  .company__grid{ grid-template-columns:1fr; gap:44px; }
  .company__media{ max-width:380px; }
  .steps{ grid-template-columns:1fr 1fr; gap:32px 28px; }
  .problem-grid,
  .service-cards,
  .service-pillars,
  .flow-grid{ grid-template-columns:1fr 1fr; }
  .flow-card:nth-child(2)::after{ display:none; }
  .split,
  .company-summary,
  .sitemap-grid{ grid-template-columns:1fr; }
  .check-list,
  .business-list{ grid-template-columns:1fr; }
  .scene-band{ grid-template-columns:1fr; }
}
@media (max-width: 640px){
  body{ padding-bottom:92px; }
  .site-header{ background:var(--bg); }
  .site-header__inner{ height:72px; }
  .site-logo img{ height:32px; max-width:132px; object-fit:contain; }
  .nav{ display:none; }
  .nav.is-open{
    display:flex; flex-direction:column; align-items:flex-start; gap:20px;
    position:absolute; top:72px; left:0; right:0;
    background:var(--bg); border-bottom:1px solid var(--hairline);
    padding:28px var(--gutter);
  }
  .nav-toggle{ display:block; }
  .site-footer__inner{
    display:grid;
    grid-template-columns:1fr;
    align-items:start;
  }
  .site-footer__nav{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px 16px;
    justify-content:start;
  }
  .site-footer__nav a{
    font-size:13px;
    line-height:1.5;
  }
  .steps{ grid-template-columns:1fr; gap:26px; }
  .contact__info{ flex-direction:column; gap:24px; }
  .dl__row{ grid-template-columns:100px 1fr; gap:12px; }
  .problem-grid,
  .service-cards,
  .service-pillars,
  .flow-grid{ grid-template-columns:1fr; }
  .lp-header__cta{ display:none; }
  .lp-hero__media img{ min-height:0; aspect-ratio:16/11; }
  .lp-issue-grid,
  .lp-service-grid{ grid-template-columns:1fr; }
  .lp-hero__actions{ align-items:stretch; }
  .lp-hero__actions > span{ text-align:center; }
  .lp-footer__inner{ display:grid; grid-template-columns:1fr; }
  .lp-company__list div{ grid-template-columns:90px 1fr; }
  .hero__title{ font-size:clamp(22px,7vw,34px); }
  .services__head .heading{ max-width:100%; }
  .service-pillar__head{ min-height:0; }
  .service-pillar__icon{ width:56px; }
  .service-pillar__head span,
  .service-pillar__head h3{ padding-right:66px; }
  .flow-card:not(:last-child)::after{
    display:block;
    top:auto;
    right:auto;
    left:50%;
    bottom:-24px;
    transform:translateX(-50%) rotate(135deg);
  }
  .flow-card:nth-child(2)::after{ display:block; }
  .detail-block,
  .reason-row--large{
    grid-template-columns:1fr;
    gap:12px;
  }
  .reason-row{
    grid-template-columns:44px 1fr;
    gap:14px;
  }
  .ro-form__grid{ grid-template-columns:1fr; }
  .news-row{ grid-template-columns:1fr; gap:8px; }
  .page-hero{ padding-block:44px 38px; }
  .hero__actions,
  .cta__actions{ flex-direction:column; align-items:stretch; }
  .btn{ justify-content:center; width:100%; }
  .ro-form__submit{ width:100%; }
  .sticky-cta{
    left:50%;
    right:auto;
    bottom:12px;
    transform:translate(-50%, 10px);
    width:calc(100vw - 24px);
  }
  .sticky-cta.is-visible{ transform:translate(-50%, 0); }
  .sticky-cta a{
    width:100%;
    padding-inline:10px;
    min-width:0;
    min-height:54px;
    font-size:12.5px;
  }
  .sticky-cta__note{ font-size:10px; letter-spacing:.04em; }
  .sticky-cta__label{ font-size:13.5px; }
  .cookie-consent{ padding:18px; }
  .ro-choice__other{
    grid-template-columns:auto 1fr;
  }
  .ro-choice__other input[type="text"]{
    grid-column:1 / -1;
  }
  .faq-item summary{
    grid-template-columns:32px 1fr;
    gap:10px;
    font-size:15px;
  }
  .faq-item p{ padding-left:42px; }
  .faq-item summary::before,
  .faq-item p::before{
    width:28px;
    height:28px;
    font-size:14px;
  }
}

@media (prefers-reduced-motion: reduce){
  .reason-row > .check-mark::after{
    transition:none;
    transform:scale(1);
    opacity:1;
  }
}
