/* =========================================
   HIROTO（株式会社大翔）サンプルLP v2
   ハヤノレン制作 / 2026-05-04
   ========================================= */

:root {
  --green-deep: #2F4A3A;
  --green-darker: #1F3326;
  --beige: #C7A977;
  --gold: #E5C07B;
  --base: #F8F6F1;
  --base-2: #EFEBE0;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --line: #E5E0D8;
  --white: #FFFFFF;
  --shadow-soft: 0 8px 32px rgba(47, 74, 58, 0.08);
  --shadow-card: 0 12px 40px rgba(47, 74, 58, 0.10);
  --shadow-strong: 0 20px 60px rgba(47, 74, 58, 0.18);
  --max: 1200px;
  --serif: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --en: "Inter", "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--base);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.sp-only { display: none; }

/* HEADER */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.header-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; gap: 32px;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-en {
  font-family: var(--en); font-weight: 700; font-size: 22px;
  letter-spacing: 0.08em; color: var(--green-deep);
}
.brand-jp {
  font-family: var(--serif); font-size: 11px;
  color: var(--text-muted); margin-top: 2px;
}
.nav { display: flex; gap: 24px; margin-left: auto; font-size: 14px; font-weight: 500; }
.nav a { color: var(--text); transition: color 0.2s; }
.nav a:hover { color: var(--green-deep); }
.header-cta {
  background: var(--green-deep); color: var(--white) !important;
  padding: 10px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 700; transition: background 0.2s;
}
.header-cta:hover { background: var(--green-darker); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 70px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(
      95deg,
      rgba(15, 25, 18, 0.92) 0%,
      rgba(15, 25, 18, 0.78) 35%,
      rgba(15, 25, 18, 0.45) 65%,
      rgba(15, 25, 18, 0.20) 100%
    );
  z-index: 2;
}
.hero-inner {
  position: relative; z-index: 3;
  max-width: var(--max); margin: 0 auto;
  padding: 100px 24px;
  width: 100%;
  color: var(--white);
}
.hero-tag {
  display: inline-block;
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.15em;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 32px;
  backdrop-filter: blur(6px);
  font-weight: 500;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(38px, 6.4vw, 72px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}
.hero-sub {
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.95;
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 500;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 56px;
}
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s;
  cursor: pointer;
  text-align: center;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--gold);
  color: var(--green-darker) !important;
  box-shadow: 0 8px 24px rgba(229, 192, 123, 0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(229, 192, 123, 0.55);
  background: #f0cc8a;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.3); }

.hero-badges { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-badge {
  display: flex; flex-direction: column;
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
}
.hero-badge:last-child { border-right: none; padding-right: 0; }
.hero-badge strong {
  font-family: var(--en); font-size: 30px; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.hero-badge span {
  font-size: 12px; line-height: 1.55; letter-spacing: 0.04em;
  opacity: 0.95; font-weight: 500;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* COMMON SECTION */
section { padding: 100px 0; }
.section-label {
  font-family: var(--en);
  font-size: 13px; letter-spacing: 0.25em;
  color: var(--beige); font-weight: 700;
  text-align: center; margin-bottom: 14px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700; text-align: center;
  line-height: 1.5; margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.section-lead {
  text-align: center; color: var(--text-muted);
  font-size: 15px; line-height: 2;
  max-width: 720px; margin: 0 auto 56px;
}
.accent { color: var(--green-deep); font-weight: 700; }
.accent-ul {
  color: var(--green-deep);
  background-image: linear-gradient(transparent 65%, rgba(229, 192, 123, 0.55) 65%);
  padding: 0 4px;
}

/* WORRIES（SVGアイコン） */
.worries { background: var(--base-2); padding: 90px 0; }
.worry-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 48px 0 40px;
}
.worry-list li {
  background: var(--white);
  padding: 36px 24px 32px;
  text-align: left;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--green-deep);
  transition: transform 0.3s;
}
.worry-list li:hover { transform: translateY(-4px); }
.worry-icon {
  width: 56px; height: 56px;
  color: var(--green-deep);
  margin-bottom: 18px;
}
.worry-icon svg { width: 100%; height: 100%; }
.worry-title {
  font-family: var(--serif);
  font-size: 16px; font-weight: 700;
  color: var(--text); line-height: 1.55;
  margin-bottom: 12px;
}
.worry-body {
  font-size: 13px; line-height: 1.85;
  color: var(--text-muted);
}
.worry-bridge {
  text-align: center;
  font-size: 18px;
  font-family: var(--serif);
  margin-top: 36px;
  color: var(--text);
}

/* REASONS */
.reasons { background: var(--base); }
.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.reason-card {
  background: var(--white);
  padding: 44px 36px;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--green-deep);
  transition: transform 0.3s;
}
.reason-card:hover { transform: translateY(-4px); }
.reason-icon-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.reason-num {
  font-family: var(--en);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--beige);
}
.reason-tag {
  background: var(--green-deep);
  color: var(--white);
  font-size: 11px; font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
}
.reason-title {
  font-family: var(--serif);
  font-size: 22px; font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 18px;
  line-height: 1.5;
}
.reason-body {
  font-size: 15px; line-height: 1.95;
  color: var(--text);
}
.reason-body strong {
  background-image: linear-gradient(transparent 65%, rgba(229, 192, 123, 0.45) 65%);
  font-weight: 700;
}

/* PROMISES（3つの約束） */
.promises {
  background: linear-gradient(180deg, var(--base) 0%, var(--base-2) 100%);
  padding: 100px 0;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.promise-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  border-top: 5px solid var(--green-deep);
  position: relative;
  transition: transform 0.3s;
}
.promise-card:hover { transform: translateY(-6px); }
.promise-card-highlight {
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-darker) 100%);
  color: var(--white);
  border-top-color: var(--gold);
  transform: translateY(-12px);
}
.promise-card-highlight:hover { transform: translateY(-18px); }
.promise-num {
  font-family: var(--en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--beige);
  margin-bottom: 14px;
}
.promise-card-highlight .promise-num { color: var(--gold); }
.promise-tag {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  background: rgba(229, 192, 123, 0.15);
  padding: 4px 12px;
  border-radius: 999px;
  width: fit-content;
}
.promise-card-highlight .promise-tag {
  color: var(--green-darker);
  background: var(--gold);
}
.promise-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.5;
  margin-bottom: 20px;
}
.promise-card-highlight .promise-title { color: var(--white); }
.promise-body {
  font-size: 15px;
  line-height: 1.95;
  color: var(--text);
}
.promise-card-highlight .promise-body {
  color: rgba(255, 255, 255, 0.95);
}
.promise-body strong {
  background-image: linear-gradient(transparent 65%, rgba(229, 192, 123, 0.5) 65%);
  font-weight: 700;
}
.promise-card-highlight .promise-body strong {
  background-image: linear-gradient(transparent 65%, rgba(229, 192, 123, 0.5) 65%);
  color: var(--white);
}

