/* ===== Reset / Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img, iframe { max-width: 100%; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }
a { color: inherit; }

/* ===== Color tokens (海＋夕日 / 三浦のヴィラ) ===== */
:root {
  --bg: #f5ede1;          /* 砂浜クリーム */
  --bg-deep: #e8d9bf;     /* 暖かい砂 */
  --ink: #1c2c3a;         /* 深い藍 */
  --ink-soft: #4a5d6c;    /* 海霧のグレー */
  --moss: #4f8197;        /* 海の青（旧moss互換） */
  --pine: #1e4659;        /* 深い海 */
  --pine-dark: #0e2d3d;   /* 夜の海 */
  --bark: #b87333;        /* 夕日の銅 */
  --sun: #e8a83a;         /* 夕日 */
  --leaf: #87a8b5;        /* 海の泡 */
  --coral: #e07a5f;       /* 夕焼けの珊瑚 */
}

/* ===== Gate (合言葉) ===== */
.gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(232,168,58,0.22), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(79,129,151,0.35), transparent 55%),
    linear-gradient(160deg, #0e2d3d 0%, #1e4659 55%, #2f5e72 100%);
  color: #f4ede0;
  padding: 24px;
  padding-top: max(24px, env(safe-area-inset-top));
  padding-bottom: max(24px, env(safe-area-inset-bottom));
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.gate__inner {
  text-align: center;
  max-width: 420px;
  width: 100%;
}
.gate__leaf {
  font-size: 42px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.gate__title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 6vw, 38px);
  margin: 0 0 8px;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.gate__title span {
  display: inline-block;
  font-size: 0.55em;
  font-weight: 500;
  letter-spacing: 0.15em;
  opacity: 0.85;
  margin-top: 6px;
}
.gate__lead {
  margin: 18px 0 24px;
  opacity: 0.85;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.gate__form {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
}
.gate__input {
  flex: 1;
  border: 0;
  background: transparent;
  color: #f4ede0;
  padding: 12px 18px;
  font-size: 16px;
  outline: none;
  letter-spacing: 0.08em;
  font-family: inherit;
}
.gate__input::placeholder { color: rgba(244,237,224,0.5); }
.gate__btn {
  border: 0;
  background: var(--sun);
  color: var(--pine-dark);
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.gate__btn:hover { background: #f1b855; transform: translateY(-1px); }
.gate__error {
  margin-top: 14px;
  color: #ffc9b0;
  font-size: 13px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 18%, rgba(255,255,255,0.6), transparent 35%),
    radial-gradient(circle at 25% 70%, rgba(255,255,255,0.35), transparent 40%),
    linear-gradient(180deg, #e8f4fb 0%, #b8dceb 35%, #7eb8d5 70%, #4f8eb5 100%);
  color: #0e2d3d;
  text-align: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 35%, rgba(255,255,255,0) 65%, rgba(232,217,191,0.35) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero__tag {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  letter-spacing: 0.3em;
  font-size: 13px;
  margin: 0 0 18px;
  color: var(--pine-dark);
  opacity: 0.75;
}
.hero__title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 200;
  font-size: clamp(44px, 11vw, 108px);
  line-height: 1.0;
  margin: 0;
  letter-spacing: 0.12em;
  color: #143049;
  text-shadow: 0 1px 2px rgba(255,255,255,0.4);
}
.hero__title span { display: block; }
.hero__title .hero__year {
  font-family: 'Inter', sans-serif;
  font-size: 0.30em;
  font-weight: 300;
  letter-spacing: 0.28em;
  margin-top: 22px;
  color: #1e4659;
  text-shadow: none;
}
.hero__tag, .hero__date, .hero__scroll {
  color: #143049 !important;
  text-shadow: none;
}
.hero__tag { opacity: 0.95; }
.hero__date {
  margin: 28px 0 36px;
  font-size: clamp(15px, 2.2vw, 18px);
  letter-spacing: 0.08em;
}

/* Countdown */
.countdown {
  display: inline-grid;
  grid-template-columns: repeat(4, minmax(70px, 1fr));
  gap: 10px;
  background: rgba(255,255,255,0.55);
  padding: 18px 22px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 10px 30px rgba(31,50,36,0.18);
}
.countdown__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
}
.countdown__num {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 5.5vw, 44px);
  line-height: 1;
  color: var(--pine-dark);
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
}
.hero__scroll {
  margin-top: 40px;
  font-size: 12px;
  letter-spacing: 0.4em;
  opacity: 0.6;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%      { transform: translateY(6px); opacity: 0.9; }
}

/* ===== Common Section ===== */
.section {
  padding: 96px 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.section__title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 4.5vw, 42px);
  margin: 0 0 8px;
  letter-spacing: 0.05em;
  color: var(--pine-dark);
}
.section__sub {
  margin: 0 0 40px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}

/* ===== Members ===== */
.section--members { background: var(--bg); }
.members {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 24px;
}
@media (min-width: 720px) {
  .members { gap: 56px; }
}
.members__heading {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: var(--moss);
  margin: 0 0 18px;
}
.members__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 14px;
}
.members__list--fixed3 {
  grid-template-columns: repeat(3, 1fr) !important;
}
.member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 12px 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(31,50,36,0.06);
  border: 1px solid rgba(90,143,168,0.15);
  transition: transform 0.2s ease;
  text-align: center;
}
.member:hover { transform: translateY(-3px); }
.member__avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  background: #f4ede0;
  box-shadow: 0 2px 6px rgba(31,50,36,0.08);
}
.member__icon { font-size: 22px; }
.member__name {
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 14px;
}
.members__list {
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
}

