:root {
  /* 益子焼の窯変・釉薬からとった色味 */
  --ink: #2b2622;            /* 鉄釉の黒褐色 */
  --muted: #6b5f4f;          /* 土灰のグレーブラウン */
  --paper: #f5efe0;          /* 糠白釉（ぬかじろ）の生成り */
  --paper-alt: #efe3c8;      /* 素地の生乾き色 */
  --white: #fffdf7;
  --clay: #a8481f;           /* 柿釉のレンガ赤 */
  --clay-dark: #7a3115;
  --green: #4f5f47;          /* 灰釉のくすみグリーン */
  --green-dark: #333f2d;
  --indigo: #33465a;         /* 鉄釉の青黒 */
  --gold: #bd8a3d;           /* 金継ぎの金 */
  --gold-soft: #d8b573;
  --line: rgba(43, 38, 34, 0.16);
  --shadow: 0 18px 48px rgba(43, 38, 34, 0.16);
  --font-display: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --font-body: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.8;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  transform: translateY(-140%);
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 240, 0.96);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(33, 29, 25, 0.12);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  width: 128px;
  height: auto;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 2px 10px rgba(43, 38, 34, 0.18);
}

.site-header.is-scrolled .brand-logo {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.brand-divider {
  width: 1px;
  height: 28px;
  background: currentColor;
  opacity: 0.4;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 8px 16px;
  border: 1px solid currentColor;
  border-radius: 6px;
}

.breadcrumb {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 92px clamp(18px, 4vw, 54px) 0;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  width: min(1120px, 1120px);
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumb a {
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.breadcrumb a:hover {
  border-bottom-color: currentColor;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  opacity: 0.5;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb li[aria-current="page"] {
  color: var(--gold-soft);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  filter: brightness(1.06) contrast(1.05) saturate(1.15) sepia(0.12);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38, 25, 15, 0.75), rgba(60, 35, 15, 0.3) 58%, rgba(60, 35, 15, 0.1)),
    linear-gradient(0deg, rgba(28, 20, 12, 0.6), rgba(216, 140, 60, 0.12) 50%);
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 56px;
}

.eyebrow,
.section-kicker {
  position: relative;
  display: inline-block;
  margin: 0 0 20px;
  padding-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::after,
.section-kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 46 6'%3E%3Cpath d='M0 4.5C6 1 10 5.5 15 2.5S24 0.5 29 3.5s10-3 17-1' fill='none' stroke='%23bd8a3d' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.section-green .section-kicker,
.section-clay .section-kicker,
.section-reserve .section-kicker,
.notice-band .eyebrow {
  color: var(--gold-soft);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
}

h1 {
  width: min(860px, 100%);
  margin: 0;
  font-size: clamp(40px, 7vw, 74px);
  line-height: 1.22;
  letter-spacing: 0.01em;
  font-weight: 700;
}

h2 {
  margin: 0 0 20px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.4;
  letter-spacing: 0.01em;
  font-weight: 700;
}

h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 700;
}

.lead {
  width: min(720px, 100%);
  margin: 22px 0 28px;
  font-size: clamp(17px, 2.2vw, 22px);
}

.hero-depart {
  margin: 26px 0 0;
  padding: 20px;
  width: min(480px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 10px;
  background: rgba(22, 17, 12, 0.38);
  backdrop-filter: blur(6px);
}

.hero-price-label {
  margin: 0 0 14px !important;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
}

.hero-price-label strong {
  font-size: 26px;
  color: var(--gold-soft);
  font-family: var(--font-display);
  margin-left: 6px;
}

.hero-depart p {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
}

.hero-depart-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 10px;
}

.depart-pill {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--gold);
  color: #20170d;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.depart-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.depart-pill span {
  font-weight: 900;
  font-size: 16px;
}

.depart-pill em {
  font-style: normal;
  font-size: 11.5px;
  opacity: 0.82;
}

.hero-actions,
.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.inline-cta,
.reserve-card {
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button:hover,
.inline-cta:hover,
.reserve-card:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: #20170d;
  box-shadow: var(--shadow);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.catch-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 42px;
}

.catch-list p {
  min-height: 96px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  font-weight: 700;
}

.new-banner {
  background: var(--gold);
}

.new-banner a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 13px 18px;
  color: #20170d;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.new-banner strong {
  padding: 2px 9px;
  border-radius: 4px;
  background: var(--clay);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.notice-band {
  background: var(--green-dark);
  color: var(--white);
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.notice-grid div {
  padding: 22px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.notice-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.notice-grid span,
.timeline span,
.reserve-card span,
.reserve-card em {
  display: block;
}

.notice-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.notice-grid strong {
  font-size: 20px;
}

.section {
  padding: clamp(70px, 9vw, 112px) 0;
  background: var(--paper);
}

.section-light {
  background: #fffdf8;
}

.section-clay {
  background: var(--clay);
  color: var(--white);
}

.section-green {
  background: var(--green);
  color: var(--white);
}

.section-reserve {
  background: var(--indigo);
  color: var(--white);
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.02fr);
}

.section p {
  margin: 0 0 18px;
}

.section-lead {
  max-width: 820px;
  color: var(--muted);
}

.section-green .section-lead,
.section-clay .section-lead,
.section-reserve .section-lead {
  color: rgba(255, 255, 255, 0.82);
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 8px;
  padding: 10px 18px;
  border-radius: 6px;
  background: var(--green-dark);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.inline-cta-dark {
  background: var(--ink);
}

.media-frame {
  margin: 0;
}

.media-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-frame figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.section-clay .media-frame figcaption {
  color: rgba(255, 255, 255, 0.76);
}

.feature-grid,
.answer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.feature-card,
.answer-grid article {
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-card p,
.answer-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.info-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 4px solid var(--clay);
  background: #fff6e4;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.enjoy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 32px;
  align-items: start;
}

.enjoy-main {
  padding-right: 20px;
}

.mini-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-gallery img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.mini-gallery img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.day-heading {
  margin: 30px 0 4px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--clay);
  color: var(--clay-dark);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}

.day-heading:first-of-type {
  margin-top: 6px;
}

.day-note {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13.5px;
}

.timeline {
  display: grid;
  gap: 0;
  margin: 32px 0 20px;
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.timeline time {
  color: var(--clay);
  font-weight: 900;
}

.timeline span {
  color: var(--muted);
}

.timeline-note {
  display: block;
  margin-top: 6px;
  color: var(--clay);
  line-height: 1.6;
}

.answer-grid {
  grid-template-columns: repeat(3, 1fr);
}

.answer-grid article {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.answer-grid p {
  color: rgba(255, 255, 255, 0.82);
}

.faq-tools {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin: -18px 0 14px;
}

.text-button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}

details p {
  padding: 0 20px 18px;
  color: var(--muted);
}

.checklist-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.checklist-progress-track {
  flex: 1;
  max-width: 260px;
  height: 8px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}

.checklist-progress-bar {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: var(--gold);
  transition: width 220ms ease;
}

.checklist-reset {
  margin-left: auto;
  border: none;
  background: none;
  color: var(--clay);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.item-grid label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.item-grid input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--clay);
}

.item-grid label:has(input:checked) {
  background: #fbf1de;
  border-color: var(--gold);
  color: var(--clay-dark);
}

.item-grid label:has(input:checked) span {
  text-decoration: line-through;
  text-decoration-color: var(--gold);
  opacity: 0.72;
}

.reserve-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.8fr);
  gap: 40px;
  align-items: center;
}

