/* ===== Selfit redesign — design exploration (referencia FANGjim Chigasaki: Tiffany Blue + Noto Sans JP) ===== */
/* Noto Sans JP is loaded via a <link> tag in each template's <head>, not @import here —
   @import is render-blocking and gets discovered late (after this whole file downloads),
   while a <link> lets the browser fetch it in parallel from the first HTML parse. */

:root{
  --bg:#f7f8f9;
  --surface:#ffffff;
  --ink:#1f2937;
  --muted:#6b7280;
  --accent:#f2c230;      /* amarelo original */
  --accent-ink:#3a2c02;
  --brand:#0abab5;       /* Tiffany Blue - referencia FANGjim Chigasaki */
  --brand-dark:#078f8a;
  --tint:#e6f8f7;         /* teal bem claro - referencia FANGjim Chigasaki, fundo de CTA/contact */
  --line-green:#06c755;  /* verde original do botao LINE (cor de marca oficial do LINE) */
  --highlight:#facc15;   /* amarelo, uso pontual (preco, destaque) */
  --border:#e5e7eb;
  --radius-lg:20px;
  --radius-md:12px;
  --shadow:0 8px 22px -12px rgba(17,24,39,.18);
  --maxw:1280px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;overflow-x:hidden;
  font-family:'Noto Sans JP',sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  /* evita quebra de linha no meio de palavras/kanji em telas estreitas */
  word-break:keep-all;
  overflow-wrap:anywhere;
}
h1,h2,h3,h4,h5,h6,.section-title,.eyebrow,.section-sub{
  /* evita deixar 1 caractere orfao sozinho na ultima linha de titulos */
  text-wrap:balance;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}
.eyebrow{
  font-family:'Noto Sans JP',sans-serif;
  letter-spacing:.02em;
  font-size:18px;
  color:var(--brand);
  font-weight:700;
  display:block;
  margin-bottom:6px;
}
.section-title{
  font-family:'Noto Sans JP',sans-serif;
  font-size:clamp(22px,3vw,32px);
  font-weight:700;
  letter-spacing:.01em;
  color:var(--ink);
  margin:0 0 8px;
}
.section-sub{color:var(--muted);font-size:15px;margin:0 0 40px}
.section-head{text-align:center;margin-bottom:44px}
.swipe-hint{display:none}
/* PROCESS/FLOW scroll horizontally at every width, so the hint always shows there */
#process .swipe-hint, #flow .swipe-hint{
  display:flex;align-items:center;justify-content:flex-start;color:var(--muted);
  font-size:12px;margin:-4px 0 14px;
}
#process .section-head, #flow .section-head{text-align:left}
section{padding:88px 0}
section.tight{padding:56px 0}
.btn{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--brand);color:#fff;
  padding:14px 30px;border-radius:999px;
  font-weight:700;font-size:15px;
  box-shadow:0 10px 24px -8px rgba(10,186,181,.45);
  border:none;cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease;
}
.btn:hover{transform:translateY(-2px);box-shadow:0 14px 28px -8px rgba(10,186,181,.55)}
.btn.ghost{background:transparent;color:var(--ink);border:2px solid var(--ink);box-shadow:none}
.btn.line{background:var(--line-green);box-shadow:0 10px 24px -8px rgba(6,199,85,.5)}
.btn.small{padding:10px 20px;font-size:13px}

/* ---------- header ---------- */
header.site{
  position:sticky;top:0;z-index:60;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border);
}
/* header is sticky on every page — any anchor target needs breathing room so it
   doesn't land hidden underneath it */
section[id]{scroll-margin-top:90px}
.site-header-inner{
  max-width:var(--maxw);margin:0 auto;padding:14px 24px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
}
.logo img{height:44px;width:auto}
nav.main-nav{display:flex;align-items:center;gap:26px;flex-wrap:wrap}
nav.main-nav > ul{list-style:none;display:flex;gap:22px;margin:0;padding:0;align-items:center}
nav.main-nav a{font-size:14px;font-weight:500}
nav.main-nav li.has-children{position:relative}
nav.main-nav li.has-children:hover .dropdown{display:block}
.dropdown{
  display:none;position:absolute;top:100%;left:0;background:var(--surface);
  border:1px solid var(--border);border-radius:var(--radius-md);
  box-shadow:var(--shadow);padding:14px;min-width:190px;
}
.dropdown b{display:block;font-size:11px;color:var(--muted);letter-spacing:.08em;margin:8px 0 4px}
.dropdown a{display:block;padding:5px 0;font-size:13.5px}
.cta-mini{background:var(--accent);color:var(--accent-ink);padding:9px 18px;border-radius:999px;font-weight:700;font-size:13.5px}
.burger{display:none;background:none;border:none;font-size:26px;cursor:pointer}

/* ---------- hero ---------- */
.hero{position:relative;height:min(78vh,640px);overflow:hidden}
.hero-slide{
  position:absolute;inset:0;background-size:cover;background-position:center;
  opacity:0;transition:opacity 1.2s ease;
}
.hero-slide.active{opacity:1}
.hero-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(0deg,rgba(6,5,4,.92) 0%,rgba(6,5,4,.72) 32%,rgba(6,5,4,.32) 62%,rgba(6,5,4,.12) 100%);
}
.hero-content{
  position:relative;z-index:2;height:100%;display:flex;flex-direction:column;
  justify-content:flex-end;align-items:flex-start;
  padding:32px 24px 40px;color:#fff;max-width:var(--maxw);margin:0 auto;
}
.hero-content h1{
  font-family:'Noto Sans JP',sans-serif;font-size:clamp(26px,4.4vw,50px);
  font-weight:700;line-height:1.25;margin:0 0 10px;
  background:rgba(6,5,4,.6);padding:8px 18px;border-radius:10px;
  text-shadow:0 2px 4px rgba(0,0,0,.5);
}
.hero-content .mobile-break{display:none}
.hero-content p{
  margin:0 0 22px;font-size:15px;max-width:520px;color:#f1efe9;
  background:rgba(6,5,4,.6);padding:10px 16px;border-radius:10px;
  text-shadow:none;
}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap}
.hero-dots{position:absolute;z-index:3;bottom:22px;right:24px;display:flex;gap:8px}
.hero-dots button{width:9px;height:9px;border-radius:50%;border:none;background:rgba(255,255,255,.45);cursor:pointer}
.hero-dots button.active{background:#fff}

/* ---------- quick pill nav ---------- */
.pillbar{background:var(--accent);position:relative;z-index:5}
.pillbar .wrap{display:flex;justify-content:center;gap:0;flex-wrap:wrap}
.pillbar a{
  padding:14px 26px;font-weight:700;font-size:14px;color:var(--accent-ink);
  border-right:1px solid rgba(255,255,255,.25);
  transition:background-color .15s ease;
}
.pillbar a::after{content:'↓';display:inline-block;margin-left:6px;font-size:11px;opacity:.65}
.pillbar a:hover,.pillbar a:focus-visible,.pillbar a:active{background:rgba(255,255,255,.28)}
.pillbar a:last-child{border-right:none}

@media (max-width:980px){
  /* horizontal scroll clipped the longer labels with no room to show them fully -
     wrap into a 2-column grid instead so every link is fully visible on mobile */
  .pillbar .wrap{display:grid;grid-template-columns:repeat(2,1fr);gap:0;padding:0}
  .pillbar a{
    padding:14px 10px;font-size:12.5px;text-align:center;white-space:normal;
    border-right:1px solid rgba(255,255,255,.25);border-bottom:1px solid rgba(255,255,255,.25);
  }
  .pillbar a:nth-child(2n){border-right:none}
  .pillbar a:last-child{grid-column:1/-1;border-right:none;border-bottom:none}
}

/* ---------- quick grid (4 highlight cards) ---------- */
.quickgrid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:44px;position:relative;z-index:6}
.quickgrid .card{
  background:var(--surface);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);
}
.quickgrid .card .photo{aspect-ratio:1/1}
.quickgrid .card .photo img{width:100%;height:100%;object-fit:cover}
.quickgrid .card .body{padding:18px 18px 22px}
.quickgrid .card h3{
  display:flex;align-items:center;gap:9px;
  margin:0 0 8px;font-size:17px;font-family:'Noto Sans JP',sans-serif;
}
.quickgrid .card .num{
  flex:none;width:26px;height:26px;border-radius:50%;
  background:var(--brand);color:#fff;display:flex;align-items:center;justify-content:center;
  font-family:'Noto Sans JP',sans-serif;font-weight:700;font-size:13px;
}
.quickgrid .card p{margin:0;font-size:13.5px;color:var(--muted);line-height:1.7}

