:root {
  --bg: #f7f0e5;
  --paper: #fffaf2;
  --text: #2b2926;
  --gold: #b47a2b;
  --gold-dark: #7a4d18;
  --shadow: 0 20px 50px rgba(64, 43, 21, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #fffaf0 0%, var(--bg) 42%, #eadfcf 100%);
  color: var(--text);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  line-height: 1.8;
}

.lp {
  width: 100%;
}

.image-section {
  display: flex;
  justify-content: center;
  padding: 0;
}

.image-frame {
  position: relative;
  width: min(100%, 941px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.image-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.hotspot {
  position: absolute;
  display: block;
  border-radius: 14px;
  text-decoration: none;
  outline-offset: 4px;
}

.hotspot:focus-visible,
.fixed-cta:focus-visible,
.contact-button:focus-visible {
  outline: 3px solid rgba(180, 122, 43, 0.75);
}

/* 1枚目画像内のメニュー・CTAに透明リンクを重ねています。 */
.nav-beginner { left: 4.2%; top: 59.6%; width: 29.4%; height: 13.2%; }
.nav-feature  { left: 34.6%; top: 59.6%; width: 29.4%; height: 13.2%; }
.nav-price    { left: 64.9%; top: 59.6%; width: 29.4%; height: 13.2%; }
.nav-shop     { left: 4.2%; top: 73.2%; width: 29.4%; height: 13.2%; }
.nav-review   { left: 34.6%; top: 73.2%; width: 29.4%; height: 13.2%; }
.nav-contact  { left: 64.9%; top: 73.2%; width: 29.4%; height: 13.2%; }
.hero-cta     { left: 4.5%; top: 88.0%; width: 91.0%; height: 10.0%; border-radius: 999px; }

.contact-section {
  padding: 48px 18px 112px;
  display: flex;
  justify-content: center;
}

.contact-card {
  width: min(100%, 860px);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(180, 122, 43, 0.28);
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: var(--shadow);
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 4.8vw, 2.7rem);
  line-height: 1.35;
  color: var(--gold-dark);
}

.contact-card p {
  margin: 0 auto 22px;
  max-width: 680px;
  font-size: clamp(0.96rem, 2.5vw, 1.08rem);
}

.contact-button,
.fixed-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #c99544 0%, #9c6726 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(108, 65, 20, 0.24);
}

.edit-note {
  margin-top: 20px !important;
  color: rgba(43, 41, 38, 0.64);
  font-size: 0.84rem !important;
}

.edit-note code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: rgba(180, 122, 43, 0.12);
  padding: 2px 5px;
  border-radius: 5px;
}

.fixed-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 10;
  width: min(calc(100% - 36px), 560px);
  transform: translateX(-50%);
  min-height: 58px;
  font-size: 1.08rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 560px) {
  body {
    background: #f7f0e5;
  }

  .image-frame {
    box-shadow: none;
  }

  .contact-section {
    padding: 32px 14px 98px;
  }

  .contact-card {
    border-radius: 22px;
  }

  .fixed-cta {
    bottom: 12px;
    width: calc(100% - 24px);
  }
}
