:root {
  --ink: #111827;
  --muted: #667085;
  --paper: #f6f7f9;
  --surface: #ffffff;
  --line: #e5e7eb;
  --green: #007185;
  --green-deep: #004f5f;
  --coral: #d55f32;
  --amber: #f2a900;
  --sky: #2563eb;
  --charcoal: #111827;
  --soft: #f1f5f9;
  --cream: #fff7e6;
  --mist: #edf8fb;
  --danger-soft: #fff1ed;
  --chart-low: #007185;
  --chart-mid: #b7791f;
  --chart-high: #d55f32;
  --chart-track: #eef2f6;
  --chart-low-bg: #f0fafb;
  --chart-mid-bg: #fff8ea;
  --chart-high-bg: #fff3ed;
  --shadow: 0 12px 26px rgba(17, 24, 39, 0.08);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic",
    "YuGothic", "Noto Sans JP", "Segoe UI", sans-serif;
  line-height: 1.68;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 12px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.94);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--charcoal);
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav a {
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.site-nav a:hover {
  background: var(--soft);
  color: var(--green-deep);
}

.decision-band {
  min-height: auto;
  padding: clamp(22px, 3.4vw, 38px) clamp(18px, 4vw, 52px);
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
}

.decision-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro {
  max-width: none;
}

.intro h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(31px, 3.4vw, 43px);
  line-height: 1.12;
  font-weight: 850;
}

.lead {
  max-width: 720px;
  margin: 16px 0 0;
  color: #374151;
  font-size: 15px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.finder {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr 0.9fr 0.82fr;
  gap: 10px;
  margin-top: 20px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.06);
}

.finder label,
.lodging-mode-control {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.finder label {
  grid-template-rows: 16px 46px;
}

.finder span,
.lodging-mode-control legend {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.lodging-mode-control {
  grid-column: 1 / 4;
  grid-template-rows: 16px 52px;
  margin: 0;
  padding: 0;
  border: 0;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  min-height: 52px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.segmented-control label {
  display: block;
  min-width: 0;
}

.segmented-control input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented-control span {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 40px;
  padding: 7px 9px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
}

.segmented-control input:focus-visible + span {
  outline: 3px solid rgba(0, 113, 133, 0.22);
  outline-offset: 2px;
}

.segmented-control input:checked + span {
  background: var(--green);
  color: #fff;
}

.finder select {
  width: 100%;
  height: 46px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 28px 0 10px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  text-overflow: ellipsis;
}

.finder-actions {
  grid-column: 4 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 8px;
  align-self: stretch;
  align-items: stretch;
  height: auto;
  padding-top: 19px;
}

.finder-status {
  height: 52px;
  min-height: 52px;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(242, 169, 0, 0.22);
  border-radius: 8px;
  background: var(--cream);
  color: #5f4700;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  overflow: hidden;
}

.search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  min-height: 52px;
  border: 1px solid #f2a900;
  border-radius: 8px;
  background: #ffd166;
  color: #111827;
  cursor: pointer;
  font-weight: 900;
  font-size: 13px;
}

.search-button:hover,
.search-button.is-pending {
  border-color: #e2a100;
  background: #ffc145;
}

.operation-disclosure span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.operation-disclosure strong {
  display: block;
  margin-top: 3px;
  color: var(--green-deep);
  font-size: 14px;
  line-height: 1.3;
}

.operation-disclosure p {
  margin: 5px 0 0;
  color: #4b5563;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.45;
}

.visual-panel {
  position: relative;
  min-height: clamp(420px, 54vh, 500px);
  overflow: hidden;
  border-radius: 8px;
  background: #d8e4e8;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.1);
}

.visual-panel img {
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 54vh, 500px);
  object-fit: cover;
}

.visual-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.92);
  backdrop-filter: blur(10px);
}

.visual-caption strong {
  white-space: nowrap;
  font-size: 24px;
}

.visual-caption span {
  color: var(--muted);
  font-weight: 700;
  text-align: right;
}

.content-band,
.analysis-band {
  padding: clamp(42px, 6vw, 72px) clamp(18px, 4vw, 52px);
}

#recommendations {
  padding-top: clamp(12px, 1.5vw, 16px);
}

.content-band > *,
.analysis-layout {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.pale {
  background: #f3f5f7;
}

.dark {
  background: var(--charcoal);
  color: #f6fbf7;
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading h1,
.section-heading h2,
.analysis-layout h2 {
  margin: 0;
  font-size: clamp(27px, 3.3vw, 38px);
  line-height: 1.18;
}

.section-heading p:last-child,
.analysis-layout p {
  margin: 0;
  color: var(--muted);
}

.dark .section-heading p,
.dark .eyebrow {
  color: #bdc9c1;
}

.compact {
  max-width: 620px;
}

.summary-line {
  min-height: 38px;
  margin-bottom: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(242, 169, 0, 0.2);
  border-radius: 8px;
  background: var(--cream);
  color: #4b3a05;
  font-size: 13px;
  font-weight: 800;
}

.answer-panel {
  margin-bottom: 16px;
}

.answer-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.06);
}

.answer-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.answer-copy h3 {
  margin: 0;
  font-size: clamp(23px, 2.4vw, 32px);
  line-height: 1.18;
}

.answer-copy p {
  margin: 0;
  color: #374151;
  font-size: 15px;
}

.answer-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.answer-facts div {
  min-height: 76px;
  padding: 11px;
  border: 1px solid rgba(0, 113, 133, 0.12);
  border-radius: 8px;
  background: #f8fafc;
}

.answer-facts span,
.answer-facts small,
.answer-next span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

.answer-facts strong {
  display: block;
  margin-top: 4px;
  color: var(--green-deep);
  font-size: 18px;
  line-height: 1.25;
}