/* ---------- feature list (alternating) ---------- */
.feature-item{
  display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;
  padding:46px 0;border-bottom:1px solid var(--border);
}
.feature-item:last-child{border-bottom:none}
.feature-item:nth-child(even) .feature-photo{order:2}
.feature-item .feature-photo{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);aspect-ratio:4/3}
.feature-item .feature-photo img{width:100%;height:100%;object-fit:cover}
.feature-num{
  font-family:'Noto Sans JP',sans-serif;font-size:52px;font-weight:700;color:var(--brand);
  line-height:1;margin-bottom:6px;opacity:.9;
}
.feature-item h3{font-family:'Noto Sans JP',sans-serif;font-size:24px;margin:0 0 14px}
.feature-item p{color:var(--muted);margin:0 0 16px;font-size:15px}
.feature-item .btn{margin-top:4px}

/* ---------- testimonial / Google rating ---------- */
.google-rating{
  background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);
  box-shadow:var(--shadow);padding:36px;text-align:center;max-width:420px;margin:0 auto;
}
.google-rating .stars{color:var(--accent);font-size:26px;letter-spacing:.1em;margin-bottom:10px}
.google-rating .score{font-family:'Noto Sans JP',sans-serif;margin-bottom:6px}
.google-rating .score strong{font-size:28px}
.google-rating .score span{font-size:13px;color:var(--muted);font-family:'Noto Sans JP',sans-serif;margin-left:6px}
.google-rating .store-ref{margin:0 0 18px;font-size:13px;color:var(--muted)}
.testi-note{
  text-align:center;color:var(--muted);font-size:12.5px;margin:20px auto 0;max-width:520px;
}

/* Google reviews - live cards, injected by google-reviews.js next to the badge */
.review-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:20px;
  max-width:var(--maxw);margin:32px auto 0;
}
.review-card{
  background:var(--surface);border-radius:var(--radius-lg);box-shadow:var(--shadow);
  padding:20px;text-align:left;
}
.review-head{display:flex;align-items:center;gap:12px;margin-bottom:12px}
.review-avatar{
  flex:none;width:40px;height:40px;border-radius:50%;overflow:hidden;
  background:var(--accent);color:var(--accent-ink);
  display:flex;align-items:center;justify-content:center;font-weight:700;
}
.review-avatar img{width:100%;height:100%;object-fit:cover}
.review-name{margin:0;font-weight:700;font-size:13.5px}
.review-meta{margin:2px 0 0;font-size:11.5px;color:var(--muted);display:flex;align-items:center;gap:6px}
.review-stars{color:var(--accent);letter-spacing:.05em}
.review-text{
  margin:0;font-size:13px;color:var(--muted);line-height:1.7;
  display:-webkit-box;-webkit-line-clamp:5;-webkit-box-orient:vertical;overflow:hidden;
}

/* ---------- flow (PROCESS + FLOW sections) - horizontal scroll carousel on every viewport ---------- */
.flow-steps{
  display:flex;gap:20px;overflow-x:auto;
  scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;
  padding-bottom:14px;scrollbar-width:none;
}
.flow-steps::-webkit-scrollbar{display:none}
.flow-step{
  flex:0 0 300px;scroll-snap-align:start;text-align:left;
  background:var(--surface);border-radius:var(--radius-lg);
  box-shadow:var(--shadow);padding:22px;
}
.flow-step .flow-text{margin-top:16px}
.flow-badge{
  position:absolute;top:12px;left:12px;z-index:2;
  width:40px;height:40px;border-radius:50%;background:#fff;color:var(--brand);
  border:2px solid var(--brand);
  display:flex;align-items:center;justify-content:center;font-family:'Noto Sans JP',sans-serif;
  font-size:16px;font-weight:700;box-shadow:0 4px 10px rgba(17,24,39,.15);
}
.flow-text h4{margin:0 0 8px;font-size:18px;font-family:'Noto Sans JP',sans-serif}
.flow-text p{margin:0;color:var(--muted);font-size:14px}
.flow-photo{position:relative;border-radius:var(--radius-md);overflow:hidden;aspect-ratio:4/3;box-shadow:var(--shadow)}
.flow-photo img{width:100%;height:100%;object-fit:cover}
/* PROCESS step icons/screenshots aren't photos - don't crop them into a 4/3 box, show them whole */
#process .flow-photo{
  aspect-ratio:auto;display:flex;align-items:center;justify-content:center;gap:8px;
  background:var(--bg);padding:18px;min-height:180px;
}
#process .flow-photo img{width:auto;height:auto;max-width:100%;max-height:200px;object-fit:contain}

/* prev/next arrows for PROCESS/FLOW - desktop only, mobile relies on native swipe */
.flow-carousel{position:relative}
.flow-arrow{
  display:flex;align-items:center;justify-content:center;
  position:absolute;top:50%;transform:translateY(-50%);z-index:6;
  width:44px;height:44px;border-radius:50%;background:var(--brand);border:none;
  box-shadow:0 6px 16px -6px rgba(10,186,181,.6);font-size:20px;line-height:1;color:#fff;cursor:pointer;
}
.flow-arrow:hover{background:var(--brand-dark)}
.flow-arrow.prev{left:-14px}
.flow-arrow.next{right:-14px}
@media (max-width:980px){
  .flow-arrow{display:none}
}
.flow-note{
  background:#fff8e6;border:1px solid #f1dfa0;border-radius:var(--radius-md);
  padding:20px 24px;font-size:13.5px;color:#5c4a12;margin-top:24px;
  text-align:center;
}

