/* ============================================
   葛飾モルック大会 トップページ
   配色: ネイビー × ゴールド × クリーム
   ============================================ */
:root {
  --navy: #16233a;
  --navy-light: #1f3252;
  --gold: #c19a3f;
  --gold-dark: #a8842f;
  --cream: #faf8f3;
  --beige: #f2eee4;
  --white: #ffffff;
  --text: #2a2f38;
  --text-muted: #6b7280;
  --border: #e5e0d4;
  --radius: 14px;
  --shadow: 0 4px 20px rgba(22, 35, 58, .08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid var(--tour-accent, var(--gold));
  outline-offset: 4px;
  border-radius: 12px;
}

.tour-home a:focus-visible,
.tour-home button:focus-visible,
.tour-home summary:focus-visible,
.tour-home .nav-toggle:focus-visible {
  outline-color: var(--tour-accent);
  box-shadow: 0 0 0 5px rgba(var(--tour-secondary-rgb, 7,86,156),.22);
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  text-align: center;
  transition: opacity .2s, transform .2s;
}
.btn:hover { opacity: .85; transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline { border: 2px solid rgba(255,255,255,.7); color: var(--white); }
.btn-lg { padding: 15px 36px; font-size: 16px; }
.ext { font-size: 13px; }

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: Oswald, sans-serif; font-weight: 600; font-size: 17px;
  flex-shrink: 0; overflow: hidden;
}
.brand-mark img { width: 84%; height: 84%; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.3; }
.brand-title { color: var(--white); font-family: Oswald, sans-serif; font-size: 16px; letter-spacing: .05em; }
.brand-sub { color: rgba(255,255,255,.65); font-size: 11px; }

.global-nav { display: flex; gap: 24px; margin-left: auto; }
.global-nav a {
  color: rgba(255,255,255,.9); text-decoration: none;
  font-size: 14px; font-weight: 500;
}
.global-nav a:hover { color: var(--gold); }
.header-cta { font-size: 13px; padding: 10px 20px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0;
}

/* ---------- ヒーロー ---------- */
.hero {
  position: relative;
  background: linear-gradient(120deg, #101a2c 0%, var(--navy) 55%, #1d2f4e 100%);
  color: var(--white);
  overflow: hidden;
}
/* 右半分の写真エリア(写真を入れるまではスキットルのイラスト) */
.hero-photo {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 46%;
  background: linear-gradient(160deg, #2c4166, #1a2a45);
  display: flex; align-items: center; justify-content: center;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
/* images/hero.jpg が存在すると js が .has-photo を付与して写真表示に切り替わる */
.hero-photo.has-photo {
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
}
.hero-photo.has-photo .skittles { display: none; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(22,35,58,.25) 40%, rgba(22,35,58,0) 70%);
  pointer-events: none;
}
.skittles { width: 78%; height: auto; opacity: .9; }

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 64px 24px 72px;
}
.hero-content { max-width: 58%; }
.hero-eyebrow {
  color: var(--gold); font-family: Oswald, sans-serif;
  letter-spacing: .25em; font-size: 14px; margin-bottom: 12px;
}
.hero-title { font-size: 50px; font-weight: 900; line-height: 1.25; margin-bottom: 20px; }
.hero-lead { font-size: 16px; color: rgba(255,255,255,.85); margin-bottom: 34px; }

.hero-specs { display: flex; flex-wrap: wrap; margin-bottom: 34px; }
.spec {
  padding: 4px 22px 4px 0; margin-right: 22px;
  border-right: 1px solid rgba(255,255,255,.18);
  display: flex; flex-direction: column; gap: 6px;
}
.spec:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.spec-label {
  font-size: 12px; color: rgba(255,255,255,.65);
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.icon { width: 15px; height: 15px; }
.spec-value { font-size: 19px; font-weight: 700; line-height: 1.35; }
.spec-value small { font-size: 11px; font-weight: 400; color: rgba(255,255,255,.7); }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 12px; color: rgba(255,255,255,.6); }

/* ---------- MOLSHIKA TOUR redesign: header + first view only ---------- */
.tour-home {
  --tour-primary: #ff6a00;
  --tour-primary-rgb: 255,106,0;
  --tour-primary-bright: #ff7a00;
  --tour-primary-dark: #d94700;
  --tour-primary-deep: #e04b00;
  --tour-secondary: #07569c;
  --tour-secondary-rgb: 7,86,156;
  --tour-secondary-bright: #0b67b9;
  --tour-secondary-dark: #053f78;
  --tour-accent: #f6e71d;
  --tour-accent-rgb: 246,231,29;
  --tour-support: #2fa846;
  --tour-support-rgb: 47,168,70;
  --tour-support-dark: #238f3e;
  --tour-orange: var(--tour-primary);
  --tour-orange-dark: var(--tour-primary-dark);
  --tour-blue: var(--tour-secondary);
  --tour-blue-deep: var(--tour-secondary-dark);
  --tour-yellow: var(--tour-accent);
  --tour-green: var(--tour-support);
  --tour-cream: #fff9dc;
  --tour-dark: #111111;
}

.theme-katsushika {
  --tour-primary: #ff6a00;
  --tour-primary-rgb: 255,106,0;
  --tour-primary-bright: #ff7a00;
  --tour-primary-dark: #d94700;
  --tour-primary-deep: #e04b00;
  --tour-secondary: #07569c;
  --tour-secondary-rgb: 7,86,156;
  --tour-secondary-bright: #0b67b9;
  --tour-secondary-dark: #053f78;
  --tour-accent: #f6e71d;
  --tour-accent-rgb: 246,231,29;
  --tour-support: #2fa846;
  --tour-support-rgb: 47,168,70;
  --tour-support-dark: #238f3e;
}

.theme-oyama {
  --tour-primary: #16823c;
  --tour-primary-rgb: 22,130,60;
  --tour-primary-bright: #2fa846;
  --tour-primary-dark: #0f5f2c;
  --tour-primary-deep: #0b4f24;
  --tour-secondary: #2fa846;
  --tour-secondary-rgb: 47,168,70;
  --tour-secondary-bright: #39b957;
  --tour-secondary-dark: #238f3e;
  --tour-accent: #f1e91b;
  --tour-accent-rgb: 241,233,27;
  --tour-support: #b7e43c;
  --tour-support-rgb: 183,228,60;
  --tour-support-dark: #16823c;
}

.tour-home .site-header {
  background: var(--white);
  box-shadow: none;
  border-bottom: 1px solid rgba(17,17,17,.06);
}

.tour-home .header-inner {
  max-width: 1360px;
  min-height: 90px;
  padding: 14px 28px;
  gap: 24px;
}

.tour-home .brand {
  gap: 10px;
  min-width: 166px;
}

.tour-home .brand-mark {
  width: 46px;
  height: 54px;
  border-radius: 0;
  background: transparent;
}

.tour-home .brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tour-home .brand-text {
  flex-direction: row;
  align-items: center;
  gap: 0;
}

.tour-home .brand-title {
  color: #126328;
  font-family: Oswald, "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: .94;
  letter-spacing: .02em;
}

.tour-home .brand-sub {
  color: #16823c;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.tour-home .global-nav {
  gap: 22px;
  align-items: center;
}

.tour-home .global-nav a {
  color: var(--tour-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.tour-home .global-nav a:hover { color: var(--tour-primary); }

.tour-home .header-cta {
  min-width: 146px;
  min-height: 52px;
  border-radius: 999px;
  padding: 15px 22px;
  background: var(--tour-support);
  color: var(--white);
  font-size: 13px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: none;
}

.tour-home .header-arrow {
  font-size: 24px;
  line-height: .6;
}

.tour-home .nav-toggle span { background: var(--tour-dark); }

.tour-home .hero {
  height: 760px;
  min-height: 725px;
  background:
    linear-gradient(102deg, var(--tour-primary) 0 54%, transparent 54%),
    linear-gradient(145deg, var(--tour-primary-bright) 0%, var(--tour-primary) 35%, var(--tour-primary-deep) 100%);
  isolation: isolate;
}

.tour-home .hero::before,
.tour-home .hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.tour-home .hero::before {
  inset: -90px 45% -80px -8%;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(255,255,255,.12), transparent 35%),
    linear-gradient(160deg, rgba(255,255,255,.12), transparent 35%),
    repeating-linear-gradient(165deg, transparent 0 34px, rgba(255,255,255,.08) 35px 48px);
  opacity: .75;
  transform: rotate(-4deg);
}

.tour-home .hero::after {
  left: 51.4%;
  top: -90px;
  bottom: -90px;
  width: 9%;
  background: var(--tour-secondary);
  border-radius: 58% 0 0 45%;
  transform: skewX(-10deg);
  transform-origin: center;
  box-shadow: -10px 0 0 rgba(var(--tour-accent-rgb),.16);
  z-index: 2;
}

.tour-home .hero-visual {
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 49%;
  left: auto;
  right: 0;
  z-index: 0;
  background: var(--tour-secondary);
  overflow: hidden;
}

.tour-home .hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 42%;
  transform: scale(1.04);
}

.tour-home .hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(var(--tour-secondary-rgb),.34) 0%, rgba(var(--tour-secondary-rgb),.14) 18%, rgba(var(--tour-secondary-rgb),0) 40%),
    linear-gradient(0deg, rgba(var(--tour-primary-rgb),.18), rgba(var(--tour-primary-rgb),0) 35%);
  pointer-events: none;
}

