/* =========================================
   低料金理容室バーバーウッディ - LPスタイルシート（完全版）
   コンセプト：黒×黄×白 / モバイルファースト / シネマティック
   ========================================= */

/* ===== Reset ===== */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:"Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic",sans-serif;
  font-weight:500;
  color:#0f0f0f;
  background:#fafafa;
  line-height:1.8;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  padding-bottom:80px;
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
h1,h2,h3,h4,p,ul,ol,table,figure{margin:0;padding:0}
ul,ol{list-style:none}
a{color:inherit;text-decoration:none}
table{border-collapse:collapse;width:100%}
button{font-family:inherit}
:focus-visible{outline:3px solid #ffd400;outline-offset:2px}
::selection{background:#ffd400;color:#0a0a0a}

/* ===== Variables ===== */
:root{
  --black:#0a0a0a;
  --black-2:#161616;
  --black-3:#1f1f1f;
  --black-soft:#222;
  --yellow:#ffd400;
  --yellow-2:#ffea4d;
  --yellow-deep:#e6bd00;
  --yellow-bg:#fffbe6;
  --yellow-bg-2:#fff5cc;
  --line-green:#06c755;
  --line-dark:#04a648;
  --gray-1:#fafafa;
  --gray-2:#f2f2f2;
  --gray-3:#e8e8e8;
  --gray-4:#999;
  --gray-text:#555;
  --border:#ececec;
  --shadow-sm:0 4px 14px rgba(0,0,0,.06);
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --shadow-lg:0 20px 50px rgba(0,0,0,.14);
  --shadow-xl:0 30px 70px rgba(0,0,0,.18);
  --shadow-yellow:0 14px 30px rgba(255,212,0,.4);
  --shadow-line:0 12px 28px rgba(6,199,85,.32);
  --radius-sm:10px;
  --radius:16px;
  --radius-lg:22px;
  --radius-xl:28px;
  --serif:"Noto Serif JP",serif;
  --display:"Noto Sans JP",sans-serif;
}

/* ===== Layout ===== */
.container{
  width:100%;
  max-width:680px;
  margin:0 auto;
  padding:0 20px;
  position:relative;
}
.section{padding:80px 0;position:relative}
.eyebrow{
  font-size:11.5px;
  letter-spacing:.28em;
  color:var(--yellow-deep);
  font-weight:700;
  text-align:center;
  margin-bottom:14px;
  display:inline-block;
  width:100%;
  position:relative;
}
.eyebrow::before,
.eyebrow::after{
  content:"";
  display:inline-block;
  width:18px;height:1.5px;
  background:var(--yellow-deep);
  vertical-align:middle;
  margin:0 10px;
  opacity:.6;
}
.section-title{
  font-family:var(--serif);
  font-size:26px;
  font-weight:900;
  text-align:center;
  line-height:1.55;
  margin-bottom:14px;
  letter-spacing:.005em;
  color:var(--black);
}
.section-title::after{
  content:"";
  display:block;
  width:44px;height:3px;
  background:var(--yellow);
  border-radius:2px;
  margin:18px auto 0;
}
.section-lead{
  text-align:center;
  color:var(--gray-text);
  font-size:14px;
  margin-bottom:36px;
  line-height:1.85;
}
.sp-only{display:inline}
@media(min-width:680px){
  .sp-only{display:none}
  .section-title{font-size:34px}
  .section-lead{font-size:16px}
  .section{padding:110px 0}
}

/* ===== スクロール進捗バー ===== */
.scroll-progress{
  position:fixed;
  top:0;left:0;
  height:3px;
  width:0%;
  background:linear-gradient(90deg,var(--yellow) 0%,var(--yellow-2) 100%);
  z-index:200;
  transition:width .1s linear;
  box-shadow:0 1px 6px rgba(255,212,0,.5);
}

/* ===== 上部告知バー ===== */
.top-notice{
  background:var(--black);
  color:var(--yellow);
  font-size:12px;
  text-align:center;
  padding:9px 16px;
  letter-spacing:.04em;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  position:relative;
  z-index:10;
}
.top-notice strong{color:#fff;font-weight:700}
.top-notice-dot{
  width:8px;height:8px;
  background:#22c55e;
  border-radius:50%;
  display:inline-block;
  box-shadow:0 0 0 0 rgba(34,197,94,.7);
  animation:pulse-dot 2s infinite;
}
@keyframes pulse-dot{
  0%{box-shadow:0 0 0 0 rgba(34,197,94,.6)}
  70%{box-shadow:0 0 0 8px rgba(34,197,94,0)}
  100%{box-shadow:0 0 0 0 rgba(34,197,94,0)}
}

/* ===== Buttons ===== */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  max-width:360px;
  min-height:60px;
  padding:14px 22px;
  border-radius:999px;
  font-weight:700;
  font-size:16px;
  text-align:center;
  line-height:1.3;
  transition:transform .25s cubic-bezier(.16,1,.3,1),box-shadow .25s ease,opacity .2s ease;
  cursor:pointer;
}
.btn:active{transform:translateY(1px) scale(.98)}
.btn-line{
  background:linear-gradient(180deg,#06c755 0%,#04a648 100%);
  color:#fff;
  box-shadow:var(--shadow-line);
}
.btn-line:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 32px rgba(6,199,85,.45);
}
.btn-line-text{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  line-height:1.2;
}
.btn-line-text small{
  font-size:10.5px;
  font-weight:500;
  opacity:.92;
  letter-spacing:.04em;
}
.btn-line-text strong{
  font-size:16.5px;
  font-weight:700;
}
.btn-icon-line{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.btn-icon-line svg{filter:drop-shadow(0 1px 2px rgba(0,0,0,.18))}
.btn-ghost{
  background:rgba(255,255,255,.08);
  color:#fff;
  border:1.5px solid rgba(255,255,255,.5);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  font-size:14.5px;
  min-height:52px;
}
.btn-ghost:hover{background:rgba(255,255,255,.16)}
.btn-ghost-light{
  background:transparent;
  color:#fff;
  border:1.5px solid rgba(255,255,255,.6);
  font-size:15px;
}
.btn-ghost-light:hover{background:rgba(255,255,255,.1)}
.btn-dark{
  background:var(--black);
  color:#fff;
  box-shadow:var(--shadow);
}
.btn-dark:hover{background:var(--black-2);transform:translateY(-1px)}
.btn-large{min-height:70px;font-size:17px;padding:14px 26px}
.btn-large .btn-line-text strong{font-size:17.5px}
.btn-pulse::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  border:2px solid rgba(6,199,85,.5);
  animation:pulse-ring 2.2s ease-out infinite;
  pointer-events:none;
}
@keyframes pulse-ring{
  0%{transform:scale(1);opacity:.7}
  100%{transform:scale(1.14);opacity:0}
}
.inline-cta{
  display:flex;
  flex-direction:column;
  align-items:center;
  margin-top:32px;
}

/* ===== Hero（シネマティック） ===== */
.hero{
  position:relative;
  background:var(--black);
  color:#fff;
  padding:40px 0 60px;
  overflow:hidden;
  isolation:isolate;
  min-height:88vh;
  display:flex;
  align-items:center;
}
.hero-bg{
  position:absolute;
  inset:0;
  z-index:-2;
}
.hero-bg img{
  width:100%;height:100%;
  object-fit:cover;
  filter:saturate(.75) contrast(1.08);
  opacity:.4;
}
.hero-bg-overlay{
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(circle at 80% 10%,rgba(255,212,0,.18) 0%,transparent 45%),
    radial-gradient(circle at 10% 90%,rgba(255,212,0,.08) 0%,transparent 40%),
    linear-gradient(180deg,rgba(10,10,10,.55) 0%,rgba(10,10,10,.92) 60%,#0a0a0a 100%);
}
.hero-bg-grain{
  position:absolute;
  inset:0;
  z-index:-1;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .15 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='.4'/></svg>");
  opacity:.5;
  pointer-events:none;
  mix-blend-mode:overlay;
}
.hero-inner{position:relative;z-index:1;width:100%}

.brand-tagline{
  font-family:"Noto Sans JP",sans-serif;
  font-size:11px;
  letter-spacing:.18em;
  color:var(--yellow);
  font-weight:700;
  padding:5px 14px;
  border:1px solid rgba(255,212,0,.4);
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.brand-tagline-dot{
  width:6px;height:6px;
  border-radius:50%;
  background:var(--yellow);
  box-shadow:0 0 8px rgba(255,212,0,.7);
}

.brand-tagline-top{
  display:flex;
  width:max-content;
  max-width:90%;
  margin:0 auto 26px;
  text-align:center;
}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:6px;
  margin-bottom:26px;
}
.hero-badges li{
  background:var(--yellow);
  color:var(--black);
  font-weight:900;
  font-size:13px;
  padding:6px 12px;
  border-radius:999px;
  letter-spacing:.02em;
  display:inline-flex;
  align-items:center;
  gap:4px;
  box-shadow:0 4px 12px rgba(255,212,0,.25);
}
.hero-badges span{
  font-weight:500;
  font-size:11px;
  opacity:.7;
}

.hero-catch{
  text-align:center;
  margin-bottom:18px;
}
.hero-catch-text{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  color:#fff;
  background:linear-gradient(180deg,rgba(255,255,255,.06) 0%,rgba(255,255,255,.02) 100%);
  border:1px solid rgba(255,212,0,.45);
  padding:8px 18px;
  border-radius:6px;
  letter-spacing:.06em;
  position:relative;
}
.hero-catch-text::before,
.hero-catch-text::after{
  content:"";
  position:absolute;
  width:12px;height:12px;
  border:1px solid var(--yellow);
}
.hero-catch-text::before{top:-1px;left:-1px;border-right:none;border-bottom:none}
.hero-catch-text::after{bottom:-1px;right:-1px;border-left:none;border-top:none}

.hero-title{
  font-family:var(--serif);
  font-size:36px;
  font-weight:900;
  line-height:1.4;
  text-align:center;
  letter-spacing:.005em;
  margin-bottom:22px;
}
.hero-title-accent{
  position:relative;
  display:inline-block;
  color:var(--yellow);
}
.hero-title-accent::after{
  content:"";
  position:absolute;
  left:-2px;right:-2px;
  bottom:8px;
  height:10px;
  background:rgba(255,212,0,.22);
  border-radius:3px;
  z-index:-1;
}

.hero-lead{
  text-align:center;
  font-size:15px;
  color:#e6e6e6;
  margin-bottom:30px;
  line-height:1.85;
}
.hero-lead strong{
  font-family:var(--serif);
  color:var(--yellow);
  font-weight:900;
  font-size:17px;
  letter-spacing:.01em;
}
.hero-lead small{
  display:block;
  margin-top:6px;
  font-size:12.5px;
  color:#bdbdbd;
}

.hero-cta{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}
.hero-cta-note{
  font-size:12px;
  color:#bdbdbd;
  text-align:center;
  line-height:1.7;
}
.hero-cta-note u{
  color:var(--yellow);
  text-decoration-color:rgba(255,212,0,.5);
}

.hero-meta{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px;
  margin-top:30px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.1);
}
.hero-meta span{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:11.5px;
  color:#cfcfcf;
  letter-spacing:.02em;
}
.hero-meta svg{color:var(--yellow)}

.hero-scroll-hint{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  margin:34px auto 0;
  width:max-content;
  font-size:10.5px;
  letter-spacing:.2em;
  color:rgba(255,255,255,.6);
  font-weight:700;
}
.hero-scroll-line{
  width:1px;height:36px;
  background:linear-gradient(180deg,transparent 0%,rgba(255,212,0,.7) 100%);
  position:relative;
  overflow:hidden;
}
.hero-scroll-line::after{
  content:"";
  position:absolute;
  top:-12px;left:0;right:0;
  height:12px;
  background:var(--yellow);
  animation:scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line{
  0%{top:-12px}
  100%{top:36px}
}

@media(min-width:680px){
  .hero{padding:80px 0 100px}
  .hero-title{font-size:50px}
  .hero-lead{font-size:17px}
  .hero-lead strong{font-size:20px}
  .hero-catch-text{font-size:14px}
}

/* ===== カウンターバー ===== */
.counter-bar{
  background:var(--black);
  color:#fff;
  padding:28px 0;
  position:relative;
  border-top:3px solid var(--yellow);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.counter-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
  text-align:center;
}
.counter-grid > div{position:relative}
.counter-grid > div + div::before{
  content:"";
  position:absolute;
  left:0;top:6px;bottom:6px;
  width:1px;
  background:rgba(255,255,255,.12);
}
.counter-num{
  font-family:var(--serif);
  font-weight:900;
  font-size:36px;
  color:var(--yellow);
  letter-spacing:.01em;
  display:inline-block;
  line-height:1;
}
.counter-grid small{
  font-size:11px;
  color:#fff;
  margin-left:3px;
  font-weight:700;
  vertical-align:top;
  position:relative;
  top:6px;
}
.counter-grid p{
  font-size:10.5px;
  color:#bbb;
  letter-spacing:.05em;
  margin-top:6px;
}
@media(min-width:680px){
  .counter-num{font-size:50px}
  .counter-grid small{font-size:13px;top:10px}
  .counter-grid p{font-size:12px;margin-top:8px}
}

/* ===== ご来店はとっても簡単 ===== */
.section-easy{
  background:linear-gradient(180deg,var(--yellow-bg) 0%,#fff 100%);
}
.steps-easy{
  display:grid;
  gap:14px;
  position:relative;
}
.steps-easy li{
  background:#fff;
  border-radius:var(--radius);
  padding:24px 22px 22px 90px;
  box-shadow:var(--shadow-sm);
  position:relative;
  border:1px solid rgba(255,212,0,.3);
  transition:transform .25s cubic-bezier(.16,1,.3,1),box-shadow .25s ease;
}
.steps-easy li:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
  border-color:var(--yellow);
}
.step-num{
  position:absolute;
  left:18px;top:18px;
  width:54px;height:54px;
  display:flex;align-items:center;justify-content:center;
  background:var(--black);
  color:var(--yellow);
  border-radius:14px;
  font-family:var(--serif);
  font-weight:900;
  font-size:22px;
}
.steps-easy h3{
  font-size:17px;
  font-weight:700;
  margin-bottom:6px;
}
.steps-easy p{
  font-size:13.5px;
  color:var(--gray-text);
  line-height:1.75;
}

/* ===== こんなご家族に ===== */
.section-family{background:#fff}
.family-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.family-card{
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--border);
  transition:transform .3s cubic-bezier(.16,1,.3,1),box-shadow .3s ease;
}
.family-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow);
}
.family-img{
  aspect-ratio:1/1;
  background:#eee;
  overflow:hidden;
  position:relative;
}
.family-img::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 60%,rgba(0,0,0,.25) 100%);
}
.family-img img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .7s cubic-bezier(.16,1,.3,1);
}
.family-card:hover .family-img img{transform:scale(1.06)}
.family-body{padding:14px 14px 16px}
.family-tag{
  font-size:10px;
  letter-spacing:.16em;
  color:var(--yellow);
  background:var(--black);
  padding:3px 10px;
  border-radius:4px;
  display:inline-block;
  margin-bottom:8px;
  font-weight:700;
}
.family-card h3{
  font-family:var(--serif);
  font-size:15px;
  font-weight:900;
  margin-bottom:6px;
  line-height:1.5;
}
.family-card p{
  font-size:12.5px;
  color:var(--gray-text);
  line-height:1.75;
}
@media(min-width:680px){
  .family-grid{grid-template-columns:repeat(4,1fr)}
}

