/*
Theme Name: Shimanami Cycling Tours
Theme URI: https://example.com/shimanami-cycling-tours
Author: Shimanami Cycling Tours
Description: Custom WordPress theme for Shimanami Cycling Tours, Hiroshima and Miyajima private tours, destination map, schedule, calendar, and booking sections.
Version: 1.1.1
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: shimanami-cycling-tours
*/

:root {
  --blue: #005bac;
  --blue-dark: #073f84;
  --blue-ink: #10213d;
  --blue-soft: #e6f4ff;
  --blue-section: #e8f6ff;
  --orange: #fb9200;
  --orange-dark: #e67e00;
  --cream: #fff4e6;
  --ink: #182235;
  --text: #3d4758;
  --muted: #788295;
  --line: #dfe6ef;
  --panel: #ffffff;
  --soft: #f7f9fc;
  --shadow: 0 20px 45px rgba(13, 35, 65, 0.13);
  --radius: 8px;
  --header-height: 88px;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
  letter-spacing: 0;
  background: #fff;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(2, 84, 160, 0.08);
  box-shadow: 0 4px 18px rgba(17, 31, 48, 0.06);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1560px, calc(100% - 56px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--blue);
}

.brand-mark svg {
  width: 34px;
  height: 34px;
  stroke-width: 3;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
  gap: 4px;
}

.brand-ja {
  font-weight: 900;
  font-size: clamp(1rem, 1.7vw, 1.45rem);
  color: var(--blue);
  white-space: nowrap;
}

.brand-en {
  font-size: 0.85rem;
  font-weight: 800;
  color: #6b7280;
  letter-spacing: 0.08em;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.site-nav a {
  color: #344055;
  font-weight: 900;
  letter-spacing: 0.1em;
  font-size: 0.98rem;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--blue);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.language-switcher {
  position: relative;
}

.language {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0;
  border: 0;
  color: #344055;
  font-weight: 800;
  background: transparent;
  cursor: pointer;
}

.language svg {
  width: 21px;
  height: 21px;
}

.language .language-chevron {
  width: 16px;
  height: 16px;
  stroke-width: 3;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  display: grid;
  gap: 4px;
  width: 176px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(13, 35, 65, 0.16);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  color: #344055;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button[aria-checked="true"] {
  color: var(--blue);
  background: var(--blue-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 36px;
  border: 3px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.button svg {
  width: 22px;
  height: 22px;
  stroke-width: 3;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--blue);
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(251, 146, 0, 0.25);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-outline {
  color: var(--blue);
  background: #fff;
  border-color: var(--blue);
}

.button-outline:hover {
  background: #f2f9ff;
}

.button-small {
  min-height: 48px;
  padding-inline: 30px;
  border-width: 0;
}

.button-full {
  width: 100%;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 8px;
  justify-self: end;
  border: 1px solid var(--line);
  color: var(--blue);
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.menu-button svg {
  width: 19px;
  height: 19px;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height) - 28px);
  padding: clamp(28px, 5vw, 64px) 0;
  display: grid;
  align-items: start;
  overflow: hidden;
  background: #dff3ff;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(0, 91, 172, 0.24) 0%, rgba(255, 255, 255, 0.12) 42%, rgba(255, 255, 255, 0.02) 100%),
    var(--hero-image) center / cover no-repeat;
  transform: scale(1.04);
  transition: opacity 0.9s ease, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 111, 169, 0.08), rgba(255, 255, 255, 0.3));
  pointer-events: none;
}

.hero-panel {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 80px));
  margin-left: max(32px, calc((100vw - 1560px) / 2 + 32px));
  padding: clamp(38px, 5vw, 64px);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(18, 42, 66, 0.14);
  backdrop-filter: blur(8px);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  padding: 10px 22px;
  border-radius: 999px;
  color: var(--blue);
  background: #e1f2ff;
  font-weight: 900;
}

.hero-kicker svg {
  width: 20px;
  height: 20px;
  stroke-width: 3;
}

.hero h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(2.35rem, 3.6vw, 4rem);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: 0;
}

.hero h1 span {
  white-space: nowrap;
}

