:root {
  --page-width: 750px;
  --serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  --brown: #765e4f;
  --gold: #bd9a5b;
  --pink: #ff4777;
  --ink: #4f4a45;
  --tap-highlight: rgba(251, 111, 157, 0.22);
  --focus-ring: rgba(251, 111, 157, 0.82);
}

* {
  box-sizing: border-box;
}

html {
  background: #fff;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #fff;
  color: var(--brown);
  font-family: var(--serif);
}

.page {
  width: min(100%, var(--page-width));
  margin: 0 auto;
  overflow: hidden;
  background: #fff url("./background/frame2-loop.png") repeat-y top center / 100% auto;
}

.page img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}

/* Image sections and invisible link overlays */
.slice {
  position: relative;
  margin: 0;
  line-height: 0;
}

.hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 999px;
  -webkit-tap-highlight-color: var(--tap-highlight);
}

.hotspot:focus-visible,
.table-link:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.hero-cta {
  left: 23%;
  top: 94.4%;
  width: 54%;
  height: 4%;
}

.card-cta {
  left: 11%;
  width: 78%;
  height: 2.4%;
}

.cta-rank-1 {
  top: 38.6%;
}

.cta-rank-2 {
  top: 66.5%;
}

.cta-rank-3 {
  top: 93.2%;
}

.detail-check {
  left: 7%;
  width: 86%;
  height: 3.8%;
}

.detail-check-1 {
  top: 20.2%;
  height: 0.95%;
}

.detail-check-2 {
  top: 75.2%;
  height: 0.95%;
}

.detail-check-3 {
  top: 94.6%;
  height: 0.95%;
}

.final-detail {
  top: 58.2%;
}

.reserve-cta {
  left: 7%;
  width: 86%;
}

.reserve-1 {
  top: 93.8%;
  height: 3.8%;
}

.final-reserve {
  top: 86.1%;
  height: 4.5%;
}

/* Shared headings for rebuilt HTML sections */
.quiz-section,
.comparison-section {
  position: relative;
  margin-top: -1px;
  padding: 76px 26px 56px;
  background: #fff url("./background/frame2-loop.png") repeat-y top center / 100% auto;
  text-align: center;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 270px;
  min-height: 64px;
  padding: 10px 32px;
  border: 6px solid #fff;
  border-radius: 999px;
  background: linear-gradient(90deg, #806b58, #c6a35d, #806b58);
  box-shadow: 0 4px 10px rgba(47, 33, 25, 0.25);
  color: #fff;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
}

.quiz-section h2,
.comparison-section h2 {
  margin: 34px 0 26px;
  background: linear-gradient(90deg, var(--brown) 0%, #c5a15d 50%, var(--brown) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 62px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.quiz-section h2 span {
  display: block;
}

.quiz-lead,
.comparison-section p {
  max-width: 640px;
  margin: 0 auto 42px;
  color: var(--ink);
  font-size: 31px;
  font-weight: 700;
  line-height: 1.55;
}

/* Diagnosis */
.quiz-card {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(47, 33, 25, 0.2);
  text-align: left;
}

.quiz-progress {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 30px 32px;
  background: var(--gold);
  color: #fff;
}

.quiz-progress span {
  width: 58px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.quiz-progress span.is-active {
  background: #fff;
}

.quiz-progress b {
  margin-left: auto;
  font-size: 28px;
  line-height: 1;
}

.quiz-progress em {
  font-style: normal;
}

.quiz-question {
  margin: 0;
  padding: 26px 32px 24px;
  background: var(--gold);
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.35;
}

.quiz-options {
  display: grid;
  gap: 22px;
  padding: 26px 24px 30px;
}

.quiz-option {
  display: grid;
  grid-template-columns: 72px 1fr 28px;
  align-items: center;
  min-height: 116px;
  padding: 16px 28px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(47, 33, 25, 0.16);
  color: #756f66;
  cursor: pointer;
  font: inherit;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.quiz-option::before {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #756f66;
  color: #fff;
  content: attr(data-mark);
  font-size: 26px;
}

.quiz-option::after {
  color: #756f66;
  content: ">";
  font-size: 44px;
  line-height: 1;
}

.quiz-result {
  padding: 38px 32px 42px;
  text-align: center;
}

.result-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 26px;
  font-weight: 700;
}

.quiz-result h3 {
  margin: 0 0 14px;
  color: var(--brown);
  font-size: 58px;
  line-height: 1.1;
}

.quiz-result p {
  margin: 0 auto 28px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
}

.result-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 590px);
  min-height: 86px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 5px 12px rgba(47, 33, 25, 0.2);
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-decoration: none;
}

/* Comparison table */
.comparison-section {
  padding-right: 0;
  padding-left: 0;
}

.comparison-section > .section-pill,
.comparison-section > h2,
.comparison-section > p {
  margin-right: 26px;
  margin-left: 26px;
}

.table-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 18px;
  scrollbar-color: var(--gold) #f8f1e8;
  -webkit-overflow-scrolling: touch;
}

.table-canvas {
  position: relative;
  width: 2082px;
  height: 2474px;
  margin: 0;
  line-height: 0;
}

.table-canvas .tile {
  position: absolute;
  display: block;
  width: auto;
  max-width: none;
  height: auto;
}

.t-r1-c1 { left: 0; top: 0; }
.t-r1-c2 { left: 750px; top: 0; }
.t-r1-c3 { left: 1500px; top: 0; }
.t-r2-c1 { left: 0; top: 900px; }
.t-r2-c2 { left: 750px; top: 900px; }
.t-r2-c3 { left: 1500px; top: 900px; }
.t-r3-c1 { left: 0; top: 1800px; }
.t-r3-c2 { left: 750px; top: 1800px; }
.t-r3-c3 { left: 1500px; top: 1800px; }

.table-link {
  position: absolute;
  top: 2388px;
  z-index: 3;
  width: 290px;
  height: 64px;
  border-radius: 8px;
}

.table-link-1 { left: 280px; }
.table-link-2 { left: 650px; }
.table-link-3 { left: 1017px; }
.table-link-4 { left: 1385px; }
.table-link-5 { left: 1752px; }

/* Responsive tuning */
@media (max-width: 520px) {
  .section-pill {
    min-width: 0;
    min-height: 50px;
    padding: 8px 22px;
    border-width: 4px;
    font-size: 20px;
  }

  .quiz-section,
  .comparison-section {
    padding-top: 52px;
  }

  .quiz-section h2,
  .comparison-section h2 {
    font-size: 43px;
  }

  .quiz-lead,
  .comparison-section p {
    font-size: 22px;
  }

  .quiz-question {
    font-size: 25px;
  }

  .quiz-option {
    grid-template-columns: 56px 1fr 22px;
    min-height: 88px;
    padding: 12px 18px;
    font-size: 20px;
  }

  .quiz-option::before {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .quiz-progress b {
    font-size: 22px;
  }
}

@media (min-width: 751px) {
  body {
    padding: 24px 0;
  }

  .page {
    border-radius: 2px;
  }
}