/* ---------- access ---------- */
.access-area{margin-bottom:52px}
.access-area h3{
  font-family:'Noto Sans JP',sans-serif;font-size:19px;display:flex;align-items:center;gap:10px;
  margin:0 0 20px;
}
.access-area h3::before{content:"";width:10px;height:10px;border-radius:50%;background:var(--brand)}

/* ACCESS desktop - card grid (always expanded, no accordion) */
.access-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px;margin-bottom:20px}
/* store page has just one card - don't let it stretch full-width (blows up the 4/3 photo) */
.access-grid.single{grid-template-columns:minmax(0,960px);justify-content:center}
/* Tokyo area only has 2 stores - force 3 fixed columns so cards match the
   width of areas with more stores, leaving the 3rd column empty on desktop */
@media (min-width:641px){
  .access-grid.access-grid-3col{grid-template-columns:repeat(3,1fr)}
}
.access-card{background:var(--surface);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow)}
.access-card .photo{aspect-ratio:4/3}
.access-card .photo img{width:100%;height:100%;object-fit:cover}
.access-card .body{padding:20px 22px 22px}
/* store page single card - photo on the left, details on the right (desktop only) */
.access-grid.single .access-card{display:grid;grid-template-columns:minmax(0,42%) 1fr}
.access-grid.single .access-card .photo{aspect-ratio:auto;height:100%}
.access-grid.single .access-card .body{padding:28px 32px}
@media (max-width:640px){
  .access-grid.single .access-card{display:block}
  .access-grid.single .access-card .photo{aspect-ratio:4/3;height:auto}
  .access-grid.single .access-card .body{padding:20px 22px 22px}
}
.access-card .tag{display:inline-block;background:var(--accent);color:var(--accent-ink);font-size:11px;font-weight:700;padding:3px 10px;border-radius:999px;margin-bottom:10px}
.access-card h4{margin:0 0 10px;font-size:18px;font-family:'Noto Sans JP',sans-serif}
.access-card .addr{margin:0 0 14px;font-size:13px;color:var(--muted);line-height:1.6}
.access-card .meta{display:flex;flex-direction:column;gap:2px;font-size:12.5px;margin:0 0 16px}
.access-card .meta span:first-child{font-weight:700;color:var(--ink)}
.access-card .meta span:last-child{color:var(--muted)}
.access-social{display:flex;gap:10px;margin:0 0 18px}
.access-social a{
  width:38px;height:38px;border-radius:50%;background:var(--brand);color:#fff;
  display:flex;align-items:center;justify-content:center;transition:background .15s ease;
}
.access-social a:hover{background:var(--brand-dark)}
.access-map{margin-top:0;line-height:0;border-top:1px solid var(--border)}
.access-map iframe{width:100%;height:280px;display:block}
/* map is a child of .access-card, which is a 2-col grid on desktop (photo | body) -
   make it span both columns as a full-width strip along the bottom of the card */
.access-grid.single .access-card .access-map{grid-column:1/-1}
.store-link{color:var(--brand);font-weight:700;white-space:nowrap}

/* ACCESS mobile - accordion. Collapsed by default (just photo + name), tap
   to reveal address/phone/hours. Keeps the page short without hiding the
   photo or cramming a 6-column table into a narrow screen. */
.access-accordion{display:none}
.access-acc-item{border-bottom:1px solid var(--border)}
.access-acc-item:last-child{border-bottom:none}
.access-acc-q{
  width:100%;display:flex;align-items:center;gap:14px;
  background:none;border:none;cursor:pointer;padding:14px 0;text-align:left;font-family:inherit;
}
.access-acc-q img{width:56px;height:56px;object-fit:cover;border-radius:10px;flex:none}
.access-acc-name{flex:1;font-weight:700;font-size:15px;font-family:'Noto Sans JP',sans-serif;color:var(--ink)}
.access-acc-name small{display:block;font-weight:400;font-size:11.5px;color:var(--muted);font-family:'Noto Sans JP',sans-serif;margin-top:3px}
.access-acc-q .chev{
  flex:none;display:flex;align-items:center;justify-content:center;
  width:26px;height:26px;border-radius:50%;background:var(--brand);color:#fff;
  font-size:13px;transition:transform .2s ease;
}
.access-acc-item.open .chev{transform:rotate(180deg)}
.access-acc-a{max-height:0;overflow:hidden;transition:max-height .25s ease}
.access-acc-item.open .access-acc-a{max-height:220px}
.access-acc-a p{margin:0 0 8px;font-size:12.5px;color:var(--muted);line-height:1.55;padding-left:70px}
.access-card-meta{display:flex;flex-direction:column;gap:2px}
.access-card-meta span:first-child{font-weight:700;color:var(--ink)}
.access-acc-a .store-link{font-size:12.5px;font-weight:700;color:var(--brand);display:block;padding-left:70px;padding-bottom:14px}