.hero-lead {
  margin: 34px 0 34px;
  color: #394352;
  font-size: clamp(1.04rem, 1.55vw, 1.38rem);
  line-height: 1.9;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-actions .button {
  min-height: 68px;
  min-width: 245px;
  font-size: 1.18rem;
}

.hero-slider-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-slider-dots button {
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(8, 28, 42, 0.18);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.hero-slider-dots button:hover,
.hero-slider-dots button:focus-visible {
  transform: translateY(-2px);
}

.hero-slider-dots button:focus-visible {
  outline: 3px solid rgba(251, 146, 0, 0.65);
  outline-offset: 5px;
}

.hero-slider-dots .active {
  width: 38px;
  background: var(--orange);
}

.section {
  padding: clamp(76px, 8vw, 118px) 0;
}

.section[id],
.reservation[id] {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.section-heading {
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto clamp(52px, 6vw, 84px);
  text-align: center;
}

.section-heading p {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: clamp(0.86rem, 1.2vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.section-heading h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.22;
  font-weight: 950;
  letter-spacing: 0;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 94px;
  height: 5px;
  margin: 28px auto 0;
  border-radius: 999px;
  background: var(--orange);
}

.section-heading span {
  display: block;
  width: min(740px, 100%);
  margin: 30px auto 0;
  color: #3e4859;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.85;
}

.about-grid {
  width: min(1500px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(52px, 7vw, 98px);
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 600px;
}

.about-media img {
  width: 100%;
  height: clamp(560px, 62vw, 820px);
  object-fit: cover;
  object-position: center bottom;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.guide-card {
  position: absolute;
  right: -34px;
  bottom: -34px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  width: min(330px, 82%);
  padding: 26px 30px;
  border: 1px solid rgba(20, 35, 55, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 35px rgba(5, 20, 36, 0.16);
}

.guide-card svg {
  color: var(--orange);
  width: 36px;
  height: 36px;
  stroke-width: 2.4;
}

.guide-card span {
  display: block;
  color: #687386;
  font-weight: 900;
  font-size: 0.86rem;
}

.guide-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.5rem;
  font-weight: 950;
  line-height: 1.25;
}

.guide-card p {
  margin: 8px 0 0;
  color: #596376;
  line-height: 1.4;
}

.about-content h3 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(1.4rem, 2.4vw, 2.05rem);
  font-weight: 950;
  line-height: 1.35;
}

.about-content p {
  margin: 0 0 26px;
  color: #354052;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 2;
}

.feature-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 54px;
}

.feature-card {
  min-height: 190px;
  padding: 30px;
  border-radius: 8px;
}

.feature-card svg {
  width: 43px;
  height: 43px;
  margin-bottom: 20px;
  stroke-width: 2.4;
}

.feature-card h4 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.24rem;
  font-weight: 950;
}

.feature-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
}

.feature-blue {
  color: var(--blue);
  background: #e1f1ff;
}

.feature-cream {
  color: var(--orange);
  background: var(--cream);
}

.tours {
  background: var(--blue-section);
}

.tour-grid {
  width: min(1510px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3.4vw, 42px);
}

.tour-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(17, 42, 67, 0.12);
}

.tour-image {
  position: relative;
  aspect-ratio: 1.74 / 1;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.04);
}

.badge {
  position: absolute;
  top: 20px;
  left: 20px;
  max-width: calc(100% - 40px);
  padding: 6px 16px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  font-weight: 950;
  line-height: 1.3;
}

.tour-body {
  padding: clamp(30px, 3.2vw, 40px);
}

.tour-body h3 {
  min-height: 3em;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 1.82rem);
  line-height: 1.42;
  font-weight: 950;
}

.tour-body p {
  min-height: 126px;
  margin: 0 0 36px;
  color: #495365;
  font-size: 1rem;
  line-height: 1.9;
}

.tour-facts {
  display: grid;
  gap: 11px;
  margin: 0 0 36px;
  padding: 24px;
  border-radius: 8px;
  background: #f7f8fa;
  list-style: none;
}

.tour-facts li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #3d4658;
  font-weight: 800;
}

.tour-facts svg {
  flex: 0 0 auto;
  color: var(--orange);
  width: 18px;
  height: 18px;
  stroke-width: 3;
}

