/* ==========================================================
   Vet Run & Walk — 動物医療従事者限定 ランニング＆ウォーキングイベント
   （エレガント・ブルー デザイン）
   ========================================================== */

:root {
  --navy: #234e86;
  --navy-deep: #1c3f70;
  --blue: #3a86c9;
  --blue-light: #6bb2e6;
  --blue-pale: #eaf3fb;
  --sky-bg: #f2f8fd;
  --accent: #ef8a5f;
  /* コーラル（1点差し色） */
  --yellow: #ffd23e;
  --yellow-deep: #f4c01e;
  /* 添付画像のカラフル配色 */
  --pink: #e8548d;
  --green: #5eb63a;
  --orange: #f39a18;
  --cream: #fbf3dd;
  --pink-pale: #fdeaf1;
  --green-pale: #ecf6e1;
  --orange-pale: #fef2de;
  --ink: #47576a;
  --ink-soft: #6c7d8f;
  --line: #dbe7f2;
  --font-rounded: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", sans-serif;
  --font-script: "Dancing Script", cursive;
  --header-h: 66px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
}

body {
  font-family: var(--font-rounded);
  font-weight: 500;
  color: var(--ink);
  background: #fff;
  line-height: 1.8;
  overflow-x: hidden;
}

img,
svg {
  vertical-align: middle;
}

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

ul {
  list-style: none;
}

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

.pc {
  display: inline;
}

/* ---------- セクション見出し ---------- */
.sec-head {
  text-align: center;
  margin-bottom: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.sec-eyebrow {
  color: var(--blue);
  font-weight: 800;
  font-size: 18.8px;
  letter-spacing: .28em;
  text-indent: .28em;
}

.eyebrow-left {
  display: block;
  text-align: left;
  margin-bottom: 10px;
}

.sec-title {
  color: var(--navy);
  font-weight: 800;
  font-size: clamp(27.8px, 3vw, 35.8px);
  line-height: 1.4;
  letter-spacing: .02em;
}

.sec-note {
  font-size: .6em;
  font-weight: 700;
  margin-left: 2px;
}

/* EVENT POINT 用の左右ダッシュ飾り */
.sec-head--lines .sec-title {
  position: relative;
  display: inline-block;
  padding: 0 74px;
}

.sec-head--lines .sec-title::before,
.sec-head--lines .sec-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 54px;
  height: 0;
  border-top: 2px dashed var(--blue-light);
}

.sec-head--lines .sec-title::before {
  left: 0;
}

.sec-head--lines .sec-title::after {
  right: 0;
}

/* ---------- ボタン ---------- */
.btn-entry {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(120deg, var(--blue) 0%, var(--navy) 100%);
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  padding: 11px 14px 11px 26px;
  font-size: 18.8px;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(35, 78, 134, .28);
  transition: transform .2s, box-shadow .2s, filter .2s;
}

.btn-entry:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(35, 78, 134, .34);
  filter: brightness(1.05);
}

.btn-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-arrow svg {
  width: 15px;
  height: 15px;
}

.btn-entry-header,
.btn-entry-lg {
  background: linear-gradient(120deg, #2ecc8e 0%, #10a86a 100%);
  color: #fff;
}

.btn-entry-header {
  box-shadow: 0 8px 18px rgba(16, 168, 106, .28);
}

.btn-entry-lg {
  font-size: 23.8px;
  padding: 15px 20px 15px 40px;
  gap: 16px;
  box-shadow: 0 10px 24px rgba(16, 168, 106, .35);
}

.btn-entry-lg .btn-arrow {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, .28);
  color: #fff;
}

.btn-entry-lg .btn-arrow svg {
  width: 19px;
  height: 19px;
}

.points-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 14px 12px 26px;
  font-size: 18.8px;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}

.btn-outline:hover {
  transform: translateY(-2px);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 20px rgba(35, 78, 134, .22);
}

.btn-outline .btn-arrow {
  background: var(--blue-pale);
  color: var(--blue);
  transition: background .2s, color .2s;
}

.btn-outline:hover .btn-arrow {
  background: rgba(255, 255, 255, .28);
  color: #fff;
}

.btn-outline-green {
  border-color: var(--green);
  color: var(--green);
}

.btn-outline-green .btn-arrow {
  background: var(--green-pale);
  color: var(--green);
}