/* ---------- FAQ ---------- */
.faq-item{border-bottom:1px solid var(--border)}
.faq-q{
  width:100%;text-align:left;background:none;border:none;cursor:pointer;
  padding:22px 4px;display:flex;justify-content:space-between;gap:16px;align-items:center;
  font-size:15.5px;font-weight:700;font-family:inherit;color:var(--ink);
}
.faq-q .qmark{color:var(--brand);margin-right:8px}
.faq-q .chev{transition:transform .2s ease;color:var(--muted);flex:none}
.faq-item.open .chev{transform:rotate(180deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .25s ease}
.faq-item.open .faq-a{max-height:520px}
.faq-a p{margin:0 0 20px;color:var(--muted);font-size:14px;padding-right:30px}
.faq-a p b{color:var(--brand);font-weight:700;margin-right:6px}
/* answers pasted as <pre> default to white-space:pre, which doesn't wrap - long
   ones ran off the right edge and got clipped by .faq-a's overflow:hidden */
.faq-a pre{white-space:pre-wrap;word-break:break-word;font-family:inherit;font-size:inherit;line-height:inherit;margin:0}

/* ---------- personal training accordion (native <details>) ---------- */
.pt-accordion{border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;margin:0 auto}
.pt-accordion-q{
  list-style:none;cursor:pointer;padding:20px 24px;background:var(--surface);
  display:flex;justify-content:space-between;align-items:center;gap:16px;
  font-size:15.5px;font-weight:700;color:var(--ink);margin:0;
}
.pt-accordion-q::-webkit-details-marker{display:none}
.pt-accordion-q .chev{transition:transform .2s ease;color:var(--muted);flex:none}
.pt-accordion[open] .pt-accordion-q .chev{transform:rotate(180deg)}
.pt-accordion-a{padding:28px 24px;text-align:center}
.pt-accordion-a img{max-width:100%;border-radius:var(--radius-md)}
.pt-accordion-a p{color:var(--muted);line-height:1.8;margin:0 0 12px}
.pt-accordion-a .pt-subhead{font-size:clamp(19px,2.6vw,24px);color:var(--ink);margin:20px 0 12px}
.pt-plans{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin:24px 0;text-align:left}
.pt-plan{background:var(--bg);border-radius:var(--radius-md);padding:20px}
.pt-plan h3{font-size:15px;margin:0 0 10px}
.pt-plan-price{font-size:13px}
.pt-plan-price strong{color:var(--brand);font-size:19px}
.pt-plan p{font-size:13px;margin:0 0 8px}
.pt-plan ul{margin:0 0 8px;padding-left:18px;font-size:12.5px;color:var(--muted)}
.pt-plan-note{font-size:11.5px;color:var(--muted)}
.pt-gallery{display:grid;grid-template-columns:repeat(5,1fr);gap:8px;margin-top:16px}
.pt-gallery img{width:100%;aspect-ratio:3/2;object-fit:cover;border-radius:var(--radius-sm,6px)}
@media (max-width:820px){
  .pt-plans{grid-template-columns:1fr}
  .pt-gallery{grid-template-columns:repeat(3,1fr)}
}

/* ---------- contact ---------- */
.contact-box{
  background:var(--surface);border-radius:var(--radius-lg);box-shadow:var(--shadow);
  padding:44px;max-width:680px;margin:0 auto;
}
.form-row{margin-bottom:20px}
.form-row label{display:block;font-weight:700;font-size:13.5px;margin-bottom:8px}
.required-mark{color:#e6392f;margin-left:3px}
.form-row .hint{font-weight:400;color:var(--muted);font-size:11.5px;display:block;margin-top:4px}
.radio-group,.checkbox-group{display:flex;flex-wrap:wrap;gap:10px}
.radio-group label,.checkbox-group label{
  display:flex;align-items:center;gap:6px;border:1px solid var(--border);border-radius:999px;
  padding:8px 16px;font-weight:500;font-size:13px;cursor:pointer;
}
.form-row input[type=text],.form-row input[type=email],.form-row input[type=tel],.form-row textarea,.form-row select{
  width:100%;padding:12px 14px;border:1px solid var(--border);border-radius:10px;font-size:14px;
  font-family:inherit;background:#fff;
}
.datetime-pair{display:flex;align-items:center;gap:8px;margin-bottom:10px}
.datetime-pair:last-child{margin-bottom:0}
.datetime-pair .datetime-label{flex:0 0 52px;font-size:12.5px;font-weight:700;color:var(--muted)}
.datetime-pair input[type=date],.datetime-pair input[type=time]{
  padding:11px 12px;border:1px solid var(--border);border-radius:10px;font-size:13.5px;
  font-family:inherit;background:#fff;
}
.datetime-pair input[type=date]{flex:1.3}
.datetime-pair input[type=time]{flex:1}
@media (max-width:480px){
  .datetime-pair{flex-wrap:wrap}
  .datetime-pair .datetime-label{flex:0 0 100%}
}
.form-row textarea{min-height:120px;resize:vertical}
.contact-box .btn{width:100%;justify-content:center;padding:16px}
.form-status{min-height:1.4em;margin:0 0 12px;font-size:13.5px;font-weight:700;text-align:center}
.form-status.ok{color:#1a7d3a}
.form-status.error{color:var(--brand-dark)}

/* ---------- store page: hero checklist ---------- */
.hero-checks{
  list-style:none;margin:0 0 18px;display:flex;flex-direction:column;gap:5px;
  background:rgba(6,5,4,.6);padding:10px 18px;border-radius:10px;
}
.hero-checks li{display:flex;align-items:center;gap:8px;font-size:13.5px;color:#f1efe9;text-shadow:0 1px 4px rgba(0,0,0,.7)}
.hero-checks li::before{content:"✓";color:var(--accent);font-weight:700}

/* ---------- store page: "find your fit" CTA cards ---------- */
.fit-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.fit-card{background:var(--surface);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);text-align:center}
.fit-card .photo{aspect-ratio:4/3}
.fit-card .photo img{width:100%;height:100%;object-fit:cover}
.fit-card .body{padding:22px}
.fit-card .label{font-weight:700;font-size:16px;margin:0 0 16px}

/* ---------- store page: price plans ---------- */
.price-note{text-align:center;margin:0 0 32px}
.price-note .badge{
  display:inline-flex;align-items:center;gap:4px;
  background:var(--surface);border:1px solid var(--border);border-radius:999px;
  padding:11px 26px;font-size:13.5px;color:var(--muted);box-shadow:var(--shadow);
}
.price-note .badge strong{color:var(--brand);font-size:18px;font-weight:700}
.price-table-wrap{overflow-x:auto;border-radius:var(--radius-lg);box-shadow:var(--shadow);background:var(--surface)}
.price-table{width:100%;border-collapse:collapse;min-width:680px}
.price-table th,.price-table td{padding:16px 20px;text-align:left;border-bottom:1px solid var(--border);font-size:14px;vertical-align:top}
.price-table th{background:var(--bg);color:var(--muted);font-weight:700;font-size:12px;letter-spacing:.03em;white-space:nowrap}
.price-table tbody tr:last-child td{border-bottom:none}
.plan-badge{
  display:inline-block;background:var(--highlight);color:var(--accent-ink);
  font-size:11px;font-weight:700;padding:3px 10px;border-radius:999px;margin-left:8px;
  vertical-align:middle;white-space:nowrap;
}
.price-table td.plan{font-weight:700;font-family:'Noto Sans JP',sans-serif;white-space:nowrap}
.price-table td.amount{color:var(--brand);font-weight:700;white-space:nowrap;font-size:16px}
.price-table td.amount span{color:var(--muted);font-weight:400;font-size:12px;margin-left:2px}
.price-table td.note{color:var(--muted);font-size:12.5px}

/* below 680px the table can't fit without horizontal scroll (which people miss/dislike) -
   swap it for an accordion instead: plan + price collapsed, tap to see the rest */
.price-accordion{display:none}
@media (max-width:680px){
  .price-table-wrap{display:none}
  .price-accordion{display:block}
  .price-acc-item{
    background:var(--surface);border-radius:var(--radius-lg);box-shadow:var(--shadow);
    margin-bottom:12px;overflow:hidden;
  }
  .price-acc-item:last-child{margin-bottom:0}
  .price-acc-q{
    width:100%;display:flex;align-items:center;gap:10px;
    background:none;border:none;cursor:pointer;padding:16px 18px;text-align:left;font-family:inherit;
  }
  .price-acc-plan{flex:1;font-weight:700;font-size:14.5px;font-family:'Noto Sans JP',sans-serif;color:var(--ink)}
  .price-acc-amount{
    flex:none;color:var(--brand);font-weight:700;font-size:15.5px;white-space:nowrap;
  }
  .price-acc-amount small{color:var(--muted);font-weight:400;font-size:11px;margin-left:1px}
  .price-acc-q .chev{
    flex:none;display:flex;align-items:center;justify-content:center;
    width:26px;height:26px;border-radius:50%;background:var(--brand);color:#fff;
    font-size:13px;transition:transform .2s ease;
  }
  .price-acc-item.open .chev{transform:rotate(180deg)}
  .price-acc-a{max-height:0;overflow:hidden;transition:max-height .25s ease;padding:0 18px}
  .price-acc-item.open .price-acc-a{max-height:200px}
  .price-acc-a p{margin:0 0 14px;font-size:13px;color:var(--muted);line-height:1.6}
  .price-acc-a p:last-child{margin-bottom:16px}
  .price-acc-a p b{color:var(--ink);font-weight:700;margin-right:6px}
}

/* ---------- store page: equipment gallery (auto-scrolling marquee, pauses on hover) ---------- */
.equip-intro{text-align:center;color:var(--muted);font-size:14.5px;max-width:640px;margin:0 auto 32px}
.equip-marquee{
  overflow-x:auto;overflow-y:hidden;cursor:grab;scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent);
  width:100vw;margin-left:50%;transform:translateX(-50%);
}
.equip-marquee::-webkit-scrollbar{display:none}
.equip-marquee.dragging{cursor:grabbing;scroll-behavior:auto;user-select:none}
.equip-track{display:flex;gap:16px;width:max-content}
.equip-track img{
  height:220px;width:auto;aspect-ratio:4/3;object-fit:cover;
  border-radius:var(--radius-md);box-shadow:var(--shadow);flex:none;
  -webkit-user-drag:none;user-select:none;
}

/* ---------- store page: equipment lightbox (tap/click a photo to zoom) ---------- */
.lightbox{
  position:fixed;inset:0;background:rgba(10,9,8,.9);
  display:flex;align-items:center;justify-content:center;padding:24px;
  z-index:200;opacity:0;pointer-events:none;transition:opacity .2s ease;
}
.lightbox.open{opacity:1;pointer-events:auto}
.lightbox img{max-width:min(92vw,900px);max-height:88vh;object-fit:contain;border-radius:var(--radius-md);box-shadow:0 20px 60px rgba(0,0,0,.6)}
.lightbox-close{
  position:absolute;top:18px;right:22px;width:42px;height:42px;border-radius:50%;
  background:rgba(255,255,255,.15);color:#fff;border:none;font-size:24px;line-height:1;
  cursor:pointer;display:flex;align-items:center;justify-content:center;
}
.lightbox-close:hover{background:rgba(255,255,255,.3)}

/* ---------- store page: staff ---------- */
.staff-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:20px;max-width:520px;margin:0 auto}
.staff-card{text-align:center}
.staff-card .photo{display:block;aspect-ratio:1/1;border-radius:50%;overflow:hidden;box-shadow:var(--shadow);margin:0 auto 14px;max-width:160px}
.staff-card .photo img{width:100%;height:100%;object-fit:cover}
.staff-card h4{margin:0 0 12px;font-size:15px;font-family:'Noto Sans JP',sans-serif}
.staff-recommend{
  text-align:left;background:var(--bg);border-radius:var(--radius-md);
  padding:14px 18px;margin:0 0 14px;font-size:12.5px;color:var(--muted);
}
.staff-recommend p{margin:0 0 8px;color:var(--ink);font-size:13px}
.staff-recommend ul{margin:0;padding-left:18px}
.staff-recommend li{margin-bottom:4px}

@media (max-width:560px){
  .fit-grid{grid-template-columns:1fr}
}

/* ---------- media ---------- */
.media-strip{display:flex;gap:28px;align-items:center;justify-content:center;flex-wrap:wrap;opacity:.85}
.media-strip img{height:46px;width:auto;filter:grayscale(1);object-fit:contain}

/* ---------- store page: fixed bottom CTA bar (not on home) ---------- */
body.has-fixed-cta{padding-bottom:86px}
.fixed-cta-bar{
  position:fixed;left:0;right:0;bottom:0;z-index:80;
  display:flex;gap:14px;justify-content:center;align-items:center;
  background:#fff;border-top:1px solid var(--border);
  padding:16px 20px;box-shadow:0 -8px 20px -12px rgba(17,24,39,.18);
}
.fixed-cta-bar .btn{flex:1;justify-content:center;max-width:360px;padding:14px 20px;white-space:nowrap}
.fixed-cta-bar .btn.ghost{background:#fff}
/* same bar, reused inline mid-page instead of pinned to the viewport bottom */
.fixed-cta-bar.inline{position:static;box-shadow:none;border-top:none;background:none;margin:40px auto 0}
/* two-line label (see main-cta in store templates) — tightened font/line-height so the
   extra line doesn't grow the button past its original single-line height */
.fixed-cta-bar .btn.btn-2line{text-align:center;font-size:13px;line-height:1.05}
@media (max-width:560px){
  body.has-fixed-cta{padding-bottom:84px}
  .fixed-cta-bar{padding:10px 12px;gap:8px}
  .fixed-cta-bar .btn{padding:10px 8px;font-size:12px;line-height:1.3;max-width:none;white-space:normal}
  .fixed-cta-bar .btn.btn-2line{font-size:11px;line-height:1.15}
}

/* ---------- footer ---------- */
footer.site{background:#eef0f3;color:var(--ink);padding-top:48px;border-top:1px solid var(--border)}
.footer-legal{
  display:flex;gap:24px;flex-wrap:wrap;justify-content:center;font-size:13px;color:var(--muted);
  margin-top:28px;padding-top:24px;padding-bottom:24px;border-top:1px solid var(--border);
}
.store-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:36px}
.store-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-md);padding:16px}
.store-card .tag{display:inline-block;background:var(--accent);color:var(--accent-ink);font-size:11px;font-weight:700;padding:3px 10px;border-radius:999px;margin-bottom:10px}
.store-card h4{margin:0 0 8px;font-size:15px;color:var(--ink)}
.store-card p{margin:0 0 14px;font-size:12.5px;color:var(--muted)}
.store-card .actions{display:flex;gap:8px;flex-wrap:wrap}
.copyright{text-align:center;padding:24px 0;border-top:1px solid var(--border);font-size:12px;color:var(--muted)}