.tour-home .hero-shape,
.tour-home .hero-deco,
.tour-home .hero-line,
.tour-home .hero-arrows,
.tour-home .hero-stick-layer {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

.tour-home .hero-shape-orange {
  left: -7%;
  bottom: -80px;
  width: 62%;
  height: 210px;
  background: rgba(var(--tour-accent-rgb),.25);
  border-radius: 55% 50% 0 0;
  transform: rotate(-9deg);
}

.tour-home .hero-shape-blue {
  left: 51%;
  top: -30px;
  width: 88px;
  height: 780px;
  border-radius: 54% 0 0 46%;
  border-left: 2px solid rgba(var(--tour-accent-rgb),.7);
  transform: rotate(7deg);
  z-index: 4;
}

.tour-home .hero-deco {
  height: 24px;
  border-radius: 999px;
  background: var(--tour-accent);
}

.tour-home .hero-deco-1 {
  width: 250px;
  left: 9%;
  top: 48px;
  transform: rotate(-5deg);
}

.tour-home .hero-deco-2 {
  display: none;
}

.tour-home .hero-deco-3 {
  width: 235px;
  left: 31%;
  bottom: 62px;
  transform: rotate(-9deg);
}

.tour-home .hero-line {
  height: 4px;
  border-top: 3px dashed rgba(255,255,255,.95);
}

.tour-home .hero-line-1 {
  width: 310px;
  left: 30%;
  top: 48px;
  transform: rotate(-8deg);
}

.tour-home .hero-line-2 {
  width: 260px;
  right: 12%;
  bottom: 145px;
  transform: rotate(-10deg);
  opacity: .75;
}

.tour-home .hero-arrows {
  display: flex;
  gap: 9px;
}

.tour-home .hero-arrows span {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 16px solid var(--white);
}

.tour-home .hero-arrows-1 {
  left: 3%;
  top: 48px;
  transform: rotate(10deg);
}

.tour-home .hero-arrows-2 {
  left: 42%;
  top: 305px;
  transform: rotate(6deg);
}

.tour-home .hero-stick-layer {
  display: none;
}

.tour-home .hero-inner {
  max-width: 1360px;
  min-height: 760px;
  padding: 42px 48px 34px;
  z-index: 5;
}

.tour-home .hero-content {
  max-width: 55%;
  position: relative;
  z-index: 6;
}

.tour-home .hero-eyebrow {
  display: inline-flex;
  margin: 0 0 12px 58px;
  transform: rotate(-4deg);
}

.tour-home .hero-eyebrow span {
  display: inline-flex;
  align-items: center;
  min-width: 276px;
  min-height: 46px;
  padding: 7px 28px;
  background: var(--tour-accent);
  color: var(--tour-secondary-dark);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .04em;
}

.tour-home .hero-title {
  display: flex;
  flex-direction: column;
  margin: 0 0 2px;
  color: var(--white);
  font-family: Oswald, "Noto Sans JP", sans-serif;
  font-style: italic;
  font-weight: 600;
  line-height: .85;
  letter-spacing: .01em;
  text-transform: uppercase;
  text-shadow: 8px 8px 0 rgba(0,0,0,.18);
  transform: rotate(-4deg);
  transform-origin: left center;
}

.tour-home .hero-title span {
  font-size: clamp(64px, 6.8vw, 98px);
}

.tour-home .hero-title strong {
  color: var(--tour-accent);
  font-size: clamp(96px, 10vw, 134px);
  font-weight: 600;
}

.tour-home .hero-jp-title {
  display: inline-flex;
  margin: 4px 0 12px 86px;
  padding: 7px 34px 9px;
  background: var(--white);
  color: var(--tour-secondary-dark);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.2;
  transform: rotate(-4deg);
}

.tour-home .hero-lead {
  margin: 0 0 0 28px;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .02em;
  text-shadow: 2px 2px 0 rgba(0,0,0,.12);
}

.tour-home .hero-sublead {
  margin: 5px 0 0 28px;
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}

.tour-home .hero-sublead br { display: none; }

.tour-home .hero-event-card {
  width: 460px;
  min-height: 244px;
  margin-top: 14px;
  padding: 22px 38px 22px;
  border: 1.5px solid rgba(var(--tour-accent-rgb),.7);
  border-radius: 66px;
  background: rgba(var(--tour-secondary-rgb),.78);
  color: var(--white);
  backdrop-filter: none;
}

.tour-home .event-badge {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 13px;
  border-radius: 9px;
  background: var(--tour-accent);
  color: var(--tour-secondary-dark);
  font-size: 13px;
  font-weight: 900;
}

.tour-home .event-date {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
  font-family: Oswald, "Noto Sans JP", sans-serif;
  font-style: italic;
  font-weight: 600;
}

.tour-home .event-date span {
  font-size: 56px;
  line-height: 1;
  letter-spacing: .03em;
}

.tour-home .event-date em {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--tour-accent);
  color: var(--tour-secondary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.tour-home .event-place {
  margin-top: 4px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.tour-home .event-address {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.82);
}

.tour-home .event-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 9px;
}

.tour-home .event-meta span {
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  padding: 3px 10px 4px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
}

.tour-home .hero-entry-btn {
  width: 310px;
  height: 54px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--tour-accent);
  color: var(--tour-primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: .02em;
}

.tour-home .hero-entry-btn span {
  color: var(--tour-secondary-dark);
  font-size: 34px;
  line-height: .7;
}

/* ---------- MOLSHIKA TOUR redesign: post-hero sections ---------- */
.tour-home .tour-feature-strip,
.tour-home .tour-news-result,
.tour-home .tour-schedule-section {
  background: #fffaf0;
}

.tour-home .tour-feature-strip {
  padding: 30px 0 18px;
  margin-top: -1px;
}

.tour-home .tour-feature-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 18px;
  border-radius: 46px;
  background:
    linear-gradient(90deg, rgba(var(--tour-primary-rgb),.12), rgba(var(--tour-accent-rgb),.16)),
    var(--white);
  border: 1px solid rgba(var(--tour-primary-rgb),.12);
  box-shadow: 0 16px 42px rgba(var(--tour-secondary-rgb),.08);
  overflow: hidden;
}

.tour-home .tour-feature-panel::before {
  content: "";
  position: absolute;
  inset: auto -24px -40px 56%;
  height: 118px;
  border-radius: 999px;
  background: rgba(var(--tour-accent-rgb),.34);
  transform: rotate(-8deg);
  pointer-events: none;
}

.tour-home .tour-feature-item {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 148px;
  padding: 20px 22px;
}

.tour-home .tour-feature-item + .tour-feature-item {
  border-left: 1px dashed rgba(var(--tour-secondary-rgb),.18);
}

.tour-home .tour-feature-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transform: rotate(-4deg);
}

.tour-home .tour-feature-icon svg {
  width: 34px;
  height: 34px;
}

.tour-home .tour-feature-icon-orange { background: var(--tour-primary); }
.tour-home .tour-feature-icon-blue { background: var(--tour-secondary); }
.tour-home .tour-feature-icon-green { background: var(--tour-support); }

.tour-home .tour-feature-item h2 {
  color: var(--tour-secondary-dark);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 7px;
}

.tour-home .tour-feature-item p {
  color: var(--tour-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.tour-home .next-open-section {
  padding: 26px 0 34px;
}

.tour-home .tour-section-head {
  position: relative;
  margin-bottom: 24px;
}

.tour-home .tour-section-kicker {
  color: var(--tour-primary);
  font-family: Oswald, "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
}

.tour-home .tour-section-head h2 {
  position: relative;
  display: inline-block;
  color: var(--tour-secondary-dark);
  font-family: Oswald, "Noto Sans JP", sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: .02em;
}

.tour-home .tour-section-head h2::after {
  content: "";
  position: absolute;
  left: 4px;
  right: -18px;
  bottom: -8px;
  height: 14px;
  background: var(--tour-accent);
  transform: skewX(-14deg) rotate(-1deg);
  z-index: -1;
}

.tour-home .tour-section-head::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 14px;
  width: 74px;
  border-top: 4px dashed var(--tour-primary);
  transform: rotate(-7deg);
}

.tour-home .tour-section-head.compact {
  margin-bottom: 18px;
}

.tour-home .tour-section-head.compact h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.tour-home .tour-section-head.compact::after {
  right: 0;
  width: 50px;
}

.tour-home .next-open {
  display: grid;
  grid-template-columns: 1.04fr 1fr 318px;
  gap: 22px;
  align-items: stretch;
  padding: 20px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(var(--tour-primary-rgb),.08), rgba(var(--tour-secondary-rgb),.05)),
    var(--white);
  border: 1px solid rgba(var(--tour-secondary-rgb),.1);
  box-shadow: 0 16px 46px rgba(var(--tour-secondary-rgb),.08);
}

.tour-home .next-open-photo {
  position: relative;
  min-height: 324px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--tour-secondary);
}

.tour-home .next-open-photo::after {
  content: "";
  position: absolute;
  left: -14%;
  right: 22%;
  bottom: -38px;
  height: 74px;
  border-radius: 999px;
  background: rgba(var(--tour-accent-rgb),.5);
  transform: rotate(-8deg);
}

.tour-home .next-open-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 58%;
}

.tour-home .next-open-body {
  padding: 10px 8px 6px;
  align-self: center;
}

.tour-home .next-open-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--tour-accent);
  color: var(--tour-secondary-dark);
  font-size: 13px;
  font-weight: 900;
}