.answer-next {
  display: grid;
  gap: 4px;
}

.answer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.answer-actions .action-link {
  width: fit-content;
  min-width: 140px;
}

.answer-photo {
  display: grid;
  grid-template-rows: minmax(220px, 1fr) auto;
  gap: 8px;
  min-width: 0;
  margin: 0;
}

.answer-photo img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: 8px;
  object-fit: cover;
}

.answer-photo figcaption {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.method-note {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 10px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.method-note strong {
  color: var(--green-deep);
}

.method-note span {
  color: #4b5563;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.scope-note {
  width: min(1180px, 100%);
  margin: 0 auto 18px;
}

.scope-note.warning {
  border-color: #e8c776;
  background: #fff9e8;
}

.value-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(1180px, 100%);
  margin: 0 auto 14px;
}

.value-overview article {
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(0, 113, 133, 0.12);
  border-radius: 8px;
  background: #fff;
}

.value-overview span,
.value-strip span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.value-overview strong {
  display: block;
  margin-top: 5px;
  color: var(--green-deep);
  font-size: 20px;
  line-height: 1.25;
}

.value-overview p {
  margin: 8px 0 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.5;
}

.value-snapshot {
  grid-template-columns: minmax(190px, 0.74fr) repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.value-snapshot-heading,
.value-snapshot article {
  min-height: 184px;
}

.value-snapshot-heading {
  display: grid;
  align-content: space-between;
  gap: 10px;
  padding: 16px;
  border-radius: 8px;
  background: var(--charcoal);
  color: #f7fbf8;
}

.value-snapshot-heading span {
  color: #a9d5c2;
}

.value-snapshot-heading strong {
  color: #fff;
  font-size: 24px;
}

.value-snapshot-heading small {
  color: #cbd5d1;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.4;
}

.value-snapshot article {
  display: grid;
  grid-template-rows: 138px 1fr;
  align-content: start;
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.value-snapshot-image {
  position: relative;
  min-width: 0;
  margin: 0;
}

.value-snapshot-image img {
  width: 100%;
  height: 138px;
  object-fit: cover;
}

.value-snapshot-image figcaption {
  position: absolute;
  left: 8px;
  bottom: 8px;
  max-width: calc(100% - 16px);
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(17, 24, 39, 0.78);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.value-snapshot-body {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 0;
  padding: 14px;
}

.value-snapshot-rank {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eaf6f0;
  color: var(--green-deep);
}

.value-snapshot-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 10px;
  margin: 0;
}

.value-snapshot-facts div {
  min-width: 0;
}

.value-snapshot-facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.value-snapshot-facts dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.value-snapshot a {
  align-self: end;
  width: fit-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

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

.recommendation-more {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.secondary-button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(0, 113, 133, 0.28);
  border-radius: 8px;
  background: #fff;
  color: var(--green-deep);
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.secondary-button:hover {
  border-color: var(--green);
  background: #eef7f3;
  transform: translateY(-1px);
}

.recommendation-card {
  display: grid;
  grid-template-rows: 180px 1fr;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
}

.recommendation-card.secondary-recommendation {
  grid-template-rows: 150px 1fr;
  min-height: 580px;
}

.recommendation-card.secondary-recommendation .card-image-wrap {
  min-height: 150px;
}

.recommendation-card.secondary-recommendation .card-image-wrap img {
  height: 150px;
}

.recommendation-card.secondary-recommendation .card-body {
  gap: 12px;
  padding: 16px;
}

.secondary-card-note {
  padding: 10px 12px;
  border: 1px solid rgba(0, 113, 133, 0.12);
  border-radius: 8px;
  background: #f8fafc;
  color: #4b5563;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.card-image-wrap {
  position: relative;
  min-height: 180px;
}

.card-image-wrap img,
.recommendation-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.image-source-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(17, 24, 39, 0.78);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
}

.card-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.area-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.score-badge,
.discount-badge {
  display: grid;
  place-items: center;
  min-width: 86px;
  min-height: 48px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(242, 169, 0, 0.28);
  background: #fff8e1;
  color: #5d4200;
  font-weight: 900;
  text-align: center;
}

.discount-badge strong,
.discount-badge small {
  display: block;
}

.discount-badge strong {
  font-size: 13px;
  line-height: 1.15;
}

.discount-badge small {
  margin-top: 2px;
  color: #7a5b00;
  font-size: 10px;
  line-height: 1.2;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 800;
}

.pill.coral {
  background: var(--danger-soft);
  color: #a33b28;
}

.card-answer {
  padding: 12px;
  border: 1px solid rgba(0, 113, 133, 0.12);
  border-radius: 8px;
  background: #f8fafc;
}

.card-answer span,
.card-answer strong,
.card-answer p {
  display: block;
}

.card-answer span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.card-answer strong {
  margin-top: 3px;
  color: var(--green-deep);
  font-size: 20px;
  line-height: 1.2;
}

.card-answer p {
  margin: 6px 0 0;
  color: #374151;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.value-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
}

.value-strip div {
  min-height: 84px;
  padding: 10px;
  border: 1px solid rgba(0, 113, 133, 0.12);
  border-radius: 8px;
  background: #f8fafc;
}

.value-strip strong,
.value-strip small {
  display: block;
}

.value-strip strong {
  margin-top: 4px;
  color: var(--green-deep);
  font-size: 15px;
  line-height: 1.25;
}

.value-strip small {
  margin-top: 4px;
  color: #4b5563;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-line strong {
  font-size: 22px;
}

.price-line span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.reason-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reason-list li {
  display: flex;
  gap: 8px;
  color: #374151;
  font-size: 14px;
  line-height: 1.45;
}

.reason-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid var(--green);
  background: var(--green);
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.action-link.secondary {
  background: #fff;
  color: var(--green-deep);
}

.action-link.disabled,
.disabled {
  opacity: 0.62;
  pointer-events: none;
}

.compact-link {
  min-height: 38px;
  padding: 7px 10px;
  font-size: 13px;
}

.lodging-preview {
  display: grid;
  gap: 8px;
  padding-top: 2px;
}

.lodging-preview-heading {
  display: grid;
  gap: 2px;
  padding: 9px 10px;
  border-radius: 8px;
  background: #f8fafc;
}

.lodging-preview-heading strong,
.lodging-preview-heading span {
  display: block;
}

.lodging-preview-heading strong {
  color: var(--green-deep);
  font-size: 13px;
  line-height: 1.25;
}

.lodging-preview-heading span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.lodging-preview.empty {
  padding: 10px;
  border-radius: 8px;
  background: #f8fafc;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.lodging-preview article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  min-height: 62px;
  padding: 7px 0;
  border-top: 1px solid var(--line);
}

.lodging-preview img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
}

.lodging-preview strong,
.lodging-preview span {
  display: block;
}

.lodging-preview strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lodging-preview span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.lodging-preview .review-highlight,
.review-highlight {
  display: block;
  min-height: auto;
  padding: 7px 8px;
  border: 1px solid #d8e7df;
  border-radius: 8px;
  background: #f2f8f4;
  color: #1f5b43;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.45;
  white-space: normal;
}

.lodging-preview-note {
  margin: 0;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff9e8;
  color: #655221;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
}

.lodging-preview a,
.lodging-preview .disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
}

.analysis-band {
  background: #fff;
}

.timing-band {
  background: #f3f5f7;
}

.timing-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.timing-layout .section-heading {
  max-width: none;
  margin-bottom: 0;
}

.timing-layout .section-heading > p:not(.eyebrow) {
  max-width: 760px;
}

.timing-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  margin-top: 16px;
  padding: 9px 10px 9px 14px;
  border: 1px solid rgba(0, 113, 133, 0.14);
  border-radius: 8px;
  background: #fff;
}

.timing-meta span {
  color: var(--green-deep);
  font-size: 21px;
  font-weight: 900;
}

.timing-area-detail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(0, 113, 133, 0.12);
  border-radius: 8px;
  background: #fff;
}