.btn-outline-green:hover {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 20px rgba(16, 168, 106, .22);
}

/* ---------- 装飾（控えめ） ---------- */
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dotted var(--blue-light);
  opacity: .6;
  pointer-events: none;
}

.deco-paw {
  position: absolute;
  color: var(--green);
  opacity: .3;
  pointer-events: none;
}

.deco-paw svg {
  width: 100%;
  height: 100%;
}

/* ---------- スクロールで表示 ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================
   HEADER
   ========================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 10px rgba(35, 78, 134, .07);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 20px;
  height: 20px;
  transform: rotate(-10deg);
}

.logo-name {
  font-weight: 800;
  font-size: 24.8px;
  color: var(--navy);
  letter-spacing: .01em;
  white-space: nowrap;
}

.gnav {
  margin-left: auto;
}

.gnav ul {
  display: flex;
  gap: 16px;
}

.gnav a {
  font-size: 18.3px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  transition: color .2s;
}

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

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--navy);
  margin: 4.5px auto;
  transition: transform .25s, opacity .25s;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 66px) 0 96px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 88% 8%, #dcecfa 0%, transparent 55%),
    linear-gradient(180deg, #eef6fd 0%, #f6fbff 60%, #ffffff 100%);
}

/* 右側の写真（左端はやわらかくフェード） */
.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-size: cover;
  background-position: center 35%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-catch {
  color: var(--navy);
  font-weight: 700;
  font-size: clamp(23.8px, 2.6vw, 30.8px);
  letter-spacing: .08em;
  margin-bottom: 12px;
  padding-left: 4px;
  position: relative;
  text-align: center;
}

.hero-title {
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: .02em;
  margin-bottom: 26px;
  text-align: center;
}

.hero-title-line1,
.hero-title-line2 {
  display: block;
  font-size: clamp(44.8px, 6.8vw, 80.8px);
}

.hero-title-line1 {
  color: inherit;
}

.hero-walk {
  color: #2ecc8e;
}

.hero-run {
  color: #2563eb;
}

.hero-title-line2 {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #e93b6d;
}

.hero-paw {
  width: .5em;
  height: .5em;
  color: var(--yellow-deep);
  -webkit-text-fill-color: initial;
  margin-left: .12em;
  transform: rotate(12deg);
  vertical-align: .15em;
}

.hero-lead {
  color: var(--navy);
  font-weight: 700;
  font-size: clamp(18.8px, 1.7vw, 21.8px);
  line-height: 2;
  margin-bottom: 30px;
  text-align: center;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 5vw, 64px);
}

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.hero-badge-circle {
  width: clamp(72px, 8vw, 84px);
  height: clamp(72px, 8vw, 84px);
  border-radius: 50%;
  background: var(--blue);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(35, 78, 134, .18);
}

.hero-badge:nth-child(1) .hero-badge-circle {
  background: var(--pink);
}

.hero-badge:nth-child(2) .hero-badge-circle {
  background: var(--green);
}

.hero-badge:nth-child(3) .hero-badge-circle {
  background: var(--orange);
}

.hero-badge-circle svg {
  width: 40%;
  height: 40%;
}

.hero-badge-label {
  font-size: 17.8px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.hero-script {
  position: absolute;
  right: 0;
  bottom: -34px;
  font-family: var(--font-script);
  font-weight: 700;
  font-size: clamp(24.8px, 2.4vw, 31.8px);
  line-height: 1.35;
  color: var(--blue);
  text-align: right;
}

.hero-script-paw {
  width: 24px;
  height: 24px;
  color: var(--yellow-deep);
  transform: rotate(14deg);
  margin-top: 4px;
}

.hero-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 84px;
  z-index: 1;
}

/* ==========================================================
   ABOUT
   ========================================================== */