.tour-home .next-open-body h3 {
  color: var(--tour-secondary-dark);
  font-family: Oswald, "Noto Sans JP", sans-serif;
  font-size: clamp(40px, 4.9vw, 62px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 18px;
}

.tour-home .next-open-body h3 .date-sp {
  display: none;
}

.tour-home .next-open-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tour-home .next-open-specs div {
  padding: 11px 14px;
  border-radius: 16px;
  background: #fff6dc;
  border: 1px solid rgba(var(--tour-primary-rgb),.12);
}

.tour-home .next-open-specs dt {
  color: rgba(var(--tour-secondary-rgb),.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.tour-home .next-open-specs dd {
  color: var(--tour-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.tour-home .next-open-entry {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 324px;
  padding: 30px 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 16%, rgba(var(--tour-accent-rgb),.28), transparent 34%),
    linear-gradient(160deg, var(--tour-secondary-bright) 0%, var(--tour-secondary-dark) 72%);
  color: var(--white);
  overflow: hidden;
}

.tour-home .next-open-entry::before {
  content: "";
  position: absolute;
  right: -58px;
  bottom: 24px;
  width: 160px;
  height: 28px;
  border-radius: 999px;
  background: var(--tour-accent);
  transform: rotate(-12deg);
}

.tour-home .next-open-entry span {
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--tour-accent);
  color: var(--tour-secondary-dark);
  font-size: 13px;
  font-weight: 900;
}

.tour-home .next-open-entry p {
  position: relative;
  margin-bottom: 22px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.tour-home .next-open-entry a {
  position: relative;
  min-height: 56px;
  border-radius: 999px;
  background: var(--tour-accent);
  color: var(--tour-primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
}

.tour-home .next-open-entry b {
  color: var(--tour-secondary-dark);
  font-size: 30px;
  line-height: .6;
}

.tour-home .tour-news-result {
  padding: 30px 0 38px;
}

.tour-home .news-result-grid {
  display: block;
  max-width: 760px;
}

.tour-home .tour-info-card {
  min-height: 410px;
  padding: 26px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(var(--tour-secondary-rgb),.1);
  box-shadow: 0 12px 36px rgba(var(--tour-secondary-rgb),.06);
}

.tour-home .tour-news-card {
  min-height: 0;
  padding: 24px 26px;
}

.tour-home .tour-news-result .news-list {
  display: grid;
  gap: 0;
}

.tour-home .tour-news-result .news-item {
  position: relative;
  display: grid;
  grid-template-columns: 102px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  color: var(--tour-dark);
  border-top: 1px dashed rgba(var(--tour-secondary-rgb),.16);
  text-decoration: none;
}

.tour-home .tour-news-result .news-item:first-child::after {
  content: "NEW";
  position: absolute;
  right: 0;
  top: 16px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--tour-primary);
  color: var(--white);
  font-family: Oswald, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.tour-home .tour-news-result .news-item.news-empty:first-child::after {
  display: none;
}

.tour-home .tour-news-result .news-item time {
  color: var(--tour-primary-dark);
  font-family: Oswald, sans-serif;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.tour-home .tour-news-result .news-item span {
  padding-right: 48px;
  color: var(--tour-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.tour-home .latest-result-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 22px;
  align-items: start;
}

.tour-home .latest-result-photo img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center 32%;
  border-radius: 18px;
}

.tour-home .result-round {
  color: var(--tour-secondary-dark);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 14px;
}

.tour-home .latest-ranks {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
}

.tour-home .latest-ranks div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(var(--tour-secondary-rgb),.14);
}

.tour-home .latest-ranks span {
  color: var(--tour-primary-dark);
  font-size: 12px;
  font-weight: 900;
}

.tour-home .latest-ranks strong {
  color: var(--tour-secondary-dark);
  font-size: 15px;
  line-height: 1.35;
}

.tour-home .tour-outline-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 2px solid var(--tour-secondary-dark);
  color: var(--tour-secondary-dark);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.tour-home .tour-outline-btn span {
  color: var(--tour-primary);
  font-size: 24px;
  line-height: .6;
}

.tour-home .tour-schedule-section {
  padding: 44px 0 74px;
}

.tour-home .tour-schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tour-home .tour-card {
  position: relative;
  display: block;
  min-height: 210px;
  padding: 22px 20px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(var(--tour-secondary-rgb),.1);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.tour-home .tour-card::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: 20px;
  width: 112px;
  height: 20px;
  border-radius: 999px;
  background: rgba(var(--tour-accent-rgb),.34);
  transform: rotate(-12deg);
}

.tour-home .tour-card.is-current {
  background:
    linear-gradient(160deg, rgba(var(--tour-primary-rgb),.14), rgba(var(--tour-accent-rgb),.14)),
    var(--white);
  border: 2px solid var(--tour-primary);
}

.tour-home .tour-card-status {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--tour-primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

.tour-home .tour-card-status.coming {
  background: rgba(var(--tour-secondary-rgb),.1);
  color: var(--tour-secondary-dark);
}

.tour-home .tour-card h3 {
  position: relative;
  color: var(--tour-secondary-dark);
  font-family: Oswald, "Noto Sans JP", sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 18px;
  overflow-wrap: anywhere;
}

.tour-home .tour-card p {
  position: relative;
  color: var(--tour-dark);
  font-size: 14px;
  font-weight: 900;
}

.tour-home .tour-card small {
  position: relative;
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

/* ---------- MOLSHIKA TOUR redesign: lower sections ---------- */
.tour-home .tour-about-section,
.tour-home .day-flow-section,
.tour-home .tour-access-section,
.tour-home .tour-faq-section,
.tour-home .guide-cta-section {
  background: #fffaf0;
}

.tour-home .tour-about-section {
  position: relative;
  padding: 70px 0 44px;
  overflow: hidden;
}

.tour-home .tour-about-section::before {
  content: "";
  position: absolute;
  left: -80px;
  top: 42px;
  width: 320px;
  height: 34px;
  border-radius: 999px;
  background: rgba(var(--tour-accent-rgb),.48);
  transform: rotate(-9deg);
}

.tour-home .about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tour-home .about-stat {
  position: relative;
  min-height: 236px;
  padding: 26px 20px 24px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,246,220,.9)),
    var(--white);
  border: 1px solid rgba(var(--tour-secondary-rgb),.1);
  overflow: hidden;
}

.tour-home .about-stat::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: 26px;
  width: 128px;
  height: 22px;
  border-radius: 999px;
  background: rgba(var(--tour-primary-rgb),.18);
  transform: rotate(-13deg);
}

.tour-home .about-stat-number {
  display: block;
  color: var(--tour-primary);
  font-family: Oswald, "Noto Sans JP", sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: .9;
  letter-spacing: .02em;
}

.tour-home .about-stat:nth-child(even) .about-stat-number {
  color: var(--tour-secondary);
}

.tour-home .about-stat h3 {
  position: relative;
  margin: 18px 0 10px;
  color: var(--tour-secondary-dark);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.tour-home .about-stat p {
  position: relative;
  color: var(--tour-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.tour-home .day-flow-section {
  padding: 44px 0 54px;
}

.tour-home .day-flow-board {
  max-width: 880px;
  margin: 0 auto;
}

.tour-home .flow-timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  padding: 22px;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid rgba(var(--tour-secondary-rgb),.1);
}

.tour-home .flow-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 11px 14px;
  border-radius: 16px;
  background: #fff6dc;
  overflow: hidden;
}

.tour-home .flow-timeline li::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: 8px;
  width: 74px;
  height: 12px;
  border-radius: 999px;
  background: rgba(var(--tour-accent-rgb),.48);
  transform: rotate(-11deg);
}

.tour-home .flow-timeline li.is-final {
  background: rgba(var(--tour-secondary-rgb),.08);
  border: 1px solid rgba(var(--tour-primary-rgb),.18);
}

.tour-home .oyama-flow li:last-child {
  grid-column: span 2;
  min-height: 72px;
  background:
    linear-gradient(120deg, rgba(var(--tour-secondary-rgb),.12), rgba(var(--tour-accent-rgb),.18)),
    rgba(var(--tour-secondary-rgb),.08);
  border-color: rgba(var(--tour-primary-rgb),.3);
}

.tour-home .flow-timeline time {
  position: relative;
  color: var(--tour-primary-dark);
  font-family: Oswald, "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.tour-home .flow-timeline span {
  position: relative;
  color: var(--tour-secondary-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.tour-home .flow-timeline small {
  display: block;
  margin-top: 4px;
  color: var(--tour-primary-dark);
  font-family: Oswald, "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.tour-home .flow-summary {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 18px 22px;
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(var(--tour-secondary-rgb),.08), rgba(var(--tour-accent-rgb),.12)),
    var(--white);
  border: 1px solid rgba(var(--tour-secondary-rgb),.1);
}

.tour-home .flow-summary p {
  color: rgba(17,17,17,.74);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.tour-home .flow-coming {
  padding: 28px;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid rgba(var(--tour-secondary-rgb),.1);
}

.tour-home .flow-coming h3 {
  color: var(--tour-secondary-dark);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 18px;
}

.tour-home .flow-coming ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.tour-home .flow-coming li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border-radius: 16px;
  background: #fff6dc;
  color: var(--tour-secondary-dark);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.55;
}

.tour-home .flow-coming li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 1.4em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tour-primary);
}

.tour-home .flow-note {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 30px 28px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 84% 16%, rgba(var(--tour-accent-rgb),.3), transparent 34%),
    linear-gradient(160deg, var(--tour-secondary-bright) 0%, var(--tour-secondary-dark) 78%);
  color: var(--white);
  overflow: hidden;
}

.tour-home .flow-note::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 38px;
  width: 150px;
  height: 22px;
  border-radius: 999px;
  background: rgba(var(--tour-accent-rgb),.7);
  transform: rotate(-12deg);
}

.tour-home .flow-note strong {
  position: relative;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3;
}

.tour-home .flow-note p {
  position: relative;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.tour-home .tour-access-section {
  padding: 52px 0;
}

.tour-home .access-layout {
  display: grid;
  grid-template-columns: .46fr .54fr;
  gap: 24px;
  align-items: stretch;
}

.tour-home .access-info {
  padding: 30px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,246,220,.9)),
    var(--white);
  border: 1px solid rgba(var(--tour-secondary-rgb),.1);
}

.tour-home .access-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--tour-accent);
  color: var(--tour-secondary-dark);
  font-family: Oswald, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.tour-home .access-info h3 {
  color: var(--tour-secondary-dark);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 12px;
}

.tour-home .access-info p {
  color: var(--tour-dark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 18px;
}

.tour-home .access-detail-list {
  list-style: none;
  display: grid;
  gap: 9px;
  margin-bottom: 24px;
}

.tour-home .access-detail-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(17,17,17,.74);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

.tour-home .access-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tour-primary);
}

.tour-home .tour-map-btn {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--tour-secondary-dark);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.tour-home .tour-map-btn span {
  color: var(--tour-accent);
}

.tour-home .tour-map-embed {
  min-height: 390px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(var(--tour-secondary-rgb),.1);
  line-height: 0;
}

.tour-home .tour-map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}

.tour-home .tour-map-placeholder {
  min-height: 390px;
  padding: 28px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 78% 22%, rgba(var(--tour-accent-rgb),.26), transparent 34%),
    linear-gradient(145deg, rgba(var(--tour-secondary-rgb),.12), rgba(var(--tour-primary-rgb),.08)),
    var(--white);
  color: var(--tour-secondary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.6;
}

.tour-home .tour-map-placeholder span {
  display: inline-block;
  margin-top: 6px;
  color: rgba(17,17,17,.68);
  font-size: 14px;
}

.tour-home .tour-faq-section {
  padding: 52px 0 42px;
}

.tour-home .tour-faq-list {
  max-width: 930px;
}

.tour-home .tour-faq-list details {
  border-top: 1px dashed rgba(var(--tour-secondary-rgb),.18);
  background: rgba(255,255,255,.72);
}

.tour-home .tour-faq-list details:last-child {
  border-bottom: 1px dashed rgba(var(--tour-secondary-rgb),.18);
}

