@charset "utf-8";

:root {
  --green: #004f43;
  --green-2: #087865;
  --green-deep: #003f36;
  --gold: #c58b1f;
  --gold-2: #daa941;
  --cream: #f5efe5;
  --cream-2: #fffcf7;
  --mint: #edf7f1;
  --line: #06c755;
  --text: #1f2a2a;
  --muted: #596365;
  --border: #eadfce;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(20, 42, 37, 0.12);
  --shadow-soft: 0 10px 26px rgba(28, 40, 36, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-sans: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream-2);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid rgba(201, 151, 43, 0.9);
  outline-offset: 3px;
}

button,
summary {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 8px 12px;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--green);
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 40px, 1120px);
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.section-pad {
  padding: 34px 0 48px;
}

.section-mini {
  padding: 42px 0;
}

.section-soft {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.sp-only {
  display: inline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(100% - 32px, 1160px);
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  flex: 0 0 auto;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 2.6rem, 3.1rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.brand-mark.small-logo {
  font-size: 1.8rem;
}

.brand-name {
  font-weight: 900;
  font-size: clamp(0.95rem, 1.05rem, 1.3rem);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.menu-button {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-content: center;
  gap: 7px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 34px;
  height: 3px;
  display: block;
  border-radius: 99px;
  background: var(--green);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(10px) rotate(42deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-10px) rotate(-42deg);
}

.global-nav {
  position: fixed;
  inset: 72px 16px auto;
  display: grid;
  gap: 2px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.global-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.global-nav a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--green);
  font-weight: 700;
}

.global-nav a:hover,
.global-nav a:focus-visible {
  background: var(--mint);
}

.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #fff 0%, var(--cream-2) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 28px;
  align-items: center;
}

.free-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  color: var(--green);
  font-weight: 900;
  font-size: clamp(0.86rem, 0.92rem, 1rem);
}

.free-pill strong {
  color: var(--gold);
  font-size: 1.8em;
  line-height: 1;
}

.hero-title,
.section-heading h2,
.solution-copy h2,
.area-panel h2,
.line-copy h2,
.final-panel h2 {
  color: var(--green);
  font-family: var(--font-serif);
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: 0.08em;
}

.hero-title {
  margin: 0;
  font-size: clamp(3rem, 4rem, 5.6rem);
}

.hero-lead {
  margin: 18px 0 0;
  font-size: clamp(1.05rem, 1.2rem, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.09em;
}

.hero-text {
  margin: 14px 0 0;
  color: var(--text);
  font-weight: 500;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-notes li {
  padding: 7px 10px;
  border: 1px solid rgba(0, 92, 91, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.4;
}

.hero-actions,
.final-actions,
.form-actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  font-weight: 900;
  font-size: clamp(1rem, 1.1rem, 1.35rem);
  letter-spacing: 0;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.12);
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #fff;
  box-shadow: 0 10px 20px rgba(180, 124, 26, 0.25);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.88);
  color: var(--green);
  border-color: var(--green);
}

.btn-line {
  background: linear-gradient(180deg, #16d765, var(--line));
  color: #fff;
  box-shadow: 0 12px 24px rgba(6, 199, 85, 0.24);
}

.btn-wide {
  width: 100%;
  margin-top: 24px;
}

.line-badge {
  width: 46px;
  height: 30px;
  display: inline-grid;
  place-content: center;
  border-radius: 999px;
  background: var(--line);
  color: #fff;
  font-size: 0.7rem;
  line-height: 1;
  letter-spacing: 0;
}

.line-badge.light {
  background: #fff;
  color: var(--line);
}

.room-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 76% 18%, rgba(0, 92, 91, 0.10), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 243, 236, 0.78) 55%, rgba(232, 221, 203, 0.45) 100%);
  box-shadow: var(--shadow);
}

.room-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(198, 170, 132, 0.25));
}

.hero-room {
  min-height: 430px;
}

.sofa {
  position: absolute;
  left: 8%;
  bottom: 19%;
  width: 42%;
  height: 18%;
  border-radius: 8px 8px 6px 6px;
  background: linear-gradient(180deg, #87a273, #718b60);
  box-shadow: inset 0 -10px 0 rgba(0, 0, 0, 0.08), 0 12px 20px rgba(0,0,0,0.09);
}

.sofa::before,
.sofa::after {
  content: "";
  position: absolute;
  top: 18%;
  width: 40%;
  height: 48%;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.22);
}