.about {
  position: relative;
  padding: 84px 0 96px;
  background: #fff;
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

/* 有機的なブロブ形の写真 */
.about-photo {
  aspect-ratio: 1 / 0.92;
  background-size: cover;
  background-position: 25% center;
  border-radius: 60% 40% 55% 45% / 55% 50% 50% 45%;
  box-shadow: 0 18px 44px rgba(35, 78, 134, .16);
}

.about-text .sec-eyebrow {
  color: var(--blue);
}

.about-title {
  color: var(--navy);
  font-weight: 800;
  font-size: clamp(27.8px, 3vw, 35.8px);
  line-height: 1.55;
  margin-bottom: 22px;
}

.about-title .hl {
  color: var(--blue);
}

.about-desc {
  font-size: 19.8px;
  line-height: 2.15;
  color: var(--ink);
}

.deco-ring-about {
  width: 78px;
  height: 78px;
  left: 3%;
  top: 60px;
}

.deco-paw-about1 {
  width: 40px;
  height: 40px;
  right: 8%;
  top: 74px;
  transform: rotate(18deg);
}

.deco-paw-about2 {
  width: 30px;
  height: 30px;
  right: 14%;
  top: 140px;
  transform: rotate(-8deg);
}

/* ==========================================================
   EVENT POINT
   ========================================================== */
.points {
  padding: 78px 0 92px;
  background: linear-gradient(180deg, #fff 0%, var(--sky-bg) 100%);
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.point-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 22px 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(35, 78, 134, .06);
  display: flex;
  flex-direction: column;
}

.point-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.point-icon svg {
  width: 50%;
  height: 50%;
}

.point-title {
  color: var(--blue);
  font-weight: 800;
  font-size: 21.8px;
  margin-bottom: 12px;
}

/* カード毎の色分け（青・緑・ピンク・オレンジ） */
.point-card:nth-child(1) .point-icon {
  background: var(--blue-pale);
  color: var(--blue);
}

.point-card:nth-child(1) .point-title {
  color: var(--blue);
}

.point-card:nth-child(2) .point-icon {
  background: var(--green-pale);
  color: var(--green);
}

.point-card:nth-child(2) .point-title {
  color: var(--green);
}

.point-card:nth-child(3) .point-icon {
  background: var(--pink-pale);
  color: var(--pink);
}

.point-card:nth-child(3) .point-title {
  color: var(--pink);
}

.point-card:nth-child(4) .point-icon {
  background: var(--orange-pale);
  color: var(--orange);
}

.point-card:nth-child(4) .point-title {
  color: var(--orange);
}

.point-desc {
  font-size: 17.8px;
  line-height: 1.9;
  color: var(--ink);
  text-align: center;
  margin-bottom: 20px;
  flex-grow: 1;
}

.point-photo {
  height: 118px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-color: var(--blue-pale);
  background-image:
    linear-gradient(135deg, #e3eef8 0%, #d6e8f6 50%, #e6f1e6 100%);
}

/* ==========================================================
   OVERVIEW
   ========================================================== */
.overview {
  padding: 40px 0 84px;
  background: var(--sky-bg);
}

.overview-panel {
  position: relative;
  border-radius: 28px;
  padding: 52px 40px 56px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 22px 50px rgba(150, 120, 40, .16);
}

.overview-panel .sec-head {
  margin-bottom: 40px;
}

.overview-panel .sec-eyebrow {
  color: var(--blue);
}

.overview-panel .sec-title {
  color: var(--navy);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.overview-item {
  position: relative;
  text-align: center;
  padding: 0 12px;
  color: var(--ink);
}

.overview-item+.overview-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  border-left: 1px dashed rgba(150, 120, 40, .32);
}

.overview-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(150, 120, 40, .12);
}

.overview-icon svg {
  width: 50%;
  height: 50%;
}

.overview-item:nth-child(5) .overview-icon {
  color: var(--orange);
}

.overview-label {
  color: var(--navy);
  font-weight: 800;
  font-size: 20.8px;
  margin-bottom: 8px;
  letter-spacing: .04em;
}

.overview-value {
  font-size: 17.8px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--ink);
}

.overview-value small {
  font-size: 16.3px;
  font-weight: 500;
  color: var(--ink-soft);
}

/* ==========================================================
   RUN & WALK
   ========================================================== */
.run-event {
  padding: 10px 0 90px;
  background: var(--sky-bg);
}

.run-event-lead {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 19.3px;
  line-height: 2;
  color: var(--ink);
}

.run-event-groups {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 40px 0 44px;
}

.run-event-panel {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 30px;
  border-radius: 28px;
  padding: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(35, 78, 134, .06);
}

.run-event-panel--walk {
  background: linear-gradient(160deg, #f3faf1 0%, #e7f6e3 100%);
}

.run-event-panel--run {
  background: linear-gradient(160deg, #f0f8fd 0%, #e4f1fb 100%);
}

.run-event-panel-side {
  position: relative;
  flex: 0 0 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  z-index: 1;
}

.run-event-panel-side::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(6px);
  z-index: -1;
}

.run-event-panel--walk .run-event-panel-side::before {
  background: radial-gradient(circle, rgba(94, 182, 58, .16), rgba(94, 182, 58, 0) 70%);
}

.run-event-panel--run .run-event-panel-side::before {
  background: radial-gradient(circle, rgba(58, 134, 201, .16), rgba(58, 134, 201, 0) 70%);
}

.run-event-panel-icon {
  width: 52px;
  height: 52px;
}

.run-event-panel--walk .run-event-panel-icon,
.run-event-panel--walk .run-event-panel-title {
  color: var(--green);
}

.run-event-panel--run .run-event-panel-icon,
.run-event-panel--run .run-event-panel-title {
  color: var(--blue);
}

.run-event-panel-title {
  font-size: 23.8px;
  font-weight: 900;
}

.run-event-panel-sub {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16.8px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink-soft);
}

.run-event-panel-sub::before,
.run-event-panel-sub::after {
  content: "";
  width: 12px;
  height: 1px;
  background: var(--ink-soft);
  opacity: .5;
}

.run-event-grid {
  flex: 1;
  display: grid;
  gap: 20px;
  z-index: 1;
}

.run-event-grid--walk {
  grid-template-columns: repeat(1, 1fr);
}

.run-event-grid--run {
  grid-template-columns: repeat(2, 1fr);
}

.run-event-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(35, 78, 134, .06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.run-event-dist {
  font-size: 36.8px;
  font-weight: 900;
  line-height: 1;
  border-radius: 14px;
  padding: 10px 26px;
}

.run-event-dist small {
  font-size: 17.8px;
  font-weight: 700;
  margin-left: 2px;
}

.run-event-grid--walk .run-event-dist {
  background: var(--green-pale);
  color: var(--green);
}

.run-event-grid--run .run-event-dist {
  background: var(--blue-pale);
  color: var(--blue);
}

.run-event-card-divider {
  width: 100%;
  border-top: 2px dotted var(--line);
}

.run-event-desc {
  font-size: 17.3px;
  line-height: 1.8;
  color: var(--ink);
}

.run-event-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.run-event-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 6px 18px rgba(35, 78, 134, .05);
}

.run-event-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.run-event-feature-icon--walk {
  background: var(--green-pale);
  color: var(--green);
}

.run-event-feature-icon--run {
  background: var(--blue-pale);
  color: var(--blue);
}

.run-event-feature-icon svg {
  width: 22px;
  height: 22px;
}

.run-event-feature-title {
  font-weight: 800;
  font-size: 18.8px;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.5;
}

.run-event-feature-desc {
  font-size: 17.3px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ==========================================================
   SCHEDULE
   ========================================================== */
.schedule {
  padding: 84px 0 90px;
  background: #fff;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 41px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  border-top: 2px dotted var(--blue-light);
}

.timeline-item {
  text-align: center;
  position: relative;
}

.timeline-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 16px rgba(35, 78, 134, .08);
}

.timeline-icon svg {
  width: 38px;
  height: 38px;
}

.timeline-icon.is-accent {
  border-color: #9bd08a;
  color: #4caf50;
}

/* アイテム毎の色分け（紺・青・緑・青・オレンジ・紺） */
.timeline-item:nth-child(1) .timeline-icon {
  color: var(--navy);
}

.timeline-item:nth-child(2) .timeline-icon {
  color: var(--blue);
}

.timeline-item:nth-child(4) .timeline-icon {
  color: var(--blue);
}

.timeline-item:nth-child(5) .timeline-icon {
  color: var(--orange);
  border-color: #f6d69a;
}

.timeline-item:nth-child(6) .timeline-icon {
  color: var(--navy);
}

.timeline-item:nth-child(1) .timeline-time {
  color: var(--navy);
}

.timeline-item:nth-child(2) .timeline-time {
  color: var(--blue);
}

.timeline-item:nth-child(3) .timeline-time {
  color: var(--green);
}

.timeline-item:nth-child(4) .timeline-time {
  color: var(--blue);
}

.timeline-item:nth-child(5) .timeline-time {
  color: var(--orange);
}

.timeline-item:nth-child(6) .timeline-time {
  color: var(--navy);
}

.timeline-time {
  font-weight: 800;
  font-size: 24.8px;
  line-height: 1.2;
  margin-bottom: 4px;
  color: var(--navy);
}

.timeline-label {
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 17.8px;
  line-height: 1.5;
}

/* ==========================================================
   NOTICE
   ========================================================== */
.notice {
  padding: 0 0 86px;
  background: var(--sky-bg);
}

.notice-card {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 8px 24px rgba(35, 78, 134, .06);
}

.notice-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18.8px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
}