.timing-area-detail > div:not(.lodging-preview) {
  display: grid;
  gap: 4px;
  align-content: start;
  min-height: 64px;
  padding: 9px;
  border-radius: 8px;
  background: #f8fafc;
}

.timing-area-detail > div:not(.lodging-preview) > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.timing-area-detail > div:not(.lodging-preview) > strong {
  color: var(--green-deep);
  font-size: 13px;
  line-height: 1.3;
}

.timing-area-detail > p {
  grid-column: 1 / -1;
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.5;
}

.timing-area-detail .lodging-preview {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.timing-area-detail .lodging-preview article {
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  min-height: auto;
  padding: 9px 0;
}

.timing-area-detail .lodging-preview img {
  width: 58px;
  height: 58px;
}

.timing-area-detail .lodging-preview strong {
  white-space: normal;
}

.timing-area-detail .lodging-preview a,
.timing-area-detail .lodging-preview .disabled {
  grid-column: auto;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 9px;
}

.timing-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.static-panels {
  width: min(1180px, 100%);
  margin: 0 auto 18px;
}

.seo-hero-image {
  width: min(1180px, 100%);
  margin: 0 auto 18px;
}

.seo-hero-image img {
  width: 100%;
  height: clamp(260px, 42vw, 470px);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.seo-hero-image figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.area-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(1180px, 100%);
  margin: 0 auto 18px;
}

.area-detail-grid article {
  min-height: 154px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.area-detail-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.area-detail-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--green-deep);
  font-size: 17px;
  line-height: 1.3;
}

.area-detail-grid p {
  margin: 8px 0 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.5;
}

.operation-disclosure {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(1180px, 100%);
  margin: 0 auto 18px;
}

.operation-disclosure article {
  min-height: 118px;
  padding: 13px;
  border: 1px solid rgba(0, 113, 133, 0.12);
  border-radius: 8px;
  background: #fff;
}

.lodging-decision-section {
  width: min(1180px, 100%);
  margin: 0 auto 18px;
  padding: 16px;
  border: 1px solid rgba(0, 113, 133, 0.16);
  border-radius: 8px;
  background: #f4faf7;
}

.lodging-decision-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.28fr);
  gap: 14px;
  align-items: stretch;
  margin-bottom: 14px;
}

.lodging-decision-heading h2 {
  margin: 5px 0 6px;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.2;
}

.lodging-decision-heading p {
  max-width: 720px;
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
}

.lodging-decision-price {
  display: grid;
  align-content: center;
  gap: 4px;
  min-height: 96px;
  padding: 13px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
}

.lodging-decision-price span,
.lodging-decision-price small {
  color: #d9f0e6;
  font-size: 12px;
  font-weight: 900;
}

.lodging-decision-price strong {
  font-size: 25px;
  line-height: 1.1;
}

.lodging-decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lodging-decision-card {
  display: grid;
  grid-template-rows: 128px 1fr;
  min-height: 394px;
  overflow: hidden;
  border: 1px solid rgba(0, 113, 133, 0.14);
  border-radius: 8px;
  background: #fff;
}

.lodging-decision-card.empty {
  grid-template-rows: 1fr;
  min-height: 220px;
  padding: 14px;
}

.lodging-decision-card img {
  width: 100%;
  height: 128px;
  object-fit: cover;
}

.lodging-decision-card > div {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 12px;
}

.decision-mode {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: #eaf6f0;
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 900;
}