.reserve-actions {
  flex-direction: column;
}

.reserve-card {
  display: block;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.reserve-card strong {
  display: block;
  margin: 6px 0 6px;
  font-size: 20px;
}

.reserve-price {
  display: block;
  font-size: 18px;
  color: var(--gold-soft);
  font-weight: 700;
  margin-bottom: 10px;
}

.reserve-card em {
  color: var(--white);
  border-bottom: 1px solid currentColor;
  display: inline-block;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 54px) 86px;
  background: #151310;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(580px, calc(100% - 28px));
  padding: 10px 10px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(23, 60, 49, 0.94);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: translate(-50%, 120%);
  transition: transform 200ms ease;
}

.sticky-cta.is-visible {
  transform: translate(-50%, 0);
}

.sticky-cta span {
  flex: 1;
  font-weight: 800;
}

.sticky-cta a {
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--gold);
  color: #20170d;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px;
  gap: 10px;
  margin-top: 34px;
}

.photo-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.photo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.photo-gallery figure:hover img {
  transform: scale(1.06);
}

.photo-gallery figure.is-tall {
  grid-row: span 2;
}

.photo-gallery figure.is-wide {
  grid-column: span 2;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 34px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

.schedule-tabs {
  margin-top: 30px;
}

.tab-list {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: var(--paper-alt);
}

.tab-button {
  padding: 10px 22px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.tab-button[aria-selected="true"] {
  background: var(--clay);
  color: var(--white);
}

.tab-panel {
  margin-top: 26px;
}

.tab-panel[hidden] {
  display: none;
}

.schedule-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.meeting-point-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border: 1px solid var(--clay);
  border-radius: 999px;
  color: var(--clay-dark);
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
}

.meeting-point-link:hover {
  background: var(--clay);
  color: var(--white);
}

.spot-list {
  display: grid;
  gap: 56px;
  margin-top: 40px;
}

.spot-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(26px, 5vw, 54px);
  align-items: center;
}