/* ===== Cars ===== */
.section--cars {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}
.cars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) {
  .cars { grid-template-columns: repeat(3, 1fr); }
}
.car {
  position: relative;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(90,143,168,0.18);
  box-shadow: 0 6px 18px rgba(31,50,36,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.car__photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f4ede0;
}
.car__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.car__body {
  padding: 22px 22px 24px;
}
.car__route {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--bark);
  letter-spacing: 0.05em;
}
.car__badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--bark);
  background: rgba(107,74,43,0.10);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.car__name {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 22px;
  margin: 0 0 4px;
  color: var(--pine-dark);
}
.car__from {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  letter-spacing: 0.1em;
}
.car__from::before {
  content: "出発 ／ ";
  opacity: 0.6;
}
.car__time {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px dashed rgba(90,143,168,0.3);
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: 0.08em;
}
.car__time span {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: 22px;
  color: var(--pine-dark);
  margin-right: 6px;
  letter-spacing: 0.02em;
}
.cars__note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  text-align: center;
}

/* ===== Route map ===== */
.routemap {
  margin: 56px 0 0;
  padding: 0;
}
.routemap img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(31,50,36,0.18);
  border: 1px solid rgba(90,143,168,0.18);
}
.routemap figcaption {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}

/* ===== Plays (もりであそぶ) ===== */
.section--play {
  background: linear-gradient(180deg, var(--bg) 0%, #e9e0c8 100%);
}
.plays__heading {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  color: var(--pine-dark);
  letter-spacing: 0.05em;
  margin: 0 0 18px;
}
.plays__heading--secondary {
  margin-top: 40px;
}
.plays__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) {
  .plays__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .plays__grid { grid-template-columns: repeat(4, 1fr); }
}
.play {
  background: #fff;
  padding: 22px 22px 24px;
  border-radius: 16px;
  border: 1px solid rgba(90,143,168,0.18);
  box-shadow: 0 4px 12px rgba(31,50,36,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}
.play:hover { transform: translateY(-3px); }
.play__icon {
  font-size: 30px;
  margin-bottom: 8px;
  line-height: 1;
}
.play__name {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--pine-dark);
  letter-spacing: 0.03em;
}
.play__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: var(--ink);
}
.play__note strong {
  color: var(--bark);
  font-weight: 500;
}

/* ===== Weather (てんき・もちもの) ===== */
.section--weather {
  background: linear-gradient(180deg, #e9e0c8 0%, var(--bg) 100%);
}
.weather__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
@media (min-width: 720px) {
  .weather__cards { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
.weather__card {
  background: #fff;
  padding: 22px 18px 22px;
  border-radius: 16px;
  border: 1px solid rgba(90,143,168,0.18);
  box-shadow: 0 4px 12px rgba(31,50,36,0.06);
  text-align: center;
}
.weather__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--moss);
  margin-bottom: 8px;
}
.weather__value {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--pine-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}
.weather__note {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.weather__pack {
  background: #fff;
  padding: 26px 28px;
  border-radius: 18px;
  border: 1px solid rgba(90,143,168,0.18);
  box-shadow: 0 6px 18px rgba(31,50,36,0.08);
  margin-bottom: 20px;
}
.weather__pack-title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 17px;
  margin: 0 0 16px;
  color: var(--pine-dark);
  letter-spacing: 0.04em;
}
.weather__pack-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
@media (min-width: 600px) {
  .weather__pack-list { grid-template-columns: repeat(2, 1fr); gap: 8px 24px; }
}
.weather__pack-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink);
}
.weather__pack-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--sun);
  font-weight: 500;
}

.weather__check {
  padding: 22px 24px;
  background: rgba(232,168,58,0.12);
  border-left: 4px solid var(--sun);
  border-radius: 4px 14px 14px 4px;
}
.weather__check-msg {
  margin: 0 0 12px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink);
}
.weather__check-msg strong {
  color: var(--bark);
  font-weight: 500;
}
.weather__check-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.weather__check-links a {
  background: var(--pine);
  color: #f4ede0;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.03em;
  transition: background 0.15s ease;
}
.weather__check-links a:hover { background: var(--pine-dark); }