.lodging-decision-card strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.32;
}

.lodging-decision-card p {
  margin: 0;
  color: #4b5563;
  font-size: 12px;
  line-height: 1.5;
}

.decision-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.decision-facts span {
  min-height: 25px;
  padding: 4px 7px;
  border-radius: 8px;
  background: #f8fafc;
  color: #374151;
  font-size: 12px;
  font-weight: 850;
}

.lodging-decision-card a,
.lodging-decision-card .disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.lodging-decision-card .disabled {
  background: #e5e7eb;
  color: #6b7280;
}

.lodging-section {
  width: min(1180px, 100%);
  margin: 0 auto 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.lodging-mode-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.lodging-mode-tabs input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lodging-mode-tabs > label {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

.lodging-mode-tabs input:checked + label {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.lodging-mode-panel {
  display: none;
  grid-column: 1 / -1;
}

.lodging-mode-tabs input[value="value"]:checked ~ .mode-value,
.lodging-mode-tabs input[value="family"]:checked ~ .mode-family,
.lodging-mode-tabs input[value="cheap"]:checked ~ .mode-cheap {
  display: block;
}

.lodging-mode-description {
  margin: 4px 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.lodging-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lodging-card {
  display: grid;
  grid-template-rows: 150px 1fr;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.lodging-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.lodging-card-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 12px;
}

.lodging-card h3 {
  margin: 7px 0 0;
  font-size: 16px;
  line-height: 1.3;
}

.provider-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 900;
}

.lodging-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lodging-facts span {
  min-height: 26px;
  padding: 4px 7px;
  border-radius: 8px;
  background: #fff;
  color: #374151;
  font-size: 12px;
  font-weight: 800;
}

.lodging-card p,
.lodging-note {
  margin: 0;
  color: #4b5563;
  font-size: 12px;
  line-height: 1.5;
}

.lodging-card .review-highlight {
  font-size: 12px;
}

.lodging-note {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.timing-panel {
  min-height: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
}

.panel-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.panel-heading strong {
  font-size: 17px;
}

.week-list,
.day-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.week-card,
.day-card {
  display: grid;
  grid-template-columns: 34px minmax(180px, 1.2fr) minmax(112px, 0.62fr) minmax(180px, 1fr) minmax(150px, 0.9fr) minmax(128px, 0.72fr);
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 11px 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
}

.week-card.best,
.day-card.best {
  box-shadow: inset 4px 0 0 var(--green);
  background: #f3fbfd;
}

.week-card:last-child,
.day-card:last-child {
  border-bottom: 0;
}

.timing-rank {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.timing-main,
.timing-price-cell,
.timing-save-cell,
.timing-weather-cell,
.timing-note-cell {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.timing-main strong,
.timing-price-cell strong,
.timing-save-cell strong,
.timing-weather-cell strong {
  min-width: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.timing-main span,
.timing-price-cell span,
.timing-save-cell span,
.timing-weather-cell span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}

.timing-main small,
.timing-price-cell small,
.timing-weather-cell small,
.timing-note-cell small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
}

.timing-score,
.timing-value-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 26px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(242, 169, 0, 0.28);
  background: #fff8e1;
  color: #5d4200;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.savings-meter {
  display: block;
  width: min(180px, 100%);
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #eef2f6;
}

.savings-meter b {
  display: block;
  width: var(--savings-width, 24%);
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.timing-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.timing-stats div {
  min-height: 48px;
  padding: 7px 8px;
  border-radius: 8px;
  background: #fff;
}

.timing-stats span,
.timing-reason {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.timing-stats strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.timing-reason {
  margin: 0;
  color: #4b5563;
}

.analysis-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

.analysis-layout > div:first-child {
  max-width: 780px;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.swatch {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.good {
  background: var(--chart-low);
}

.standard {
  background: var(--chart-mid);
}

.high {
  background: var(--chart-high);
}

.season-tool {
  min-height: 390px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
}

.tool-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.tool-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.tool-header strong {
  display: block;
  font-size: 24px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

.icon-button:hover {
  border-color: var(--green);
  color: var(--green-deep);
}

.season-heatmap {
  display: grid;
  gap: 14px;
}

.month-line-chart-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.month-line-chart {
  display: block;
  width: 100%;
  height: auto;
}

.chart-grid line {
  stroke: #e5e7eb;
  stroke-width: 1;
}

.chart-grid text {
  fill: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-anchor: end;
}

.line-area {
  fill: rgba(0, 113, 133, 0.08);
}

.price-line-chart {
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.chart-points circle {
  stroke: #fff;
  stroke-width: 3;
}

.chart-points .good-row {
  fill: var(--chart-low);
}

.chart-points .standard-row {
  fill: var(--chart-mid);
}

.chart-points .high-row {
  fill: var(--chart-high);
}

.month-tick {
  fill: #374151;
  font-size: 12px;
  font-weight: 850;
  text-anchor: middle;
}

.month-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.month-summary-card {
  min-height: 66px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-left-width: 4px;
  border-radius: 8px;
  background: #fff;
}

.month-summary-card.good-row {
  border-left-color: var(--chart-low);
  background: var(--chart-low-bg);
}

.month-summary-card.standard-row {
  border-left-color: var(--chart-mid);
  background: var(--chart-mid-bg);
}

.month-summary-card.high-row {
  border-left-color: var(--chart-high);
  background: var(--chart-high-bg);
}

.month-summary-card span,
.month-summary-card strong,
.month-summary-card small {
  display: block;
}

.month-summary-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.month-summary-card strong {
  margin-top: 2px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.month-summary-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.score-marker {
  position: absolute;
  top: 50%;
  left: var(--score-left, 50%);
  width: 12px;
  height: 28px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--green-deep);
  box-shadow: 0 3px 8px rgba(17, 24, 39, 0.18);
  transform: translate(-50%, -50%);
}

.strategy-grid,
.data-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.seo-static-grid {
  margin-top: 18px;
}

.strategy-grid article,
.data-steps article {
  min-height: 230px;
  padding: 18px;
  border-radius: 8px;
}

.strategy-grid article {
  border: 1px solid rgba(0, 113, 133, 0.12);
  background: #fff;
}

.strategy-grid h3,
.data-steps h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.strategy-grid p,
.data-steps p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
}

.booking-check-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 16px;
  align-items: stretch;
}

.booking-step-panel {
  min-height: 100%;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 113, 133, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.05);
}

.booking-step-visual {
  height: 138px;
  margin: -20px -20px 18px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #e2e8f0;
}

.booking-step-visual img,
.booking-card-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.booking-step-panel h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.booking-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-steps li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.booking-steps li > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--green-deep);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.booking-steps strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.booking-steps p {
  margin: 4px 0 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.65;
}

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

.booking-check-card {
  display: flex;
  flex-direction: column;
  min-height: 292px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.05);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.booking-check-card:hover,
.booking-check-card:focus-visible {
  border-color: rgba(0, 113, 133, 0.42);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.1);
  transform: translateY(-2px);
}

.booking-check-card:focus-visible {
  outline: 3px solid rgba(255, 196, 74, 0.9);
  outline-offset: 3px;
}

.booking-card-thumb {
  height: 106px;
  margin: -18px -18px 14px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #e2e8f0;
}

.booking-check-card > span {
  align-self: flex-start;
  padding: 5px 8px;
  border-radius: 999px;
  background: #e6f3f5;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
}

.booking-check-card h3 {
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.booking-check-card p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.65;
}

.booking-check-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 34px;
  margin-top: auto;
  padding: 10px 12px;
  border-radius: 8px;
  background: #eef8fa;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 900;
}

.booking-check-card strong::after {
  content: "→";
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--amber);
  color: var(--ink);
}

.theme-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

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

.theme-link-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.06);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.theme-link-card:hover,
.theme-link-card:focus-visible {
  border-color: rgba(0, 113, 133, 0.42);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.1);
  transform: translateY(-2px);
}

.theme-link-card:focus-visible {
  outline: 3px solid rgba(255, 196, 74, 0.9);
  outline-offset: 3px;
}

.area-index-card {
  min-height: 552px;
  padding: 16px;
}

.theme-card-thumb {
  position: relative;
  height: 128px;
  margin: -18px -18px 14px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #e2e8f0;
}

.theme-card-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.theme-thumb-badge {
  position: absolute;
  left: 12px;
  bottom: 10px;
  max-width: calc(100% - 24px);
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.78);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
}