.destinations {
  background: #fff;
}

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

.map-panel {
  position: relative;
  aspect-ratio: 1.16 / 1;
  border-radius: 8px;
  background-color: #fff;
  overflow: visible;
}

.map-canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
}

.japan-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.japan-land {
  fill: #86ce1f;
  stroke: #69b51a;
  stroke-width: 5;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.japan-island {
  fill: #86ce1f;
  stroke: #69b51a;
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}

.japan-route-hint {
  fill: none;
  stroke: rgba(0, 91, 172, 0.16);
  stroke-linecap: round;
  stroke-width: 12;
  vector-effect: non-scaling-stroke;
}

.map-choice {
  position: absolute;
  left: var(--pin-x);
  top: var(--pin-y);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  color: #142033;
  background: transparent;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.map-area {
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 999px;
  background: var(--blue);
  box-shadow:
    0 0 0 5px rgba(0, 91, 172, 0.16),
    0 8px 18px rgba(14, 41, 66, 0.14);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.map-label {
  position: absolute;
  display: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: max-content;
  color: #111827;
  padding: 4px 8px;
  border: 1px solid rgba(213, 223, 234, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 20px rgba(15, 35, 52, 0.12);
  font-size: clamp(0.66rem, 0.82vw, 0.84rem);
  line-height: 1.18;
  text-align: center;
  white-space: nowrap;
}

.map-choice.label-right .map-label {
  left: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
}

.map-choice.label-left .map-label {
  right: calc(100% + 8px);
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
}

.map-choice.label-bottom .map-label {
  left: 50%;
  top: calc(100% + 7px);
  transform: translateX(-50%);
}

.map-choice:hover .map-area,
.map-choice.is-active .map-area {
  border-color: #fff;
  background: var(--blue);
  box-shadow:
    0 0 0 8px rgba(0, 91, 172, 0.22),
    0 10px 22px rgba(14, 41, 66, 0.18);
  transform: scale(1.08);
}

.map-choice:hover .map-label,
.map-choice.is-active .map-label {
  color: var(--blue);
  border-color: rgba(0, 91, 172, 0.28);
}

.map-choice:focus-visible {
  outline: 4px solid rgba(251, 146, 0, 0.45);
  outline-offset: 6px;
}

.map-choice.hokkaido-east {
  --pin-x: 78%;
  --pin-y: 17%;
}

.map-choice.hokkaido-central {
  --pin-x: 65%;
  --pin-y: 24%;
}

.map-choice.hokkaido-south {
  --pin-x: 55%;
  --pin-y: 31%;
}

.map-choice.tohoku-north {
  --pin-x: 55%;
  --pin-y: 39%;
}

.map-choice.tohoku-south {
  --pin-x: 60%;
  --pin-y: 55%;
}

.map-choice.kanto-east {
  --pin-x: 65%;
  --pin-y: 68%;
}

.map-choice.fuji-loop {
  --pin-x: 56%;
  --pin-y: 68%;
}

.map-choice.chubu-noto {
  --pin-x: 43%;
  --pin-y: 59%;
}

.map-choice.kinki-kyoto-nara {
  --pin-x: 43%;
  --pin-y: 72%;
}

.map-choice.kinki-kii {
  --pin-x: 46%;
  --pin-y: 78%;
}

.map-choice.chugoku-sanin {
  --pin-x: 28%;
  --pin-y: 66%;
}

.map-choice.chugoku-shimanami {
  --pin-x: 31%;
  --pin-y: 75%;
}

.map-choice.shikoku-east {
  --pin-x: 39%;
  --pin-y: 78%;
}

.map-choice.shikoku-west {
  --pin-x: 27%;
  --pin-y: 79%;
}

.map-choice.kyushu-kunisaki-aso {
  --pin-x: 21%;
  --pin-y: 77%;
}

.map-choice.kyushu-shimabara-amakusa {
  --pin-x: 19%;
  --pin-y: 86%;
}

.map-choice.kyushu-kagoshima {
  --pin-x: 15%;
  --pin-y: 94%;
}

.map-summary {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 3;
  width: min(360px, calc(100% - 56px));
  padding: 22px;
  border-radius: 8px;
  color: #354052;
  border: 1px solid rgba(213, 223, 234, 0.95);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(13, 28, 45, 0.14);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.map-summary p {
  margin: 0;
  color: #3d4758;
  line-height: 1.65;
}

.map-summary h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 950;
  line-height: 1.35;
}

.map-summary a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--orange);
  font-weight: 950;
  pointer-events: auto;
}

.schedule {
  background: #fff;
}

.timeline {
  position: relative;
  width: min(1060px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  gap: 76px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #e4e7eb;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr 86px 1fr;
  align-items: start;
}

.timeline-icon {
  position: relative;
  z-index: 1;
  grid-column: 2;
  place-self: start center;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 5px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
  background: #fff;
  box-shadow: 0 6px 14px rgba(0, 91, 172, 0.17);
}

.timeline-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 2.6;
}

.timeline-card {
  width: min(450px, 100%);
  padding: 30px 34px;
  border: 1px solid rgba(15, 35, 58, 0.07);
  border-radius: 8px;
  background: #fbfcfe;
  box-shadow: 0 3px 9px rgba(21, 35, 54, 0.08);
}

.timeline-item.right .timeline-card {
  grid-column: 3;
  justify-self: start;
}

.timeline-item.left .timeline-card {
  grid-column: 1;
  justify-self: end;
  text-align: right;
}

.timeline-card time {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 14px;
  border-radius: 8px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 1.04rem;
  font-weight: 950;
  line-height: 1.35;
}

.timeline-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  font-weight: 950;
  line-height: 1.35;
}

.timeline-card p {
  margin: 0;
  color: #465267;
  font-size: 1rem;
  line-height: 1.9;
}

.schedule-note {
  width: min(860px, calc(100% - 56px));
  margin: 58px auto 0;
  padding: 0;
  color: #344154;
}

.schedule-note p {
  margin: 0;
  font-size: 1.04rem;
  font-weight: 750;
  line-height: 1.9;
}

.availability {
  background: #f6f8fb;
}

.calendar-shell {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(34px, 4vw, 44px);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(19, 36, 59, 0.12);
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
  margin-bottom: 44px;
  padding: 22px 24px;
  border-radius: 8px;
  background: #f7f8fa;
  color: #3f495c;
  font-weight: 800;
}

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

.dot {
  width: 19px;
  height: 19px;
  border-radius: 999px;
}

.dot-blue {
  background: #3b82f6;
}

.dot-red {
  background: #ef4444;
}

.dot-orange {
  background: #fb923c;
}

.calendar-widget {
  overflow: hidden;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  background: #eef4fd;
}

.google-calendar-frame {
  display: block;
  width: 100%;
  height: clamp(520px, 64vw, 650px);
  border: 0;
  background: #fff;
}

.calendar-toolbar {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 0 18px;
  background: #eef4fd;
}

.calendar-toolbar button {
  min-width: 94px;
  min-height: 44px;
  border: 1px solid #6b7280;
  border-radius: 999px;
  color: #2c3443;
  background: transparent;
  cursor: pointer;
}

.calendar-arrows {
  display: inline-flex;
  gap: 22px;
  color: #3c4656;
}

.calendar-toolbar strong {
  color: #282d35;
  font-size: 1.42rem;
  font-weight: 700;
}

.calendar-toolbar svg {
  width: 24px;
  height: 24px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(110px, 1fr));
  overflow-x: auto;
  background: #d8e1ee;
  border-radius: 18px 18px 0 0;
}