/* ===== Shopping (買い出し) ===== */
.section--shopping {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}
.shops {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) {
  .shops { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .shops { grid-template-columns: repeat(4, 1fr); }
}
.shop {
  background: #fff;
  padding: 24px 22px;
  border-radius: 16px;
  border: 1px solid rgba(90,143,168,0.18);
  box-shadow: 0 6px 18px rgba(31,50,36,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}
.shop:hover { transform: translateY(-3px); }
.shop--pick {
  border: 2px solid var(--sun);
  background: linear-gradient(180deg, #fffaee 0%, #fff 100%);
}
.shop__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--moss);
  background: rgba(90,143,168,0.10);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.shop--pick .shop__tag {
  color: var(--bark);
  background: rgba(232,168,58,0.18);
}
.shop__name {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  margin: 0 0 6px;
  color: var(--pine-dark);
  line-height: 1.35;
}
.shop__where {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.shop__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink);
}
.shops__plan {
  margin-top: 32px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.6);
  border-left: 4px solid var(--moss);
  border-radius: 4px 12px 12px 4px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink);
}
.shops__plan strong {
  color: var(--pine-dark);
  font-weight: 500;
}

/* ===== Car crew (乗員) ===== */
.car__crew {
  margin: 14px 0 0;
  padding: 12px 0 0;
  border-top: 1px dashed rgba(90,143,168,0.3);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.car__crew li {
  background: rgba(90,143,168,0.10);
  color: var(--pine-dark);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.car__kid {
  font-size: 14px;
}

/* ===== Shopping List ===== */
.shoplist__title {
  margin: 56px 0 24px;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(20px, 2.6vw, 24px);
  color: var(--pine-dark);
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.5;
}
.shoplist__title small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.shoplist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) {
  .shoplist { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .shoplist { grid-template-columns: repeat(3, 1fr); }
}
.shoplist__cat {
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px 20px;
  border: 1px solid rgba(90,143,168,0.15);
  box-shadow: 0 4px 12px rgba(31,50,36,0.05);
}
.shoplist__head {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--pine-dark);
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(90,143,168,0.3);
  letter-spacing: 0.04em;
}
.shoplist__items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.shoplist__items li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink);
}
.shoplist__items li::before {
  content: "🌿";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 11px;
  opacity: 0.7;
}
.shoplist__note {
  margin-top: 28px;
  padding: 20px 22px;
  background: rgba(232,168,58,0.12);
  border-left: 4px solid var(--sun);
  border-radius: 4px 12px 12px 4px;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink);
}
.shoplist__note strong {
  color: var(--bark);
  font-weight: 500;
}
.shoplist__note a {
  color: var(--pine);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== Traffic (みちのこと) ===== */
.section--traffic {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 100%);
}
.traffic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .traffic { grid-template-columns: repeat(2, 1fr); }
}
.traffic__card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 24px 24px;
  border: 1px solid rgba(90,143,168,0.18);
  box-shadow: 0 6px 18px rgba(31,50,36,0.08);
  position: relative;
}
.traffic__card--warn {
  background: linear-gradient(180deg, #fff8ec 0%, #fff 100%);
  border-left: 4px solid var(--sun);
}
.traffic__icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.traffic__name {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--pine-dark);
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.traffic__when {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--bark);
  letter-spacing: 0.05em;
}
.traffic__when strong {
  color: var(--pine-dark);
  font-weight: 500;
}
.traffic__effect {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink);
}
.traffic__effect strong {
  color: var(--bark);
  font-weight: 500;
}