.sofa::before { left: 8%; }
.sofa::after { right: 8%; }

.table {
  position: absolute;
  left: 16%;
  bottom: 12%;
  width: 38%;
  height: 8%;
  border-radius: 999px;
  background: #d3af77;
}

.box {
  position: absolute;
  right: 9%;
  bottom: 12%;
  border-radius: 6px;
  background: linear-gradient(135deg, #d5a967, #c9974e);
  box-shadow: 0 12px 20px rgba(0,0,0,0.08);
}

.box-large {
  width: 32%;
  height: 24%;
}

.box span {
  position: absolute;
  right: 10px;
  bottom: 8px;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 2rem;
}

.plant {
  position: absolute;
  width: 80px;
  height: 120px;
}

.plant::before,
.plant::after {
  content: "";
  position: absolute;
  border-radius: 50% 0 50% 0;
  background: #74a66d;
}

.plant::before {
  top: 8px;
  left: 22px;
  width: 36px;
  height: 54px;
  transform: rotate(-24deg);
}

.plant::after {
  top: 38px;
  left: 40px;
  width: 34px;
  height: 50px;
  transform: rotate(30deg);
}

.plant-a { right: 10%; top: 10%; }
.plant-b { left: 9%; top: 17%; transform: scale(0.75); opacity: 0.8; }

.staff-illustration {
  position: absolute;
  right: 7%;
  bottom: 26%;
  width: 48%;
  height: 48%;
}

.staff-illustration.small {
  inset: 10% 5% auto auto;
  width: 86%;
  height: 78%;
}

.person {
  position: absolute;
  bottom: 0;
  width: 32%;
  height: 54%;
  border-radius: 999px 999px 14px 14px;
  background: #f4d1aa;
}

.person::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -34%;
  width: 72%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #f4d1aa;
  box-shadow: inset 0 -7px 0 rgba(0,0,0,0.06);
}

.person.staff {
  left: 12%;
  background: var(--green-2);
}

.person.staff::after {
  content: "AV";
  position: absolute;
  top: 16%;
  right: 12%;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 0.8rem;
}

.cap {
  position: absolute;
  z-index: 2;
  left: 20%;
  top: -42%;
  width: 58%;
  height: 20%;
  border-radius: 50% 50% 15% 15%;
  background: var(--green);
}

.person.customer {
  right: 8%;
  background: #e6d8c8;
}

.person.customer::before {
  background: #292321;
  box-shadow: none;
}

.clipboard {
  position: absolute;
  left: 28%;
  bottom: 7%;
  width: 42%;
  height: 28%;
  border-radius: 6px;
  transform: rotate(-6deg);
  background: #fff;
  border: 2px solid #d7d7d7;
}

.clipboard::before,
.clipboard::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  height: 2px;
  background: #c9c9c9;
}

.clipboard::before { top: 36%; }
.clipboard::after { top: 56%; }

.hero-trust {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow);
}

.quick-card {
  min-height: 112px;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 16px 8px;
  text-align: center;
  font-weight: 700;
}

.quick-card + .quick-card {
  border-left: 1px solid var(--border);
}

.quick-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--green);
  background: #fff;
  font-size: 1.35rem;
}

.trust-strip {
  padding: 16px 0 38px;
  background: #fff;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--cream-2);
  box-shadow: var(--shadow-soft);
}

.trust-list div {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 12px 8px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.trust-list div + div {
  border-left: 1px solid var(--border);
}

.trust-list .gold {
  color: var(--gold);
  font-size: 2rem;
  font-family: Georgia, serif;
  line-height: 1;
}

.trust-icon {
  color: var(--green);
  font-size: 1.8rem;
  line-height: 1;
}

.section-heading {
  margin-bottom: 32px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 2.65rem, 3.6rem);
}

.section-heading p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
  font-size: clamp(0.96rem, 1.05rem, 1.2rem);
}

.leaf-mark {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--green-2);
  font-size: 1.1rem;
  transform: rotate(45deg);
}

.problem-grid {
  display: grid;
  gap: 16px;
}

.problem-card,
.reason-card,
.flow-card,
.price-card,
.voice-card,
.faq-item,
.info-card,
.line-form-card,
.notice-card,
.cta-panel,
.faq-cta,
.final-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.problem-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  padding: 20px;
}

