/* ============================================
   みどり接骨院 — 公式サイト
   Color: Orange #F39A24 / Lime #95C952 / White
   ============================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: #2A2A2A;
  background: #FFFAF3;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }

:root {
  --orange: #F39A24;
  --orange-light: #FFB84D;
  --orange-soft: #FFE9C9;
  --lime: #95C952;
  --lime-light: #B8DC7C;
  --lime-soft: #E5F2D0;
  --cream: #FFFAF3;
  --white: #FFFFFF;
  --text: #2A2A2A;
  --text-sub: #6B6B6B;
  --border: #EDE6D8;
  --shadow: 0 4px 20px rgba(243, 154, 36, 0.08);
}

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ============ Header ============ */
.topbar {
  background: var(--lime);
  color: #fff;
  font-size: 13px;
  padding: 6px 0;
  text-align: center;
}
.topbar strong { font-weight: 600; }

.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header__logo {
  display: flex; align-items: center; gap: 14px;
  color: var(--text);
  position: relative;
}
.header__logo .mark {
  width: 56px; height: 56px;
  background: var(--cream);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(149, 201, 82, 0.18), 0 0 0 1px rgba(243, 154, 36, 0.08);
  transition: transform .25s;
}
.header__logo:hover .mark { transform: scale(1.04) rotate(-2deg); }
.header__logo .mark img { width: 88%; height: 88%; object-fit: contain; }
.header__logo-text {
  display: flex; flex-direction: column;
  line-height: 1.15;
}
.header__logo-text .brand-jp {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text);
  position: relative;
}
.header__logo-text .brand-jp::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 8px;
  vertical-align: middle;
  transform: translateY(-3px);
}
.header__logo-text .brand-en {
  font-size: 10.5px;
  color: var(--orange);
  letter-spacing: .28em;
  font-weight: 700;
  margin-top: 5px;
  padding-left: 14px;
}

.gnav { display: flex; gap: 4px; align-items: center; }
.gnav__link {
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: 8px;
}
.gnav__link:hover { background: var(--lime-soft); opacity: 1; }
.gnav__cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(243, 154, 36, 0.3);
}
.gnav__cta:hover { background: var(--orange-light); opacity: 1; }

.hamburger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 36px; height: 36px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ============ Hero ============ */
.hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(149, 201, 82, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(243, 154, 36, 0.15) 0%, transparent 50%),
    var(--cream);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-block;
  background: #fff;
  color: var(--lime);
  border: 2px solid var(--lime);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero__title {
  font-size: 44px;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: .01em;
}
.hero__title em {
  color: var(--orange);
  font-style: normal;
  position: relative;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 8px;
  background: var(--lime-soft);
  z-index: -1;
  border-radius: 4px;
}
.hero__desc {
  font-size: 16.5px;
  color: var(--text-sub);
  margin-bottom: 32px;
  line-height: 2;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__visual {
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 20px 50px rgba(149, 201, 82, 0.18);
  border: 1px solid var(--border);
  overflow: hidden;
}
.hero__slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 14px;
  overflow: hidden;
  background: var(--cream);
}
.hero__slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__slider::after {
  content: "";
  position: absolute; left: 50%; bottom: 14px;
  transform: translateX(-50%);
  display: flex; gap: 6px;
  z-index: 2;
}
.hero__dots {
  position: absolute; left: 50%; bottom: 14px;
  transform: translateX(-50%);
  display: flex; gap: 6px;
  z-index: 2;
}
.hero__dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.hero__dots span.is-active {
  background: var(--orange);
  transform: scale(1.3);
}
.hero__points {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-top: 20px;
}
.hero__point {
  background: var(--lime-soft);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #4a7d20;
}
.hero__point strong { display: block; font-size: 16px; color: var(--orange); margin-bottom: 2px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s, box-shadow .2s;
  border: 0; cursor: pointer;
}
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 16px rgba(243, 154, 36, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); opacity: 1; box-shadow: 0 10px 22px rgba(243, 154, 36, 0.4); }
.btn--line {
  background: #06C755;
  color: #fff;
  box-shadow: 0 6px 16px rgba(6, 199, 85, 0.3);
}
.btn--line:hover { background: #05a847; opacity: 1; transform: translateY(-2px); }
.btn--outline {
  background: #fff;
  color: var(--text);
  border: 2px solid var(--lime);
}
.btn--outline:hover { background: var(--lime-soft); opacity: 1; }
.btn--lg { padding: 16px 36px; font-size: 16px; }

/* ============ Section ============ */
.section {
  padding: 90px 0;
}
.section--soft { background: var(--white); }
.section--lime { background: var(--lime-soft); }
.section__head {
  text-align: center;
  margin-bottom: 56px;
}
.section__eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .25em;
  margin-bottom: 12px;
}
.section__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.4;
}
.section__title em { color: var(--orange); font-style: normal; }
.section__desc {
  font-size: 16px;
  color: var(--text-sub);
  max-width: 640px;
  margin: 0 auto;
}