@media (max-width:980px){
  .site-header-inner{position:relative}
  nav.main-nav{
    position:absolute;top:100%;left:0;right:0;
    background:var(--bg);border-bottom:1px solid var(--border);
    box-shadow:var(--shadow);
    flex-direction:column;align-items:flex-start;padding:12px 24px 24px;
    display:none;max-height:calc(100vh - 70px);overflow-y:auto;
  }
  nav.main-nav.open{display:flex}
  nav.main-nav > ul{flex-direction:column;align-items:flex-start;gap:4px;width:100%}
  nav.main-nav li{width:100%}
  nav.main-nav li.has-children .dropdown{display:none;position:static;box-shadow:none;border:none;padding:4px 0 4px 14px;margin-bottom:8px}
  nav.main-nav li.has-children.open .dropdown{display:block}
  nav.main-nav a{display:block;padding:10px 0}
  nav.main-nav .cta-mini{display:inline-block;margin-top:6px;padding:9px 18px}
  .burger{display:block}
  .hero{height:min(85vh,560px)}
  .quickgrid{grid-template-columns:repeat(2,1fr);margin-top:28px}

  /* left-align the FEATURE heading on mobile to match the stacked cards below */
  #feature .section-head{text-align:left}

  /* FEATURE - plain vertical stack on mobile (used to be a horizontal swipe
     carousel; dropped in favor of just scrolling the page like everything else) */
  .feature-scroll{display:block}
  .feature-scroll .feature-item{
    display:block;margin-bottom:16px;
    border-bottom:none;padding:0;
    background:var(--surface);border-radius:var(--radius-lg);
    box-shadow:var(--shadow);overflow:hidden;
  }
  .feature-scroll .feature-item:last-child{margin-bottom:0}
  .feature-scroll .feature-item .feature-photo{border-radius:0;box-shadow:none;aspect-ratio:4/3;order:0}
  .feature-scroll .feature-item > div:last-child{padding:20px}
  .feature-scroll .feature-item .btn.ghost.small{margin-top:6px}
  .feature-item h3{font-size:17px}
  .feature-num{font-size:36px}

  /* FLOW/PROCESS - narrower cards on mobile so the swipe carousel shows one at a time */
  .flow-steps{gap:16px}
  .flow-step{flex:0 0 78%;padding:20px}
  .flow-step .flow-text{margin-top:14px}
  .store-grid{grid-template-columns:repeat(2,1fr)}
  section{padding:56px 0}

  /* ACCESS - swap the desktop card grid for an accordion on mobile (six
     always-open photo cards take too much vertical space on a narrow screen).
     Store pages (.single) have just one card and no accordion markup - they
     stay as .access-grid and switch to a stacked layout via their own
     640px breakpoint instead, so exclude them here or ACCESS goes blank. */
  .access-grid:not(.single){display:none}
  .access-accordion{display:block}

  /* footer store cards - more compact on mobile */
  .store-card{padding:14px}
  .store-card .tag{font-size:10px;padding:3px 9px;margin-bottom:8px}
  .store-card h4{font-size:14px;margin:0 0 5px}
  .store-card p{font-size:12px;margin:0 0 10px}
  .store-card .actions{gap:6px}
  .store-card .actions .btn{padding:8px 14px;font-size:11.5px;box-shadow:none}
}
/* ---------- small-laptop screens (13" notebooks etc.) ----------
   Desktop layout is correct here, but the paddings/sizes tuned for large
   monitors feel oversized on a short, ~1024-1366px-wide viewport - this
   band sits between the mobile breakpoint above and full desktop below. */