/* MENU（写真6枚） */
.menu { background: var(--base); padding-top: 0; }
.menu .section-title { color: var(--text); }
.menu .section-lead { color: var(--text-muted); }
.menu-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 12px;
}
.menu-item {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}
.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.menu-img {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--line);
}
.menu-text { padding: 22px 22px 26px; }
.menu-text h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.menu-strength {
  background: var(--gold);
  color: var(--green-darker);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.menu-text p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* WORKS */
.works { background: var(--base-2); }
.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.work-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--white);
}
.work-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s;
}
.work-item:hover img { transform: scale(1.04); }
.work-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(15, 25, 18, 0.92), transparent);
  color: var(--white);
}
.work-item figcaption strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px; font-weight: 700;
  margin-bottom: 6px;
}
.work-item figcaption span { font-size: 12px; opacity: 0.85; }
.works-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 32px;
}

/* VOICES */
.voices { background: var(--base); }
.rating-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--green-darker);
  font-size: 14px;
  padding: 4px 14px;
  border-radius: 999px;
  margin-left: 12px;
  vertical-align: middle;
  font-family: var(--sans);
  font-weight: 700;
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 12px;
}
.voice-extra {
  margin-top: 24px;
  animation: voiceFadeIn 0.4s ease-out;
}
@keyframes voiceFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.voice-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}
.voice-stars {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}
.voice-body {
  font-size: 14px;
  line-height: 1.95;
  color: var(--text);
  margin-bottom: 18px;
}
.voice-meta {
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.voice-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 32px auto 0;
  background: var(--white);
  color: var(--green-deep);
  border: 1.5px solid var(--green-deep);
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
}
.voice-toggle:hover {
  background: var(--green-deep);
  color: var(--white);
}
.voice-toggle .toggle-text-less { display: none; }
.voice-toggle .toggle-arrow {
  transition: transform 0.3s;
  display: inline-block;
  font-size: 11px;
}
.voice-toggle[aria-expanded="true"] .toggle-text-more { display: none; }
.voice-toggle[aria-expanded="true"] .toggle-text-less { display: inline; }
.voice-toggle[aria-expanded="true"] .toggle-arrow { transform: rotate(180deg); }
.voices-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 24px;
}

/* FLOW */
.flow { background: var(--base-2); }
.flow-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.flow-item {
  background: var(--white);
  padding: 32px 22px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border-left: 3px solid var(--green-deep);
}
.flow-num {
  font-family: var(--en);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--beige);
  margin-bottom: 12px;
}
.flow-item h3 {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--green-deep);
  margin-bottom: 12px;
  line-height: 1.5;
}
.flow-item p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text);
}