.traffic__check {
  margin-top: 36px;
  padding: 28px 28px;
  background: var(--pine);
  color: #f4ede0;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(31,50,36,0.18);
}
.traffic__check-title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  margin: 0 0 18px;
  letter-spacing: 0.05em;
  color: #f5d98e;
}
.traffic__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 720px) {
  .traffic__links { grid-template-columns: repeat(2, 1fr); }
}
.traffic__links li {
  background: rgba(255,255,255,0.07);
  border-radius: 12px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.traffic__links li:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
.traffic__links a {
  display: block;
  padding: 14px 18px;
  text-decoration: none;
  color: inherit;
}
.traffic__links strong {
  display: block;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}
.traffic__links strong::after {
  content: " ↗";
  color: var(--sun);
  font-size: 12px;
}
.traffic__links span {
  display: block;
  color: rgba(244,237,224,0.65);
  font-size: 12px;
  letter-spacing: 0.03em;
}

/* ===== Schedule / Timeline ===== */
.section--schedule { background: var(--bg-deep); }
.timeline {
  position: relative;
  padding-left: 24px;
  border-left: 2px dashed rgba(47,74,53,0.35);
}
.timeline__item {
  position: relative;
  padding: 14px 0 22px 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
@media (min-width: 600px) {
  .timeline__item { grid-template-columns: 180px 1fr; align-items: baseline; }
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--moss);
  box-shadow: 0 0 0 4px var(--bg-deep);
}
.timeline__item--last::before { background: var(--sun); }
.timeline__time {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: var(--pine-dark);
  letter-spacing: 0.05em;
}
.timeline__event {
  color: var(--ink);
  letter-spacing: 0.03em;
}
.schedule__note {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* ===== Place ===== */
.section--place { background: var(--bg); }
.place__hero {
  margin: 0 0 36px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(31,50,36,0.18);
  border: 1px solid rgba(90,143,168,0.18);
}
.place__hero img {
  width: 100%;
  height: auto;
  display: block;
}
.place {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 820px) {
  .place { grid-template-columns: 1fr 1.2fr; gap: 36px; }
}
.place__info {
  background: #fff;
  padding: 32px 28px;
  border-radius: 18px;
  border: 1px solid rgba(90,143,168,0.18);
  box-shadow: 0 6px 18px rgba(31,50,36,0.08);
}
.place__name {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 24px;
  margin: 0 0 14px;
  color: var(--pine-dark);
}
.place__address, .place__tel, .place__lodge {
  margin: 10px 0;
  color: var(--ink);
  letter-spacing: 0.03em;
}
.place__tel { font-weight: 500; }
.place__lodge {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed rgba(90,143,168,0.3);
  font-size: 14px;
  color: var(--ink-soft);
}
.place__link {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 20px;
  background: var(--pine);
  color: #f4ede0;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  transition: background 0.15s ease;
}
.place__link:hover { background: var(--pine-dark); }
.place__map {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(90,143,168,0.18);
  box-shadow: 0 6px 18px rgba(31,50,36,0.08);
  background: #ddd;
}
.place__map iframe { width: 100%; height: 100%; }

/* ===== Food ===== */
.section--food {
  background: linear-gradient(180deg, var(--bg) 0%, #ead7b0 100%);
  text-align: center;
}
.food__hero {
  margin: 0 auto 36px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(31,50,36,0.18);
  border: 1px solid rgba(90,143,168,0.18);
}
.food__hero img {
  width: 100%;
  height: auto;
  display: block;
}
.food__line {
  font-size: clamp(16px, 2.4vw, 20px);
  margin: 6px 0;
  letter-spacing: 0.05em;
}
.food__line strong {
  color: var(--bark);
  border-bottom: 3px solid var(--sun);
  padding: 0 4px;
}
.food__line--sub {
  color: var(--ink-soft);
  font-size: 14px;
}
.food__icons {
  margin-top: 28px;
  font-size: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ===== Footer ===== */
.footer {
  position: relative;
  background: #0f1f15;
  color: #d6e3c8;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  min-height: 380px;
}
.footer__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.footer__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,31,21,0.45) 0%, rgba(15,31,21,0.75) 100%);
}
.footer__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.footer__inner {
  position: relative;
  z-index: 1;
}
.footer__leaf {
  font-size: 32px;
  margin-bottom: 16px;
  opacity: 0.9;
}
.footer__msg {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 26px;
  margin: 0 0 12px;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.footer__date {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.3em;
  opacity: 0.75;
}

/* ===== Theme (デジタルデトックス説明) ===== */
.section--theme { background: var(--bg); }
/* .theme は下段の .theme__big + .theme__rules の縦積みレイアウトを使う（block） */
.theme__card {
  background: #fff;
  padding: 28px 26px 30px;
  border-radius: 18px;
  border: 1px solid rgba(79,129,151,0.18);
  box-shadow: 0 6px 18px rgba(28,44,58,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}
.theme__card:hover { transform: translateY(-3px); }
.theme__card--accent {
  background: linear-gradient(180deg, #fffaee 0%, #fff 100%);
  border: 2px solid var(--sun);
}
.theme__icon {
  font-size: 36px;
  margin-bottom: 12px;
  line-height: 1;
}
.theme__name {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--pine-dark);
  letter-spacing: 0.03em;
}
.theme__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
}
.theme__note strong {
  color: var(--bark);
  font-weight: 500;
  border-bottom: 2px solid var(--sun);
  padding: 0 2px;
}

/* ===== Teams (3班) ===== */
.section--teams {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}
.teams {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) {
  .teams { grid-template-columns: repeat(3, 1fr); }
}
.team {
  position: relative;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(79,129,151,0.18);
  box-shadow: 0 6px 18px rgba(28,44,58,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.team__photo {
  aspect-ratio: 4 / 2.3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--leaf) 0%, var(--moss) 100%);
}
.team--drinks .team__photo { background: linear-gradient(135deg, #e8a83a 0%, #b87333 100%); }
.team--food .team__photo  { background: linear-gradient(135deg, #e07a5f 0%, #b85a40 100%); }
.team--rec .team__photo   { background: linear-gradient(135deg, #4f8197 0%, #1e4659 100%); }
.team__emoji {
  font-size: 72px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
}
.team__body { padding: 22px 22px 24px; }
.team__badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--bark);
  background: rgba(184,115,51,0.10);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.team__name {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--pine-dark);
}
.team__mission {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
.team__crew {
  margin: 0;
  padding-top: 12px;
  border-top: 1px dashed rgba(79,129,151,0.3);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.team__crew li {
  background: rgba(79,129,151,0.10);
  color: var(--pine-dark);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.team__crew .team__leader {
  background: var(--sun);
  color: var(--pine-dark);
}
.teams__note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  text-align: center;
}

/* ===== Villa ===== */
.section--villa { background: var(--bg); }
.villa__hero {
  margin: 0 0 36px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(28,44,58,0.18);
  border: 1px solid rgba(79,129,151,0.18);
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #4f8197 0%, #e8a86a 100%);
}
.villa__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.villa {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.villa__info {
  background: #fff;
  padding: 32px 28px;
  border-radius: 18px;
  border: 1px solid rgba(79,129,151,0.18);
  box-shadow: 0 6px 18px rgba(28,44,58,0.08);
}
.villa__name {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 22px;
  margin: 0 0 16px;
  color: var(--pine-dark);
  line-height: 1.45;
}
.villa__name small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  margin-top: 6px;
}
.villa__lead {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink);
}
.villa__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 18px;
  border-top: 1px dashed rgba(79,129,151,0.3);
}
.villa__stats li {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.villa__stat-num {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--pine-dark);
  line-height: 1.1;
}
.villa__stat-label {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
}
/* .villa__features は新HTMLでは block レイアウト（title + grid + photo の縦積み）。
   旧 3カラムグリッド指定は意図しない分散を起こすため無効化 */
.feature {
  background: #fff;
  padding: 22px 22px 24px;
  border-radius: 16px;
  border: 1px solid rgba(79,129,151,0.18);
  box-shadow: 0 4px 12px rgba(28,44,58,0.06);
  transition: transform 0.2s ease;
}
.feature:hover { transform: translateY(-3px); }
.feature__icon {
  font-size: 30px;
  margin-bottom: 8px;
  line-height: 1;
}
.feature__name {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--pine-dark);
  letter-spacing: 0.03em;
}
.feature__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: var(--ink);
}
.feature__note strong {
  color: var(--bark);
  font-weight: 500;
}

/* ===== Place access additional ===== */
.place__access {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px dashed rgba(79,129,151,0.3);
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink);
  letter-spacing: 0.03em;
}

/* ===== Rules + Pack ===== */
.section--rules {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}
.rules {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) {
  .rules { grid-template-columns: repeat(2, 1fr); }
}
.rule {
  background: #fff;
  padding: 22px 24px 24px;
  border-radius: 16px;
  border: 1px solid rgba(79,129,151,0.18);
  box-shadow: 0 4px 12px rgba(28,44,58,0.06);
}
.rule--warn {
  background: linear-gradient(180deg, #fff8ec 0%, #fff 100%);
  border-left: 4px solid var(--sun);
}
.rule__icon {
  font-size: 28px;
  margin-bottom: 6px;
}
.rule__name {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--pine-dark);
}
.rule__note {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink);
}
.rule__note strong {
  color: var(--bark);
  font-weight: 500;
}
.pack {
  margin-top: 32px;
  background: #fff;
  padding: 26px 28px;
  border-radius: 18px;
  border: 1px solid rgba(79,129,151,0.18);
  box-shadow: 0 6px 18px rgba(28,44,58,0.08);
}
.pack__title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 17px;
  margin: 0 0 16px;
  color: var(--pine-dark);
  letter-spacing: 0.04em;
}
.pack__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
@media (min-width: 600px) {
  .pack__list { grid-template-columns: repeat(2, 1fr); gap: 8px 24px; }
}
.pack__list li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink);
}
.pack__list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--sun);
  font-weight: 500;
}