@media (min-width:981px) and (max-width:1366px){
  section{padding:56px 0}
  .hero{height:min(70vh,460px)}
  .hero-content h1{font-size:clamp(26px,4vw,38px)}
  .section-title{font-size:26px}
  .feature-num{font-size:40px}
}
@media (max-width:560px){
  .quickgrid{grid-template-columns:repeat(2,1fr);gap:12px;margin-top:22px}
  .quickgrid .card h3{font-size:15px}
  .quickgrid .card p{font-size:12px}
  .quickgrid .card .body{padding:14px}
  .store-grid{grid-template-columns:repeat(2,1fr);gap:10px}
  .contact-box{padding:26px}
  .hero-content{padding:24px 20px 40px}
  .pillbar a{padding:12px 16px;font-size:13px}
  .radio-group label{flex:1 1 auto;justify-content:center}
  .hero-content .mobile-break{display:block}
  .hero-content h1{font-size:23px}
  .footer-legal{flex-direction:column;align-items:center;gap:16px}
  .equip-track img{height:150px}
}

/* ---------- blog ---------- */
.breadcrumb{font-size:12.5px;color:var(--muted);margin:0 0 18px}
.breadcrumb a{color:var(--muted)}
.breadcrumb a:hover{color:var(--brand)}

.cat-pills{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:8px}
.cat-pills a{
  background:var(--surface);border:1px solid var(--border);border-radius:999px;
  padding:8px 18px;font-size:13px;font-weight:700;color:var(--ink);
}
.cat-pills a:hover{border-color:var(--brand);color:var(--brand)}
.cat-pills a.active{background:var(--brand);color:#fff;border-color:var(--brand)}

.post-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:28px}
.post-card{
  display:flex;flex-direction:column;background:var(--surface);border-radius:var(--radius-lg);
  overflow:hidden;box-shadow:var(--shadow);transition:transform .15s ease, box-shadow .15s ease;
}
.post-card:hover{transform:translateY(-3px);box-shadow:0 14px 28px -10px rgba(17,24,39,.22)}
.post-card-img{aspect-ratio:16/10;overflow:hidden;background:var(--bg)}
.post-card-img img{width:100%;height:100%;object-fit:cover}
.post-card .body{padding:18px 20px 22px;display:flex;flex-direction:column;flex:1}
.post-card .tag{
  align-self:flex-start;display:inline-block;background:var(--accent);color:var(--accent-ink);
  font-size:11px;font-weight:700;padding:3px 10px;border-radius:999px;margin-bottom:10px;
}
.post-card h3{margin:0 0 10px;font-size:16px;line-height:1.5;color:var(--ink)}
.post-card p{
  margin:0 0 10px;font-size:13px;color:var(--muted);line-height:1.7;flex:1;
  display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;overflow:hidden;
}
.post-card .post-more{font-size:12.5px;font-weight:700;color:var(--brand);margin:0 0 12px}
.post-card:hover .post-more{text-decoration:underline}
.post-card .date{font-size:12px;color:var(--muted)}
.post-card.js-hidden{display:none}

.post-tag{
  display:inline-block;background:var(--accent);color:var(--accent-ink);
  font-size:12px;font-weight:700;padding:4px 12px;border-radius:999px;margin-bottom:14px;
}
.post-title{font-size:clamp(22px,3.4vw,32px);font-weight:700;line-height:1.5;margin:0 0 12px;color:var(--ink)}
.post-date{color:var(--muted);font-size:13px;margin:0 0 24px}
.post-hero{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);margin-bottom:32px}
.post-hero img{width:100%;aspect-ratio:16/9;object-fit:cover}

.post-body{font-size:15.5px;line-height:1.9;color:var(--ink)}
.post-body p{margin:0 0 22px}
.post-body h2{font-size:22px;font-weight:700;margin:44px 0 18px;padding-left:14px;border-left:5px solid var(--brand)}
.post-body h3{font-size:18px;font-weight:700;margin:32px 0 14px}
.post-body h4{font-size:16px;font-weight:700;margin:24px 0 12px}
.post-body img{border-radius:var(--radius-md);margin:8px 0 26px}
.post-body a{color:var(--brand);text-decoration:underline}
.post-body b, .post-body strong{font-weight:700}
.post-body blockquote{margin:0 0 26px;padding:14px 20px;border-left:4px solid var(--border);color:var(--muted);background:var(--bg);border-radius:0 var(--radius-md) var(--radius-md) 0}
.post-body table{width:100%;border-collapse:collapse;margin:0 0 26px;display:block;overflow-x:auto;white-space:nowrap}
.post-body th,.post-body td{border:1px solid var(--border);padding:10px 14px;font-size:14px;text-align:center}
.post-body th{background:var(--bg)}