.problem-card h3,
.reason-card h3,
.flow-card h3,
.price-card h3,
.voice-card h3,
.safe-panel h3,
.faq-cta h3,
.cta-panel h3,
.line-form-card h3 {
  margin: 0;
  color: var(--green);
  font-weight: 900;
  line-height: 1.45;
}

.problem-card p,
.reason-card p,
.flow-card p,
.cta-panel p,
.faq-cta p,
.final-panel p {
  margin: 6px 0 0;
  color: var(--text);
}

.illust-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: #f2eadc;
  color: var(--green);
  font-size: 2rem;
}

.solution-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0 54%, rgba(255,255,255,0.62)),
    linear-gradient(135deg, var(--cream-2), var(--mint));
  box-shadow: var(--shadow);
}

.solution-copy h2,
.line-copy h2 {
  margin: 0;
  font-size: clamp(2.25rem, 3rem, 4rem);
}

.solution-copy p,
.line-copy p {
  margin: 12px 0 0;
  font-weight: 500;
}

.solution-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.solution-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 13px 15px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.88);
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}

.solution-list span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
}

.solution-list strong {
  color: var(--green);
  font-size: 1rem;
  line-height: 1.5;
}

.solution-list small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.solution-photo {
  min-height: 250px;
}

.compact-room {
  min-height: 250px;
  height: 100%;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.item-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.item-card:hover,
.item-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.item-card strong {
  padding: 12px 0 14px 14px;
  font-size: clamp(0.88rem, 0.95rem, 1.05rem);
  line-height: 1.4;
}

.item-card > span:last-child {
  padding-right: 14px;
  color: var(--green);
  font-size: 1.6rem;
}

.item-photo,
.price-photo {
  grid-column: 1 / -1;
  min-height: 120px;
  display: block;
  background-color: var(--cream);
  background-size: cover;
  background-position: center;
}

.item-appliance { background-image: radial-gradient(circle at 66% 30%, rgba(0,92,91,.14), transparent 18%), linear-gradient(90deg, #f7f7f2, #d8d8d2 44%, #f5f2ed 45%); }
.item-furniture { background-image: radial-gradient(circle at 24% 35%, rgba(115,140,93,.4), transparent 22%), linear-gradient(160deg, #f8f0e4, #c5a673 55%, #f8f2eb 56%); }
.item-brand { background-image: radial-gradient(circle at 48% 44%, #6a3f26 0 28%, transparent 29%), linear-gradient(135deg, #e6d0ad, #8b5a37); }
.item-music { background-image: radial-gradient(ellipse at 54% 55%, #d9a65f 0 22%, transparent 23%), linear-gradient(90deg, #f5ede1, #875a34 53%, #f8f2e8 54%); }
.item-camera { background-image: radial-gradient(circle at 52% 56%, #111 0 18%, #333 19% 28%, transparent 29%), linear-gradient(135deg, #f0e6d7, #575a5a 50%, #1d2223); }
.item-audio { background-image: radial-gradient(circle at 72% 52%, #111 0 13%, #444 14% 20%, transparent 21%), linear-gradient(90deg, #ead9c1, #777 46%, #242424 47%); }
.item-device { background-image: radial-gradient(circle at 70% 30%, #20262a 0 22%, transparent 23%), linear-gradient(135deg, #f5f3ee, #596368 70%); }
.item-gift { background-image: radial-gradient(ellipse at 30% 60%, #bc7a2a 0 12%, transparent 13%), radial-gradient(ellipse at 65% 55%, #2b402d 0 12%, transparent 13%), linear-gradient(135deg, #f8ead3, #d9b16b); }

.notice-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  padding: 22px;
  background: linear-gradient(135deg, #fff, var(--cream));
  text-align: left;
}

.notice-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  box-shadow: var(--shadow-soft);
  font-size: 1.8rem;
}

.notice-card p {
  margin: 0;
  color: var(--green);
  font-family: var(--font-serif);
  font-size: clamp(1.12rem, 1.35rem, 1.75rem);
  font-weight: 900;
  line-height: 1.6;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.reason-card {
  display: grid;
  gap: 8px;
  place-items: center;
  min-height: 190px;
  padding: 22px 14px;
  text-align: center;
}

.reason-card > span {
  width: 72px;
  height: 72px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.reason-card > span.gold {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.reason-card h3 {
  font-size: clamp(1.05rem, 1.15rem, 1.35rem);
}

.reason-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.safe-panel {
  display: grid;
  gap: 20px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.safe-photo {
  min-height: 220px;
}

.safe-panel h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 1.95rem, 2.4rem);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 10px;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: var(--cream-2);
}

.check-list li::before {
  content: "✓";
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  color: var(--green);
  background: #fff;
  font-weight: 900;
}

.check-list strong {
  color: var(--green);
}

.check-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.line-cta {
  justify-content: space-between;
  padding-inline: 18px;
}

.flow-grid {
  display: grid;
  gap: 16px;
}

.flow-card {
  position: relative;
  padding: 24px 20px;
  text-align: center;
}

.step {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #e6c36f, var(--gold));
  color: var(--green);
  font-weight: 900;
  font-family: Georgia, serif;
}

.flow-icon {
  margin: 16px auto 10px;
  color: var(--green);
  font-size: 2.4rem;
  line-height: 1;
}

.flow-card p {
  font-size: 0.93rem;
}

.area-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 26px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fff, var(--cream));
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--green);
  font-weight: 900;
}

.area-panel h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.25rem, 3rem);
}

.area-panel p:not(.eyebrow) {
  margin: 14px 0 0;
  font-weight: 600;
}

.map-visual {
  position: relative;
  min-height: 230px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 55% 42%, rgba(0,92,91,0.26) 0 26%, transparent 27%),
    radial-gradient(circle at 34% 62%, rgba(0,92,91,0.16) 0 22%, transparent 23%),
    radial-gradient(circle at 65% 66%, rgba(0,92,91,0.12) 0 18%, transparent 19%),
    linear-gradient(135deg, #eef6f2, #fff);
  border: 1px dashed rgba(0,92,91,0.35);
}

.map-label {
  position: absolute;
  padding: 7px 12px;
  border-radius: 10px;
  background: #fff;
  color: var(--green);
  box-shadow: var(--shadow-soft);
  font-weight: 900;
}

.label-a { top: 24%; left: 48%; }
.label-b { top: 45%; right: 18%; }
.label-c { bottom: 20%; left: 22%; }
.map-pin { position: absolute; right: 8%; bottom: 8%; font-size: 3rem; }

.line-section {
  background: #fff;
}

.line-grid {
  display: grid;
  gap: 26px;
  align-items: center;
}

.line-copy .lead {
  font-size: clamp(1.1rem, 1.2rem, 1.35rem);
  font-weight: 700;
}

.line-steps {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.line-steps div {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.line-steps span {
  width: 38px;
  height: 38px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-weight: 900;
}

.line-steps strong {
  color: var(--green);
  font-size: 1.05rem;
}

.phone-mock {
  position: relative;
  width: min(100%, 360px);
  min-height: 560px;
  margin-inline: auto;
  padding: 42px 18px 18px;
  border: 10px solid #232323;
  border-radius: 42px;
  background: linear-gradient(180deg, #edf7f4, #fff 42%, #f5f5f5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.phone-speaker {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 92px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #111;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green);
  line-height: 1.4;
}

.chat-bubble {
  width: fit-content;
  max-width: 78%;
  margin: 10px 0;
  padding: 12px 14px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
  line-height: 1.7;
  font-weight: 700;
}

.chat-bubble.user {
  margin-left: auto;
  background: #b8efb6;
}

.chat-bubble.short {
  max-width: 68%;
}

.chat-bubble.shop strong {
  color: var(--gold);
}

.chat-photo {
  width: 78%;
  height: 120px;
  margin-left: auto;
  border-radius: var(--radius-lg);
  background-image: radial-gradient(circle at 25% 46%, rgba(115,140,93,.35), transparent 28%), linear-gradient(135deg, #f9f4ec, #9aad7e 55%, #f7efe4 56%);
  box-shadow: var(--shadow-soft);
}

.line-form-card {
  margin-top: 30px;
  padding: 24px;
}

.line-form-card h3 {
  color: var(--green);
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2rem, 2.6rem);
}

.form-preview {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.form-preview div {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.form-preview span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--mint);
}

.form-preview small {
  color: var(--muted);
  font-weight: 700;
}

.form-preview strong {
  color: var(--green);
}

.line-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 14px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
}

.line-notes span {
  padding: 12px 8px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 800;
}

.line-notes span + span {
  border-left: 1px solid var(--border);
}

.achievements {
  background: linear-gradient(180deg, var(--cream-2), #fff);
}

.price-grid {
  display: grid;
  gap: 16px;
}

.price-card {
  overflow: hidden;
  padding-bottom: 24px;
  text-align: center;
}

.price-photo {
  min-height: 210px;
}

.price-card h3 {
  margin-top: 18px;
  font-family: var(--font-serif);
  font-size: 1.45rem;
}

.price-card h3 small {
  font-size: 0.8em;
}

.price-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.price-card strong {
  display: block;
  margin-top: 2px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 3.1rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.price-subgrid {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.small-price {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.small-price .item-photo {
  min-height: 94px;
  border-radius: var(--radius-lg);
}

.small-price h3 {
  margin: 0;
  color: var(--green);
}

.small-price p {
  margin: 3px 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.5;
}

.small-price strong {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.55rem;
}

.price-note {
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.cta-panel,
.faq-cta {
  display: grid;
  gap: 18px;
  margin-top: 26px;
  padding: 24px;
  background: linear-gradient(135deg, var(--mint), var(--cream-2));
}

.cta-panel h3,
.faq-cta h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 1.9rem, 2.4rem);
}

.left-heading {
  text-align: left;
}

.label-pill {
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green-2), var(--green));
  color: #fff;
  font-weight: 900;
}

.voice-list {
  display: grid;
  gap: 16px;
}

.voice-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px 16px;
  padding: 20px;
}

.avatar {
  width: 72px;
  height: 72px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: #f0ddd0;
  color: var(--green);
  font-weight: 900;
}

.avatar.male {
  background: #d9e5e7;
}

.voice-meta {
  align-self: center;
  color: var(--green);
  font-weight: 900;
}

.voice-card > div:last-child {
  grid-column: 1 / -1;
}

.stars {
  margin: 0 0 4px;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-weight: 900;
}

.voice-card p:not(.stars) {
  margin: 8px 0 0;
}

.review-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.review-badges div {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 12px 6px;
  text-align: center;
  font-size: 0.82rem;
}

.review-badges div + div {
  border-left: 1px solid var(--border);
}

.review-badges strong {
  color: var(--green);
}

.faq-container {
  width: min(100% - 40px, 980px);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 12px;
  padding: 20px;
  cursor: pointer;
  color: var(--green);
  font-size: clamp(1.05rem, 1.18rem, 1.45rem);
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-content: center;
  color: var(--green);
  font-size: 1.9rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 22px;
}

.info-card {
  padding: 26px;
}

.info-card h2 {
  margin: 0 0 20px;
  color: var(--green);
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 2rem, 2.6rem);
}

.info-grid {
  display: grid;
  gap: 14px;
}

.info-grid div {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 12px;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: var(--cream-2);
}

.info-grid span {
  grid-row: span 2;
  color: var(--green);
  font-size: 1.65rem;
}

.info-grid strong {
  color: var(--green);
}

.info-grid p {
  margin: 0;
}

.final-cta {
  background: #fff;
}

.final-panel {
  padding: 32px 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--cream-2), var(--mint));
}

.final-panel h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.5rem, 3.4rem);
}

.final-panel p {
  margin: 18px auto 0;
  max-width: 720px;
  font-weight: 600;
}

.site-footer {
  padding: 48px 0 86px;
  background: radial-gradient(circle at 20% 0, #087263, var(--green-deep));
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 34px;
}

.brand-footer .brand-mark,
.brand-footer .brand-name {
  color: #fff;
}

.footer-brand p {
  margin: 14px 0 0;
}

.sns-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.sns-row a {
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 24px;
}

.footer-links h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.footer-links a {
  display: block;
  padding: 4px 0;
  color: rgba(255,255,255,0.88);
}

.copyright {
  width: min(100% - 40px, 1120px);
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.25);
  text-align: center;
  color: rgba(255,255,255,0.82);
  font-size: 0.86rem;
}

.fixed-cta {
  position: fixed;
  z-index: 90;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 12px 30px rgba(0,0,0,0.16);
  backdrop-filter: blur(14px);
}

.fixed-cta a {
  min-height: 46px;
  display: grid;
  place-content: center;
  border-radius: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.fixed-line {
  background: var(--line);
  color: #fff;
}

.fixed-main {
  background: var(--gold);
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (min-width: 560px) {
  .problem-grid,
  .price-grid,
  .price-subgrid,
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .illust-icon {
    margin-inline: auto;
  }

  .voice-card {
    grid-template-columns: 86px 120px 1fr;
    align-items: center;
  }

  .avatar {
    width: 86px;
    height: 86px;
  }

  .voice-card > div:last-child {
    grid-column: auto;
    border-left: 1px solid var(--border);
    padding-left: 24px;
  }
}

@media (min-width: 768px) {
  .section { padding: 96px 0; }
  .section-pad { padding: 64px 0 70px; }
  .section-mini { padding: 64px 0; }
  .sp-only { display: none; }

  .global-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .global-nav a {
    padding: 8px 10px;
    font-size: 0.92rem;
  }

  .menu-button {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.95fr;
    gap: 36px;
  }

  .hero-actions,
  .final-actions,
  .form-actions {
    grid-template-columns: 1fr 1fr;
  }

  .hero-trust {
    margin-top: -26px;
  }

  .trust-list div {
    min-height: 108px;
    font-size: 1rem;
  }

  .problem-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .solution-panel,
  .line-grid,
  .area-panel,
  .safe-panel,
  .cta-panel,
  .faq-cta,
  .footer-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .solution-panel {
    padding: 42px;
  }

  .item-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .reason-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .flow-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .flow-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -18px;
    width: 26px;
    height: 26px;
    transform: translateY(-50%) rotate(45deg);
    background: var(--cream);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }

  .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .price-subgrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-grid,
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .fixed-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 48px;
  }
}

@media (min-width: 1024px) {
  .container {
    width: min(100% - 72px, 1120px);
  }

  .header-inner {
    width: min(100% - 72px, 1160px);
    min-height: 84px;
  }

  .global-nav a {
    padding: 10px 14px;
  }

  .hero-title {
    font-size: 5.8rem;
  }

  .hero-text {
    max-width: 540px;
    font-size: 1.1rem;
  }

  .room-card.hero-room {
    min-height: 540px;
  }

  .quick-card {
    min-height: 132px;
  }

  .quick-icon {
    width: 58px;
    height: 58px;
  }

  .solution-list {
    grid-template-columns: 1fr 1fr;
  }

  .line-form-card {
    padding: 34px;
  }

  .info-grid,
  .footer-links {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* WordPressログイン時の管理バー対策 */
body.admin-bar .site-header {
  top: 46px;
}

@media (min-width: 783px) {
  body.admin-bar .site-header {
    top: 32px;
  }
}

/* Reference visual tuning based on the provided LP mockups. */
body {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,252,247,0.95)),
    var(--cream-2);
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(234, 223, 206, 0.9);
}

.brand-mark {
  color: var(--green);
  font-size: clamp(2.25rem, 2.85rem, 3.4rem);
  text-shadow: 0 2px 0 rgba(0, 79, 67, 0.08);
}

.brand-name {
  color: #171d1b;
  font-weight: 900;
}

.menu-button span {
  height: 4px;
  width: 36px;
  box-shadow: 0 2px 4px rgba(0, 79, 67, 0.18);
}

.hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0 44%, rgba(255,255,255,0.72) 60%, rgba(255,255,255,0.18) 100%),
    linear-gradient(180deg, #fff 0%, var(--cream-2) 100%);
}

.section-pad {
  padding-top: 48px;
}

.free-pill {
  min-height: 58px;
  padding: 10px 22px;
  border-color: rgba(234, 223, 206, 0.95);
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 12px 28px rgba(57, 44, 26, 0.09);
}

.hero-title {
  color: var(--green);
  font-size: clamp(3.5rem, 4.9rem, 6.4rem);
  line-height: 1.18;
  letter-spacing: 0.07em;
  text-shadow: 0 2px 0 rgba(0, 79, 67, 0.06);
}

.hero-lead,
.hero-text {
  color: #202322;
  font-size: 1.12rem;
  line-height: 2;
  font-weight: 700;
}

.hero-text {
  font-weight: 500;
}

.hero-room {
  min-height: 560px;
  border: 0;
  border-radius: 0 0 0 68px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0)),
    url("../images/hero-visit.jpg") center / cover no-repeat;
  box-shadow: none;
}

.hero-room::before {
  inset: 0;
  height: auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.18));
}

.hero-room > * {
  display: none;
}

.hero-trust {
  grid-template-columns: repeat(4, 1fr);
  margin-top: -34px;
  border: 0;
  border-radius: 26px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 20px 46px rgba(57, 44, 26, 0.13);
}

.quick-card {
  min-height: 154px;
  gap: 12px;
  padding: 22px 10px;
  color: #151817;
}

.quick-icon,
.trust-icon,
.reason-card > span,
.illust-icon,
.notice-icon {
  border: 1px solid #eadfce;
  background: #fbf7ef;
  color: var(--green);
  box-shadow: inset 0 0 0 8px rgba(255,255,255,0.38);
}

.quick-icon {
  width: 66px;
  height: 66px;
  font-size: 1.8rem;
}

.trust-list,
.line-notes,
.review-badges {
  background: rgba(255,255,255,0.92);
  border: 0;
  box-shadow: 0 12px 28px rgba(57, 44, 26, 0.08);
}

.section {
  padding: 92px 0;
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading h2,
.solution-copy h2,
.area-panel h2,
.line-copy h2,
.final-panel h2 {
  color: var(--green);
  line-height: 1.28;
  letter-spacing: 0.1em;
}

.section-heading h2 {
  font-size: clamp(2.45rem, 3.1rem, 4.2rem);
}

.leaf-mark {
  position: relative;
  width: 150px;
  height: 28px;
  margin: 0 auto 14px;
  color: transparent;
  transform: none;
}

.leaf-mark::before,
.leaf-mark::after {
  content: "";
  position: absolute;
  top: 13px;
  width: 58px;
  height: 1px;
  background: #dbc99e;
}

.leaf-mark::before {
  left: 0;
}

.leaf-mark::after {
  right: 0;
}

.leaf-mark {
  background:
    radial-gradient(ellipse at 43% 42%, var(--green-2) 0 18%, transparent 19%),
    radial-gradient(ellipse at 57% 42%, var(--green-2) 0 18%, transparent 19%);
  background-size: 38px 28px;
  background-position: center;
  background-repeat: no-repeat;
}

.problem-card,
.reason-card,
.flow-card,
.price-card,
.voice-card,
.faq-item,
.info-card,
.line-form-card,
.notice-card,
.cta-panel,
.faq-cta,
.final-panel,
.safe-panel,
.area-panel,
.small-price,
.item-card {
  border: 1px solid rgba(234, 223, 206, 0.9);
  border-radius: 26px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 34px rgba(52, 44, 34, 0.09);
}

.problem-card,
.reason-card,
.flow-card {
  padding: 28px 22px;
}

.solution-panel,
.final-panel,
.cta-panel,
.faq-cta {
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.82)),
    linear-gradient(135deg, #fbf7ef, #edf7f1);
}

.solution-photo .room-card,
.safe-photo {
  border: 0;
  background: url("../images/living-room.jpg") center / cover no-repeat;
}

.safe-photo {
  background-image: url("../images/staff-consult.jpg");
}

.solution-photo .room-card > *,
.safe-photo > * {
  display: none;
}

.item-grid {
  gap: 22px;
}

.item-card {
  border-radius: 20px;
  overflow: hidden;
}

.item-card strong {
  padding: 16px 0 18px 18px;
  color: #171d1b;
  font-size: 1.05rem;
}

.item-photo,
.price-photo {
  min-height: 170px;
  background-size: cover;
  background-position: center;
}

.item-appliance { background-image: url("../images/item-appliance.jpg"); }
.item-furniture { background-image: url("../images/item-furniture.jpg"); }
.item-brand { background-image: url("../images/item-brand.jpg"); }
.item-music { background-image: url("../images/item-music.jpg"); }
.item-camera { background-image: url("../images/item-camera.jpg"); }
.item-audio { background-image: url("../images/item-audio.jpg"); }
.item-device { background-image: url("../images/item-device.jpg"); }
.item-gift { background-image: url("../images/item-gift.jpg"); }

.price-card {
  padding: 16px 16px 28px;
}

.price-card .price-photo {
  border-radius: 18px;
}

.price-card h3 {
  color: var(--green);
  font-size: 1.65rem;
}

.price-card strong,
.small-price strong {
  color: var(--gold);
  text-shadow: 0 1px 0 rgba(120, 80, 14, 0.1);
}

.btn {
  min-height: 76px;
  border-radius: 18px;
  font-size: clamp(1.18rem, 1.45rem, 1.8rem);
  box-shadow: 0 14px 28px rgba(38, 29, 17, 0.12);
}

.btn-primary {
  position: relative;
  justify-content: center;
  background: linear-gradient(180deg, #d9a846 0%, #c79026 100%);
  box-shadow: 0 14px 24px rgba(144, 96, 20, 0.26), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-primary > span[aria-hidden="true"] {
  position: absolute;
  right: 22px;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--gold);
}

.btn-outline {
  min-height: 68px;
  border: 3px solid var(--green);
  background: rgba(255,255,255,0.96);
}

.btn-line {
  min-height: 76px;
  background: linear-gradient(180deg, #20ba58, #098f43);
}

.line-badge {
  width: 52px;
  height: 38px;
  font-size: 0.78rem;
}

.phone-mock {
  border-width: 12px;
  border-radius: 42px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.chat-photo {
  background-image: url("../images/item-furniture.jpg");
  background-size: cover;
  background-position: center;
}

.area-panel {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98), rgba(255,252,247,0.86)),
    var(--cream);
}

.map-visual {
  border: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 60% 46%, rgba(0,79,67,0.28) 0 24%, transparent 25%),
    radial-gradient(circle at 40% 62%, rgba(0,79,67,0.16) 0 22%, transparent 23%),
    radial-gradient(circle at 62% 68%, rgba(0,79,67,0.12) 0 18%, transparent 19%),
    linear-gradient(135deg, #eef6f2, #fff9f0);
}

.voice-card {
  grid-template-columns: 100px 1fr;
  gap: 18px 28px;
  padding: 28px;
}

.avatar {
  width: 92px;
  height: 92px;
  background:
    radial-gradient(circle at 50% 30%, #f4d9c8 0 22%, transparent 23%),
    radial-gradient(circle at 50% 74%, #efe2d7 0 34%, transparent 35%),
    #f7f1e8;
  color: var(--green);
  font-size: 0;
}

.avatar::after {
  content: "人";
  font-size: 1.1rem;
}

.stars {
  color: var(--gold);
}

.faq-item summary {
  min-height: 92px;
  padding: 24px 30px;
  font-size: clamp(1.22rem, 1.5rem, 1.85rem);
}

.faq-item p {
  padding: 0 30px 30px 30px;
  line-height: 2;
}

.info-card {
  background: rgba(255,255,255,0.92);
}

.site-footer {
  background:
    radial-gradient(circle at 24% 0, rgba(19, 120, 98, 0.72), transparent 32%),
    linear-gradient(135deg, #006c5c 0%, #004a42 55%, #003b35 100%);
}

@media (max-width: 767px) {
  .container,
  .faq-container {
    width: min(100% - 32px, 1120px);
  }

  .section {
    padding: 70px 0;
  }

  .site-header {
    border-radius: 0 0 18px 18px;
  }

  .header-inner {
    min-height: 86px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    font-size: 2.8rem;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .hero {
    padding-bottom: 34px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-title {
    font-size: 3.85rem;
  }

  .hero-room {
    min-height: 460px;
    margin-inline: -16px;
    border-radius: 0 0 34px 34px;
  }

  .hero-trust {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 18px;
    border-radius: 22px;
  }

  .quick-card {
    min-height: 138px;
  }

  .quick-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .quick-card:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .trust-list div + div {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .section-heading h2,
  .solution-copy h2,
  .line-copy h2 {
    font-size: 2.45rem;
  }

  .problem-card,
  .reason-card,
  .flow-card,
  .voice-card,
  .faq-item,
  .line-form-card,
  .info-card,
  .final-panel {
    border-radius: 22px;
  }

  .item-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .item-photo {
    min-height: 136px;
  }

  .price-photo {
    min-height: 230px;
  }

  .btn {
    min-height: 68px;
    font-size: 1.28rem;
  }

  .fixed-cta {
    border-radius: 22px;
  }
}