.area-card-thumb {
  height: 168px;
  margin: -16px -16px 14px;
}

.representative-photo-credit {
  display: -webkit-box;
  margin: -2px 18px 10px;
  overflow: hidden;
  color: #64748b;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.area-photo-credit,
.theme-link-card > .representative-photo-credit {
  margin: -3px 0 9px;
}

.theme-tag {
  align-self: flex-start;
  padding: 5px 8px;
  border-radius: 999px;
  background: #e6f3f5;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
}

.theme-link-card h2,
.theme-link-card h3 {
  margin: 16px 0 10px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.35;
}

.theme-link-card p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.75;
}

.area-index-card h2 {
  margin-top: 14px;
  font-size: 24px;
  line-height: 1.28;
}

.area-index-card p {
  min-height: 48px;
  font-size: 13px;
  line-height: 1.65;
}

.area-card-types {
  margin-top: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #eef8fa;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.45;
}

.area-card-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.area-card-metrics span {
  display: grid;
  align-content: start;
  gap: 3px;
  min-height: 68px;
  padding: 9px 10px;
  border: 1px solid #d8e2e7;
  border-radius: 8px;
  background: #f8fafc;
}

.area-card-metrics small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
}

.area-card-metrics strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.theme-card-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.theme-card-facts span {
  padding: 6px 8px;
  border: 1px solid #d8e2e7;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
}

.theme-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 900;
}

.theme-card-action::after {
  content: "→";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--amber);
  color: var(--ink);
  font-weight: 900;
}

.keyword-intent-panel {
  display: grid;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 30px auto;
  padding: 22px;
  border: 1px solid #d8e2e7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
}

.keyword-intent-panel h2 {
  margin: 8px 0 8px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
}

.keyword-intent-panel p {
  max-width: 760px;
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.8;
}

.keyword-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.keyword-chip-list span,
.keyword-chip-list a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid #cfe2e7;
  border-radius: 999px;
  background: #eef8fa;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.keyword-chip-list a:hover,
.keyword-chip-list a:focus-visible {
  border-color: rgba(0, 113, 133, 0.5);
  background: #fff;
}

.area-keyword-list {
  justify-content: center;
  margin: 18px auto 24px;
}

.related-search-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.related-search-grid a {
  display: grid;
  gap: 7px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid #d8e2e7;
  border-radius: 8px;
  background: #f8fafc;
  color: inherit;
  text-decoration: none;
}

.related-search-grid a:hover,
.related-search-grid a:focus-visible {
  border-color: rgba(0, 113, 133, 0.42);
  background: #fff;
}

.related-search-grid span {
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
}

.related-search-grid strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.faq-section {
  width: min(1180px, 100%);
  margin: 30px auto 18px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-list article {
  min-height: 150px;
  padding: 16px;
  border: 1px solid rgba(0, 113, 133, 0.12);
  border-radius: 8px;
  background: #fff;
}

.faq-list h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.faq-list p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.65;
}

