:root {
  --ink: #1f2528;
  --muted: #667176;
  --line: #dfe5e2;
  --cream: #fbfaf6;
  --paper: #fffdf9;
  --sage: #718b7c;
  --sage-dark: #365647;
  --rose: #b8847d;
  --gold: #b69a67;
  --blue: #58798f;
  --shadow: 0 18px 60px rgba(31, 37, 40, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fffdf9 0%, #fbfaf6 100%);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 249, 0.92);
  border-bottom: 1px solid rgba(223, 229, 226, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 13px;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  white-space: nowrap;
}

.nav-cta {
  padding: 8px 14px;
  color: #fff;
  background: var(--sage-dark);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: #fff;
  background: #22352d;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 40, 34, 0.9), rgba(26, 40, 34, 0.58) 47%, rgba(26, 40, 34, 0.08)),
    url("assets/hero-main.png") center / cover;
  transform: scale(1.02);
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(56px, 9vw, 110px) 0 64px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #dfc58c;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.38;
  letter-spacing: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(40px, 4.8vw, 60px);
  font-weight: 600;
  overflow-wrap: normal;
  white-space: nowrap;
}

h2 {
  font-size: clamp(28px, 4vw, 46px);
}

h3 {
  font-size: 20px;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(16px, 2vw, 19px);
}

.hero-special-offer {
  display: inline-block;
  margin: 24px 0 0;
  padding: 10px 16px;
  color: #fff;
  background: rgba(184, 132, 125, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.3;
}

.button.primary {
  color: #fff;
  background: var(--rose);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.trust-list li {
  padding: 7px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 13px;
}

.campaign-countdown {
  display: inline-flex;
  align-items: center;
  margin: 14px 0 0;
  padding: 9px 14px;
  color: #ffe4cf;
  background: rgba(184, 94, 70, 0.24);
  border: 1px solid rgba(255, 202, 163, 0.48);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.intro-visual {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--cream);
}

.intro-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.intro-copy {
  max-width: 620px;
}

.intro-copy h2 {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.42;
  overflow-wrap: normal;
  white-space: nowrap;
}

.body-copy p:first-child,
.section-heading p:first-child {
  margin-top: 0;
}

.body-copy p,
.section-heading p {
  color: var(--muted);
}

.soft {
  background: var(--paper);
}

.deep {
  color: var(--ink);
  background: var(--paper);
}

.deep .section-heading p,
.deep li {
  color: var(--muted);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading.narrow {
  max-width: 720px;
}

.service-visual {
  margin: -8px 0 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.service-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.boundary-visual {
  margin: -8px 0 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.boundary-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.flow-visual {
  margin: -8px 0 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.flow-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.grid {
  display: grid;
  gap: 18px;
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.role-box,
.price-card,
.template,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.card {
  min-height: 220px;
  padding: 24px;
}

.card.muted {
  background: #fbfaf6;
}

.card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.num {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: 28px;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.role-box {
  padding: 28px;
  color: var(--ink);
}

.role-box ul,
.dos-donts ul,
.price-card ul {
  padding-left: 1.2em;
  margin: 16px 0 0;
}

.role-box li,
.dos-donts li,
.price-card li {
  margin: 8px 0;
}

.role-box li {
  color: var(--muted);
}

.dos-donts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.moved-boundaries {
  margin-top: 24px;
}

.dos-donts > div {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.steps li {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-weight: 700;
}

.steps p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.notice {
  margin: 20px 0 0;
  padding: 16px 18px;
  color: var(--muted);
  background: #f3f6f5;
  border-left: 4px solid var(--sage);
}

.online-special {
  background: #fffdf9;
}

.special-price-cards {
  margin-top: 28px;
  min-width: 0;
}

.special-price-cards .card {
  min-height: auto;
  text-align: left;
}

.special-menu-card {
  min-width: 0;
  overflow: hidden;
}

.discount {
  margin: 14px 0 6px !important;
  color: var(--rose) !important;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  line-height: 1;
}

.special-menu-card h3,
.special-menu-card .discount,
.special-menu-card .special-period {
  text-align: center;
}

.special-period {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 700;
}

.price-table-wrap {
  width: 100%;
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.special-price-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.6;
}

.special-price-table.compact {
  min-width: 480px;
}

.special-price-table th,
.special-price-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.special-price-table thead th {
  color: var(--sage-dark);
  background: #f3f6f5;
  font-weight: 700;
  white-space: nowrap;
}

.special-price-table tbody th {
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}

.special-price-table tbody tr:last-child th,
.special-price-table tbody tr:last-child td {
  border-bottom: 0;
}

.price-section {
  background: var(--paper);
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: stretch;
}

.price-layout > div:first-child h2 {
  font-size: clamp(32px, 3vw, 38px);
  line-height: 1.46;
  white-space: nowrap;
}

.price-layout > div:first-child p {
  color: var(--muted);
}

.price-layout > div:first-child {
  display: flex;
  flex-direction: column;
}

.price-visual {
  flex: 1;
  margin: 24px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.price-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.price-card {
  height: 100%;
  padding: 30px;
  box-shadow: var(--shadow);
}

.campaign {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 12px;
  color: #fff;
  background: var(--rose);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.price-row strong {
  font-size: 28px;
}

.price-row strong small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.main-price strong {
  color: var(--sage-dark);
  font-size: 34px;
}

.main-price small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.price-note {
  margin: -4px 0 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.fee-note {
  margin: 20px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(188, 127, 116, 0.36);
  border-left: 5px solid var(--rose);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(188, 127, 116, 0.13), rgba(255, 250, 244, 0.96));
  box-shadow: 0 14px 34px rgba(188, 127, 116, 0.12);
}

.fee-note h3 {
  margin: 0 0 8px;
  color: var(--rose);
  font-size: 16px;
}

.fee-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.contract {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.notice-section .section-heading h2 {
  white-space: nowrap;
}

.notice-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: stretch;
}

.notice-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.notice-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.template {
  margin: 0;
  padding: 28px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.notice-template {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.template p:first-child {
  margin-top: 0;
}

.template p:last-child {
  margin-bottom: 0;
}

.faq-section {
  background: #f8f9fa;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 700;
}

.faq-list p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  margin: 0;
  padding: 0 0 20px;
  color: var(--muted);
}

.faq-badge {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.faq-badge.q {
  color: #fff;
  background: var(--rose);
}

.faq-badge.a {
  color: var(--muted);
  background: #eceeef;
}

.final-cta {
  padding-top: 0;
}

.cta-panel {
  position: relative;
  min-height: 440px;
  padding: clamp(34px, 6vw, 64px);
  overflow: hidden;
  color: var(--ink);
  background-color: #fffdf9;
  background-image:
    linear-gradient(90deg, rgba(255, 253, 249, 1) 0%, rgba(255, 253, 249, 0.98) 58%, rgba(255, 253, 249, 0.28) 78%),
    url("assets/final-consultation.png");
  background-position: center, right center;
  background-size: cover, auto 100%;
  background-repeat: no-repeat;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-panel p {
  max-width: 600px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(420px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background-image: linear-gradient(90deg, rgba(255, 253, 249, 1) 0%, rgba(255, 253, 249, 0.98) 100%);
}

.contact-panel-single {
  display: block;
}

.contact-panel-single .contact-form {
  max-width: 760px;
  margin: 0 auto;
}

.contact-copy {
  max-width: 560px;
}

.form-heading {
  margin-bottom: 22px;
}

.form-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 44px);
}

.form-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

.contact-form {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 3vw, 30px);
  background: #fff8e7;
  border: 1px solid rgba(181, 148, 91, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(31, 37, 40, 0.12);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.contact-form label span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contact-form b {
  color: var(--rose);
  font-size: 11px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-size: 15px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 112px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(113, 139, 124, 0.24);
  border-color: var(--sage);
}

.full-field,
.consent-field,
.form-submit,
.form-status {
  margin-top: 14px;
}

.consent-field {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  color: var(--muted) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 5px;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 1.8em;
  color: var(--muted);
  font-size: 13px;
}

.form-status[data-state="success"] {
  color: var(--sage-dark);
  font-weight: 700;
}

.form-status[data-state="error"] {
  color: #9b4d45;
  font-weight: 700;
}

.submit-frame,
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.microcopy {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer {
  padding: 28px 0;
  color: var(--muted);
  background: #f5f3ee;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
}

.footer p {
  margin: 0;
}

.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  display: none;
  padding: 14px 24px;
  color: #fff;
  background: var(--rose);
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  line-height: 1.2;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.floating-cta.is-hidden {
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 980px) {
  .hero-inner,
  .split,
  .intro-layout,
  .price-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .cards-4,
  .cards-2,
  .notice-layout,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


@media (max-width: 767px) {
  .floating-cta {
    display: inline-flex;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 28px, 1120px);
    padding: 44px 0;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(26, 40, 34, 0.88), rgba(26, 40, 34, 0.68)),
      url("assets/hero-main.png") center / cover;
  }

  h1 {
    font-size: 38px;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .intro-copy h2 {
    white-space: normal;
  }

  h2 {
    font-size: 28px;
  }

  .notice-section .section-heading h2,
  .price-layout > div:first-child h2 {
    white-space: normal;
  }

  .price-visual {
    flex: initial;
  }

  .price-visual img {
    height: auto;
    min-height: 0;
  }

  .cards-4,
  .cards-2,
  .cards-3,
  .notice-layout,
  .role-grid,
  .dos-donts,
  .steps {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .button {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    min-height: 520px;
    background:
      linear-gradient(180deg, rgba(255, 253, 249, 1), rgba(255, 253, 249, 0.94) 58%, rgba(255, 253, 249, 0.2)),
      url("assets/final-consultation.png");
    background-position: center, center bottom;
    background-size: cover, auto 100%;
    background-repeat: no-repeat;
  }
}

/* ============================================================
   お問い合わせ種別セレクター
   ============================================================ */
.contact-type-field {
  border: none;
  padding: 0;
  margin: 0 0 24px;
}

.contact-type-field legend {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  display: block;
}

.contact-type-field legend b {
  color: var(--rose);
  font-size: 12px;
  margin-left: 4px;
}

.contact-type-option {
  display: block;
  margin-bottom: 8px;
  cursor: pointer;
}

.contact-type-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.contact-type-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: border-color 0.15s, background 0.15s;
}

.contact-type-option input[type="radio"]:checked + .contact-type-card {
  border-color: var(--sage-dark);
  background: rgba(54, 86, 71, 0.05);
}

.contact-type-card strong {
  font-size: 15px;
  color: var(--ink);
}

.contact-type-card small {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}