.notice-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 15.8px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notice-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: 16.3px;
  line-height: 1.8;
}

.notice-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-light);
}

.notice-list a {
  color: var(--blue);
  text-decoration: underline;
}

/* ==========================================================
   MONTHLY EVENTS
   ========================================================== */
.monthly-events {
  padding: 84px 0 90px;
  background: #fff;
}

.mevent-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mevent-grid {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.mevent-grid::-webkit-scrollbar {
  display: none;
}

.mevent-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 26px 26px;
  box-shadow: 0 8px 24px rgba(35, 78, 134, .07);
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  flex: 0 0 calc((100% - 28px) / 2);
  scroll-snap-align: start;
}

.mevent-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mevent-month {
  font-size: 26.8px;
  font-weight: 800;
  color: var(--navy);
  min-width: 2.6em;
}

.mevent-badge {
  display: inline-block;
  font-size: 16.8px;
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.mevent-badge--run {
  background: rgba(37, 99, 235, .1);
  color: #2563eb;
}

.mevent-badge--walk {
  background: rgba(46, 204, 142, .12);
  color: #10a86a;
}

.mevent-badge--seminar {
  background: var(--orange-pale);
  color: var(--orange);
}

.mevent-badge--talk {
  background: var(--pink-pale);
  color: var(--pink);
}

.mevent-badge--default {
  background: rgba(100, 100, 100, .1);
  color: #666;
}

.mevent-empty {
  width: 100%;
  padding: 40px 20px;
  text-align: center;
  font-size: 16px;
  color: var(--ink-soft);
}

.mevent-title {
  font-size: 21.8px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.5;
}

.mevent-desc {
  font-size: 18.3px;
  line-height: 1.95;
  color: var(--ink);
}

.mevent-meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 4px;
}