/* ===== Footer message ===== */
.footer__msg {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(18px, 3vw, 26px);
  margin: 0 0 12px;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

/* ===== Mobile Optimization (〜720px) ===== */
@media (max-width: 720px) {
  body { line-height: 1.65; }

  /* Section common */
  .section {
    padding: 64px 18px;
  }
  .section__title {
    font-size: 26px;
    letter-spacing: 0.04em;
  }
  .section__sub {
    font-size: 13px;
    margin-bottom: 28px;
  }

  /* Gate */
  .gate {
    padding: 20px 16px;
    padding-top: max(20px, env(safe-area-inset-top));
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }
  .gate__leaf { font-size: 36px; margin-bottom: 8px; }
  .gate__title { font-size: 24px; line-height: 1.35; }
  .gate__title span { font-size: 0.5em; letter-spacing: 0.1em; margin-top: 4px; }
  .gate__lead { font-size: 13px; margin: 14px 0 18px; }
  .gate__form {
    flex-direction: row;
    padding: 5px;
    gap: 6px;
  }
  .gate__input {
    font-size: 16px;   /* iOS の auto-zoom 防止には16px以上が必須 */
    padding: 12px 14px;
    min-width: 0;      /* flex item の overflow 防止 */
  }
  .gate__btn {
    padding: 10px 18px;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .gate__error { font-size: 12px; margin-top: 10px; }

  /* Hero */
  .hero {
    padding: 40px 18px 50px;
    min-height: 100svh;
  }
  .hero__tag {
    font-size: 11px;
    letter-spacing: 0.25em;
    margin-bottom: 14px;
  }
  .hero__title {
    font-size: 56px;
    line-height: 1.0;
  }
  .hero__title .hero__year {
    font-size: 0.38em;
    margin-top: 10px;
  }
  .hero__date {
    margin: 20px 0 26px;
    font-size: 13px;
    letter-spacing: 0.04em;
  }
  .countdown {
    padding: 14px 14px;
    gap: 4px;
    grid-template-columns: repeat(4, 1fr);
  }
  .countdown__cell { min-width: 0; }
  .countdown__num { font-size: 26px; }
  .countdown__label { font-size: 10px; letter-spacing: 0.12em; }
  .hero__scroll {
    margin-top: 28px;
    font-size: 11px;
    letter-spacing: 0.25em;
  }

  /* Members — 3列固定（おとな2行 / こども1行） */
  .members { gap: 28px; }
  .members__heading {
    font-size: 15px;
    margin-bottom: 14px;
  }
  .members__list { gap: 10px; }
  .members__list--fixed3 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .member {
    padding: 10px 8px 12px;
    gap: 8px;
    border-radius: 12px;
  }
  .member__name { font-size: 12px; }

  /* Cars */
  .car__body { padding: 18px 18px 20px; }
  .car__name { font-size: 20px; }
  .car__time span { font-size: 20px; }
  .car__route { font-size: 11.5px; }
  .car__crew li { font-size: 12px; padding: 3px 10px; }
  .cars__note { font-size: 12px; line-height: 1.7; }

  /* Route map */
  .routemap { margin-top: 36px; }
  .routemap figcaption { font-size: 12px; }

  /* Traffic */
  .traffic { gap: 12px; }
  .traffic__card { padding: 18px 18px 20px; }
  .traffic__name { font-size: 15px; }
  .traffic__effect { font-size: 12.5px; line-height: 1.75; }
  .traffic__check { padding: 22px 20px; margin-top: 28px; }
  .traffic__check-title { font-size: 16px; margin-bottom: 14px; }
  .traffic__links { gap: 8px; }
  .traffic__links a { padding: 12px 14px; }
  .traffic__links strong { font-size: 13.5px; }
  .traffic__links span { font-size: 11.5px; }

  /* Schedule */
  .timeline { padding-left: 18px; }
  .timeline__item {
    grid-template-columns: 1fr;
    padding: 10px 0 18px 8px;
    gap: 2px;
  }
  .timeline__item::before {
    left: -26px;
    top: 16px;
    width: 10px;
    height: 10px;
  }
  .timeline__time { font-size: 13.5px; }
  .timeline__event { font-size: 13.5px; }
  .schedule__note { font-size: 12px; }

  /* Place */
  .place__hero { margin-bottom: 24px; border-radius: 14px; }
  .place__info { padding: 24px 22px; }
  .place__name { font-size: 20px; }
  .place__address, .place__tel, .place__lodge { font-size: 14px; }
  .place__map { aspect-ratio: 4 / 3; }

  /* Shopping */
  .shops { gap: 12px; }
  .shop { padding: 18px 18px 20px; }
  .shop__name { font-size: 16px; }
  .shop__note { font-size: 12.5px; }
  .shops__plan { padding: 18px 20px; font-size: 13px; }
  .shoplist__title { font-size: 18px; margin: 40px 0 16px; }
  .shoplist { gap: 12px; }
  .shoplist__cat { padding: 16px 18px 18px; }
  .shoplist__head { font-size: 15px; }
  .shoplist__items li { font-size: 13px; }
  .shoplist__note { padding: 16px 18px; font-size: 12.5px; }

  /* Food */
  .food__hero { margin-bottom: 24px; border-radius: 14px; }
  .food__line { font-size: 15px; }
  .food__line--sub { font-size: 13px; }
  .food__icons { font-size: 26px; gap: 10px; margin-top: 22px; }

  /* Footer */
  .footer {
    padding: 80px 20px 56px;
    min-height: 280px;
  }
  .footer__leaf { font-size: 26px; margin-bottom: 10px; }
  .footer__date {
    font-size: 11px;
    letter-spacing: 0.22em;
  }
}

  /* Theme cards */
  .theme { gap: 12px; }
  .theme__card { padding: 22px 20px 24px; }
  .theme__icon { font-size: 30px; margin-bottom: 8px; }
  .theme__name { font-size: 16px; }
  .theme__note { font-size: 13px; line-height: 1.75; }

  /* Teams */
  .teams { gap: 14px; }
  .team__photo { aspect-ratio: 4 / 2; }
  .team__emoji { font-size: 56px; }
  .team__body { padding: 18px 18px 20px; }
  .team__name { font-size: 19px; }
  .team__mission { font-size: 12.5px; }
  .team__crew li { font-size: 12px; padding: 3px 10px; }
  .teams__note { font-size: 12px; }

  /* Villa */
  .villa__hero { margin-bottom: 24px; border-radius: 14px; }
  .villa__info { padding: 24px 22px; }
  .villa__name { font-size: 18px; }
  .villa__name small { font-size: 11px; }
  .villa__lead { font-size: 13px; line-height: 1.85; }
  .villa__stats { gap: 8px; }
  .villa__stat-label { font-size: 10px; letter-spacing: 0.08em; }
  .feature { padding: 18px 18px 20px; }
  .feature__name { font-size: 15px; }
  .feature__note { font-size: 12.5px; }

  /* Place access */
  .place__access { font-size: 12.5px; }

  /* Rules + Pack */
  .rules { gap: 12px; }
  .rule { padding: 18px 18px 20px; }
  .rule__name { font-size: 15px; }
  .rule__note { font-size: 12.5px; line-height: 1.75; }
  .pack { padding: 22px 22px; margin-top: 24px; }
  .pack__title { font-size: 16px; margin-bottom: 12px; }
  .pack__list li { font-size: 13px; }

  /* Footer */
  .footer__msg { font-size: 17px; }
}

/* ===== Very small phones (〜380px) ===== */
@media (max-width: 380px) {
  .hero__title { font-size: 46px; }
  .countdown__num { font-size: 22px; }
  .countdown { padding: 12px 10px; }
  .member__name { font-size: 11px; }
  .members__heading { font-size: 14px; }
}

/* ===================================================
   miura-detox 専用セクション
   =================================================== */

/* ===== Theme (デジタルデトックス) ===== */
.section--theme {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}
.theme {
  text-align: center;
  margin-top: 8px;
}
.theme__big {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 200;
  font-size: clamp(24px, 4vw, 38px);
  color: var(--pine-dark);
  line-height: 1.7;
  margin: 0 auto 48px;
  letter-spacing: 0.08em;
  max-width: 720px;
}
.theme__rules {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: left;
}
@media (min-width: 720px) {
  .theme__rules { grid-template-columns: repeat(2, 1fr); }
}
.rule {
  background: #fff;
  padding: 28px 28px;
  border-radius: 18px;
  border: 1px solid rgba(90,143,168,0.2);
  box-shadow: 0 6px 18px rgba(14,36,56,0.08);
}
.rule--paid {
  background: linear-gradient(180deg, #fff8ec 0%, #fff 100%);
  border: 2px solid var(--sun);
}
.rule__icon {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1;
}
.rule__name {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--pine-dark);
}
.rule__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink);
}
.rule__note strong {
  color: var(--coral);
  font-size: 1.15em;
  font-weight: 500;
}