.calendar-grid > div {
  position: relative;
  min-height: 78px;
  padding: 7px 8px;
  background: #fff;
  border-right: 1px solid #d8e1ee;
  border-bottom: 1px solid #d8e1ee;
  text-align: center;
  color: #22272f;
  font-weight: 700;
}

.calendar-grid .weekday {
  min-height: 96px;
}

.calendar-grid span {
  display: block;
  line-height: 1.1;
}

.calendar-grid b,
.calendar-grid em {
  position: absolute;
  left: 0;
  right: 6px;
  top: 48px;
  display: block;
  overflow: hidden;
  padding: 1px 5px;
  border-radius: 6px;
  color: #fff;
  background: #7d89d2;
  font-style: normal;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  white-space: nowrap;
}

.calendar-grid em {
  top: 28px;
}

.calendar-grid .today {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 999px;
  color: #fff;
  background: #1166d8;
}

.calendar-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  color: #005fec;
  background: #eef4fd;
  line-height: 1.4;
}

.calendar-footer b {
  color: #4285f4;
  font-weight: 950;
}

.reservation {
  padding: 74px 0 clamp(88px, 9vw, 130px);
  color: #fff;
  background-color: var(--blue);
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
}

.section-heading-light {
  margin-bottom: 42px;
}

.section-heading-light h2,
.section-heading-light span {
  color: #fff;
}