/* ============ Cards ============ */
.cards { display: grid; gap: 24px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(243, 154, 36, 0.15); }
.card__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--lime-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
}
.card__icon--orange { background: var(--orange-soft); }
.card__title { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.card__desc { font-size: 14.5px; color: var(--text-sub); line-height: 1.9; }

/* ============ Menu (施術メニュー) ============ */
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.menu-item {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 2px solid var(--border);
  display: flex; gap: 20px;
}
.menu-item:hover { border-color: var(--lime); }
.menu-item__icon {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime-soft), var(--orange-soft));
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
  overflow: hidden;
}
.menu-item__icon img { width: 100%; height: 100%; object-fit: cover; }
.menu-item__title { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.menu-item__tag {
  display: inline-block;
  background: var(--orange-soft); color: var(--orange);
  font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 4px;
  margin-bottom: 8px;
}
.menu-item__desc { font-size: 14px; color: var(--text-sub); }

/* ============ Price Table ============ */
.price-table {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.price-table table { width: 100%; border-collapse: collapse; }
.price-table th,
.price-table td { padding: 18px 24px; border-bottom: 1px solid var(--border); text-align: left; }
.price-table th {
  background: var(--lime-soft);
  font-weight: 700;
  color: #4a7d20;
  width: 50%;
}
.price-table td { font-weight: 600; }
.price-table td .yen { color: var(--orange); font-size: 18px; font-weight: 700; }
.price-table tr:last-child th, .price-table tr:last-child td { border-bottom: 0; }
.price-note { font-size: 13px; color: var(--text-sub); margin-top: 16px; }

/* ============ Staff ============ */
.staff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.staff-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.staff-card__photo {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime-light), var(--orange-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 50px;
  margin-bottom: 20px;
}
.staff-card__name { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.staff-card__role { color: var(--orange); font-size: 13.5px; font-weight: 600; margin-bottom: 16px; }
.staff-card__bio { font-size: 14.5px; color: var(--text-sub); line-height: 2; margin-bottom: 16px; }
.staff-card__quals {
  background: var(--cream); padding: 12px 16px; border-radius: 10px;
  font-size: 13px; color: var(--text-sub);
}
.staff-card__quals strong { color: var(--text); }

/* ============ Voice (口コミ) ============ */
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.voice-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}
.voice-card__stars { color: var(--orange); font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.voice-card__title { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: #4a7d20; }
.voice-card__text { font-size: 14.5px; color: var(--text-sub); line-height: 2; margin-bottom: 20px; }
.voice-card__author {
  display: flex; gap: 12px; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.voice-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--lime-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.voice-card__meta { font-size: 13px; }
.voice-card__meta strong { display: block; font-size: 14px; }
.voice-card__meta small { color: var(--text-sub); }

/* ============ Flow ============ */
.flow {
  display: flex; gap: 0; counter-reset: step;
}
.flow-step {
  flex: 1;
  background: #fff;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  border-right: 1px dashed var(--border);
}
.flow-step:last-child { border-right: 0; }
.flow-step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--orange); color: #fff;
  font-weight: 700; font-size: 18px;
  margin-bottom: 12px;
}
.flow-step__title { font-weight: 700; margin-bottom: 6px; font-size: 15px; }
.flow-step__desc { font-size: 13px; color: var(--text-sub); }

/* ============ FAQ ============ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 24px;
  font-weight: 600;
  cursor: pointer;
}
.faq-q::before {
  content: "Q"; background: var(--orange); color: #fff;
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.faq-a {
  padding: 0 24px 20px 70px;
  font-size: 14.5px; color: var(--text-sub);
  line-height: 2;
}

/* ============ CTA Band ============ */
.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  padding: 80px 0;
  color: #fff;
  text-align: center;
}
.cta-band h2 { font-size: 32px; font-weight: 700; margin-bottom: 14px; }
.cta-band p { font-size: 16px; margin-bottom: 32px; opacity: .95; }
.cta-band .btn-group { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta-band .btn--white {
  background: #fff; color: var(--orange);
}
.cta-band .btn--white:hover { opacity: 1; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,0.15); }

/* ============ Page Header (lower pages) ============ */
.page-header {
  background:
    radial-gradient(circle at 80% 50%, rgba(149, 201, 82, 0.18) 0%, transparent 50%),
    var(--cream);
  padding: 70px 0 60px;
  text-align: center;
}
.page-header h1 { font-size: 36px; font-weight: 700; margin-bottom: 12px; }
.page-header h1 em { color: var(--orange); font-style: normal; }
.page-header p { color: var(--text-sub); }
.breadcrumb { font-size: 12.5px; color: var(--text-sub); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--orange); }

/* ============ Footer ============ */
.footer {
  background: #2A2A2A;
  color: #DDD8CF;
  padding: 70px 0 24px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer__logo { color: #fff; font-size: 24px; font-weight: 700; margin-bottom: 16px; display: flex; gap: 10px; align-items: center; }
.footer__about { font-size: 14px; color: #AFA89B; line-height: 2; }
.footer__heading { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 16px; letter-spacing: .1em; }
.footer__list { list-style: none; }
.footer__list li { margin-bottom: 10px; font-size: 14px; }
.footer__list a:hover { color: var(--lime-light); }
.footer__bottom {
  border-top: 1px solid #444;
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 12.5px; color: #888;
  flex-wrap: wrap; gap: 8px;
}

/* ============ Info Box ============ */
.info-box {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.info-table { width: 100%; }
.info-table th,
.info-table td { padding: 14px 0; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.info-table th { width: 28%; font-weight: 600; color: var(--text-sub); font-size: 14px; }
.info-table td { font-size: 15px; }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: 0; }
.hours-table { width: 100%; text-align: center; }
.hours-table th, .hours-table td { padding: 12px 4px; border-bottom: 1px solid var(--border); font-size: 14px; }
.hours-table th { background: var(--lime-soft); color: #4a7d20; font-weight: 600; }
.hours-table td.closed { color: #c44; }

/* ============ Reservation Form ============ */
.form {
  background: #fff; border-radius: 20px; padding: 40px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.form__row { margin-bottom: 22px; }
.form__label {
  display: block; font-weight: 600; font-size: 14px;
  margin-bottom: 8px;
}
.form__label .required {
  background: var(--orange); color: #fff;
  font-size: 10px; padding: 2px 8px; border-radius: 4px;
  margin-left: 8px; font-weight: 600;
}
.form__input,
.form__select,
.form__textarea {
  width: 100%; padding: 12px 14px;
  border: 2px solid var(--border); border-radius: 10px;
  font-size: 15px; font-family: inherit;
  background: var(--cream);
  transition: border-color .2s;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus { outline: 0; border-color: var(--lime); background: #fff; }
.form__textarea { min-height: 120px; resize: vertical; }
.form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__submit {
  width: 100%; margin-top: 14px;
  background: var(--orange); color: #fff;
  padding: 16px; border: 0; border-radius: 999px;
  font-size: 16px; font-weight: 600; cursor: pointer;
  box-shadow: 0 6px 16px rgba(243, 154, 36, 0.35);
}
.form__submit:hover { background: var(--orange-light); }

/* LINE highlight box */
.line-box {
  background: linear-gradient(135deg, #06C755 0%, #00a040 100%);
  color: #fff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-bottom: 32px;
}
.line-box h3 { font-size: 24px; margin-bottom: 12px; }
.line-box p { margin-bottom: 24px; opacity: .9; }

/* Map */
.map-wrap {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.map-wrap iframe { display: block; width: 100%; height: 360px; border: 0; }

/* ============ Page Visual (interior images on sub pages) ============ */
.page-visual {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}
.page-visual img { width: 100%; height: auto; display: block; }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .hero { padding: 50px 0 70px; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__title { font-size: 30px; }
  .gnav { display: none; }
  .gnav.is-open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: #fff; padding: 24px;
    border-bottom: 1px solid var(--border);
    align-items: stretch; gap: 6px;
  }
  .gnav.is-open .gnav__cta { text-align: center; justify-content: center; }
  .hamburger { display: flex; }
  .section { padding: 60px 0; }
  .section__title { font-size: 24px; }
  .cards--3, .cards--4, .menu-grid, .staff-grid, .voice-grid {
    grid-template-columns: 1fr;
  }
  .flow { flex-direction: column; }
  .flow-step { border-right: 0; border-bottom: 1px dashed var(--border); }
  .flow-step:last-child { border-bottom: 0; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .form__row--2 { grid-template-columns: 1fr; }
  .cta-band h2 { font-size: 24px; }
  .page-header h1 { font-size: 28px; }
}
@media (max-width: 560px) {
  .footer__inner { grid-template-columns: 1fr; }
  .hero__points { grid-template-columns: 1fr; }
}