/* ===== Members 追加 (役割・リーダー) ===== */
.members__role {
  margin: -8px 0 16px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  line-height: 1.65;
}
.member__badge {
  display: inline-block;
  font-size: 11px;
  color: var(--coral);
  letter-spacing: 0.08em;
  margin-top: 2px;
  font-weight: 500;
}

/* ヴィラ象徴写真（BBQなど） */
.villa__photo {
  margin: 32px auto 0;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(28,44,58,0.14);
  border: 1px solid rgba(79,129,151,0.18);
  max-width: 720px;
}
.villa__photo img {
  width: 100%;
  height: auto;
  display: block;
}
.villa__photo figcaption {
  padding: 12px 18px 14px;
  background: #fff;
  font-size: 12.5px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 720px) {
  .villa__photo { margin-top: 22px; border-radius: 14px; }
  .villa__photo figcaption { font-size: 11.5px; padding: 10px 14px 12px; }
}

/* ===== Access (あつまるばしょ) ===== */
.section--access {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 100%);
}
.access { margin-top: 8px; }
.access__card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 32px;
  border: 1px solid rgba(90,143,168,0.2);
  box-shadow: 0 8px 24px rgba(14,36,56,0.08);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .access__card {
    grid-template-columns: 140px 1fr;
    gap: 28px;
    align-items: start;
  }
}
.access__time {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: 48px;
  color: var(--coral);
  line-height: 1;
  letter-spacing: 0.02em;
}
.access__name {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--pine-dark);
}
.access__note {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.8;
}
.access__sub {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.8;
}
.access__sub strong {
  color: var(--pine-dark);
  font-weight: 500;
}
.access__remind {
  margin-top: 22px;
  padding: 16px 20px;
  background: rgba(232,168,58,0.15);
  border-left: 4px solid var(--sun);
  border-radius: 4px 12px 12px 4px;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.75;
}