.section-heading-light p {
  color: var(--orange);
}

.reservation-form {
  width: min(760px, calc(100% - 42px));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 42px) clamp(28px, 4vw, 44px) clamp(56px, 7vw, 86px);
  border-radius: 8px;
  color: #333c4c;
  background: #fff;
}

.form-intro {
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e9f0;
  color: #5f6878;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.reservation-form label {
  display: grid;
  grid-template-rows: auto auto;
  gap: 10px;
  color: #344052;
  font-weight: 900;
  line-height: 1.4;
}

.field-label {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  min-height: 1.4em;
}

.reservation-form sup {
  color: #ef4444;
  font-size: 0.86em;
  line-height: 1;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  padding: 12px 15px;
  color: #2a3342;
  background: #fbfcfe;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 91, 172, 0.12);
}

.reservation-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-wide,
.form-select,
.policy-box {
  margin-top: 22px;
}

.form-select {
  max-width: 360px;
}

.policy-box {
  padding: 22px 24px;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  background: #fbfcfe;
}

.policy-box h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
}

.policy-box svg {
  color: var(--orange);
  width: 20px;
  height: 20px;
}

.policy-box ul {
  margin: 0;
  padding-left: 1.3em;
  color: #4d5768;
  font-size: 0.9rem;
  line-height: 1.8;
}

.submit-button {
  display: flex;
  width: min(280px, 100%);
  margin: 44px auto 0;
  min-height: 60px;
  border: 0;
}

.footer {
  padding: 78px 0 34px;
  border-top: 4px solid var(--blue);
  color: #aab3c2;
  background: #111a29;
}

.footer-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.15fr;
  gap: clamp(42px, 8vw, 90px);
}

.brand-footer {
  color: #fff;
  margin-bottom: 24px;
}

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

.brand-footer .brand-mark svg {
  color: var(--orange);
}

.footer p {
  margin: 22px 0 26px;
  color: #aab3c2;
  line-height: 1.9;
}

.footer h3 {
  margin: 0 0 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 950;
}

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

.footer li a::before {
  content: "›";
  margin-right: 12px;
  color: var(--orange);
  font-size: 1.3rem;
  line-height: 1;
}

.socials {
  display: flex;
  gap: 16px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #fff;
  background: #222f43;
}

.socials svg {
  width: 20px;
  height: 20px;
}

.socials span {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 950;
  line-height: 1;
}

.contact-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
}

.contact-list svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.footer-bottom {
  width: min(1180px, calc(100% - 48px));
  margin: 64px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #6d7688;
  font-size: 0.92rem;
}

.footer .photo-credit {
  width: min(1180px, calc(100% - 48px));
  margin: 14px auto 0;
  color: #586275;
  font-size: 0.78rem;
  line-height: 1.5;
}

.detail-page {
  background: #f7f9fc;
}

.detail-hero {
  padding: clamp(92px, 12vw, 150px) 24px clamp(72px, 8vw, 104px);
  color: #fff;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(0, 91, 172, 0.86), rgba(0, 91, 172, 0.5)),
    url("https://images.unsplash.com/photo-1759603955894-0e874a184e57?auto=format&fit=crop&fm=jpg&q=75&w=2000") center / cover no-repeat;
}

.detail-hero p {
  margin: 0 0 8px;
  color: var(--orange);
  font-weight: 950;
  letter-spacing: 0.18em;
}

.detail-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
  font-weight: 950;
}