.mevent-meta li {
  display: flex;
  gap: 10px;
  font-size: 17.8px;
  line-height: 1.6;
}

.mevent-meta-label {
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
  min-width: 5em;
}

.mevent-meta-value {
  color: var(--ink);
  font-weight: 600;
}

.mevent-flow {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 4px;
}

.mevent-flow-title {
  font-size: 17.8px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.mevent-flow-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  gap: 6px;
}

.mevent-flow-list li {
  display: flex;
  gap: 10px;
  font-size: 17.8px;
  line-height: 1.6;
}

.mevent-flow-time {
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
  min-width: 5em;
}

.mevent-flow-desc {
  color: var(--ink);
  font-weight: 600;
}

.mevent-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: auto;
  background: linear-gradient(120deg, #2ecc8e 0%, #10a86a 100%);
  color: #fff;
  font-weight: 800;
  font-size: 18.8px;
  border: 2px solid mediumaquamarine;
  border-radius: 999px;
  padding: 11px 14px;
  cursor: pointer;
}

.mevent-apply-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.mevent-apply-btn .btn-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mevent-apply-btn .btn-arrow svg {
  width: 14px;
  height: 14px;
}

/* ---- 3件目以降はボタンで左右に送って閲覧 ---- */
.mevent-carousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(35, 78, 134, .1);
  transition: background .2s, color .2s, opacity .2s;
}

.mevent-carousel-btn svg {
  width: 20px;
  height: 20px;
}

.mevent-carousel-btn:hover:not(:disabled) {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.mevent-carousel-btn:disabled {
  opacity: .35;
  cursor: default;
}

/* ==========================================================
   APPLY MODAL
   ========================================================== */
.apply-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(28, 63, 112, .5);
  backdrop-filter: blur(2px);
}