/* ===== 初来店ストーリー（NEW） ===== */
.section-story{
  background:linear-gradient(180deg,#fff 0%,var(--yellow-bg) 100%);
  position:relative;
}
.story-flow{
  display:grid;
  gap:0;
  max-width:480px;
  margin:0 auto;
}
.story-step{
  background:#fff;
  border-radius:var(--radius);
  padding:22px 22px 20px;
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
  position:relative;
}
.story-step.before{
  background:#1a1a1a;
  color:#ddd;
  border-color:#1a1a1a;
}
.story-step.middle{
  background:linear-gradient(180deg,#fff 0%,#fffbe6 100%);
  border-color:rgba(255,212,0,.5);
}
.story-step.after{
  background:linear-gradient(180deg,var(--yellow) 0%,var(--yellow-2) 100%);
  border-color:var(--yellow-deep);
  box-shadow:var(--shadow-yellow);
}
.story-step-label{
  display:inline-block;
  font-size:10.5px;
  font-weight:700;
  letter-spacing:.14em;
  padding:3px 10px;
  border-radius:999px;
  margin-bottom:12px;
}
.story-step.before .story-step-label{
  background:rgba(255,255,255,.1);
  color:#ccc;
}
.story-step.middle .story-step-label{
  background:var(--yellow);
  color:var(--black);
}
.story-step.after .story-step-label{
  background:var(--black);
  color:var(--yellow);
}
.story-text{
  font-family:var(--serif);
  font-size:15px;
  font-weight:700;
  line-height:1.85;
  color:inherit;
}
.story-step.after .story-text{color:var(--black)}
.story-text strong{
  display:inline-block;
  background:var(--black);
  color:var(--yellow);
  padding:2px 10px;
  border-radius:6px;
  font-size:14.5px;
  margin-top:4px;
}
.story-step.after .story-text strong{background:#fff;color:var(--black)}
.story-arrow{
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:12px 0;
  position:relative;
}
.story-arrow-line{
  width:2px;height:32px;
  background:repeating-linear-gradient(180deg,var(--yellow-deep) 0 5px,transparent 5px 10px);
  position:relative;
}
.story-arrow-line::after{
  content:"";
  position:absolute;
  bottom:-6px;left:50%;
  transform:translateX(-50%);
  width:0;height:0;
  border-left:7px solid transparent;
  border-right:7px solid transparent;
  border-top:8px solid var(--yellow-deep);
}
.story-arrow-text{
  position:absolute;
  right:calc(50% - 80px);
  top:50%;
  transform:translateY(-50%);
  font-size:11px;
  font-weight:700;
  color:var(--yellow-deep);
  background:#fff;
  padding:3px 10px;
  border-radius:999px;
  border:1px solid rgba(230,189,0,.4);
  letter-spacing:.04em;
}
@media(max-width:380px){
  .story-arrow-text{right:auto;left:calc(50% + 16px)}
}

/* ===== 不安 ===== */
.section-worry{
  background:linear-gradient(180deg,#1a1a1a 0%,#0a0a0a 100%);
  color:#fff;
}
.section-worry .section-title{color:#fff}
.section-worry .section-title::after{background:var(--yellow)}
.section-worry .eyebrow{color:var(--yellow)}
.section-worry .eyebrow::before,
.section-worry .eyebrow::after{background:var(--yellow);opacity:.4}
.section-worry .section-lead{color:#bbb}
.worry-list{
  display:grid;
  gap:12px;
  margin-bottom:32px;
}
.worry-list li{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  padding:22px 22px 22px 24px;
  border-left:4px solid var(--yellow);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
}
.worry-q{
  font-size:15px;
  font-weight:700;
  color:#fff;
  margin-bottom:12px;
  position:relative;
  padding-left:32px;
  line-height:1.55;
}
.worry-q::before{
  content:"Q";
  position:absolute;
  left:0;top:1px;
  width:22px;height:22px;
  background:#fff;
  color:var(--black);
  border-radius:50%;
  font-size:12px;
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
}
.worry-a{
  font-size:13.5px;
  color:#ddd;
  padding-left:32px;
  position:relative;
  line-height:1.8;
}
.worry-a::before{
  content:"A";
  position:absolute;
  left:0;top:1px;
  width:22px;height:22px;
  background:var(--yellow);
  color:var(--black);
  border-radius:50%;
  font-size:12px;
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
}
.worry-a strong{color:var(--yellow);font-weight:700}

/* ===== 5つの理由 ===== */
.section-reasons{background:var(--gray-1)}
.reasons-list{
  display:grid;
  gap:12px;
}
.reasons-list li{
  display:flex;
  gap:18px;
  align-items:flex-start;
  background:#fff;
  border-radius:var(--radius);
  padding:24px 22px;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--border);
  transition:transform .25s cubic-bezier(.16,1,.3,1),box-shadow .25s ease;
}
.reasons-list li:hover{
  transform:translateX(4px);
  box-shadow:var(--shadow);
}
.reason-num{
  flex-shrink:0;
  font-family:var(--serif);
  font-weight:900;
  font-size:22px;
  color:var(--yellow);
  background:var(--black);
  width:54px;height:54px;
  border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  letter-spacing:.02em;
  position:relative;
}
.reason-num::after{
  content:"";
  position:absolute;
  inset:0;
  border:2px solid var(--yellow);
  border-radius:inherit;
  transform:translate(4px,4px);
  z-index:-1;
}
.reasons-list h3{
  font-family:var(--serif);
  font-size:17px;
  font-weight:900;
  margin-bottom:6px;
  line-height:1.5;
}
.reasons-list p{
  font-size:13.5px;
  color:var(--gray-text);
  line-height:1.8;
}

/* ===== 料金 ===== */
.section-price{
  background:#fff;
  position:relative;
}
.section-price::before{
  content:"";
  position:absolute;
  top:0;left:50%;
  transform:translateX(-50%);
  width:140px;height:5px;
  background:var(--yellow);
  border-radius:0 0 6px 6px;
}
.price-grid{
  display:grid;
  gap:14px;
  grid-template-columns:1fr;
  align-items:stretch;
}
.price-card{
  background:#fff;
  border-radius:var(--radius);
  padding:22px 18px 18px;
  box-shadow:var(--shadow-sm);
  border:1.5px solid var(--border);
  display:flex;
  flex-direction:column;
  gap:14px;
  position:relative;
  height:100%;
  transition:transform .25s cubic-bezier(.16,1,.3,1),box-shadow .25s ease,border-color .25s ease;
}
.price-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
  border-color:rgba(255,212,0,.6);
}
.price-card.highlight{
  border:2px solid var(--black);
  background:linear-gradient(180deg,#fffef0 0%,#fff 100%);
  box-shadow:var(--shadow-yellow);
  padding-top:28px;
}
.price-ribbon{
  position:absolute;
  top:-12px;left:50%;
  transform:translateX(-50%);
  background:var(--black);
  color:var(--yellow);
  padding:5px 16px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  box-shadow:0 4px 12px rgba(0,0,0,.22);
  white-space:nowrap;
}

/* メイン行：左に名称ブロック、右に価格 */
.price-card-main{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  flex:1;
}
.price-card-head{
  flex:1;
  min-width:0;
}
.price-tag{
  display:inline-block;
  font-size:10px;
  letter-spacing:.14em;
  color:var(--yellow);
  background:var(--black);
  padding:3px 9px;
  border-radius:4px;
  margin-bottom:8px;
  font-weight:700;
}
.price-name{
  font-size:15.5px;
  font-weight:800;
  line-height:1.4;
  color:var(--black);
  margin:0 0 4px;
}
.price-desc{
  font-size:12px;
  color:var(--gray-4);
  font-weight:500;
  line-height:1.55;
  margin:0;
}
.price{
  font-family:var(--serif);
  font-size:28px;
  font-weight:900;
  color:var(--black);
  line-height:1;
  letter-spacing:.01em;
  white-space:nowrap;
  flex-shrink:0;
  margin:0;
  text-align:right;
  align-self:center;
}
.price-yen{
  font-size:18px;
  font-weight:700;
  margin-right:2px;
  color:var(--gray-text);
}
.price small{
  display:block;
  font-family:"Noto Sans JP",sans-serif;
  font-size:10px;
  color:var(--gray-4);
  font-weight:500;
  margin-top:4px;
  letter-spacing:.05em;
}
.price-note{
  font-size:11px;
  color:var(--gray-text);
  background:#fff8d6;
  border-left:3px solid var(--yellow);
  padding:7px 10px;
  border-radius:4px;
  line-height:1.5;
  margin:0;
}
@media (min-width:768px){
  .price-grid{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
  }
  .price-card{
    padding:24px 20px 20px;
  }
  .price-card.highlight{padding-top:30px}
  .price-name{font-size:16.5px}
  .price-desc{font-size:13px}
  .price{font-size:30px}
}
@media (min-width:980px){
  .price-grid{
    grid-template-columns:repeat(3,1fr);
  }
}
@media(min-width:680px){
  .price-grid{grid-template-columns:1fr 1fr}
  .price{font-size:32px}
}

.price-extra-card{
  margin-top:32px;
  background:linear-gradient(180deg,var(--yellow-bg) 0%,#fff 100%);
  border:2px dashed var(--yellow);
  border-radius:var(--radius);
  padding:26px 22px;
  text-align:center;
}
.price-extra-title{
  font-weight:700;
  font-size:14.5px;
  margin-bottom:14px;
  color:var(--black);
}
.price-extra-card ul{
  display:inline-flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
  margin-bottom:18px;
}
.price-extra-card li{
  background:#fff;
  border:1px solid var(--border);
  border-radius:999px;
  padding:6px 14px;
  font-size:12.5px;
  color:var(--black);
  font-weight:700;
}
.price-extra-card .btn{margin:0 auto}

/* ===== スタイル ===== */
.section-styles{background:var(--gray-1)}
.style-grid{
  display:grid;
  gap:16px;
}
.style-card{
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--border);
  transition:transform .3s cubic-bezier(.16,1,.3,1),box-shadow .3s ease;
}
.style-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow);
}
.style-img{
  aspect-ratio:4/3;
  overflow:hidden;
  background:#eee;
  position:relative;
}
.style-img::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 65%,rgba(0,0,0,.2) 100%);
}
.style-img img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .7s cubic-bezier(.16,1,.3,1);
}
.style-card:hover .style-img img{transform:scale(1.05)}
.style-body{padding:18px 18px 22px}
.style-tag{
  font-size:10px;
  letter-spacing:.14em;
  color:var(--yellow);
  background:var(--black);
  padding:3px 9px;
  border-radius:4px;
  display:inline-block;
  margin-bottom:8px;
  font-weight:700;
}
.style-card h3{
  font-family:var(--serif);
  font-size:17px;
  font-weight:900;
  margin-bottom:6px;
}
.style-card p{
  font-size:13px;
  color:var(--gray-text);
  line-height:1.8;
}
.style-note{
  text-align:center;
  font-size:13.5px;
  color:var(--gray-text);
  margin-top:26px;
  line-height:1.8;
}
.style-note strong{color:var(--black)}
@media(min-width:680px){
  .style-grid{grid-template-columns:repeat(3,1fr)}
}