.detail-hero span {
  display: block;
  width: min(760px, 100%);
  margin: 24px auto 0;
  font-size: 1.1rem;
  line-height: 1.9;
}

.detail-layout {
  width: min(960px, calc(100% - 42px));
  margin: -42px auto 0;
  padding-bottom: clamp(72px, 8vw, 110px);
}

.detail-layout article {
  padding: clamp(34px, 5vw, 58px);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.detail-section + .detail-section {
  margin-top: clamp(42px, 6vw, 72px);
  padding-top: clamp(36px, 5vw, 60px);
  border-top: 1px solid #e5e9f0;
}

.detail-kicker {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.detail-layout h2 {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 950;
}

.detail-layout p {
  margin: 0 0 26px;
  color: #3d4758;
  font-size: 1.05rem;
  line-height: 1.95;
}

.detail-stat {
  display: inline-grid;
  gap: 4px;
  margin-top: 8px;
  padding: 22px 28px;
  border-radius: 8px;
  color: var(--blue);
  background: var(--blue-soft);
}

.detail-stat span {
  color: #344052;
  font-size: 0.9rem;
  font-weight: 900;
}

.detail-stat strong {
  color: var(--blue);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1;
  font-weight: 950;
}

.support-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0 34px;
}

.support-photo-grid figure {
  margin: 0;
}

.support-photo {
  aspect-ratio: 1.25 / 1;
  border-radius: 8px;
  border: 1px solid #dfe6ef;
  background: #f5f9fd;
  overflow: hidden;
}

.support-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-photo-grid figcaption {
  margin-top: 10px;
  color: #344052;
  font-size: 0.92rem;
  font-weight: 900;
  text-align: center;
}

.detail-layout ul {
  display: grid;
  gap: 10px;
  margin: 0 0 34px;
  padding: 24px;
  border-radius: 8px;
  color: #354052;
  background: #f5f9fd;
  list-style-position: inside;
  font-weight: 800;
}

.detail-notes {
  list-style-position: outside;
  padding-left: 44px;
  line-height: 1.9;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(44px, 6vw, 72px);
  padding-top: clamp(34px, 5vw, 54px);
  border-top: 1px solid #e5e9f0;
}

.detail-actions .button {
  min-height: 60px;
}

.private-hero {
  position: relative;
  min-height: min(720px, calc(100vh - var(--header-height)));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(92px, 11vw, 150px) 24px clamp(96px, 9vw, 128px);
  background: #0f1d2e;
  text-align: left;
}

.private-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 22, 38, 0.76), rgba(8, 22, 38, 0.3) 58%, rgba(8, 22, 38, 0.14)),
    linear-gradient(0deg, rgba(8, 22, 38, 0.52), rgba(8, 22, 38, 0.02) 48%);
}

.private-hero .hero-slides,
.private-hero .hero-slide {
  z-index: 0;
}

.private-hero .hero-slide {
  background:
    linear-gradient(90deg, rgba(8, 22, 38, 0.18), rgba(8, 22, 38, 0.02)),
    var(--hero-image) center / cover no-repeat;
}

.private-hero-panel {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  transform: translateX(-22%);
}

.private-hero-panel p {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.private-hero-panel h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.35rem, 5.7vw, 5rem);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: 0;
}

.private-hero-panel h1 .title-line {
  display: block;
}

.private-hero-panel span {
  display: block;
  width: min(680px, 100%);
  margin: 24px 0 0;
  color: #eef6ff;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.9;
  font-weight: 750;
}

.private-hero-actions {
  margin-top: 34px;
  padding-top: 0;
  border-top: 0;
}

.private-hero-dots {
  z-index: 3;
}

.private-tour-layout {
  width: min(1180px, calc(100% - 42px));
  margin: clamp(54px, 7vw, 86px) auto;
  display: grid;
  gap: 30px;
}

.private-section {
  padding: clamp(30px, 5vw, 54px);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.private-section h2 {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.35;
  font-weight: 950;
}

.private-section p {
  margin: 0 0 18px;
  color: #3d4758;
  font-size: 1.05rem;
  line-height: 1.95;
}

.private-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.private-copy p:last-child,
.private-section > p:last-child {
  margin-bottom: 0;
}

.private-info-card {
  padding: 28px;
  border-radius: 8px;
  background: #f2f9ff;
}

.private-info-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.private-info-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.private-info-card dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 91, 172, 0.14);
}