/* ===== Missions (班ごとのおねがい) ===== */
.section--missions {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}
.missions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 880px) {
  .missions { grid-template-columns: repeat(3, 1fr); }
}
.mission {
  background: #fff;
  padding: 28px 26px;
  border-radius: 18px;
  border: 1px solid rgba(90,143,168,0.2);
  box-shadow: 0 6px 18px rgba(14,36,56,0.08);
  display: flex;
  flex-direction: column;
}
.mission__icon {
  font-size: 36px;
  margin-bottom: 10px;
  line-height: 1;
}
.mission__name {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--pine-dark);
  letter-spacing: 0.03em;
}
.mission__leader {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}
.mission__leader strong {
  color: var(--coral);
  font-weight: 500;
}
.mission__detail {
  margin: 0 0 16px;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink);
}
.mission__detail strong {
  color: var(--pine-dark);
  font-weight: 500;
}
.mission__items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px dashed rgba(90,143,168,0.3);
}
.mission__items li {
  padding-left: 18px;
  position: relative;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink);
}
.mission__items li::before {
  content: "🌊";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 11px;
  opacity: 0.7;
}

/* ===== Villa ===== */
.section--villa { background: var(--bg); }
.villa__hero {
  margin: 0 0 32px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(14,36,56,0.18);
  border: 1px solid rgba(90,143,168,0.2);
}
.villa__hero img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--bg-deep);
}
.villa__intro {
  margin: 0 0 36px;
  text-align: center;
}
.villa__intro p {
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink);
}
.villa__intro strong {
  color: var(--coral);
  font-weight: 500;
}
.villa__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
@media (min-width: 720px) {
  .villa__specs { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
.spec {
  background: #fff;
  padding: 22px 18px;
  border-radius: 16px;
  border: 1px solid rgba(90,143,168,0.2);
  box-shadow: 0 4px 12px rgba(14,36,56,0.06);
  text-align: center;
}
.spec__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--moss);
  margin-bottom: 8px;
}
.spec__value {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--pine-dark);
  margin-bottom: 6px;
  line-height: 1.2;
}
.spec__note {
  margin: 0;
  font-size: 11.5px;
  color: var(--ink-soft);
}
.villa__features {
  margin-bottom: 32px;
}
.villa__features-title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  margin: 0 0 16px;
  color: var(--pine-dark);
  letter-spacing: 0.05em;
}
.villa__features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 720px) {
  .villa__features-grid { grid-template-columns: repeat(2, 1fr); }
}
.feature {
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(90,143,168,0.18);
  font-size: 13.5px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.villa__address {
  padding: 22px 24px;
  background: rgba(79,129,151,0.10);
  border-radius: 14px;
  text-align: center;
}
.villa__address-text {
  margin: 0 0 6px;
  font-weight: 500;
  color: var(--pine-dark);
  font-size: 14px;
}
.villa__address-note {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* ===== Rules (おやくそく) ===== */
.section--rules {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}
.rules {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) {
  .rules { grid-template-columns: repeat(2, 1fr); }
}
.vrule {
  background: #fff;
  padding: 22px 24px 24px;
  border-radius: 16px;
  border: 1px solid rgba(90,143,168,0.2);
  box-shadow: 0 6px 18px rgba(14,36,56,0.08);
}
.vrule--warn {
  background: linear-gradient(180deg, #fff8ec 0%, #fff 100%);
  border-left: 4px solid var(--sun);
}
.vrule__icon {
  font-size: 30px;
  margin-bottom: 10px;
  line-height: 1;
}
.vrule__name {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 17px;
  margin: 0 0 10px;
  color: var(--pine-dark);
}
.vrule__effect {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink);
}
.vrule__effect strong {
  color: var(--coral);
  font-weight: 500;
}

/* ===== Pack (もちもの) ===== */
.section--pack {
  background: var(--bg);
}
.pack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) {
  .pack { grid-template-columns: repeat(3, 1fr); }
}
.pack__cat {
  background: #fff;
  padding: 22px 24px;
  border-radius: 16px;
  border: 1px solid rgba(90,143,168,0.18);
  box-shadow: 0 4px 12px rgba(14,36,56,0.06);
}
.pack__head {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  margin: 0 0 14px;
  color: var(--pine-dark);
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(90,143,168,0.3);
  letter-spacing: 0.04em;
}
.pack__items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pack__items li {
  position: relative;
  padding-left: 16px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink);
}
.pack__items li::before {
  content: "🌊";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 10px;
  opacity: 0.6;
}

/* ===== Mobile - 新セクション補強 ===== */
@media (max-width: 720px) {
  .theme__big { font-size: 26px; margin-bottom: 32px; }
  .rule { padding: 22px 22px; }
  .rule__name { font-size: 16px; }
  .rule__note { font-size: 13.5px; }
  .access__card { padding: 24px 22px; }
  .access__time { font-size: 38px; }
  .access__name { font-size: 19px; }
  .mission { padding: 22px 22px; }
  .mission__name { font-size: 19px; }
  .villa__intro p { font-size: 14px; }
  .spec__value { font-size: 20px; }
  .vrule { padding: 20px 22px; }
  .vrule__name { font-size: 16px; }
  .pack__cat { padding: 20px 22px; }
  .pack__head { font-size: 15px; }
}
