/*
  ステージハンズ茨木 website
  Color and spacing variables are collected here for easy maintenance.
*/
:root {
  --ink: #17211c;
  --ink-soft: #4b5951;
  --paper: #fbfcf9;
  --mist: #eef5f4;
  --turf: #6f9c43;
  --turf-dark: #3f682b;
  --sky: #2285ad;
  --sand: #c79a6b;
  --line: #06c755;
  --white: #ffffff;
  --border: rgba(23, 33, 28, 0.14);
  --shadow: 0 18px 44px rgba(23, 33, 28, 0.12);
  --radius: 24px;
  --container: 1120px;
  --font-display: "Klee One", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --font-body: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-utility: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 3px solid rgba(34, 133, 173, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.narrow { width: min(calc(100% - 40px), 760px); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 252, 249, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand img {
  width: 56px;
  height: 42px;
  object-fit: cover;
  object-position: 50% 28%;
  mix-blend-mode: multiply;
}
.brand-copy { line-height: 1.15; }
.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.brand-place {
  display: block;
  margin-top: 3px;
  color: var(--ink-soft);
  font: 600 10px/1 var(--font-utility);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.menu-button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
}
.menu-lines, .menu-lines::before, .menu-lines::after {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-lines { position: relative; }
.menu-lines::before, .menu-lines::after { content: ""; position: absolute; left: 0; }
.menu-lines::before { top: -6px; }
.menu-lines::after { top: 6px; }
.menu-button[aria-expanded="true"] .menu-lines { background: transparent; }
.menu-button[aria-expanded="true"] .menu-lines::before { top: 0; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-lines::after { top: 0; transform: rotate(-45deg); }

.site-nav {
  position: fixed;
  inset: 73px 0 auto;
  max-height: calc(100svh - 73px);
  overflow-y: auto;
  padding: 14px 20px 28px;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  transform: translateY(-130%);
  transition: transform .26s ease;
}
.site-nav.is-open { transform: translateY(0); }
.nav-list { list-style: none; margin: 0; padding: 0; }
.nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 5px 2px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.nav-list a::after { content: "›"; color: var(--sky); font-size: 24px; font-weight: 400; }
.nav-list a[aria-current="page"] { color: var(--turf-dark); }
.header-line { display: none; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--turf-dark);
  font: 700 11px/1.3 var(--font-utility);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--turf); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.35; letter-spacing: 0.035em; }
h1, h2 { font-family: var(--font-display); }
h1 { margin-bottom: 22px; font-size: clamp(36px, 10vw, 68px); font-weight: 600; }
h2 { margin-bottom: 20px; font-size: clamp(30px, 8vw, 48px); font-weight: 600; }
h3 { margin-bottom: 12px; font-size: 21px; }
.lead { color: var(--ink-soft); font-size: 17px; line-height: 2; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sky);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.hero-home {
  position: relative;
  overflow: hidden;
  padding: 36px 0 60px;
  background: linear-gradient(180deg, var(--mist), var(--paper));
}
.hero-home::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 420px;
  height: 190px;
  left: -150px;
  bottom: 32px;
  border: 2px dashed rgba(34, 133, 173, .34);
  border-color: rgba(34, 133, 173, .34) transparent transparent rgba(34, 133, 173, .34);
  border-radius: 50%;
  transform: rotate(-9deg);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; }
.hero-copy { position: relative; }
.hero-title-small {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.hero-title-em { color: var(--sky); }
.hero-actions { display: grid; gap: 10px; margin-top: 26px; }
.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(23,33,28,.12); }
.btn-line { color: var(--white); background: var(--line); border-color: var(--line); }
.btn-line::before {
  content: "LINE";
  font: 800 10px/1 var(--font-utility);
  letter-spacing: .06em;
  padding: 5px 6px;
  color: var(--line);
  background: var(--white);
  border-radius: 7px;
}
.btn-ghost { background: rgba(255,255,255,.55); }
.btn-small { min-height: 45px; padding: 9px 18px; font-size: 14px; }

.hero-visual {
  position: relative;
  margin-top: 36px;
  padding: 0 0 24px 18px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 22px 18px 0 0;
  background: var(--turf);
  border-radius: 34px 10px 34px 10px;
}
.hero-visual img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px 44px 12px 44px;
  box-shadow: var(--shadow);
}
.hero-note {
  position: absolute;
  right: 2px;
  bottom: 0;
  max-width: 210px;
  padding: 12px 15px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(23,33,28,.1);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.trust-strip { padding: 18px 0; background: var(--ink); color: var(--white); }
.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}
.trust-list li { padding: 2px 8px; text-align: center; border-right: 1px solid rgba(255,255,255,.18); }
.trust-list li:last-child { border-right: 0; }
.trust-list strong { display: block; font-size: 13px; line-height: 1.4; }
.trust-list span { display: block; margin-top: 3px; color: rgba(255,255,255,.65); font-size: 10px; line-height: 1.3; }

.section { padding: 76px 0; }
.section-sm { padding: 54px 0; }
.section-mist { background: var(--mist); }
.section-dark { color: var(--white); background: var(--ink); }
.section-heading { margin-bottom: 34px; }
.section-heading.center { text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }

.worry-list { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.worry-list li {
  position: relative;
  padding: 17px 18px 17px 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-weight: 600;
}
.worry-list li::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 9px;
  left: 20px;
  top: 22px;
  border-left: 3px solid var(--turf);
  border-bottom: 3px solid var(--turf);
  transform: rotate(-45deg);
}

.service-grid { display: grid; gap: 20px; }
.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.service-card.is-primary {
  border-color: rgba(111, 156, 67, .5);
  box-shadow: 0 18px 44px rgba(63, 104, 43, .12);
}
.service-role {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 5px 10px;
  color: var(--white);
  background: var(--turf-dark);
  border-radius: 999px;
  font: 700 10px/1 var(--font-utility);
  letter-spacing: .12em;
}
.service-role.is-support { color: var(--sky); background: rgba(34, 133, 173, .1); }
.service-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-card-body { padding: 26px 24px 28px; }
.service-label { margin-bottom: 9px; color: var(--sky); font: 700 11px/1 var(--font-utility); letter-spacing: .14em; }

.reason-grid { display: grid; gap: 16px; }
.reason-card {
  min-height: 210px;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.reason-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--sky);
  border-radius: 50% 50% 50% 12px;
  font: 700 12px/1 var(--font-utility);
}