/* AREA（県別カード） */
.area { background: var(--base); }
.area-base {
  margin: 32px auto 32px;
  display: flex;
  justify-content: center;
}
.area-pin {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green-deep);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(47, 74, 58, 0.25);
}
.area-pin-dot {
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(229, 192, 123, 0.35);
}
.area-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px 24px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
}
.area-card:hover { transform: translateY(-3px); }
.area-card-main {
  border-color: var(--green-deep);
  border-width: 2px;
}
.area-card-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.area-card-tag {
  background: var(--green-deep);
  color: var(--white);
  font-size: 10px; font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.08em;
}
.area-card-tag-sub {
  background: var(--beige);
}
.area-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-deep);
}
.area-card p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text);
}
.area-card-note {
  background: rgba(229, 192, 123, 0.18);
  border: 1px dashed var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
}
.area-card-note-text {
  font-size: 13px !important;
  color: var(--text) !important;
  text-align: center;
  line-height: 1.85;
}

/* FAQ */
.faq { background: var(--base-2); }
.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-item summary {
  padding: 22px 28px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 60px;
  transition: background 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q.";
  font-family: var(--en);
  color: var(--beige);
  font-weight: 700;
  margin-right: 12px;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--green-deep);
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { background: var(--base-2); }
.faq-item p {
  padding: 0 28px 24px 56px;
  font-size: 14px;
  line-height: 1.95;
  color: var(--text-muted);
}

/* CONTACT */
.contact {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-darker) 100%);
  color: var(--white);
}
.contact .section-label { color: var(--gold); }
.contact .section-title { color: var(--white); }
.contact-lead {
  text-align: center;
  font-size: 15px;
  line-height: 2;
  margin-bottom: 56px;
  opacity: 0.95;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.contact-label {
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}
.contact-tel {
  font-family: var(--en);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}
.contact-btn {
  width: 100%;
  margin-bottom: 12px;
  font-size: 14px;
  padding: 14px 20px;
}
.contact-sns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.contact-sns a {
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 0.2s;
}
.contact-sns a:hover { background: rgba(255, 255, 255, 0.25); }
.contact-note { font-size: 12px; opacity: 0.8; }

/* FOOTER */
.footer {
  background: #0F1A14;
  color: var(--white);
  padding: 60px 0 32px;
}
.footer-inner { display: flex; flex-direction: column; gap: 24px; }
.footer-brand { display: flex; flex-direction: column; line-height: 1.2; }
.footer-en {
  font-family: var(--en); font-weight: 700;
  font-size: 24px; letter-spacing: 0.08em;
  color: var(--gold);
}
.footer-jp {
  font-family: var(--serif); font-size: 12px;
  color: rgba(255, 255, 255, 0.6); margin-top: 4px;
}
.footer-info p {
  font-size: 13px; line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
}
.footer-sample {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(229, 192, 123, 0.25);
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 12px;
}
.footer-sample p {
  font-size: 11px; line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}
.footer-sample a { color: var(--gold); text-decoration: underline; }
.copyright {
  text-align: center; font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px; margin-top: 16px;
  font-family: var(--en); letter-spacing: 0.08em;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .area-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .reason-grid,
  .works-grid,
  .voice-grid,
  .contact-cards,
  .promise-grid { grid-template-columns: 1fr; }
  .promise-card-highlight { transform: none; }
  .promise-card-highlight:hover { transform: translateY(-4px); }
  .worry-list { grid-template-columns: repeat(2, 1fr); }
  .flow-list { grid-template-columns: 1fr; }
  .nav { display: none; }
  section { padding: 70px 0; }
  .menu { padding-top: 0; }
}

@media (max-width: 600px) {
  .sp-only { display: inline; }
  .header-inner { padding: 12px 16px; gap: 12px; }
  .container { padding: 0 16px; }
  .hero { min-height: 92vh; }
  .hero-inner { padding: 80px 16px 60px; }
  .hero-title { font-size: clamp(32px, 9vw, 44px); }
  .hero-sub { font-size: 14px; line-height: 1.85; }
  .hero-badges { gap: 16px; }
  .hero-badge { padding-right: 14px; }
  .hero-badge strong { font-size: 22px; }
  .hero-badge span { font-size: 11px; }
  .menu-grid { grid-template-columns: 1fr; }
  .area-cards { grid-template-columns: 1fr; }
  .worry-list { grid-template-columns: 1fr; gap: 16px; }
  .work-item img { height: 260px; }
  .reason-card { padding: 32px 24px; }
  .faq-item summary { padding: 18px 22px; padding-right: 50px; font-size: 14px; }
  .faq-item summary::after { right: 20px; }
  .faq-item p { padding: 0 22px 20px 48px; }
  .contact-tel { font-size: 22px; }
  .header-cta { padding: 8px 14px; font-size: 12px; }
}