.tour-home .tour-faq-list summary {
  position: relative;
  min-height: 68px;
  padding: 19px 58px 19px 24px;
  color: var(--tour-secondary-dark);
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  list-style: none;
}

.tour-home .tour-faq-list summary::-webkit-details-marker {
  display: none;
}

.tour-home .tour-faq-list summary::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--tour-primary);
  color: var(--white);
  font-family: Oswald, sans-serif;
  font-size: 15px;
  font-weight: 700;
  vertical-align: middle;
}

.tour-home .tour-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  color: var(--tour-primary);
  font-family: Oswald, sans-serif;
  font-size: 28px;
  font-weight: 700;
  transform: translateY(-50%);
}

.tour-home .tour-faq-list details[open] summary::after {
  content: "-";
}

.tour-home .tour-faq-list details p {
  padding: 0 24px 22px 66px;
  color: rgba(17,17,17,.72);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.tour-home .tour-faq-section .faq-contact {
  margin-top: 18px;
  color: rgba(17,17,17,.68);
  font-size: 13px;
  font-weight: 700;
}

.tour-home .tour-faq-section .faq-contact a {
  color: var(--tour-secondary-dark);
  font-weight: 900;
}

.tour-home .guide-cta-section {
  padding: 42px 0 72px;
}

.tour-home .guide-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, .38fr) 1fr;
  gap: 34px;
  align-items: center;
  padding: 28px 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 22%, rgba(var(--tour-accent-rgb),.24), transparent 34%),
    linear-gradient(120deg, var(--tour-support-dark) 0%, var(--tour-support) 44%, var(--tour-secondary-bright) 100%);
  color: var(--white);
  overflow: hidden;
}

.tour-home .guide-cta::before,
.tour-home .guide-cta::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.tour-home .guide-cta::before {
  left: -54px;
  bottom: 38px;
  width: 300px;
  height: 34px;
  background: rgba(var(--tour-accent-rgb),.55);
  transform: rotate(-10deg);
}

.tour-home .guide-cta::after {
  right: 34px;
  top: 34px;
  width: 142px;
  border-top: 4px dashed rgba(255,255,255,.8);
  transform: rotate(-7deg);
}

.tour-home .guide-cta-photo,
.tour-home .guide-cta-body,
.tour-home .guide-cta-character {
  position: relative;
}

.tour-home .guide-cta-photo img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center 52%;
  border: 6px solid var(--white);
  border-radius: 24px;
  transform: rotate(-4deg);
}

.tour-home .guide-cta-body p {
  color: var(--tour-accent);
  font-family: Oswald, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
}

.tour-home .guide-cta-body h2 {
  margin: 5px 0 12px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
}

.tour-home .guide-cta-body span {
  display: block;
  max-width: 690px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.9);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.tour-home .guide-cta-body a {
  width: min(100%, 310px);
  min-height: 56px;
  border-radius: 999px;
  background: var(--white);
  color: var(--tour-support);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
}

.tour-home .guide-cta-body b {
  color: var(--tour-secondary-dark);
  font-size: 28px;
  line-height: .6;
}

.tour-home .guide-cta-character {
  align-self: end;
}

.tour-home .guide-cta-character img {
  width: 142px;
  height: auto;
  margin-left: auto;
}

.tour-home .tour-footer {
  background:
    radial-gradient(circle at 18% 12%, rgba(var(--tour-primary-rgb),.16), transparent 32%),
    #0b1730;
  color: rgba(255,255,255,.82);
  padding: 54px 0 26px;
}

.tour-home .tour-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr .9fr 1fr;
  gap: 28px;
  align-items: start;
}

.tour-home .footer-tour-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.tour-home .tour-footer .brand-mark {
  width: 48px;
  height: 56px;
}

.tour-home .footer-tour-logo strong {
  color: var(--white);
  font-family: Oswald, "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: .92;
}

.tour-home .tour-footer-brand p,
.tour-home .tour-footer-cta p {
  margin-bottom: 16px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.tour-home .footer-sns-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: Oswald, sans-serif;
  font-weight: 700;
}

.tour-home .tour-footer h3 {
  margin-bottom: 14px;
  color: var(--tour-accent);
  font-family: Oswald, "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
}