/* ===== LINE会話例（NEW） ===== */
.section-chat{
  background:linear-gradient(180deg,#eef3f5 0%,#dde6ea 100%);
  position:relative;
}
.chat-mock{
  max-width:380px;
  margin:0 auto;
  background:#7c97a8;
  border-radius:22px;
  padding:14px;
  box-shadow:var(--shadow-lg);
  position:relative;
}
.chat-mock::before{
  content:"";
  position:absolute;
  top:50%;left:-8px;
  width:8px;height:80px;
  background:#445760;
  border-radius:4px 0 0 4px;
  transform:translateY(-50%);
}
.chat-mock-head{
  background:#fff;
  border-radius:14px 14px 0 0;
  padding:14px 16px;
  display:flex;
  align-items:center;
  gap:12px;
  border-bottom:1px solid var(--border);
}
.chat-mock-avatar{
  width:42px;height:42px;
  border-radius:50%;
  background:var(--yellow);
  color:var(--black);
  border:2px solid var(--yellow);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  overflow:hidden;
  font-weight:900;
  font-size:16px;
  letter-spacing:0;
}
.chat-mock-name{
  font-size:13.5px;
  font-weight:700;
  color:var(--black);
  line-height:1.3;
}
.chat-mock-status{
  font-size:11px;
  color:var(--gray-text);
  display:flex;
  align-items:center;
  gap:5px;
  margin-top:2px;
}
.chat-online-dot{
  width:7px;height:7px;
  background:var(--line-green);
  border-radius:50%;
  display:inline-block;
}
.chat-mock-body{
  background:#92acba;
  padding:18px 14px;
  display:grid;
  gap:8px;
}
.chat-msg{
  display:flex;
  flex-direction:column;
  max-width:78%;
}
.chat-msg p{
  padding:10px 14px;
  border-radius:18px;
  font-size:13.5px;
  line-height:1.6;
  position:relative;
  word-break:break-word;
}
.chat-msg.user{
  align-items:flex-end;
  align-self:flex-end;
  margin-left:auto;
}
.chat-msg.user p{
  background:var(--line-green);
  color:#fff;
  border-bottom-right-radius:4px;
  box-shadow:0 2px 6px rgba(0,0,0,.12);
}
.chat-msg.shop{
  align-items:flex-start;
  align-self:flex-start;
}
.chat-msg.shop p{
  background:#fff;
  color:#222;
  border-bottom-left-radius:4px;
  box-shadow:0 2px 6px rgba(0,0,0,.1);
}
.chat-msg.shop strong{
  background:var(--yellow);
  color:var(--black);
  padding:1px 6px;
  border-radius:4px;
  font-weight:900;
}
.chat-time{
  font-size:9.5px;
  color:rgba(255,255,255,.85);
  margin-top:3px;
  padding:0 4px;
}
.chat-msg.shop .chat-time{
  color:rgba(255,255,255,.75);
  align-self:flex-start;
}
.chat-msg.typing p{
  background:rgba(255,255,255,.85);
  padding:14px 16px;
  border-bottom-right-radius:4px;
}
.chat-typing{
  display:flex !important;
  gap:4px;
  align-items:center;
}
.chat-typing span{
  width:7px;height:7px;
  background:var(--gray-4);
  border-radius:50%;
  display:inline-block;
  animation:chat-typing-dot 1.4s infinite ease-in-out;
}
.chat-typing span:nth-child(2){animation-delay:.2s}
.chat-typing span:nth-child(3){animation-delay:.4s}
@keyframes chat-typing-dot{
  0%,60%,100%{opacity:.3;transform:translateY(0)}
  30%{opacity:1;transform:translateY(-3px)}
}
.chat-mock-foot{
  background:#fff;
  border-radius:0 0 14px 14px;
  padding:10px 14px;
  font-size:10.5px;
  color:var(--gray-4);
  text-align:center;
  border-top:1px solid var(--border);
}

/* ===== お客様の声 ===== */
.section-voice{
  background:#fff;
}
.voice-grid{
  display:grid;
  gap:14px;
}
.voice-card{
  background:#fff;
  border-radius:var(--radius);
  padding:24px 22px;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--border);
  transition:transform .25s cubic-bezier(.16,1,.3,1),box-shadow .25s ease;
  position:relative;
}
.voice-card::before{
  content:""";
  position:absolute;
  top:14px;right:18px;
  font-family:var(--serif);
  font-size:60px;
  color:var(--yellow);
  opacity:.18;
  line-height:1;
  pointer-events:none;
}
.voice-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}
.voice-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}
.voice-avatar{
  width:44px;height:44px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--yellow) 0%,#ffb700 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--serif);
  font-weight:900;
  font-size:18px;
  color:var(--black);
  flex-shrink:0;
}
.voice-name{
  font-size:13.5px;
  font-weight:700;
  margin-bottom:2px;
}
.stars{
  color:#f5b301;
  font-size:13px;
  letter-spacing:1.5px;
}
.voice-text{
  font-size:13.5px;
  color:#222;
  line-height:1.9;
  margin-bottom:12px;
}
.voice-meta{
  font-size:11.5px;
  color:var(--gray-4);
  border-top:1px solid var(--border);
  padding-top:10px;
}
@media(min-width:680px){
  .voice-grid{grid-template-columns:1fr 1fr}
}

/* ===== LINE訴求セクション ===== */
.section-line{
  background:linear-gradient(180deg,#0a0a0a 0%,#1a1a1a 100%);
  color:#fff;
  padding:70px 0;
}
.line-card{
  background:linear-gradient(180deg,#06c755 0%,#04a648 100%);
  border-radius:var(--radius-xl);
  padding:38px 24px 32px;
  text-align:center;
  position:relative;
  overflow:hidden;
  box-shadow:0 24px 60px rgba(6,199,85,.32);
}
.line-card::before{
  content:"";
  position:absolute;
  top:-60px;right:-60px;
  width:220px;height:220px;
  background:rgba(255,255,255,.08);
  border-radius:50%;
}
.line-card::after{
  content:"";
  position:absolute;
  bottom:-80px;left:-60px;
  width:260px;height:260px;
  background:rgba(255,255,255,.06);
  border-radius:50%;
}
.line-card-top{
  position:relative;
  z-index:1;
  margin-bottom:26px;
}

.line-eyebrow{
  font-size:12px;
  font-weight:700;
  color:#fff;
  letter-spacing:.16em;
  margin-bottom:10px;
  opacity:.95;
}
.line-title{
  font-family:var(--serif);
  font-size:30px;
  font-weight:900;
  color:#fff;
  line-height:1.4;
}
.line-title-mark{
  display:inline-block;
  background:#fff;
  color:var(--line-dark);
  padding:0 12px;
  border-radius:8px;
  margin-top:6px;
}

.line-merits{
  display:grid;
  gap:10px;
  margin:0 auto 28px;
  max-width:420px;
  text-align:left;
  position:relative;
  z-index:1;
}
.line-merits li{
  background:rgba(255,255,255,.96);
  border-radius:14px;
  padding:14px 16px 14px 58px;
  position:relative;
  box-shadow:0 4px 14px rgba(0,0,0,.1);
}
.line-check{
  position:absolute;
  left:12px;top:50%;
  transform:translateY(-50%);
  width:34px;height:34px;
  background:var(--black);
  color:var(--yellow);
  border-radius:8px;
  font-family:var(--serif);
  font-weight:900;
  font-size:14px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.line-merits p{
  font-size:13.5px;
  color:var(--black);
  font-weight:500;
  line-height:1.65;
}
.line-merits strong{
  color:var(--line-dark);
  font-weight:900;
}

.line-cta-block{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}
.line-cta-block .btn-line{
  background:#fff;
  color:var(--line-dark);
  box-shadow:0 14px 30px rgba(0,0,0,.18);
}
.line-cta-block .btn-line:hover{
  background:#fff;
  transform:translateY(-2px);
}
.line-cta-block .btn-line .btn-icon-line{color:var(--line-green)}
.line-cta-block .btn-line.btn-pulse::after{
  border-color:rgba(255,255,255,.6);
}
.line-foot-note{
  font-size:11.5px;
  color:rgba(255,255,255,.9);
  line-height:1.7;
}
@media(min-width:680px){
  .line-title{font-size:38px}
}

/* ===== 流れ ===== */
.section-flow{background:#fff}
.flow-list{
  display:grid;
  gap:14px;
  position:relative;
}
.flow-list::before{
  content:"";
  position:absolute;
  left:32px;
  top:30px;bottom:30px;
  width:2px;
  background:repeating-linear-gradient(180deg,var(--yellow) 0 6px,transparent 6px 12px);
  z-index:0;
}
.flow-list li{
  background:#fff;
  border-radius:var(--radius);
  padding:20px 22px 20px 86px;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--border);
  position:relative;
  z-index:1;
}
.flow-list li::before{
  content:"";
  position:absolute;
  left:18px;top:50%;
  transform:translateY(-50%);
  width:30px;height:30px;
  background:var(--yellow);
  border-radius:50%;
  border:4px solid var(--black);
  z-index:1;
}
.flow-step{
  display:inline-block;
  background:var(--black);
  color:var(--yellow);
  font-weight:700;
  font-size:11.5px;
  padding:3px 10px;
  border-radius:999px;
  letter-spacing:.04em;
  margin-bottom:6px;
}
.flow-list h3{
  font-family:var(--serif);
  font-size:17px;
  font-weight:900;
  margin-bottom:4px;
}
.flow-list p{
  font-size:13px;
  color:var(--gray-text);
  line-height:1.75;
}

/* ===== スタッフ ===== */
.section-staff{
  background:linear-gradient(180deg,var(--yellow-bg) 0%,#fff 100%);
}
.staff-grid{
  display:grid;
  gap:20px;
}
.staff-card{
  background:#fff;
  border-radius:var(--radius);
  padding:30px 24px 28px;
  box-shadow:var(--shadow-sm);
  text-align:center;
  border:1px solid var(--border);
  transition:transform .3s cubic-bezier(.16,1,.3,1),box-shadow .3s ease;
}
.staff-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow);
}
.staff-img{
  width:140px;height:140px;
  margin:0 auto 18px;
  border-radius:50%;
  overflow:hidden;
  background:#eee;
  position:relative;
  box-shadow:0 6px 20px rgba(0,0,0,.12);
}
.staff-img::after{
  content:"";
  position:absolute;
  inset:-4px;
  border:3px solid var(--yellow);
  border-radius:50%;
  pointer-events:none;
}
.staff-img img{
  width:100%;height:100%;
  object-fit:cover;
}
.staff-role{
  font-size:11px;
  letter-spacing:.16em;
  color:var(--gray-4);
  margin-bottom:8px;
  font-weight:700;
}
.staff-name{
  font-family:var(--serif);
  font-size:22px;
  font-weight:900;
  margin-bottom:14px;
  line-height:1.3;
}
.staff-name small{
  display:block;
  font-family:"Noto Sans JP",sans-serif;
  font-size:11px;
  letter-spacing:.1em;
  color:var(--gray-4);
  font-weight:500;
  margin-top:4px;
}
.staff-desc{
  font-size:13px;
  color:#333;
  line-height:1.9;
  text-align:left;
}
@media(min-width:680px){
  .staff-grid{grid-template-columns:1fr 1fr}
}

/* ===== アクセス ===== */
.section-access{background:#fff}
.access-card{
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
  padding:8px 8px 26px;
}
.access-table{
  border-radius:12px;
  overflow:hidden;
  margin-bottom:20px;
}
.access-table th,.access-table td{
  padding:14px 16px;
  text-align:left;
  font-size:13.5px;
  vertical-align:top;
  line-height:1.75;
  border-bottom:1px solid var(--border);
}
.access-table tr:last-child th,
.access-table tr:last-child td{border-bottom:none}
.access-table th{
  background:var(--black);
  color:var(--yellow);
  width:88px;
  font-weight:700;
  font-size:12.5px;
  letter-spacing:.04em;
}
.access-table td small{
  font-size:11.5px;
  color:var(--gray-4);
}
.access-table strong{
  color:var(--black);
  font-weight:700;
}
.access-card .btn{margin:0 auto}

/* ===== FAQ ===== */
.section-faq{background:var(--gray-1)}
.faq-list{
  display:grid;
  gap:10px;
}
.faq-list details{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
  border:1px solid var(--border);
  overflow:hidden;
  transition:box-shadow .25s ease;
}
.faq-list details[open]{box-shadow:var(--shadow)}
.faq-list summary{
  list-style:none;
  cursor:pointer;
  padding:18px 56px 18px 54px;
  font-weight:700;
  font-size:14.5px;
  position:relative;
  line-height:1.6;
  user-select:none;
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary::before{
  content:"Q";
  position:absolute;
  left:18px;top:50%;
  transform:translateY(-50%);
  width:26px;height:26px;
  background:var(--yellow);
  color:var(--black);
  border-radius:50%;
  font-size:14px;
  font-weight:900;
  display:flex;align-items:center;justify-content:center;
}
.faq-list summary::after{
  content:"";
  position:absolute;
  right:22px;top:50%;
  transform:translateY(-50%) rotate(0deg);
  width:12px;height:12px;
  border-right:2px solid var(--black);
  border-bottom:2px solid var(--black);
  transform-origin:center;
  transition:transform .25s ease;
  margin-top:-4px;
}
.faq-list details[open] summary::after{
  transform:translateY(-50%) rotate(225deg);
  margin-top:0;
}
.faq-body{
  padding:0 22px 20px 54px;
  position:relative;
  animation:fadeDown .3s ease;
}
.faq-body::before{
  content:"A";
  position:absolute;
  left:18px;top:0;
  width:26px;height:26px;
  background:var(--black);
  color:var(--yellow);
  border-radius:50%;
  font-size:14px;
  font-weight:900;
  display:flex;align-items:center;justify-content:center;
}
.faq-body p{
  font-size:13.5px;
  color:#333;
  line-height:1.9;
}
.faq-body strong{color:var(--black);font-weight:700}
@keyframes fadeDown{
  from{opacity:0;transform:translateY(-6px)}
  to{opacity:1;transform:translateY(0)}
}

/* ===== 最終CTA ===== */
.section-final-cta{
  background:linear-gradient(180deg,#0a0a0a 0%,#1a1a1a 100%);
  color:#fff;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.section-final-cta::before{
  content:"";
  position:absolute;
  top:-100px;left:50%;
  transform:translateX(-50%);
  width:420px;height:420px;
  background:radial-gradient(circle,rgba(255,212,0,.18) 0%,transparent 70%);
  pointer-events:none;
}
.final-eyebrow{
  letter-spacing:.18em;
  font-size:13px;
  color:var(--yellow);
  font-weight:700;
  margin-bottom:14px;
  position:relative;
  z-index:1;
}
.final-title{
  font-family:var(--serif);
  font-size:30px;
  font-weight:900;
  line-height:1.5;
  margin-bottom:14px;
  position:relative;
  z-index:1;
}
.final-title-mark{
  position:relative;
  display:inline-block;
  color:var(--yellow);
}
.final-title-mark::after{
  content:"";
  position:absolute;
  left:-4px;right:-4px;
  bottom:8px;
  height:10px;
  background:rgba(255,212,0,.22);
  border-radius:3px;
  z-index:-1;
}
.final-sub{
  font-size:14.5px;
  color:#ddd;
  margin-bottom:32px;
  line-height:1.85;
  position:relative;z-index:1;
}
.final-cta-group{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  margin-bottom:26px;
  position:relative;z-index:1;
}
.final-foot{
  font-size:12px;
  color:#999;
  line-height:1.85;
  position:relative;z-index:1;
}
@media(min-width:680px){
  .final-title{font-size:38px}
}

/* ===== Footer ===== */
.footer{
  background:#000;
  color:#888;
  padding:40px 0 28px;
  text-align:center;
}

.footer-brand{
  color:var(--yellow);
  font-weight:700;
  letter-spacing:.12em;
  font-size:15px;
  margin-bottom:14px;
}
.footer-info{
  font-size:12.5px;
  line-height:1.9;
  margin-bottom:18px;
  color:#aaa;
}
.footer-copy{
  font-size:11px;
  color:#555;
  letter-spacing:.05em;
}

/* ===== Sticky CTA ===== */
.sticky-cta{
  position:fixed;
  left:10px;right:10px;
  bottom:10px;
  display:flex;
  gap:8px;
  z-index:100;
  transform:translateY(120%);
  transition:transform .35s cubic-bezier(.16,1,.3,1);
  pointer-events:none;
}
.sticky-cta.is-show{
  transform:translateY(0);
  pointer-events:auto;
}
.sticky-line{
  flex:1;
  display:flex;
  align-items:center;
  gap:10px;
  padding:11px 16px;
  background:linear-gradient(180deg,#06c755 0%,#04a648 100%);
  color:#fff;
  border-radius:999px;
  box-shadow:0 12px 28px rgba(0,0,0,.25),0 0 0 3px rgba(255,255,255,.55);
  position:relative;
  min-height:60px;
}
.sticky-line::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  border:2px solid rgba(6,199,85,.45);
  animation:pulse-ring 2.2s ease-out infinite;
  pointer-events:none;
}
.sticky-line-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  width:36px;height:36px;
  background:rgba(255,255,255,.18);
  border-radius:50%;
}
.sticky-text{
  flex:1;
  display:flex;
  flex-direction:column;
  line-height:1.18;
}
.sticky-text small{
  font-size:10px;
  font-weight:500;
  opacity:.9;
}
.sticky-text strong{
  font-size:15px;
  font-weight:700;
}
.sticky-arrow{
  font-size:18px;
  font-weight:700;
  margin-right:4px;
  animation:slide-arrow 1.4s ease-in-out infinite;
}
@keyframes slide-arrow{
  0%,100%{transform:translateX(0)}
  50%{transform:translateX(4px)}
}
.sticky-map{
  width:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:var(--black);
  border-radius:50%;
  border:2px solid var(--black);
  box-shadow:0 6px 16px rgba(0,0,0,.18);
  flex-shrink:0;
}

@media(min-width:680px){
  body{padding-bottom:0}
  .sticky-cta{
    left:auto;right:24px;bottom:24px;
    width:auto;
    flex-direction:column;
  }
  .sticky-line{min-width:280px}
  .sticky-map{width:54px;height:54px;align-self:flex-end}
  .container{max-width:980px}
}

/* ===== Animations ===== */
.fade-in{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .8s cubic-bezier(.16,1,.3,1),transform .8s cubic-bezier(.16,1,.3,1);
}
.fade-in.is-visible{
  opacity:1;
  transform:translateY(0);
}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms !important;
    transition-duration:.01ms !important;
  }
  .fade-in{opacity:1;transform:none}
  .scroll-progress{display:none}
}