.private-info-card dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.private-info-card dt {
  color: #586579;
  font-weight: 850;
}

.private-info-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 950;
  text-align: right;
}

.private-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.private-pill-list li {
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--blue);
  background: #e8f4ff;
  font-weight: 950;
}

.private-note {
  color: #5d6878;
  font-weight: 800;
}

.private-two-column,
.review-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.private-list-card {
  padding: 28px;
  border: 1px solid #e0e8f1;
  border-radius: 8px;
  background: #fbfdff;
}

.private-list-card ul,
.recommend-box ul {
  margin: 0;
  padding-left: 22px;
  color: #354052;
  font-weight: 850;
  line-height: 1.9;
}

.support-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px minmax(260px, 0.8fr);
  gap: 28px;
  align-items: center;
}

.option-price {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  text-align: center;
}

.option-price span {
  font-weight: 900;
}

.option-price strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.1;
  font-weight: 950;
}

.recommend-box {
  padding: 26px;
  border-radius: 8px;
  background: #fff7eb;
}

.recommend-box h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.25rem;
}

.suica-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.suica-section > div {
  max-width: 720px;
}

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

.review-grid article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid #e0e8f1;
  border-radius: 8px;
  background: #fbfdff;
}

.review-grid p {
  margin: 0 0 22px;
  font-size: 1rem;
}

.review-grid span {
  color: var(--blue);
  font-weight: 950;
}

.guide-intro {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(26px, 5vw, 52px);
  align-items: center;
}

.guide-intro-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(20, 36, 56, 0.14);
}

.guide-intro-image img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
}

.private-tour-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.private-tour-form label {
  display: grid;
  gap: 8px;
  color: #344052;
  font-weight: 900;
}

.private-tour-form input,
.private-tour-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid #d7e1ec;
  border-radius: 8px;
  background: #fbfdff;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
}

.private-tour-form textarea {
  min-height: 150px;
  padding-top: 14px;
  resize: vertical;
}

.private-tour-form .form-wide,
.private-tour-form button {
  grid-column: 1 / -1;
}

.private-tour-form button {
  justify-self: center;
  min-width: 260px;
  border: 0;
  cursor: pointer;
}

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

.related-grid a {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 2px solid #d9e5f2;
  border-radius: 8px;
  color: var(--blue);
  background: #fff;
  font-size: 1.06rem;
  font-weight: 950;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.related-grid a:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  box-shadow: 0 12px 24px rgba(0, 91, 172, 0.12);
}

.related-grid svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