.apply-modal-overlay[hidden] {
  display: none;
}

.apply-modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(28, 63, 112, .28);
  animation: apply-modal-in .25s ease;
}

@keyframes apply-modal-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.apply-modal-body {
  padding: 36px 30px 32px;
}

.apply-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--navy);
  font-size: 26.8px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.apply-modal-close:hover {
  background: var(--line);
}

.apply-modal-title {
  font-size: 26.8px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 6px;
}

.apply-modal-event {
  font-size: 18.3px;
  font-weight: 700;
  color: var(--blue);
  margin-top: 6px;
  margin-bottom: 6px;
}

.apply-modal-time {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.apply-form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.apply-form-row label {
  font-size: 17.8px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}

.apply-required {
  font-size: 14.8px;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  padding: 2px 8px;
}

.apply-form-row .apply-agree {
  flex-direction: row;
  align-items: flex-start;
  font-size: 15.3px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.apply-agree input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--blue);
  cursor: pointer;
}

.apply-agree a {
  color: var(--blue);
  text-decoration: underline;
}

.apply-form-row input,
.apply-form-row select,
.apply-form-row textarea {
  font: inherit;
  font-size: 17.8px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  background: var(--sky-bg);
  transition: border-color .2s, background .2s;
}

.apply-form-row textarea {
  resize: vertical;
  min-height: 72px;
}

.apply-form-row input:focus,
.apply-form-row select:focus,
.apply-form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}

.apply-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  border: none;
  cursor: pointer;
}

.apply-success {
  text-align: center;
  padding: 12px 0 4px;
}

.apply-success-title {
  font-size: 23.8px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.apply-success-desc {
  font-size: 18.3px;
  color: var(--ink);
  line-height: 1.9;
  margin-bottom: 24px;
}

.apply-success-close {
  border: none;
  cursor: pointer;
}

.apply-error {
  color: #d64545;
  font-size: 15.3px;
  font-weight: 600;
  background: #fdecec;
  border-radius: 10px;
  padding: 10px 14px;
}

.apply-submit:disabled {
  opacity: .6;
  cursor: default;
}

/* ==========================================================
   CALENDAR
   ========================================================== */
.calendar-section {
  padding: 78px 0 90px;
  background: linear-gradient(180deg, #fff 0%, var(--sky-bg) 100%);
}

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  font-weight: 700;
  font-size: 18.3px;
  color: var(--ink);
  margin: -28px 0 30px;
}

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

.cal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.cal-dot-run {
  background: var(--blue);
}

.cal-dot-walk {
  background: #4caf50;
}

.cal-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 26px 30px;
  box-shadow: 0 16px 40px rgba(35, 78, 134, .1);
}

.cal-nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 18px;
}

.cal-month-label {
  font-weight: 800;
  font-size: 24.8px;
  color: var(--navy);
  min-width: 150px;
  text-align: center;
}

.cal-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 26.8px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, transform .2s;
}

.cal-nav-btn:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-1px);
}

.cal-days-header,
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.cal-days-header {
  margin-bottom: 6px;
}

.cal-days-header span {
  text-align: center;
  font-weight: 700;
  font-size: 17.3px;
  color: var(--ink-soft);
  padding: 6px 0;
}

.cal-days-header span:first-child {
  color: #e06a6a;
}

.cal-days-header span:last-child {
  color: var(--blue);
}

.cal-grid {
  gap: 4px;
}

.cal-cell {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 10px;
  transition: background .15s;
}

.cal-cell.is-empty {
  visibility: hidden;
}

.cal-daynum {
  font-weight: 700;
  font-size: 18.8px;
  line-height: 1;
  color: var(--ink);
}

.cal-cell.is-sun .cal-daynum {
  color: #e06a6a;
}

.cal-cell.is-sat .cal-daynum {
  color: var(--blue);
}

.cal-cell.is-today {
  background: var(--blue-pale);
}

.cal-cell.is-today .cal-daynum {
  color: var(--blue);
}

.cal-cell.has-event {
  cursor: pointer;
}

.cal-cell.has-event:hover {
  background: #f1f8ff;
}

.cal-cell .cal-dot {
  width: 7px;
  height: 7px;
}

/* ==========================================================
   VOICE
   ========================================================== */