.spot-block.reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
}

.spot-block.reverse .spot-media {
  order: 2;
}

.spot-media {
  margin: 0;
}

.spot-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.spot-subgallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.spot-subgallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.spot-eyebrow {
  margin: 0 0 6px;
  color: var(--clay);
  font-size: 13.5px;
  font-weight: 800;
}

.spot-meta {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--paper-alt);
  color: var(--clay-dark);
  font-size: 12.5px;
  font-weight: 700;
}

.spot-copy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .answer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-column,
  .two-column.reverse,
  .enjoy-layout,
  .reserve-layout,
  .spot-block,
  .spot-block.reverse {
    grid-template-columns: 1fr;
  }

  .spot-block.reverse .spot-media {
    order: 0;
  }

  .enjoy-main {
    padding-right: 0;
  }

  .item-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .breadcrumb {
    padding-top: 78px;
  }

  .breadcrumb ol {
    font-size: 11.5px;
  }

  .brand-logo {
    width: 96px;
    padding: 4px 8px;
  }

  .brand-divider,
  .brand-name {
    display: none;
  }

  .hero-content {
    padding-top: 150px;
  }

  h1 {
    font-size: 42px;
  }

  .catch-list,
  .notice-grid,
  .feature-grid,
  .answer-grid {
    grid-template-columns: 1fr;
  }

  .catch-list p {
    min-height: auto;
  }

  .notice-grid div,
  .notice-grid div:last-child {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .mini-gallery {
    grid-template-columns: 1fr;
  }

  .mini-gallery img:first-child {
    aspect-ratio: 4 / 3;
  }

  .faq-tools {
    justify-content: flex-start;
    margin-top: 0;
  }

  .item-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
  }

  .photo-gallery figure.is-wide {
    grid-column: span 2;
  }

  .photo-gallery figure.is-tall {
    grid-row: span 1;
  }

  .hero-depart {
    width: 100%;
    padding: 14px;
  }

  .checklist-progress {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .checklist-progress-track {
    order: 3;
    max-width: none;
    width: 100%;
  }

  .checklist-reset {
    margin-left: 0;
  }

  .new-banner a {
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .schedule-meta {
    margin-bottom: 4px;
  }

  .meeting-point-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .tab-list {
    width: 100%;
  }

  .tab-button {
    flex: 1;
    padding: 10px 12px;
  }

  .site-footer {
    display: block;
  }

  .sticky-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .sticky-cta a {
    text-align: center;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 900px;
  }

  .button {
    width: 100%;
  }

  .item-grid {
    grid-template-columns: 1fr;
  }

  .photo-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 130px;
  }

  .hero-depart-options {
    grid-template-columns: 1fr;
  }

  .depart-pill {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }

  .breadcrumb li:not(:last-child):not(:nth-last-child(2)) {
    display: none;
  }

  .breadcrumb ol::before {
    content: "…";
    margin-right: 4px;
    opacity: 0.6;
  }

  .tab-button {
    font-size: 13px;
    padding: 9px 8px;
  }
}