.flow { position: relative; display: grid; gap: 26px; margin: 34px 0 0; padding: 0; list-style: none; }
.flow::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 30px;
  bottom: 30px;
  border-left: 2px dashed rgba(34,133,173,.32);
}
.flow li { position: relative; padding-left: 58px; }
.flow-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--sky);
  border-radius: 50%;
  font: 700 12px/1 var(--font-utility);
}
.flow h3 { margin-bottom: 4px; font-size: 18px; }
.flow p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 46px 24px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px 10px 30px 10px;
  box-shadow: var(--shadow);
}
.cta-panel::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -60px;
  bottom: -70px;
  border: 22px solid rgba(111,156,67,.14);
  border-radius: 50%;
}
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { font-size: clamp(28px, 8vw, 42px); }
.cta-panel .btn { width: 100%; max-width: 430px; }
.cta-meta { margin: 12px 0 0; color: var(--ink-soft); font-size: 12px; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 48px;
  background: var(--mist);
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 140px;
  right: -100px;
  bottom: -55px;
  border: 2px dashed rgba(34,133,173,.35);
  border-radius: 50%;
}
.page-hero h1 { margin-bottom: 14px; font-size: clamp(36px, 9vw, 58px); }
.breadcrumbs { margin-bottom: 24px; color: var(--ink-soft); font-size: 12px; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 3px; }

.split { display: grid; gap: 34px; align-items: center; }
.image-frame { position: relative; padding: 0 14px 14px 0; }
.image-frame::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 18px 0 0 14px;
  background: var(--turf);
  border-radius: 12px 36px 12px 36px;
}
.image-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 32px 10px 32px 10px; }

.feature-list { display: grid; gap: 16px; margin: 26px 0 0; padding: 0; list-style: none; }
.feature-list li { padding: 20px; border-left: 4px solid var(--turf); background: var(--white); box-shadow: 0 8px 26px rgba(23,33,28,.06); }
.feature-list strong { display: block; margin-bottom: 4px; }
.feature-list span { display: block; color: var(--ink-soft); font-size: 14px; }