.tour-home .tour-footer-menu,
.tour-home .tour-footer-events {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.tour-home .tour-footer-menu a {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.tour-home .soon-badge {
  display: inline-block;
  font-family: Oswald, sans-serif;
  font-style: normal;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: 1px 9px;
  margin-left: 6px;
  vertical-align: 1px;
}

.tour-home .tour-footer-events a {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.tour-home .tour-footer-events a:hover {
  color: #fff;
  text-decoration: underline;
}

.tour-home .tour-footer-events span,
.tour-home .footer-contact-link {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.tour-home .tour-footer-menu a:hover,
.tour-home .footer-contact-link:hover {
  color: var(--tour-accent);
}

.tour-home .tour-footer-cta .footer-entry-link {
  min-height: 52px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--tour-accent);
  color: var(--tour-secondary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
}

.tour-home .tour-footer-cta .footer-entry-link span {
  color: var(--tour-primary-dark);
  font-size: 28px;
  line-height: .6;
}

.tour-home .footer-contact-link {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tour-home .footer-contact-link span {
  color: var(--tour-accent);
  font-size: 22px;
  line-height: .6;
}

.tour-home .tour-copyright {
  max-width: 1080px;
  margin: 38px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.48);
  font-size: 12px;
  text-align: center;
}

/* ---------- セクション共通 ---------- */
.section { padding: 68px 0; }
.section-title {
  font-size: 25px; font-weight: 900; color: var(--navy);
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.section-title.center { justify-content: center; text-align: center; margin-bottom: 44px; }
.title-svg { width: 26px; height: 26px; color: var(--gold-dark); flex-shrink: 0; }

/* ---------- 直近結果 ---------- */
.section-results { background: var(--beige); }
.results-grid {
  display: grid; grid-template-columns: .95fr 1.15fr .9fr;
  gap: 40px; align-items: center;
}
.results-intro p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.photo-placeholder {
  background: linear-gradient(150deg, #d8d2c2, #c4bca6);
  border-radius: var(--radius);
  min-height: 210px;
  display: flex; align-items: center; justify-content: center;
  color: #857e6b; font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow);
}
.results-photo img {
  width: 100%; height: 235px; object-fit: cover; object-position: center 30%;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.rank-row {
  display: flex; align-items: center; gap: 16px;
  padding: 13px 0;
}
.rank-row + .rank-row { border-top: 1px solid rgba(22,35,58,.08); }
.medal {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  background: var(--white);
  border: 2px solid var(--gold);
  box-shadow: inset 0 0 0 3px var(--white), inset 0 0 0 4px rgba(193,154,63,.45);
  color: var(--gold-dark);
}
.medal-2 { border-color: #9aa2ad; color: #6d7681; box-shadow: inset 0 0 0 3px var(--white), inset 0 0 0 4px rgba(154,162,173,.45); }
.medal-3 { border-color: #ad7d52; color: #96683f; box-shadow: inset 0 0 0 3px var(--white), inset 0 0 0 4px rgba(173,125,82,.45); }
.rank-name { font-size: 19px; font-weight: 700; color: var(--navy); }

/* ---------- 今後の予定 ---------- */
.schedule-grid { display: grid; grid-template-columns: 230px 1fr; gap: 40px; align-items: start; }
.schedule-heading { margin-top: 30px; }
.schedule-flex { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; align-items: stretch; }
.schedule-featured {
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start;
}
.schedule-card.schedule-featured h3 { font-size: 23px; }
.schedule-table {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 22px 28px;
}
.schedule-table-title {
  font-size: 13px; font-weight: 700; color: var(--text-muted);
  letter-spacing: .08em; margin-bottom: 8px;
}
.schedule-row {
  display: flex; gap: 18px; align-items: baseline;
  padding: 10px 0; font-size: 14px;
}
.schedule-row + .schedule-row { border-top: 1px dashed var(--border); }
.schedule-row time {
  font-family: Oswald, "Noto Sans JP", sans-serif; font-weight: 500;
  color: var(--gold-dark); min-width: 96px; white-space: nowrap;
}
.schedule-row span { font-weight: 700; color: var(--navy); }
.schedule-card {
  background: var(--white); border-radius: var(--radius);
  padding: 26px 28px; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.card-deco {
  position: absolute; right: -10px; top: 0; height: 100%; width: auto;
  opacity: .16; pointer-events: none;
}
.schedule-tag {
  font-size: 12px; font-weight: 700; color: var(--gold-dark);
  letter-spacing: .1em;
}
.schedule-card h3 { color: var(--navy); font-size: 20px; margin: 8px 0 10px; line-height: 1.4; position: relative; }
.schedule-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; position: relative; }
.pill {
  display: inline-block; font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 999px; position: relative;
  background: var(--white);
}
.pill-gold { border: 1.5px solid var(--gold); color: var(--gold-dark); }
.pill-muted { border: 1.5px solid #c8c3b5; color: var(--text-muted); }
.schedule-note {
  margin-top: 16px; text-align: right;
  font-size: 12px; color: var(--text-muted);
}
.arrow { font-size: 17px; }

/* ---------- 特徴 ---------- */
.section-features { background: var(--cream); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature { text-align: center; padding: 0 8px; }
.feature-icon {
  width: 66px; height: 66px; margin: 0 auto 16px;
  border: 1.8px solid var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.feature-icon svg { width: 30px; height: 30px; }
.feature h3 { font-size: 16px; color: var(--navy); margin-bottom: 10px; }
.feature p { font-size: 13px; color: var(--text-muted); }

/* ---------- 当日の流れ + アクセス ---------- */
.section-day { background: var(--cream); padding-top: 0; }
.day-card {
  background: var(--beige); border-radius: var(--radius);
  display: grid; grid-template-columns: 1fr 1.1fr;
}
.timeline-box { padding: 36px 40px; border-right: 1px solid rgba(22,35,58,.08); }
.access-box { padding: 36px 40px; }
.box-title { font-size: 20px; color: var(--navy); margin-bottom: 20px; }
.box-title small { font-size: 13px; font-weight: 400; color: var(--text-muted); }
.timeline {
  list-style: none;
  border-left: 2px solid var(--border);
  margin-left: 8px; padding-left: 20px;
}
.timeline li {
  display: flex; gap: 18px; padding: 7px 0;
  position: relative; align-items: baseline;
}
.timeline li::before {
  content: ""; position: absolute; left: -26px; top: 50%;
  width: 8px; height: 8px; border: 2px solid var(--navy);
  border-radius: 50%; background: var(--white);
  transform: translateY(-50%);
}
.timeline time { font-family: Oswald, sans-serif; font-weight: 500; color: var(--navy); min-width: 52px; }
.note { font-size: 12px; color: var(--text-muted); margin-top: 16px; }

.access-place { color: var(--navy); font-size: 18px; margin-bottom: 8px; }
.access-box p { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; }
.map-embed {
  margin-top: 22px; border-radius: var(--radius);
  overflow: hidden; line-height: 0;
  box-shadow: var(--shadow);
}

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 44px; align-items: start; }
.faq-list details {
  background: var(--white); border-radius: 10px;
  box-shadow: var(--shadow); margin-bottom: 12px;
  overflow: hidden;
}
.faq-list summary {
  padding: 16px 20px; cursor: pointer; font-weight: 700; font-size: 15px;
  color: var(--navy); list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "›"; font-size: 22px; color: var(--gold-dark);
  transition: transform .2s; line-height: 1;
}
.faq-list details[open] summary::after { transform: rotate(90deg); }
.faq-list details p { padding: 0 20px 18px; font-size: 14px; color: var(--text-muted); }
/* 最初の質問の行と天面を揃えるため、タイトルぶん下げる */
.faq-photo { margin-top: 59px; }
.faq-photo img {
  width: 100%; height: 260px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.faq-contact { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
.faq-contact a { color: var(--navy); font-weight: 700; }
.faq-contact a:hover { color: var(--gold-dark); }

/* ---------- お知らせ ---------- */
.section-news { padding: 32px 0; }
.news-band {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 28px;
  display: grid; grid-template-columns: 110px 1fr; gap: 18px; align-items: start;
}
.news-heading { font-size: 15px; font-weight: 900; color: var(--navy); padding-top: 8px; }
.news-item {
  display: flex; gap: 16px; align-items: baseline;
  padding: 8px 0; font-size: 13px;
  color: var(--text); text-decoration: none;
}
.news-item + .news-item { border-top: 1px dashed var(--border); }
.news-item time { font-family: Oswald, sans-serif; color: var(--gold-dark); white-space: nowrap; }
a.news-item:hover span { color: var(--gold-dark); }

/* ---------- アクセス補足 ---------- */
.access-notes { list-style: none; margin: -6px 0 18px; }
.access-notes li {
  font-size: 12px; color: var(--text-muted);
  padding: 2px 0 2px 16px; position: relative;
}
.access-notes li::before { content: "・"; position: absolute; left: 0; }

/* ---------- お問い合わせページ ---------- */
.contact-lead { font-size: 14px; margin-bottom: 28px; max-width: 720px; }
.contact-lead a { color: var(--navy); font-weight: 700; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 860px; }
.contact-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 30px 32px; text-align: center;
}
.contact-icon {
  width: 60px; height: 60px; margin: 0 auto 14px;
  border: 1.8px solid var(--navy); border-radius: 50%; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 28px; height: 28px; }
.contact-card h2 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.contact-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.contact-addr { font-family: Oswald, "Noto Sans JP", sans-serif; margin-top: 12px; font-size: 13px !important; }
@media (max-width: 900px) {
  .news-band { grid-template-columns: 1fr; gap: 6px; padding: 18px 20px; }
  .news-heading { padding-top: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- 大会詳細ページ ---------- */
.btn-sub { display: block; font-size: 11px; font-weight: 500; margin-top: 2px; opacity: .8; }
.schedule-card-link { text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s; }
.schedule-card-link:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(22,35,58,.14); }

.detail-hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 44px; align-items: center;
}
.detail-hero h1 { font-size: 40px; font-weight: 900; line-height: 1.3; margin-bottom: 18px; }
.detail-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.detail-badge {
  font-size: 13px; font-weight: 700;
  border: 1.5px solid rgba(255,255,255,.4); border-radius: 999px;
  padding: 6px 16px; color: rgba(255,255,255,.9);
}
.detail-thumb img {
  width: 100%; border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.info-table { display: flex; flex-direction: column; }
.info-table > div {
  display: grid; grid-template-columns: 160px 1fr;
  padding: 14px 8px; border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.info-table > div:first-child { border-top: 2px solid var(--navy); }
.info-table dt { font-weight: 700; color: var(--navy); }
.info-table dd small { color: var(--text-muted); }
.info-table a { color: var(--navy); font-weight: 700; }

.section-entry { padding-top: 0; }
.entry-box {
  background: var(--navy); color: var(--white);
  border-radius: var(--radius); padding: 36px 40px;
}
.entry-box .section-title { color: var(--white); }
.entry-box > .container, .entry-box p { font-size: 14px; color: rgba(255,255,255,.85); margin-bottom: 14px; }
.entry-notes { list-style: none; margin-bottom: 24px; }
.entry-notes li {
  font-size: 14px; color: rgba(255,255,255,.85);
  padding: 6px 0 6px 22px; position: relative;
}
.entry-notes li::before {
  content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700;
}
.entry-notes strong { color: var(--gold); }
.entry-notes a { color: var(--gold); }

.guide-lead { font-size: 15px; max-width: 760px; margin-bottom: 28px; }
.rule-fig {
  width: 100%; height: auto; display: block;
  background: var(--cream); border-radius: 10px;
  margin: 12px 0 14px;
  font-family: "Noto Sans JP", sans-serif;
}
.section-format { padding-top: 0; }
.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 18px; }
.format-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px 26px; box-shadow: var(--shadow);
}
.format-step { font-family: Oswald, sans-serif; font-size: 12px; letter-spacing: .15em; color: var(--gold-dark); }
.format-card h3 { font-size: 17px; color: var(--navy); margin: 6px 0 10px; }
.format-card p { font-size: 13px; color: var(--text-muted); }
.format-note {
  background: var(--beige); border-radius: var(--radius);
  padding: 20px 26px;
}
.format-note h3 { font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.format-note p { font-size: 13px; color: var(--text-muted); }

.section-topics { padding-top: 0; }
.topic-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.topic-list li {
  background: var(--white); border-radius: 10px; box-shadow: var(--shadow);
  padding: 16px 20px 16px 46px; font-size: 14px; font-weight: 500;
  position: relative; color: var(--navy);
}
.topic-list li::before {
  content: "★"; position: absolute; left: 18px; color: var(--gold);
}
.section-policy { padding-top: 0; }
.policy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.policy-card {
  background: var(--white); border-radius: var(--radius);
  padding: 26px 28px; box-shadow: var(--shadow);
}
.policy-card h3 { font-size: 16px; color: var(--navy); margin-bottom: 10px; }
.policy-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.policy-card ol { padding-left: 20px; font-size: 13px; color: var(--text-muted); }
.policy-card ol li { padding: 2px 0; }

@media (max-width: 900px) {
  .detail-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .detail-hero h1 { font-size: 32px; }
  .format-grid { grid-template-columns: 1fr; }
  .topic-list, .policy-grid { grid-template-columns: 1fr; }
  .info-table > div { grid-template-columns: 1fr; gap: 2px; }
  .entry-box { padding: 28px 24px; }
}

/* ---------- OYAMA OPEN detail page ---------- */
.tour-home.detail-page {
  background: #fffaf0;
}

.tour-home.detail-page .section {
  background: #fffaf0;
  padding: 56px 0;
}

.tour-home.detail-page .section-title {
  color: var(--tour-secondary-dark);
  font-family: Oswald, "Noto Sans JP", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  margin-bottom: 24px;
}

.tour-home .detail-tour-hero {
  position: relative;
  padding: 72px 0 58px;
  background:
    radial-gradient(circle at 84% 18%, rgba(var(--tour-accent-rgb),.28), transparent 32%),
    linear-gradient(135deg, var(--tour-primary-dark) 0%, var(--tour-primary) 52%, var(--tour-secondary-dark) 100%);
  color: var(--white);
  overflow: hidden;
}

.tour-home .detail-tour-hero::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: 42px;
  width: 420px;
  height: 42px;
  border-radius: 999px;
  background: rgba(var(--tour-accent-rgb),.5);
  transform: rotate(-9deg);
}

.tour-home .detail-tour-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 36px;
  align-items: center;
}

.tour-home .detail-tour-copy h1 {
  margin: 8px 0 18px;
  color: var(--white);
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.tour-home .detail-tour-copy > p {
  max-width: 620px;
  color: rgba(255,255,255,.9);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
}

.tour-home .detail-tour-panel {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  color: var(--tour-dark);
  border: 1px solid rgba(var(--tour-accent-rgb),.42);
}

.tour-home .detail-tour-panel h2 {
  margin: 14px 0 10px;
  color: var(--tour-secondary-dark);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.3;
}

.tour-home .detail-tour-panel p {
  color: rgba(17,17,17,.72);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.tour-home.detail-page .detail-badge {
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(255,255,255,.14);
  color: var(--white);
}

.tour-home.detail-page .info-table {
  border-radius: 26px;
  background: var(--white);
  border: 1px solid rgba(var(--tour-secondary-rgb),.1);
  overflow: hidden;
}

.tour-home.detail-page .info-table > div {
  grid-template-columns: 190px 1fr;
  padding: 18px 24px;
}

.tour-home.detail-page .info-table > div:first-child {
  border-top: 0;
}

.tour-home.detail-page .info-table dt {
  color: var(--tour-secondary-dark);
}

.tour-home.detail-page .info-table dd {
  color: var(--tour-dark);
  font-weight: 700;
}

.tour-home.detail-page .format-card,
.tour-home.detail-page .format-note,
.tour-home.detail-page .policy-card {
  border: 1px solid rgba(var(--tour-secondary-rgb),.1);
  box-shadow: none;
}

.tour-home.detail-page .format-step {
  color: var(--tour-primary-dark);
}

.tour-home.detail-page .format-card h3,
.tour-home.detail-page .format-note h3,
.tour-home.detail-page .policy-card h3 {
  color: var(--tour-secondary-dark);
}

.tour-home.detail-page .detail-flow-board {
  max-width: 960px;
}

.tour-home.detail-page .section-access .access-layout {
  margin: 0;
}

@media (max-width: 900px) {
  .tour-home .detail-tour-hero {
    padding: 46px 0 42px;
  }

  .tour-home .detail-tour-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tour-home.detail-page .info-table > div {
    grid-template-columns: 1fr;
    padding: 16px 18px;
  }
}

/* ---------- プライバシーポリシー ---------- */
.legal-body { max-width: 760px; }
.legal-body p, .legal-body li { font-size: 14px; color: var(--text); }
.legal-body h2 {
  font-size: 17px; color: var(--navy);
  margin: 32px 0 10px; padding-left: 12px;
  border-left: 4px solid var(--gold);
}
.legal-body ul { padding-left: 22px; }
.legal-body li { padding: 2px 0; }
.legal-body a { color: var(--navy); font-weight: 700; }
.legal-date { margin-top: 36px; font-size: 13px; color: var(--text-muted); }

/* ---------- 過去大会結果ページ ---------- */
.global-nav a.active { color: var(--gold); }

.tour-home.results-page {
  background: var(--tour-cream);
}

.tour-home .results-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(var(--tour-primary-rgb), .96) 0%, var(--tour-primary-deep) 58%, rgba(var(--tour-secondary-rgb), .92) 100%);
  color: var(--white);
  padding: 64px 0 58px;
}

.tour-home .results-hero::before,
.tour-home .results-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.tour-home .results-hero::before {
  width: 280px;
  height: 56px;
  right: 8%;
  top: 26px;
  border-radius: 999px;
  background: rgba(var(--tour-accent-rgb), .78);
  transform: rotate(-10deg);
}

.tour-home .results-hero::after {
  width: 42%;
  height: 100%;
  right: -12%;
  top: 0;
  background: rgba(255, 255, 255, .12);
  clip-path: polygon(22% 0, 100% 0, 86% 100%, 0 100%);
}

.tour-home .results-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: center;
}

.tour-home .results-hero h1 {
  font-family: Oswald, "Noto Sans JP", sans-serif;
  font-size: clamp(58px, 8vw, 112px);
  line-height: .9;
  letter-spacing: 0;
  margin: 8px 0 12px;
  text-shadow: 5px 6px 0 rgba(0, 0, 0, .14);
}

.tour-home .results-hero p {
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
  font-weight: 900;
}

.tour-home .results-event-card {
  background: var(--white);
  color: var(--tour-dark);
  border: 3px solid var(--tour-accent);
  border-radius: 28px;
  padding: 24px 26px;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, .12);
}

.tour-home .results-event-card span,
.tour-home .results-event-card p {
  display: block;
  color: var(--tour-primary-deep);
  font-size: 15px;
  font-weight: 900;
}

.tour-home .results-event-card strong {
  display: block;
  margin: 10px 0 6px;
  color: var(--tour-secondary);
  font-family: Oswald, "Noto Sans JP", sans-serif;
  font-size: 42px;
  line-height: .95;
}

.tour-home .results-event-card em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  min-width: 44px;
  height: 34px;
  border-radius: 999px;
  background: var(--tour-accent);
  color: var(--tour-dark);
  font-size: 18px;
  font-style: normal;
}

.tour-home .results-empty-section {
  background:
    radial-gradient(circle at 16% 24%, rgba(var(--tour-support-rgb), .22), transparent 26%),
    linear-gradient(180deg, var(--tour-cream) 0%, var(--white) 100%);
  padding: 58px 0 78px;
}

.tour-home .results-empty-card {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 3px solid rgba(var(--tour-primary-rgb), .18);
  border-radius: 30px;
  padding: 42px 46px;
  text-align: center;
  box-shadow: 0 18px 0 rgba(var(--tour-primary-rgb), .08);
}

.tour-home .results-empty-card::before {
  content: "";
  position: absolute;
  left: -72px;
  top: 24px;
  width: 230px;
  height: 30px;
  border-radius: 999px;
  background: rgba(var(--tour-accent-rgb), .88);
  transform: rotate(-10deg);
}

.tour-home .results-empty-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-bottom: 18px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--tour-primary);
  color: var(--white);
  font-family: Oswald, "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
}

.tour-home .results-empty-card h2 {
  color: var(--tour-primary-deep);
  font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.25;
  margin-bottom: 14px;
}

.tour-home .results-empty-card > p:not(.results-empty-kicker) {
  color: var(--tour-dark);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.9;
  margin-bottom: 26px;
}

.tour-home .results-archive-panel[hidden] {
  display: none;
}

.page-hero {
  background:
    radial-gradient(ellipse at 80% 30%, rgba(193,154,63,.15), transparent 55%),
    linear-gradient(120deg, #101a2c 0%, var(--navy) 55%, #1d2f4e 100%);
  color: var(--white);
  padding: 56px 0 60px;
}
.page-hero { padding: 44px 0 48px; }
.page-hero h1 { font-size: 38px; font-weight: 900; margin-bottom: 6px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 14px; }

.section-archive { padding-top: 32px; padding-bottom: 48px; }
.filter-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 26px;
}
.filter-tabs { display: flex; gap: 10px; }
.filter-tab {
  border: none; cursor: pointer;
  background: var(--white); color: var(--navy);
  font-family: inherit; font-size: 13px; font-weight: 700;
  padding: 10px 22px; border-radius: 999px;
  box-shadow: var(--shadow);
}
.filter-tab.is-active { background: var(--navy); color: var(--white); }
.sort-select {
  font-family: inherit; font-size: 13px; font-weight: 500; color: var(--navy);
  padding: 10px 16px; border-radius: 999px;
  border: none; background: var(--white); box-shadow: var(--shadow);
  cursor: pointer;
}

.result-list { display: flex; flex-direction: column; gap: 12px; }
.result-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 100px 1.15fr 1.5fr 210px;
  gap: 18px; align-items: center;
  padding: 16px 20px;
}
.rc-date { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.rc-no {
  font-size: 11px; font-weight: 700; color: var(--gold-dark);
  border: 1.5px solid var(--gold); border-radius: 5px;
  padding: 2px 10px; margin-bottom: 6px;
}
.rc-year { font-family: Oswald, sans-serif; font-size: 13px; color: var(--text-muted); }
.rc-day { font-family: Oswald, sans-serif; font-size: 27px; font-weight: 600; color: var(--navy); line-height: 1.1; }
.rc-wd { font-size: 11px; color: var(--text-muted); }
.rc-type {
  margin-top: 8px; font-size: 11px; font-weight: 700;
  background: var(--navy); color: var(--white);
  border-radius: 5px; padding: 3px 12px;
}
.rc-main h3 { font-size: 18px; color: var(--navy); margin-bottom: 6px; line-height: 1.4; }
.rc-meta {
  font-size: 12px; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}
.rc-meta-icon { width: 15px; height: 15px; flex-shrink: 0; }
.rc-ranks { display: flex; flex-direction: column; gap: 5px; }
.rank { display: flex; align-items: baseline; gap: 12px; }
.rank-label {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; white-space: nowrap;
  min-width: 74px;
}
.rank-cup { width: 16px; height: 16px; flex-shrink: 0; align-self: center; }
.rank-1 .rank-label { color: var(--gold-dark); }
.rank-2 .rank-label { color: #8a93a0; }
.rank-3 .rank-label { color: #ad7d52; }
.rank-name { font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.4; }
.rc-photo img, .rc-nophoto {
  width: 100%; height: 128px; object-fit: cover;
  border-radius: 10px;
}
.rc-nophoto {
  background: linear-gradient(150deg, #e3ddcf, #d2cab6);
  display: flex; align-items: center; justify-content: center;
  color: #a29a85; font-family: Oswald, sans-serif; font-size: 12px; letter-spacing: .1em;
}

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.page-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: none; cursor: pointer;
  background: var(--white); color: var(--navy);
  font-family: inherit; font-size: 14px; font-weight: 700;
  box-shadow: var(--shadow);
}
.page-btn.is-active { background: var(--navy); color: var(--white); }

.section-history { padding-top: 0; }
.history-card {
  background: var(--beige); border-radius: var(--radius);
  padding: 32px 36px;
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 28px; align-items: center;
}
.history-intro { display: flex; gap: 16px; align-items: flex-start; }
.history-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--navy); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.history-icon svg { width: 26px; height: 26px; }
.history-intro h2 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.history-intro p { font-size: 12px; color: var(--text-muted); }
.history-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat {
  background: var(--white); border-radius: 12px;
  padding: 18px 12px; text-align: center;
  display: flex; flex-direction: column; gap: 6px;
}
.stat-label { font-size: 11px; color: var(--text-muted); }
.stat-value { font-family: Oswald, "Noto Sans JP", sans-serif; font-size: 26px; font-weight: 700; color: var(--navy); line-height: 1.1; }
.stat-value small { font-size: 12px; font-weight: 700; margin-left: 2px; }

@media (max-width: 900px) {
  .tour-home .results-hero {
    padding: 42px 0 38px;
  }

  .tour-home .results-hero::before {
    width: 180px;
    height: 34px;
    right: -44px;
    top: 18px;
  }

  .tour-home .results-hero::after {
    width: 70%;
    right: -38%;
  }

  .tour-home .results-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tour-home .results-hero h1 {
    font-size: clamp(54px, 18vw, 76px);
  }

  .tour-home .results-hero p {
    font-size: 15px;
  }

  .tour-home .results-event-card {
    border-radius: 22px;
    padding: 18px 20px;
    box-shadow: 7px 7px 0 rgba(0, 0, 0, .12);
  }

  .tour-home .results-event-card strong {
    font-size: 34px;
  }

  .tour-home .results-empty-section {
    padding: 34px 0 54px;
  }

  .tour-home .results-empty-card {
    border-radius: 24px;
    padding: 30px 20px;
    box-shadow: 0 12px 0 rgba(var(--tour-primary-rgb), .08);
  }

  .tour-home .results-empty-card h2 {
    font-size: 24px;
  }

  .tour-home .results-empty-card > p:not(.results-empty-kicker) {
    font-size: 15px;
    line-height: 1.75;
  }

  .result-card { grid-template-columns: 1fr; gap: 14px; padding: 20px; }
  .rc-date { flex-direction: row; align-items: center; gap: 10px; flex-wrap: wrap; }
  .rc-no { margin-bottom: 0; }
  .rc-type { margin-top: 0; }
  .rc-photo img, .rc-nophoto { height: 170px; }
  .history-card { grid-template-columns: 1fr; }
  .history-stats { grid-template-columns: 1fr 1fr; }
}

/* ---------- フッター ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.85); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr 1.1fr; gap: 44px; }
.footer-heading { color: var(--gold); font-size: 15px; margin-bottom: 16px; }
.footer-about p, .footer-contact p { font-size: 13px; margin-bottom: 20px; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.footer-brand small { color: rgba(255,255,255,.6); }
.footer-sns { display: flex; gap: 14px; margin-top: 18px; }
.footer-sns a { color: rgba(255,255,255,.75); }
.footer-sns a:hover { color: var(--gold); }
.footer-sns svg { width: 20px; height: 20px; }
.footer-menu { display: flex; flex-direction: column; }
.footer-menu a {
  color: rgba(255,255,255,.8); text-decoration: none;
  font-size: 13px; padding: 4px 0;
}
.footer-menu a:hover { color: var(--gold); }
.copyright { text-align: center; font-size: 12px; color: rgba(255,255,255,.5); margin-top: 44px; }

/* ---------- レスポンシブ ---------- */
@media (max-width: 900px) {
  .hero-photo { display: none; }
  /* 写真がある場合はモバイルでもヒーロー上部にバナー表示 */
  .hero-photo.has-photo {
    display: block; position: static;
    width: 100%; height: 230px;
  }
  .hero-photo.has-photo::after {
    background: linear-gradient(180deg, rgba(22,35,58,0) 55%, var(--navy) 100%);
  }
  .hero-inner { padding: 48px 24px 56px; }
  .hero-content { max-width: none; }
  .hero-title { font-size: 38px; }
  .results-grid, .faq-grid { grid-template-columns: 1fr; }
  .schedule-flex { grid-template-columns: 1fr; }
  .faq-photo { margin-top: 0; }
  .schedule-grid { grid-template-columns: 1fr; gap: 8px; }
  .schedule-heading { margin-top: 0; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .day-card { grid-template-columns: 1fr; }
  .timeline-box { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .global-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-light);
    flex-direction: column; gap: 0; padding: 8px 0;
  }
  .global-nav.open { display: flex; }
  .global-nav a { padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .header-cta { margin-left: auto; }
  .nav-toggle { display: block; }

  .tour-home .tour-feature-strip {
    padding: 20px 0 10px;
  }

  .tour-home .tour-feature-panel {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 14px;
    border-radius: 30px;
  }

  .tour-home .tour-feature-item {
    grid-template-columns: 48px 1fr;
    min-height: 0;
    padding: 14px 4px;
  }

  .tour-home .tour-feature-item + .tour-feature-item {
    border-left: none;
    border-top: 1px dashed rgba(var(--tour-secondary-rgb),.16);
  }

  .tour-home .tour-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .tour-home .tour-feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .tour-home .tour-feature-item h2 {
    font-size: 17px;
    margin-bottom: 2px;
  }

  .tour-home .tour-feature-item p {
    font-size: 12px;
    line-height: 1.45;
  }

  .tour-home .next-open-section {
    padding: 24px 0 18px;
  }

  .tour-home .tour-section-head {
    margin-bottom: 18px;
  }

  .tour-home .tour-section-head h2 {
    font-size: clamp(36px, 12vw, 48px);
  }

  .tour-home .tour-section-head::after {
    display: none;
  }

  .tour-home .next-open {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    border-radius: 24px;
  }

  .tour-home .next-open-photo {
    min-height: 0;
    height: 162px;
    border-radius: 18px;
  }

  .tour-home .next-open-body {
    padding: 0 2px;
  }

  .tour-home .next-open-label {
    display: none;
  }

  .tour-home .next-open-body h3 {
    margin-bottom: 7px;
  }

  .tour-home .next-open-body h3 .date-pc {
    display: none;
  }

  .tour-home .next-open-body h3 .date-sp {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--tour-secondary-dark);
    font-size: 38px;
    line-height: .9;
  }

  .tour-home .next-open-body h3 em {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--tour-accent);
    color: var(--tour-secondary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
  }

  .tour-home .next-open-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }

  .tour-home .next-open-specs div {
    padding: 6px 10px;
    border-radius: 999px;
  }

  .tour-home .next-open-specs dt {
    display: none;
  }

  .tour-home .next-open-specs dd {
    font-size: 11px;
    line-height: 1.2;
  }

  .tour-home .next-open-specs div:first-child {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .tour-home .next-open-specs div:first-child dd {
    color: var(--tour-secondary-dark);
    font-size: 15px;
  }

  .tour-home .next-open-specs div:nth-child(4) {
    width: 100%;
    border-radius: 12px;
    background: rgba(var(--tour-secondary-rgb),.06);
  }

  .tour-home .next-open-entry {
    min-height: 0;
    padding: 13px 14px;
    border-radius: 20px;
  }

  .tour-home .next-open-entry span {
    margin-bottom: 7px;
    padding: 5px 10px;
    font-size: 11px;
  }

  .tour-home .next-open-entry p {
    margin-bottom: 9px;
    font-size: 11px;
  }

  .tour-home .next-open-entry a {
    min-height: 48px;
  }

  .tour-home .tour-news-result {
    padding: 24px 0 32px;
  }

  .tour-home .news-result-grid {
    max-width: none;
  }

  .tour-home .tour-info-card {
    min-height: 0;
    padding: 20px;
    border-radius: 22px;
  }

  .tour-home .latest-result-layout {
    grid-template-columns: 160px 1fr;
    gap: 16px;
  }

  .tour-home .latest-result-photo img {
    height: 205px;
  }

  .tour-home .tour-schedule-section {
    padding: 30px 0 48px;
  }

  .tour-home .tour-schedule-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .tour-home .tour-card {
    min-height: 170px;
    padding: 16px 14px;
    border-radius: 18px;
  }

  .tour-home .tour-card h3 {
    font-size: 21px;
    line-height: 1.05;
  }

  .tour-home .tour-card-status {
    margin-bottom: 14px;
    padding: 5px 9px;
    font-size: 10px;
  }
}

@media (max-width: 520px) {
  .hero-specs { flex-direction: column; gap: 0; }
  .spec {
    flex-direction: row; align-items: center; justify-content: space-between;
    border-right: none; border-bottom: 1px solid rgba(255,255,255,.12);
    margin-right: 0; padding: 12px 0;
  }
  .spec:last-child { border-bottom: none; }
  .spec-value { text-align: right; }
  .features-grid { grid-template-columns: 1fr; }
  .schedule-flex { grid-template-columns: 1fr; }
  .timeline-box, .access-box { padding: 28px 24px; }
  .header-cta { font-size: 11px; padding: 8px 12px; }

  .tour-home .tour-feature-panel {
    margin-inline: -2px;
  }

  .tour-home .tour-section-kicker {
    font-size: 11px;
  }

  .tour-home .tour-schedule-grid {
    grid-template-columns: 1fr;
  }

  .tour-home .next-open-photo {
    height: 150px;
  }

  .tour-home .next-open-body h3 {
    font-size: 30px;
  }

  .tour-home .next-open-specs {
    grid-template-columns: none;
  }

  .tour-home .next-open-specs div {
    display: inline-flex;
    gap: 8px;
    align-items: baseline;
  }

  .tour-home .tour-news-result .news-item {
    grid-template-columns: 78px 1fr;
    gap: 10px;
    padding: 13px 0;
  }

  .tour-home .tour-news-result .news-item time {
    font-size: 13px;
  }

  .tour-home .tour-news-result .news-item span {
    padding-right: 34px;
    font-size: 12px;
  }

  .tour-home .latest-result-layout {
    grid-template-columns: 1fr;
  }

  .tour-home .latest-result-photo img {
    height: 170px;
  }

  .tour-home .latest-ranks div {
    grid-template-columns: 64px 1fr;
  }

  .tour-home .tour-card {
    min-height: 158px;
  }

  .tour-home .tour-card h3 {
    font-size: 16px;
    line-height: 1.08;
    word-break: break-all;
  }

  .tour-home .tour-card p {
    font-size: 12px;
  }

  .tour-home .tour-card small {
    font-size: 11px;
  }
}

@media (max-width: 980px) {
  .tour-home .header-inner {
    min-height: 78px;
    padding: 12px 20px;
    flex-wrap: nowrap;
  }

  .tour-home .brand {
    min-width: 0;
    flex: 0 1 auto;
  }

  .tour-home .brand-title {
    font-size: 25px;
  }

  .tour-home .brand-sub {
    display: none;
  }

  .tour-home .global-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 16px;
    border-top: 1px solid rgba(17,17,17,.08);
  }

  .tour-home .global-nav.open {
    display: flex;
  }

  .tour-home .global-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(17,17,17,.08);
  }

  .tour-home .header-cta {
    margin-left: auto;
    flex-shrink: 0;
  }

  .tour-home .nav-toggle {
    display: block;
    flex-shrink: 0;
  }
}

@media (max-width: 900px) {
  .tour-home .hero {
    min-height: 880px;
    background:
      linear-gradient(165deg, rgba(var(--tour-secondary-rgb),.85) 0 38%, transparent 38%),
      linear-gradient(155deg, var(--tour-primary) 0 72%, var(--tour-secondary) 72% 100%);
  }

  .tour-home .hero::before {
    inset: 0 -30% 32% -25%;
  }

  .tour-home .hero::after {
    left: auto;
    right: -28%;
    top: 16%;
    width: 66%;
    height: 42%;
    bottom: auto;
    border-radius: 50%;
    transform: rotate(-12deg);
    opacity: .8;
  }

  .tour-home .hero-visual {
    display: block;
    position: absolute;
    top: 285px;
    left: 20px;
    right: 20px;
    width: auto;
    height: 220px;
    border-radius: 30px;
    clip-path: none;
    z-index: 3;
  }

  .tour-home .hero-visual img {
    object-position: center 42%;
    transform: scale(1.02);
  }

  .tour-home .hero-visual::after {
    background:
      linear-gradient(0deg, rgba(var(--tour-secondary-rgb),.18), rgba(var(--tour-secondary-rgb),0) 55%),
      linear-gradient(90deg, rgba(var(--tour-primary-rgb),.12), transparent 45%);
  }

  .tour-home .hero-inner {
    min-height: 880px;
    padding: 36px 20px 34px;
  }

  .tour-home .hero-content {
    max-width: none;
  }

  .tour-home .hero-eyebrow {
    margin-left: 12px;
  }

  .tour-home .hero-eyebrow span {
    min-width: 220px;
    min-height: 40px;
    padding: 7px 22px;
    font-size: 19px;
  }

  .tour-home .hero-title {
    max-width: 68%;
  }

  .tour-home .hero-title span {
    font-size: clamp(42px, 11vw, 72px);
  }

  .tour-home .hero-title strong {
    font-size: clamp(76px, 22vw, 112px);
  }

  .tour-home .hero-jp-title {
    margin-left: 22px;
    padding: 6px 18px 8px;
    font-size: 18px;
  }

  .tour-home .hero-lead,
  .tour-home .hero-sublead {
    margin-left: 8px;
    max-width: none;
  }

  .tour-home .hero-lead {
    margin-top: 228px;
    font-size: 22px;
  }

  .tour-home .hero-sublead {
    font-size: 17px;
  }

  .tour-home .hero-event-card {
    width: min(460px, calc(100vw - 32px));
    margin-inline: auto;
    margin-top: 22px;
    padding: 22px 26px 24px;
    border-radius: 36px;
    box-sizing: border-box;
  }

  .tour-home .event-date span {
    font-size: clamp(44px, 13vw, 60px);
  }

  .tour-home .hero-entry-btn {
    width: 100%;
    max-width: 310px;
  }

  .tour-home .hero-stick-layer {
    right: 16%;
    top: 122px;
    transform: scale(.74) rotate(-13deg);
  }
}

@media (max-width: 520px) {
  .tour-home .header-inner {
    min-height: 68px;
    padding: 8px 14px;
    gap: 9px;
  }

  .tour-home .brand {
    flex-shrink: 0;
  }

  .tour-home .brand-mark {
    width: 36px;
    height: 42px;
  }

  .tour-home .brand-title {
    font-size: 20px;
  }

  .tour-home .header-cta {
    margin-left: auto;
    min-width: 0;
    width: 92px;
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0;
    gap: 5px;
  }

  .tour-home .header-cta::before {
    content: "ENTRY";
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
  }

  .tour-home .header-arrow {
    font-size: 18px;
  }

  .tour-home .nav-toggle {
    width: 28px;
  }

  .tour-home .nav-toggle span {
    width: 22px;
  }

  .tour-home .hero {
    min-height: 730px;
  }

  .tour-home .hero-visual {
    top: 222px;
    left: 14px;
    right: 14px;
    width: auto;
    height: 166px;
    aspect-ratio: auto;
    border-radius: 22px;
    opacity: .98;
  }

  .tour-home .hero-inner {
    min-height: 730px;
    padding: 24px 16px 24px;
  }

  .tour-home .hero-title {
    max-width: 100%;
    text-shadow: 5px 5px 0 rgba(0,0,0,.16);
  }

  .tour-home .hero-title span {
    font-size: clamp(36px, 11vw, 44px);
  }

  .tour-home .hero-title strong {
    font-size: clamp(68px, 20vw, 82px);
  }

  .tour-home .hero-jp-title {
    margin-top: 2px;
    margin-left: 6px;
    padding: 5px 14px 7px;
    font-size: 14px;
  }

  .tour-home .hero-lead,
  .tour-home .hero-sublead {
    max-width: none;
  }

  .tour-home .hero-lead {
    margin-top: 136px;
    font-size: 18px;
    line-height: 1.15;
  }

  .tour-home .hero-sublead {
    margin-top: 3px;
    font-size: 14px;
    line-height: 1.18;
  }

  .tour-home .hero-event-card {
    width: calc(100% - 28px);
    min-height: 0;
    margin-top: 10px;
    margin-inline: auto;
    border-radius: 26px;
    padding: 16px 20px 17px;
    box-sizing: border-box;
  }

  .tour-home .event-date span {
    font-size: clamp(39px, 11vw, 44px);
  }

  .tour-home .event-date {
    gap: 8px;
    margin-top: 2px;
  }

  .tour-home .event-date em {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .tour-home .event-place {
    font-size: 15px;
  }

  .tour-home .event-meta {
    gap: 5px;
    margin-top: 7px;
  }

  .tour-home .event-meta span {
    padding: 3px 8px 4px;
    font-size: 10px;
  }

  .tour-home .hero-entry-btn {
    height: 50px;
    margin-top: 9px;
    font-size: 17px;
  }

  .tour-home .hero-deco-1 {
    left: 5%;
    top: 42px;
    width: 190px;
  }

  .tour-home .hero-deco-2,
  .tour-home .hero-deco-3,
  .tour-home .hero-line-1,
  .tour-home .hero-line-2,
  .tour-home .hero-arrows-2,
  .tour-home .hero-shape-blue {
    display: none;
  }

}

@media (max-width: 900px) {
  .tour-home .tour-about-section {
    padding: 54px 0 34px;
  }

  .tour-home .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .tour-home .about-stat {
    min-height: 210px;
    padding: 22px 18px;
  }

  .tour-home .day-flow-section {
    padding: 34px 0 42px;
  }

  .tour-home .day-flow-board,
  .tour-home .access-layout,
  .tour-home .guide-cta {
    grid-template-columns: 1fr;
  }

  .tour-home .flow-timeline {
    grid-template-columns: 1fr;
  }

  .tour-home .oyama-flow li:last-child {
    grid-column: auto;
    min-height: 58px;
  }

  .tour-home .flow-note {
    min-height: 0;
  }

  .tour-home .tour-access-section,
  .tour-home .tour-faq-section {
    padding: 42px 0;
  }

  .tour-home .tour-map-embed,
  .tour-home .tour-map-embed iframe {
    min-height: 330px;
  }

  .tour-home .guide-cta-section {
    padding: 34px 0 56px;
  }

  .tour-home .guide-cta {
    gap: 20px;
    padding: 24px;
  }

  .tour-home .guide-cta-photo img {
    height: 190px;
    transform: rotate(-2deg);
  }

  .tour-home .guide-cta-character {
    position: absolute;
    right: 24px;
    bottom: 20px;
  }

  .tour-home .guide-cta-character img {
    width: 112px;
  }

  .tour-home .guide-cta-body {
    padding-right: 0;
  }

  .tour-home .tour-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 22px;
  }
}

@media (max-width: 520px) {
  .tour-home .tour-about-section {
    padding: 42px 0 28px;
  }

  .tour-home .tour-about-section::before {
    left: -130px;
    top: 30px;
  }

  .tour-home .about-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .tour-home .about-stat {
    min-height: 176px;
    padding: 16px 12px;
    border-radius: 18px;
  }

  .tour-home .about-stat-number {
    font-size: 38px;
  }

  .tour-home .about-stat h3 {
    margin: 12px 0 7px;
    font-size: 14px;
  }

  .tour-home .about-stat p {
    font-size: 11px;
    line-height: 1.55;
  }

  .tour-home .day-flow-section {
    padding: 24px 0 28px;
  }

  .tour-home .flow-timeline {
    padding: 12px;
    gap: 6px;
    border-radius: 20px;
  }

  .tour-home .flow-timeline li {
    grid-template-columns: 60px 1fr;
    min-height: 45px;
    padding: 7px 8px;
    border-radius: 12px;
  }

  .tour-home .flow-timeline time {
    font-size: 19px;
  }

  .tour-home .flow-timeline span {
    font-size: 12px;
  }

  .tour-home .flow-note {
    padding: 18px 18px;
    border-radius: 20px;
  }

  .tour-home .flow-note strong {
    font-size: 19px;
  }

  .tour-home .flow-note p {
    font-size: 12px;
  }

  .tour-home .tour-access-section,
  .tour-home .tour-faq-section {
    padding: 34px 0;
  }

  .tour-home .access-info {
    padding: 20px;
    border-radius: 22px;
  }

  .tour-home .access-info h3 {
    font-size: 25px;
  }

  .tour-home .access-info p,
  .tour-home .access-detail-list li {
    font-size: 12px;
  }

  .tour-home .tour-map-embed,
  .tour-home .tour-map-embed iframe {
    min-height: 300px;
    border-radius: 22px;
  }

  .tour-home .tour-faq-list summary {
    min-height: 58px;
    padding: 14px 46px 14px 14px;
    font-size: 13px;
  }

  .tour-home .tour-faq-list summary::before {
    width: 26px;
    height: 26px;
    margin-right: 8px;
    font-size: 13px;
  }

  .tour-home .tour-faq-list summary::after {
    right: 16px;
    font-size: 24px;
  }

  .tour-home .tour-faq-list details p {
    padding: 0 16px 18px 48px;
    font-size: 12px;
  }

  .tour-home .guide-cta-section {
    padding: 26px 0 46px;
  }

  .tour-home .guide-cta {
    padding: 18px;
    border-radius: 24px;
  }

  .tour-home .guide-cta-photo img {
    height: 146px;
    border-width: 4px;
    border-radius: 18px;
  }

  .tour-home .guide-cta-body {
    padding-right: 0;
  }

  .tour-home .guide-cta-body h2 {
    font-size: 28px;
  }

  .tour-home .guide-cta-body span {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .tour-home .guide-cta-body a {
    min-height: 52px;
    font-size: 14px;
  }

  .tour-home .guide-cta-character {
    right: 18px;
    bottom: 20px;
  }

  .tour-home .guide-cta-character img {
    width: 76px;
  }

  .tour-home .tour-footer {
    padding: 34px 0 20px;
  }

  .tour-home .tour-footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tour-home .footer-tour-logo {
    margin-bottom: 10px;
  }

  .tour-home .tour-footer-brand p,
  .tour-home .tour-footer-cta p {
    margin-bottom: 12px;
  }

  .tour-home .tour-footer h3 {
    margin-bottom: 10px;
  }

  .tour-home .tour-footer-menu,
  .tour-home .tour-footer-events {
    gap: 4px;
  }

  .tour-home .tour-copyright {
    margin-top: 22px;
  }
}

/* MOLSHIKA TOURワードマーク: 地域3色グラデ(葛飾→小山→草加) */
.tour-home .brand-title,
.tour-home .footer-tour-logo strong {
  background: linear-gradient(100deg, #ff6a00 0%, #2fa846 52%, #b8823f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}


/* 見出しを単語の途中で折り返さない(第1回 小山モルック / シングルス) */
.h1-chunk { display: inline-block; }


/* 極小画面(320px級)で大会名が単語の途中で折り返さないよう縮小 */
@media (max-width: 360px) {
  .tour-home .detail-tour-copy h1 { font-size: 40px; }
}