/* label/value info tables (legal pages, company profile) - always 2 columns, so on
   mobile they stack into label-over-value cards instead of horizontal-scrolling
   a table that's mostly long paragraphs of text */
.post-body table.info-table{display:table;white-space:normal;table-layout:fixed}
.post-body table.info-table th{width:220px;white-space:normal;text-align:left;vertical-align:top}
.post-body table.info-table td{text-align:left;vertical-align:top;line-height:1.8}
@media (max-width:640px){
  .post-body table.info-table,
  .post-body table.info-table tbody,
  .post-body table.info-table tr,
  .post-body table.info-table th,
  .post-body table.info-table td{display:block;width:auto}
  .post-body table.info-table tr{border:none;border-bottom:1px solid var(--border);padding-bottom:14px;margin-bottom:14px}
  .post-body table.info-table th{border:none;background:transparent;padding:0 0 4px;font-size:12.5px;color:var(--brand)}
  .post-body table.info-table td{border:none;padding:0}
}

/* standalone map embed (company profile) - plain rounded card, no extra border
   from .access-map's store-card context which caused a stray double-shadow look */
.map-embed{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);margin:0 0 26px}
.map-embed iframe{width:100%;height:320px;display:block;border:0}

.post-cta{
  margin:40px 0;padding:28px;text-align:center;background:var(--surface);
  border-radius:var(--radius-lg);box-shadow:var(--shadow);
}
.post-cta p{margin:0 0 16px;font-weight:700;color:var(--ink)}

.related-posts{margin-top:48px}

@media (max-width:980px){
  .post-grid{grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:18px}
  .post-title{font-size:22px}
  .post-body{font-size:15px}
  .post-body h2{font-size:19px;margin:34px 0 14px}
}
@media (max-width:560px){
  .post-grid{grid-template-columns:1fr}
  .cat-pills a{padding:7px 14px;font-size:12px}
}

/* ---------- recruit ---------- */
.recruit-page .intro-section{max-width:820px;margin:0 auto;padding:56px 24px;text-align:center}
.recruit-page .intro-section .mv-img{width:100%;border-radius:var(--radius-lg);margin-bottom:28px}
.recruit-page .intro-section h2{font-size:clamp(22px,3.2vw,30px);margin:0 0 16px}
.recruit-page .intro-section p{color:var(--muted);margin:0 0 8px;line-height:1.8}
.recruit-page .intro-section .section-title{font-size:clamp(20px,3vw,28px);margin:0 0 20px;color:var(--ink)}

.recruit-split{
  display:grid;grid-template-columns:1fr 1fr;gap:0;align-items:center;
  max-width:var(--maxw);margin:0 auto;padding:0 24px;
}
.recruit-split .recruit-split-img img{width:100%;border-radius:var(--radius-lg)}
.recruit-split .intro-section{text-align:left;padding:24px}
.recruit-split .target-list{list-style:none;margin:0;padding:0}
.recruit-split .target-list li{
  position:relative;padding-left:26px;margin-bottom:12px;color:var(--muted);line-height:1.6;
}
.recruit-split .target-list li::before{content:"✓";position:absolute;left:0;color:var(--brand);font-weight:700}

.perks-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;text-align:left;margin-top:8px}
.perk-card{background:var(--surface);border-radius:var(--radius-md);box-shadow:var(--shadow);padding:22px}
.perk-card .num{display:block;font-weight:700;color:var(--brand);margin-bottom:8px;font-size:14.5px}
.perk-card p{color:var(--muted);font-size:13.5px;margin:0}

.recruit-table,.recruit-table-wrap table{width:100%;border-collapse:collapse;text-align:left;margin:0 auto;max-width:820px}
.recruit-table th,.recruit-table td,.recruit-table-wrap th,.recruit-table-wrap td{border-bottom:1px solid var(--border);padding:18px 16px;vertical-align:top;font-size:14px}
.recruit-table th,.recruit-table-wrap th{width:130px;color:var(--brand);font-weight:700;white-space:nowrap}
.recruit-table td ul,.recruit-table-wrap td ul{margin:0 0 10px;padding-left:20px;color:var(--muted)}
.recruit-table td ul:last-child,.recruit-table-wrap td ul:last-child{margin-bottom:0}
.recruit-table .sub-head,.recruit-table-wrap .sub-head{display:block;font-weight:700;font-size:13px;margin:10px 0 4px}
.recruit-table .sub-head:first-child,.recruit-table-wrap .sub-head:first-child{margin-top:0}
.recruit-table-wrap{overflow-x:auto}
.recruit-table-wrap td:first-child{width:130px;white-space:nowrap;vertical-align:top}
.recruit-table-wrap td:first-child b{color:var(--brand)}
@media (max-width:820px){.recruit-table-wrap td:first-child{width:auto;display:block;white-space:normal;padding-bottom:6px}}
.income-table{width:100%;border-collapse:collapse;margin:10px 0}
.income-table th,.income-table td{border:1px solid var(--border);padding:8px 10px;font-size:13px;text-align:center}
.income-table th{background:var(--bg)}
.income-table .amount{font-weight:700;color:var(--brand)}
.note-box{background:var(--bg);border-radius:var(--radius-md);padding:16px 20px;font-size:13px;color:var(--muted);max-width:820px;margin:16px auto 0}

.apply-steps{display:flex;flex-wrap:wrap;justify-content:center;gap:20px;margin-top:8px}
.apply-step{flex:0 0 160px;text-align:center}
.apply-circle{
  width:64px;height:64px;border-radius:50%;background:var(--brand);color:#fff;
  display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:700;
  line-height:1.3;margin:0 auto 10px;
}
.apply-step p{margin:0;font-size:13px;color:var(--muted)}

/* 応募から採用までの流れ (recruit.html) — always one line on desktop, stacked on mobile */
.apply-steps--inline{flex-wrap:nowrap}
.apply-steps--inline .apply-step{flex:1 1 0;min-width:0}
@media (max-width:820px){
  .apply-steps--inline{flex-direction:column;align-items:center;gap:16px}
  .apply-steps--inline .apply-step{flex:none;width:100%;max-width:220px}
}

/* セルフィットでの働き方 (recruit-woman24) — 4 columns on desktop */
@media (min-width:821px){
  .apply-steps--grid4{display:grid;grid-template-columns:repeat(4,1fr)}
}
@media (max-width:820px){
  #work-flow.intro-section{padding:32px 16px}
  .apply-steps--grid4{gap:14px}
}

.recruit-photos{display:grid;grid-template-columns:1fr 1fr;gap:16px;max-width:var(--maxw);margin:40px auto;padding:0 24px}
.recruit-photos img{width:100%;border-radius:var(--radius-lg)}

.cta-section{
  max-width:820px;margin:0 auto;padding:44px 24px;text-align:center;
  background:var(--surface);border-radius:var(--radius-lg);box-shadow:var(--shadow);
}
.cta-section h2{font-size:clamp(20px,3vw,26px);margin:0 0 16px}
.cta-section p{color:var(--muted);line-height:1.8;margin:0}
.recruit-page>.cta-section:last-child{margin-bottom:60px}