.data-steps article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #f5d48c;
  color: #2b2519;
  font-weight: 900;
}

.dark .data-steps p {
  color: #d6ded8;
}

.site-footer {
  display: grid;
  gap: 6px;
  padding: 30px clamp(18px, 4vw, 52px);
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  width: min(1180px, 100%);
  margin: 0 auto 4px;
}

.footer-links a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  color: var(--green-deep);
  font-weight: 900;
}

.footer-links a:hover {
  border-bottom-color: currentColor;
}

.site-footer p {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.rakuten-developer-credit {
  width: min(1180px, 100%);
  margin: 0 auto 2px;
  font-size: 12px;
}

.rakuten-developer-credit a {
  color: var(--green-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.info-page {
  min-height: calc(100vh - 68px);
  padding: clamp(36px, 6vw, 72px) clamp(18px, 4vw, 52px);
  background: var(--paper);
}

.info-shell {
  display: grid;
  gap: 16px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.info-hero,
.info-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.info-hero {
  padding: clamp(24px, 4vw, 36px);
}

.info-hero h1,
.info-card h2 {
  margin: 0;
  line-height: 1.25;
}

.info-hero h1 {
  font-size: clamp(30px, 4vw, 44px);
}

.info-hero p,
.info-card p,
.info-list {
  color: #4b5563;
  font-weight: 750;
}

.info-card {
  padding: clamp(20px, 3vw, 28px);
}

.info-card h2 {
  font-size: 22px;
}

.info-card p {
  margin: 12px 0 0;
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.primary-link:hover {
  background: var(--green-deep);
}

.contact-launch {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-launch span {
  display: block;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
}

.contact-launch strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
  line-height: 1.4;
}

.contact-launch p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-launch .primary-link {
  white-space: nowrap;
}

.contact-request-details {
  margin-top: 24px;
}

.contact-request-details h3 {
  margin: 0;
  font-size: 17px;
}

.info-list {
  margin: 14px 0 0;
  padding-left: 1.2em;
}

.info-list li + li {
  margin-top: 8px;
}

.info-definition {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
}

.info-definition div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.info-definition dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.info-definition dd {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.info-definition a {
  color: var(--green-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: min(1180px, calc(100% - 36px));
  min-height: 42px;
  margin: 0 auto;
  padding: 8px 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.breadcrumb-nav a {
  color: var(--green-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb-nav [aria-current="page"] {
  min-width: 0;
  overflow: hidden;
  color: #475569;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumb-separator {
  color: #94a3b8;
}

.search-intent-answer {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 24px;
  margin-bottom: 24px;
  padding: clamp(20px, 3vw, 30px);
  border-left: 5px solid var(--green);
  background: #edf8fb;
}

.search-intent-answer h2 {
  margin: 8px 0;
  font-size: clamp(23px, 2.6vw, 32px);
  line-height: 1.28;
}

.search-intent-answer p {
  margin: 0;
  color: #334155;
  font-size: 16px;
}

.search-intent-answer dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.search-intent-answer dl div {
  padding: 10px 12px;
  border: 1px solid #c9e0e5;
  background: #fff;
}

.search-intent-answer dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.search-intent-answer dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.purpose-comparison {
  margin: 6px 0 34px;
  padding: 30px 0 34px;
  border-top: 1px solid #dbe4e8;
  border-bottom: 1px solid #dbe4e8;
}

.purpose-comparison-heading {
  max-width: 820px;
  margin-bottom: 20px;
}

.purpose-comparison-heading h2 {
  margin: 8px 0 10px;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.22;
}

.purpose-comparison-heading > p:not(.eyebrow) {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.8;
}

.purpose-comparison-result {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  padding: 18px 20px;
  border-left: 5px solid var(--amber);
  background: var(--cream);
}

.purpose-comparison-result > span {
  color: #8a5600;
  font-size: 12px;
  font-weight: 900;
}

.purpose-comparison-result h3 {
  margin: 0 0 4px;
  font-size: 22px;
  line-height: 1.3;
}

.purpose-comparison-result p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.purpose-comparison-result a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--green);
  border-radius: 8px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.purpose-comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.purpose-comparison-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dbe4e8;
  border-radius: 8px;
  background: #fff;
  color: inherit;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}

.purpose-comparison-card:hover,
.purpose-comparison-card.is-top {
  border-color: rgba(0, 113, 133, 0.5);
}

.purpose-comparison-card figure {
  position: relative;
  height: 180px;
  margin: 0;
  overflow: hidden;
}

.purpose-comparison-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.purpose-comparison-card figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  background: rgba(17, 24, 39, 0.82);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
}

.purpose-comparison-card-body {
  display: flex;
  min-height: 330px;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.purpose-comparison-rank {
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
}

.purpose-comparison-card h3 {
  margin: 6px 0 8px;
  font-size: 21px;
  line-height: 1.35;
}

.purpose-comparison-card-body > p {
  min-height: 48px;
  margin: 0;
  color: #566273;
  font-size: 13px;
  line-height: 1.7;
}

.purpose-comparison-card dl {
  display: grid;
  gap: 6px;
  margin: 14px 0;
}

.purpose-comparison-card dl div {
  display: grid;
  grid-template-columns: minmax(92px, 0.7fr) minmax(0, 1.3fr);
  gap: 8px;
  padding: 8px 10px;
  background: #f4f7f8;
}

.purpose-comparison-card dt {
  color: #64748b;
  font-size: 10px;
  font-weight: 900;
}

.purpose-comparison-card dd {
  min-width: 0;
  margin: 0;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.purpose-comparison-card strong {
  margin-top: auto;
  padding-top: 6px;
  color: var(--green-deep);
  font-size: 13px;
}

.purpose-comparison-note {
  margin: 16px 0 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

.guide-page {
  background: #fff;
}

.guide-shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.guide-hero-band,
.guide-article-hero {
  padding: clamp(48px, 8vw, 92px) 0;
  border-bottom: 1px solid #dbe4e8;
  background: #eef6f7;
}

.guide-hero-copy,
.guide-article-hero .guide-shell {
  max-width: 920px;
}

.guide-hero-band h1,
.guide-article-hero h1 {
  max-width: 900px;
  margin: 8px 0 16px;
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.12;
}

.guide-hero-band p:not(.eyebrow),
.guide-article-hero p:not(.eyebrow) {
  max-width: 790px;
  margin: 0;
  color: #475569;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.8;
}

.guide-hero-band small,
.guide-article-hero small {
  display: block;
  margin-top: 16px;
  color: #64748b;
  font-weight: 800;
}

.guide-section {
  padding: clamp(44px, 7vw, 76px) 0;
}

.guide-section-muted {
  background: #f4f6f8;
}

.guide-prose {
  max-width: 880px;
}

.guide-prose h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.2;
}

.guide-prose p {
  color: #475569;
  font-size: 16px;
  line-height: 1.9;
}

.guide-prose a:not(.primary-link):not(.secondary-link) {
  color: var(--green-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.guide-card-grid,
.guide-area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.guide-card,
.guide-area-card,
.week-area-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dbe4e8;
  border-radius: 8px;
  background: #fff;
  color: inherit;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.07);
}

.guide-card:hover,
.guide-area-card:hover,
.week-area-card:hover {
  border-color: rgba(0, 113, 133, 0.48);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.11);
}

.guide-card img,
.guide-area-card img,
.week-area-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.guide-card > span,
.guide-area-card > span,
.week-area-rank {
  margin: 16px 18px 0;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
}

.guide-card h2,
.guide-area-card h3,
.week-area-card h2 {
  margin: 8px 18px;
  font-size: 21px;
  line-height: 1.35;
}

.guide-card p,
.guide-area-card p,
.week-area-card > p {
  margin: 0 18px;
  color: #566273;
  font-size: 14px;
  line-height: 1.75;
}

.guide-card > strong,
.guide-area-card > strong,
.week-area-card > strong {
  margin: auto 18px 18px;
  padding-top: 16px;
  color: var(--green-deep);
  font-size: 14px;
}

.guide-direct-answer {
  margin-bottom: 34px;
  padding: 22px 24px;
  border-left: 5px solid var(--amber);
  background: var(--cream);
}

.guide-direct-answer > span {
  color: #8a5600;
  font-size: 12px;
  font-weight: 900;
}

.guide-direct-answer p {
  margin: 6px 0 0;
  color: #3f3422;
  font-size: 17px;
  font-weight: 750;
}

.guide-step-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: guide-step;
}

.guide-step-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 14px;
  padding: 18px 0;
  border-top: 1px solid #dbe4e8;
  counter-increment: guide-step;
}

.guide-step-list li::before {
  grid-row: 1 / 3;
  content: counter(guide-step, decimal-leading-zero);
  color: var(--green);
  font-size: 17px;
  font-weight: 900;
}

.guide-step-list strong {
  font-size: 17px;
}

.guide-step-list span {
  color: #64748b;
}

.guide-definition {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
}

.guide-definition div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid #dbe4e8;
}

.guide-definition dt {
  color: var(--green-deep);
  font-weight: 900;
}

.guide-definition dd {
  margin: 0;
  color: #475569;
}

.guide-example {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid #c9e0e5;
  background: #eef8fa;
}

.guide-example > span {
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
}

.guide-example h2 {
  margin: 6px 0 4px;
  font-size: 24px;
}

.guide-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.guide-check-list li {
  position: relative;
  padding: 12px 12px 12px 38px;
  border: 1px solid #dbe4e8;
  background: #fff;
  color: #334155;
  font-weight: 800;
}

.guide-check-list li::before {
  position: absolute;
  left: 13px;
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.guide-pattern-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.guide-pattern-grid article {
  padding: 18px;
  border-top: 4px solid var(--green);
  background: #f4f8f9;
}

.guide-pattern-grid p {
  margin: 6px 0 0;
  font-size: 14px;
}

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.booking-total-check {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin: 28px 0 36px;
  padding: 22px 24px;
  border-left: 5px solid var(--green);
  background: #f3f8f9;
}

.booking-total-check span,
.booking-total-check strong {
  display: block;
}

.booking-total-check span {
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
}

.booking-total-check strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.45;
}

.booking-total-check p {
  margin: 6px 0 0;
  color: #52616f;
  font-size: 14px;
  line-height: 1.7;
}

.booking-total-check .secondary-link {
  white-space: nowrap;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--green);
  border-radius: 8px;
  color: var(--green-deep);
  font-weight: 900;
}

.week-area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.week-area-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  grid-template-rows: auto auto auto 1fr auto;
  padding-bottom: 16px;
}

.week-area-photo {
  grid-row: 1 / 6;
  position: relative;
  width: 190px;
  height: 100%;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
}

.week-area-photo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.week-area-photo figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  background: rgba(17, 24, 39, 0.82);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
}

.week-area-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin: 14px 18px;
}

.week-area-card dl div {
  padding: 8px;
  background: #f4f7f8;
}

.week-area-card dt {
  color: #64748b;
  font-size: 10px;
  font-weight: 900;
}

.week-area-card dd {
  margin: 2px 0 0;
  font-size: 12px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

@media (max-width: 950px) {
  .search-intent-answer {
    grid-template-columns: 1fr;
  }

  .purpose-comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .purpose-comparison-result {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .purpose-comparison-result a {
    grid-column: 2;
    justify-self: start;
  }

  .guide-card-grid,
  .guide-area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .week-area-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .breadcrumb-nav {
    width: min(100% - 28px, 1180px);
  }

  .breadcrumb-nav [aria-current="page"] {
    max-width: 190px;
  }

  .search-intent-answer dl,
  .purpose-comparison-grid,
  .guide-card-grid,
  .guide-area-grid,
  .guide-check-list,
  .guide-pattern-grid {
    grid-template-columns: 1fr;
  }

  .purpose-comparison {
    padding-top: 24px;
  }

  .purpose-comparison-result {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
  }

  .purpose-comparison-result a {
    grid-column: auto;
    justify-self: stretch;
    white-space: normal;
  }

  .purpose-comparison-card figure {
    height: 190px;
  }

  .purpose-comparison-card-body {
    min-height: 0;
  }

  .purpose-comparison-card-body > p {
    min-height: 0;
  }

  .contact-launch {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-launch .primary-link {
    width: 100%;
    white-space: normal;
  }

  .guide-hero-band h1,
  .guide-article-hero h1 {
    font-size: 34px;
  }

  .guide-card img,
  .guide-area-card img {
    height: 180px;
  }

  .guide-definition div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .booking-total-check {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .booking-total-check .secondary-link {
    width: 100%;
    white-space: normal;
  }

  .week-area-card {
    grid-template-columns: 1fr;
  }

  .week-area-photo {
    grid-row: auto;
    width: 100%;
    height: 180px;
    min-height: 0;
  }

  .week-area-photo img {
    min-height: 0;
  }
}

@media (max-width: 1050px) {
  .decision-layout,
  .analysis-layout,
  .timing-layout,
  .answer-card {
    grid-template-columns: 1fr;
  }

  .booking-check-layout {
    grid-template-columns: 1fr;
  }

  .visual-panel,
  .visual-panel img {
    min-height: 360px;
  }

  .intro {
    max-width: none;
  }

  .recommendation-grid,
  .area-detail-grid,
  .operation-disclosure,
  .value-overview,
  .lodging-decision-grid,
  .lodging-grid,
  .strategy-grid,
  .data-steps,
  .theme-link-grid,
  .related-search-grid,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-snapshot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lodging-decision-heading {
    grid-template-columns: 1fr;
  }

  .lodging-decision-price {
    min-height: auto;
  }

  .timing-area-detail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .week-card,
  .day-card {
    grid-template-columns: 32px minmax(170px, 1.2fr) minmax(108px, 0.6fr) minmax(170px, 1fr);
  }

  .timing-weather-cell,
  .timing-note-cell {
    grid-column: 2 / -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    min-height: 68px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-nav {
    display: none;
  }

  .decision-band {
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .intro h1 {
    font-size: 32px;
  }

  .finder,
  .finder-actions,
  .answer-facts,
  .method-note,
  .recommendation-grid,
  .area-detail-grid,
  .operation-disclosure,
  .value-overview,
  .value-strip,
  .segmented-control,
  .lodging-decision-grid,
  .lodging-mode-tabs,
  .lodging-grid,
  .strategy-grid,
  .data-steps,
  .theme-link-grid,
  .related-search-grid,
  .faq-list,
  .timing-panels,
  .timing-area-detail,
  .timing-stats {
    grid-template-columns: 1fr;
  }

  .value-snapshot {
    grid-template-columns: 1fr;
  }

  .value-snapshot-heading,
  .value-snapshot article {
    min-height: auto;
  }

  .lodging-decision-section {
    padding: 12px;
  }

  .lodging-decision-card {
    min-height: auto;
  }

  .theme-link-card {
    min-height: auto;
  }

  .area-index-card p {
    min-height: auto;
  }

  .area-card-thumb {
    height: 180px;
  }

  .booking-check-grid {
    grid-template-columns: 1fr;
  }

  .booking-step-panel,
  .booking-check-card {
    min-height: auto;
  }

  .finder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
    gap: 8px;
    padding: 10px;
  }

  .finder label {
    grid-template-rows: auto 44px;
  }

  .lodging-mode-control,
  .finder-actions {
    grid-column: 1 / -1;
  }

  .lodging-mode-control {
    grid-template-rows: auto auto;
  }

  .finder select {
    height: 44px;
    min-height: 44px;
  }

  .finder-actions {
    align-self: stretch;
    height: auto;
    padding-top: 0;
  }

  .finder-status,
  .search-button {
    height: auto;
    min-height: 44px;
  }

  .lead {
    font-size: 15px;
  }

  .visual-panel {
    display: none;
  }

  .month-line-chart-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .month-line-chart {
    width: 680px;
    max-width: none;
  }

  .month-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .week-card,
  .day-card {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px 10px;
    align-items: start;
    padding: 10px;
  }

  .timing-rank {
    grid-row: 1 / span 5;
    width: 26px;
    height: 26px;
  }

  .timing-main,
  .timing-price-cell,
  .timing-save-cell,
  .timing-weather-cell,
  .timing-note-cell {
    grid-column: 2;
  }

  .visual-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .visual-caption span {
    text-align: left;
  }

  .recommendation-card {
    min-height: auto;
  }

  .recommendation-more {
    margin-top: 14px;
  }

  .secondary-button {
    width: 100%;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

  .lodging-preview article {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .lodging-preview a,
  .lodging-preview .disabled {
    grid-column: 2;
    justify-content: flex-start;
    width: fit-content;
    min-height: 28px;
    padding: 0 8px;
  }

  .timing-area-detail .lodging-preview article {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .timing-area-detail .lodging-preview a,
  .timing-area-detail .lodging-preview .disabled {
    grid-column: 2;
    justify-content: flex-start;
  }
}