.voice {
  padding: 82px 0 92px;
  background: var(--sky-bg);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.voice-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 8px 22px rgba(35, 78, 134, .07);
}

.voice-avatar {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center top;
  background-color: var(--blue-pale);
}

.voice-text {
  font-size: 18.3px;
  font-weight: 600;
  line-height: 1.95;
  color: var(--ink);
  margin-bottom: 10px;
}

.voice-name {
  font-size: 17.3px;
  font-weight: 800;
  color: var(--blue);
}

/* ==========================================================
   CTA
   ========================================================== */
.cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 92% 30%, #d9f0e2 0%, transparent 55%),
    linear-gradient(120deg, #e6f4fb 0%, #eef8ec 100%);
}

.cta-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 55%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 55%);
  z-index: 0;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-lead {
  color: var(--navy);
  font-weight: 800;
  font-size: clamp(20.8px, 2vw, 24.8px);
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.cta-title {
  font-weight: 800;
  font-size: clamp(32.8px, 4.2vw, 50.8px);
  letter-spacing: .03em;
  line-height: 1.3;
  margin-bottom: 14px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-desc {
  color: var(--ink);
  font-weight: 600;
  font-size: clamp(17.8px, 1.6vw, 20.8px);
  margin-bottom: 32px;
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq {
  padding: 90px 0;
  background: var(--sky-bg);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: 0 8px 24px rgba(35, 78, 134, .06);
}

.faq-item[open] {
  border-color: var(--blue-light);
}

.faq-question {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 800;
  font-size: 18.8px;
  color: var(--navy);
  cursor: pointer;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::before {
  content: "Q";
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 15.8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-question::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-left: auto;
  flex-shrink: 0;
  border-right: 2px solid var(--ink-soft);
  border-bottom: 2px solid var(--ink-soft);
  transform: rotate(45deg);
  transition: transform .2s;
}

.faq-item[open] .faq-question::after {
  transform: rotate(-135deg);
}

.faq-answer {
  margin: 16px 0 0 48px;
  color: var(--ink);
  font-size: 16.3px;
  line-height: 1.8;
}

/* ==========================================================
   CONTACT PAGE
   ========================================================== */
.contact-page {
  padding: calc(var(--header-h) + 66px) 0 96px;
  background: var(--sky-bg);
  min-height: 70vh;
}

.contact-lead {
  max-width: 560px;
  margin: 0 auto 36px;
  text-align: center;
  color: var(--ink);
  font-size: 16.8px;
  line-height: 1.9;
}

.contact-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 22px 50px rgba(35, 78, 134, .1);
}

@media (max-width: 640px) {
  .contact-card {
    padding: 32px 22px;
  }
}

/* ==========================================================
   TERMS PAGE
   ========================================================== */
.terms-page {
  padding: calc(var(--header-h) + 66px) 0 96px;
  background: var(--sky-bg);
}

.terms-card {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px 44px;
  box-shadow: 0 22px 50px rgba(35, 78, 134, .1);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.terms-article-title {
  font-size: 18.8px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.terms-article-body {
  color: var(--ink);
  font-size: 16.3px;
  line-height: 1.9;
}

.terms-article-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.terms-article-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 16.3px;
  line-height: 1.9;
}

ol.terms-article-list {
  counter-reset: terms-item;
}

ol.terms-article-list li {
  counter-increment: terms-item;
}

ol.terms-article-list li::before {
  content: counter(terms-item) ".";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

ul.terms-article-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
}

@media (max-width: 640px) {
  .terms-card {
    padding: 32px 22px;
    gap: 26px;
  }
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 34px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sns-icons {
  display: flex;
  gap: 12px;
}

.sns-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
}

.sns-icon:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.sns-icon svg {
  width: 18px;
  height: 18px;
}

.footer-nav ul {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 14px 34px;
}

.footer-nav a {
  font-size: 17.8px;
  font-weight: 700;
  color: var(--navy);
  transition: color .2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 16px 20px;
  font-size: 16.3px;
  color: var(--ink-soft);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .points-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .run-event-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .run-event-features {
    grid-template-columns: 1fr;
  }

  .overview-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 0;
  }

  .overview-item:nth-child(3n+1)::before {
    display: none;
  }

  .timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 0;
  }

  .timeline::before {
    display: none;
  }
}

@media (max-width: 1300px) {
  .gnav {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, .98);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 105;
  }

  .gnav.is-open {
    display: flex;
  }

  .gnav ul {
    flex-direction: column;
    text-align: center;
    gap: 26px;
  }

  .gnav a {
    font-size: 18px;
  }

  .header-inner {
    gap: 12px;
  }

  .btn-entry-header {
    margin-left: auto;
    font-size: 12.5px;
    padding: 8px 10px 8px 16px;
    flex-shrink: 0;
  }

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

@media (max-width: 900px) {

  /* HEROは写真を上、テキストを下に */
  .hero {
    padding-top: calc(var(--header-h) + 30px);
  }

  .hero-photo {
    position: relative;
    width: auto;
    height: 240px;
    margin: 0 0 24px;
    border-radius: 20px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-photo {
    order: -1;
  }

  .hero-catch {
    padding-left: 0;
  }

  .hero-badges {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-script {
    position: static;
    text-align: center;
    margin-top: 26px;
  }

  .cta-inner {
    text-align: center;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-photo {
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
  }

  .about-text {
    text-align: center;
  }

  .about-text .eyebrow-left {
    text-align: center;
  }

  .pc {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }

  .run-event-panel {
    flex-direction: column;
    padding: 24px 20px;
    gap: 18px;
  }

  .run-event-panel-side {
    flex-direction: row;
    justify-content: center;
  }

  .run-event-panel-side::before {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 640px) {

  .monthly-events .container {
    padding: 0 12px;
  }

  .hero-title-line1,
  .hero-title-line2 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .sec-head--lines .sec-title {
    padding: 0 46px;
  }

  .sec-head--lines .sec-title::before,
  .sec-head--lines .sec-title::after {
    width: 30px;
  }

  .points-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .point-card {
    text-align: center;
  }

  .point-desc {
    text-align: center;
  }

  .points-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-outline {
    justify-content: center;
    text-align: center;
  }

  .run-event-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .overview-panel {
    padding: 40px 22px 44px;
  }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .overview-item {
    padding: 30px 12px 0;
  }

  .overview-item:first-child {
    padding-top: 0;
  }

  .overview-item+.overview-item::before {
    display: block;
    left: 12px;
    right: 12px;
    top: 0;
    bottom: auto;
    border-left: none;
    border-top: 1px dashed rgba(150, 120, 40, .32);
  }

  .timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .timeline-item {
    display: grid;
    grid-template-columns: 82px 1fr;
    column-gap: 18px;
    text-align: left;
  }

  .timeline-icon {
    grid-column: 1;
    grid-row: 1 / -1;
    align-self: start;
    margin: 0;
  }

  .timeline-label {
    grid-column: 2;
    align-self: center;
  }

  .timeline-note {
    grid-column: 2;
  }

  .timeline-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 82px;
    left: 40px;
    width: 0;
    height: calc(100% - 82px + 32px);
    border-left: 2px dotted var(--blue-light);
  }

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

  .cta-photo {
    opacity: .28;
    width: 100%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .footer-nav ul {
    grid-template-columns: repeat(2, auto);
  }

  .mevent-row {
    gap: 6px;
  }

  .mevent-carousel-btn {
    width: 32px;
    height: 32px;
  }

  .mevent-carousel-btn svg {
    width: 16px;
    height: 16px;
  }

  .mevent-card {
    flex-basis: 100%;
    padding: 24px 20px 22px;
  }

  .mevent-header {
    flex-wrap: wrap;
    gap: 8px;
  }

  .mevent-month {
    font-size: 22px;
    min-width: 0;
  }

  .mevent-badge {
    font-size: 14.5px;
    padding: 3px 10px;
  }

  .mevent-flow-time {
    min-width: 4.4em;
  }

  .mevent-meta li {
    flex-direction: column;
    gap: 4px;
  }

  .mevent-meta-label {
    min-width: 0;
  }
}

@media (max-width: 400px) {
  .header-inner {
    gap: 6px;
    padding: 0 12px;
  }

  .logo-name {
    font-size: 15px;
  }

  .btn-entry-header {
    font-size: 11px;
    padding: 7px 8px 7px 13px;
  }

  .btn-entry-header .btn-arrow {
    width: 22px;
    height: 22px;
  }
}