@media (max-width: 1020px) {
  .private-hero-panel {
    transform: none;
  }

  .private-overview,
  .support-option,
  .guide-intro {
    grid-template-columns: 1fr;
  }

  .review-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .private-hero {
    min-height: 620px;
    align-items: end;
    padding: 88px 18px 94px;
  }

  .private-hero-panel {
    width: 100%;
  }

  .private-hero-panel h1 {
    font-size: clamp(2.05rem, 12vw, 3.2rem);
  }

  .private-tour-layout {
    width: min(100% - 28px, 1180px);
    margin: 42px auto 68px;
    gap: 22px;
  }

  .private-section {
    padding: 26px 20px;
  }

  .private-info-card dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .private-info-card dd {
    text-align: left;
  }

  .private-two-column,
  .private-tour-form {
    grid-template-columns: 1fr;
  }

  .suica-section {
    display: grid;
  }

  .private-tour-form button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto auto;
    width: min(100% - 32px, 980px);
    gap: 18px;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.nav-open {
    height: auto;
  }

  .site-header.nav-open .header-inner {
    padding: 16px 0;
  }

  .site-header.nav-open .site-nav,
  .site-header.nav-open .header-actions {
    grid-column: 1 / -1;
    display: flex;
    width: 100%;
    justify-content: center;
    border-right: 0;
    padding: 12px 0;
  }

  .site-header.nav-open .site-nav {
    flex-wrap: wrap;
    gap: 18px 26px;
    border-top: 1px solid var(--line);
  }

  .hero-panel {
    margin-inline: auto;
  }

  .about-grid,
  .tour-grid {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 42px));
  }

  .tour-body h3,
  .tour-body p {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
  }

  body {
    line-height: 1.75;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-mark svg {
    width: 29px;
    height: 29px;
  }

  .brand-ja {
    font-size: 0.98rem;
  }

  .brand-en {
    font-size: 0.68rem;
  }

  .hero {
    min-height: auto;
    padding: 32px 0 76px;
    align-items: end;
  }

  .hero-panel {
    width: calc(100% - 32px);
    padding: 28px 22px;
    border-radius: 14px;
  }

  .hero-kicker {
    font-size: 0.9rem;
    padding: 8px 14px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-lead {
    margin: 24px 0;
    font-size: 0.98rem;
    line-height: 1.85;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    min-width: 0;
    min-height: 58px;
    font-size: 1rem;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    width: calc(100% - 32px);
    margin-bottom: 42px;
  }

  .section-heading h2 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .about-grid,
  .tour-grid,
  .destinations-shell,
  .timeline,
  .calendar-shell,
  .footer-grid,
  .footer-bottom {
    width: calc(100% - 32px);
  }

  .map-panel {
    display: grid;
    gap: 18px;
    aspect-ratio: auto;
  }

  .map-canvas {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    aspect-ratio: 1 / 1;
    transform: none;
  }

  .map-choice {
    width: 28px;
    height: 28px;
  }

  .map-area {
    width: 15px;
    height: 15px;
    border-width: 3px;
  }

  .map-label {
    display: none;
  }

  .map-summary {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    padding: 18px;
  }

  .about-media {
    min-height: 0;
    padding-bottom: 94px;
  }

  .about-media img {
    height: 430px;
  }

  .guide-card {
    right: 14px;
    bottom: 20px;
    width: calc(100% - 28px);
  }

  .feature-pair,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tour-grid {
    gap: 28px;
  }

  .tour-body {
    padding: 28px 22px;
  }

  .detail-hero {
    padding-top: 78px;
  }

  .detail-layout {
    width: calc(100% - 32px);
  }

  .detail-layout article {
    padding: 28px 22px;
  }

  .support-photo-grid {
    grid-template-columns: 1fr;
  }

  .detail-actions {
    display: grid;
  }

  .timeline {
    gap: 34px;
  }

  .timeline::before {
    left: 31px;
  }

  .timeline-item {
    min-height: auto;
    grid-template-columns: 64px 1fr;
    gap: 16px;
  }

  .timeline-icon {
    grid-column: 1;
    width: 62px;
    height: 62px;
  }

  .timeline-item.right .timeline-card,
  .timeline-item.left .timeline-card {
    grid-column: 2;
    justify-self: stretch;
    width: 100%;
    text-align: left;
  }

  .timeline-card {
    padding: 24px 22px;
  }

  .calendar-shell {
    padding: 20px 16px;
  }

  .calendar-legend {
    justify-content: flex-start;
    gap: 14px 22px;
    margin-bottom: 24px;
  }

  .calendar-toolbar {
    grid-template-columns: auto auto 1fr;
    gap: 14px;
    padding: 12px;
  }

  .calendar-toolbar > svg {
    display: none;
  }

  .calendar-toolbar strong {
    font-size: 1.08rem;
  }

  .calendar-grid {
    grid-template-columns: repeat(7, minmax(92px, 1fr));
  }

  .reservation-form {
    width: calc(100% - 32px);
    padding-inline: 20px;
  }

  .form-select {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .header-inner {
    width: calc(100% - 22px);
  }

  .brand-copy {
    max-width: 210px;
  }

  .brand-ja {
    white-space: normal;
  }

  .menu-button span {
    display: none;
  }

  .site-header.nav-open .header-actions {
    display: grid;
    gap: 14px;
  }

  .hero-panel {
    padding: 24px 18px;
  }

  .button {
    padding-inline: 22px;
  }

  .feature-card,
  .policy-box {
    padding: 22px;
  }

  .calendar-footer {
    flex-direction: column;
  }
}