.apply-form-section{padding:56px 0}

@media (max-width:820px){
  .recruit-split{grid-template-columns:1fr;gap:20px;padding:0 20px}
  .perks-grid{grid-template-columns:1fr}
  .recruit-table th,.recruit-table-wrap th{width:auto;display:block;padding-bottom:6px}
  .recruit-table td,.recruit-table-wrap td{display:block;padding-top:0}
  .recruit-photos{grid-template-columns:1fr}
}

/* ---------- trainers list ---------- */
.trainer-group{padding:48px 0;border-bottom:1px solid var(--border)}
.trainer-group:last-child{border-bottom:none}
.trainer-group-title{font-size:20px;margin:0 0 20px;padding-left:14px;border-left:5px solid var(--brand)}
.trainer-thumbs{display:flex;flex-wrap:wrap;gap:16px;margin-bottom:32px}
.trainer-thumb{
  display:flex;flex-direction:column;align-items:center;gap:8px;width:120px;text-align:center;
}
.trainer-thumb img{width:88px;height:88px;border-radius:50%;object-fit:cover;box-shadow:var(--shadow)}
.trainer-thumb span{font-size:12px;color:var(--ink);line-height:1.4}

.trainer-profile{
  display:grid;grid-template-columns:220px 1fr;gap:32px;margin-bottom:40px;
  background:var(--surface);border-radius:var(--radius-lg);box-shadow:var(--shadow);padding:32px;
  scroll-margin-top:90px;
}
.trainer-profile:last-child{margin-bottom:0}
.trainer-name{grid-column:1/-1;font-size:19px;margin:0}
.trainer-photo img{width:100%;border-radius:var(--radius-md);aspect-ratio:1/1;object-fit:cover}
.trainer-bio{font-size:14px;line-height:1.85;color:var(--ink)}
.trainer-bio pre{
  white-space:pre-wrap;word-break:break-word;font-family:inherit;font-size:inherit;
  line-height:inherit;margin:0 0 18px;color:var(--ink);
}
.trainer-bio h3{font-size:15px;margin:20px 0 8px;color:var(--brand)}
.trainer-bio hr{border:none;border-top:1px dashed var(--border);margin:8px 0 16px}
.trainer-cta{grid-column:1/-1;display:flex;flex-wrap:wrap;gap:10px;margin-top:8px}

@media (max-width:700px){
  .trainer-profile{grid-template-columns:1fr;padding:22px}
  .trainer-photo img{max-width:200px;margin:0 auto}
}

/* ---------- registered trainers ---------- */
.rt-intro-gallery{
  display:grid;grid-template-columns:repeat(3,1fr);gap:16px;max-width:var(--maxw);margin:0 auto 48px;padding:0 24px;
}
.rt-intro-gallery img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:var(--radius-lg)}

.rt-grid{display:flex;flex-direction:column;gap:14px;margin:24px 0 40px}
.rt-card{background:var(--surface);border-radius:var(--radius-lg);box-shadow:var(--shadow);overflow:hidden}
.rt-card-q{
  width:100%;background:none;border:none;cursor:pointer;text-align:left;
  padding:16px 24px;display:flex;align-items:center;gap:20px;font-family:inherit;
}
.rt-card-photo{width:72px;height:72px;flex:none;border-radius:50%;overflow:hidden;box-shadow:var(--shadow)}
.rt-card-photo img{width:100%;height:100%;object-fit:cover}
.rt-card-name{flex:1;display:flex;flex-direction:column;gap:2px;min-width:0}
.rt-card-name b{font-size:14.5px;color:var(--ink)}
.rt-card-name small{font-size:12.5px;color:var(--muted)}
.rt-card-name em{font-style:normal;font-size:11.5px;color:var(--brand);font-weight:700}
.rt-card-q .chev{color:var(--muted);transition:transform .2s ease;flex:none}
.rt-card.open .chev{transform:rotate(180deg)}
.rt-card-a{max-height:0;overflow:hidden;transition:max-height .3s ease;padding:0 22px}
.rt-card.open .rt-card-a{max-height:1400px;padding:0 22px 24px}
.rt-card-a p{margin:0 0 14px;font-size:13px;color:var(--muted);line-height:1.75}
.rt-card-a p:last-child{margin-bottom:0}

.rt-note{max-width:820px;margin:0 auto 8px;text-align:center;color:var(--muted);font-size:14px;line-height:1.8}

.rt-steps{max-width:820px;margin:20px auto 0}
.rt-steps .faq-a{max-height:0}
.rt-steps .faq-item.open .faq-a{max-height:900px}
/* Unlike the FAQ Q&A (where <b> wraps only the single "A" label), these
   STEP descriptions have the whole sentence wrapped in <b> in the source
   content — the shared .faq-a p b{color:var(--brand)} rule was turning
   entire paragraphs teal/green here instead of just a label. */
.rt-steps .faq-a p b{color:inherit}

@media (max-width:980px){
  .rt-intro-gallery{grid-template-columns:1fr}
}
@media (max-width:560px){
  .rt-card-q{padding:14px 16px;gap:14px}
  .rt-card-photo{width:56px;height:56px}
  .rt-card-name b{font-size:13.5px}
  .rt-card-name small{font-size:12px}
}

/* ---------- before & after (chigasaki) ---------- */
.ba-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:24px}
.ba-card{background:var(--surface);border-radius:var(--radius-lg);box-shadow:var(--shadow);overflow:hidden}
.ba-card > img{width:100%;aspect-ratio:1/1;object-fit:cover}
.ba-card .body{padding:20px}
.ba-card .body p{margin:0 0 10px;font-size:13px;color:var(--muted);line-height:1.65}
.ba-card .body p:first-child{font-size:15px;font-weight:700;color:var(--ink);margin-bottom:4px}
.ba-card .body p.elementor-heading-title{font-weight:700;color:var(--brand);font-size:12.5px;margin:14px 0 2px;text-transform:uppercase;letter-spacing:.03em}
.ba-card .body p:last-child{margin-bottom:0;font-size:10.5px}

/* ---------- "who this is for" checklist (musashikoyama-woman) ---------- */
.price-intro{
  display:flex;align-items:center;gap:28px;max-width:900px;margin:0 auto 32px;
  background:var(--surface);border-radius:var(--radius-lg);box-shadow:var(--shadow);padding:20px;
}
.price-intro img{width:220px;height:220px;object-fit:cover;border-radius:var(--radius-md);flex:none}
.price-intro-lead{font-size:16px;font-weight:700;margin:0 0 10px;line-height:1.6}
.price-intro-lead strong{color:var(--brand);font-size:26px}
.price-intro p{margin:0 0 10px;font-size:13.5px;color:var(--muted)}
.price-intro p:last-child{margin-bottom:0}
@media (max-width:640px){
  .price-intro{flex-direction:column;text-align:center}
  .price-intro img{width:100%;height:auto;aspect-ratio:4/3}
}