.price-grid { display: grid; gap: 18px; }
.price-card { padding: 26px 22px; background: var(--white); border: 1px solid var(--border); border-radius: 20px; }
.price-card.is-featured { border: 2px solid var(--turf); box-shadow: var(--shadow); }
.price-tag { display: inline-block; margin-bottom: 14px; padding: 4px 10px; color: var(--white); background: var(--turf-dark); border-radius: 999px; font-size: 11px; font-weight: 700; }
.price-value { margin: 14px 0; font-family: var(--font-utility); font-size: 30px; font-weight: 700; letter-spacing: 0; }
.price-value small { font-family: var(--font-body); font-size: 12px; font-weight: 500; }
.price-card ul { margin: 16px 0 0; padding-left: 1.2em; color: var(--ink-soft); font-size: 14px; }
.edit-note { padding: 16px 18px; color: #76531b; background: #fff6dc; border: 1px solid #ebd49a; border-radius: 12px; font-size: 13px; }

.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 16px; }
.faq-item summary {
  position: relative;
  padding: 20px 50px 20px 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  line-height: 1.6;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 20px; top: 17px; color: var(--sky); font-size: 26px; font-weight: 400; }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 20px 20px; color: var(--ink-soft); }
.faq-answer p:last-child { margin-bottom: 0; }

.access-grid { display: grid; gap: 30px; }
.map-wrap { overflow: hidden; min-height: 390px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--mist); }
.map-wrap iframe { width: 100%; height: 390px; display: block; border: 0; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { padding: 14px 0; text-align: left; vertical-align: top; border-bottom: 1px solid var(--border); }
.info-table th { width: 95px; color: var(--ink-soft); font-size: 13px; }
.hours-list {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 20px;
  margin: 0;
}
.hours-list dt, .hours-list dd { margin: 0; }
.hours-list dd { font-family: var(--font-utility); letter-spacing: 0; }
.hours-closed { margin: 8px 0 0; color: var(--ink-soft); font-size: 13px; }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; }
.gallery img:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }

.profile-box { padding: 28px 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.profile-box ul { margin-bottom: 0; padding-left: 1.2em; }
.policy h2 { margin-top: 46px; font-family: var(--font-body); font-size: 23px; }
.policy ul { padding-left: 1.3em; }

.site-footer { padding: 58px 0 100px; color: var(--white); background: var(--ink); }
.footer-grid { display: grid; gap: 34px; }
.footer-brand .brand-name { font-size: 22px; }
.footer-brand .brand-place { color: rgba(255,255,255,.58); }
.footer-address { margin: 18px 0 0; color: rgba(255,255,255,.68); font-size: 13px; }
.footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 20px; }
.footer-nav a { padding: 5px 0; color: rgba(255,255,255,.78); font-size: 13px; }
.copyright { margin: 38px 0 0; padding-top: 18px; color: rgba(255,255,255,.45); border-top: 1px solid rgba(255,255,255,.12); font: 500 10px/1.5 var(--font-utility); letter-spacing: .06em; }

.mobile-line {
  position: fixed;
  z-index: 90;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 12px;
  min-height: 58px;
  box-shadow: 0 14px 34px rgba(6,199,85,.32);
}

@media (min-width: 720px) {
  body { padding-bottom: 0; }
  .hero-actions { grid-template-columns: max-content max-content; }
  .hero-actions .btn { min-width: 230px; }
  .service-grid { grid-template-columns: 1.25fr .75fr; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .reason-grid { grid-template-columns: repeat(3, 1fr); }
  .flow { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .flow::before { left: 7%; right: 7%; top: 20px; bottom: auto; border-left: 0; border-top: 2px dashed rgba(34,133,173,.32); }
  .flow li { padding: 58px 10px 0 0; }
  .flow-number { left: 0; }
  .split, .access-grid { grid-template-columns: 1fr 1fr; }
  .split.reverse .split-copy { order: 2; }
  .split.reverse .image-frame { order: 1; }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery img:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
}

@media (min-width: 1100px) {
  .container { width: min(calc(100% - 64px), var(--container)); }
  .header-inner { min-height: 86px; }
  .menu-button { display: none; }
  .site-nav {
    position: static;
    max-height: none;
    overflow: visible;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
  }
  .nav-list { display: flex; align-items: center; gap: 24px; }
  .nav-list a { min-height: 44px; padding: 0; border: 0; font-size: 13px; }
  .nav-list a::after { display: none; }
  .nav-list a:hover, .nav-list a[aria-current="page"] { color: var(--turf-dark); }
  .nav-hide-desktop { display: none; }
  .header-line { display: inline-flex; }
  .hero-home { min-height: 690px; display: flex; align-items: center; padding: 54px 0 78px; }
  .hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 70px; }
  .hero-visual { margin-top: 0; }
  .hero-visual img { aspect-ratio: 4 / 4.65; }
  .section { padding: 110px 0; }
  .section-sm { padding: 72px 0; }
  .service-card-body { padding: 34px; }
  .page-hero { padding: 76px 0 68px; }
  .site-footer { padding-bottom: 44px; }
  .mobile-line { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
