:root {
  --navy: #092a55;
  --navy-dark: #061f40;
  --ink: #2c2c2c;
  --muted: #6b7280;
  --line: #e2d9cc;
  --soft: #f2ece1;
  --beige: #ede6d8;
  --green: #18b553;
  --gold: #c8922a;
  --gold-light: #e8c97a;
  --warm-white: #faf7f2;
  --white: #fff;
  --shadow: 0 18px 42px rgba(80, 55, 20, .11);
  --font-stylish: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Avenir Next", "Helvetica Neue", "Yu Gothic", Meiryo, sans-serif;
  --font-serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

/* スマホのみ改行 */
.sp-br {
  display: none;
}

@media (max-width: 760px) {
  .sp-br {
    display: block;
  }
}

html {
  overflow-x: clip;
  max-width: 100vw;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

[id] {
  scroll-margin-top: 90px;
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  [id] {
    scroll-margin-top: 76px;
  }
}

body {
  margin: 0;
  overflow-x: clip;
  max-width: 100vw;
  color: var(--ink);
  background: var(--warm-white);
  font-family: var(--font-stylish);
  font-size: 16.5px;
  line-height: 1.85;
  font-feature-settings: "palt";
  letter-spacing: .035em;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  padding: 0 clamp(18px, 4vw, 56px);
  background: #fff;
  border-bottom: 1px solid rgba(229, 231, 235, .7);
  backdrop-filter: blur(16px);
  transition: height .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  height: 66px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(9, 42, 85, .08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 192px;
}

.brand-logo {
  width: 54px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand span {
  display: inline-grid;
  grid-template-columns: auto auto;
  column-gap: 6px;
  align-items: center;
}

.brand strong {
  grid-column: 1;
  grid-row: 1 / 3;
  color: var(--navy-dark);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: .06em;
}

.brand-dojo {
  grid-column: 2;
  grid-row: 1;
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--muted);
  line-height: 1.3;
}

.brand small {
  grid-column: 2;
  grid-row: 2;
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .14em;
  line-height: 1.2;
}

.nav-drawer-header {
  display: none;
}

.nav-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  flex: 1;
  min-width: 0;
  gap: 0;
  color: #202938;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.25;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 20px);
}

.nav-group-label {
  display: none;
}

.nav-group--member {
  border-left: none;
  padding-left: 0;
  margin-left: 0;
  border-top: 1px solid var(--line);
  padding-top: 5px;
  margin-top: 4px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-bottom: 3px;
  line-height: 1.25;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: width .25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  border: 1px solid var(--navy);
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button::after,
.header-cta::after,
.text-link::after {
  content: "→";
  margin-left: 12px;
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 10px 20px rgba(9, 42, 85, .18);
}

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

.button.line {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(9, 42, 85, .22);
}

a.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 54px rgba(9, 42, 85, .16);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform .25s ease;
}

.site-header.nav-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* メニューオープン時：backdrop-filterを解除してfixed子要素を正しく配置 */
.site-header.nav-open {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: #fff;
  z-index: 10000;
}

/* メニューオープン中は背面スクロール禁止 */
body:has(.site-header.nav-open) {
  overflow: hidden;
}

/* ━━━ HERO 波パネルデザイン ━━━━━━━━━━━━━━━━━ */
@media (max-width: 1320px) and (min-width: 1081px) {
  .site-header {
    gap: 18px;
    padding: 0 clamp(18px, 2.5vw, 32px);
  }

  .brand {
    gap: 9px;
  }

  .brand-logo {
    width: 48px;
    height: 40px;
  }

  .brand strong {
    font-size: 16px;
    letter-spacing: .04em;
  }

  .brand-dojo {
    font-size: 10.5px;
    letter-spacing: .04em;
  }

  .brand small {
    font-size: 10px;
    letter-spacing: .08em;
  }

  .nav-links {
    gap: 5px;
    font-size: 12.5px;
    letter-spacing: .02em;
  }

  .nav-group {
    gap: clamp(8px, 1vw, 12px);
  }

  .nav-group--member {
    padding-top: 4px;
    margin-top: 2px;
  }

  .header-cta {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 13px;
    letter-spacing: .02em;
  }
}

.hero {
  position: relative;
  min-height: min(96vh, 940px);
  overflow: visible;
  max-width: 100%;
  background: #fff;
  display: block;
  padding: 0;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #fff;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 24% 48%, rgba(232, 181, 88, .27), transparent 38%),
    radial-gradient(ellipse at 10% 52%, rgba(255, 246, 220, .59), transparent 46%),
    linear-gradient(90deg, rgba(255, 244, 211, .4) 0%, rgba(245, 212, 146, .19) 36%, rgba(36, 24, 16, .05) 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.05);
  animation: heroBgZoom 9s cubic-bezier(.25, .46, .45, .94) forwards;
  filter: saturate(1.1) sepia(.1) contrast(1.04) brightness(1.05);
}

/* 波形の白い背景（全画面サイズ、波形にクリップ） */
.hero-wave-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(250, 247, 242, 0.93);
  backdrop-filter: blur(3px);
  clip-path: url(#wave-bg-clip);
  transform: translateX(-105%);
  animation: wavePanelIn 1.3s cubic-bezier(.16, 1, .3, 1) 1.5s both;
}

/* テキストパネル（背景なし、波の上に重ねる） */
.hero-wave-panel {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 3;
  width: clamp(260px, 28%, 420px);
  display: flex;
  align-items: center;
  padding: 108px clamp(18px, 3vw, 44px) 100px clamp(18px, 3vw, 44px);
  background: transparent;
  transform: translateX(-105%);
  animation: wavePanelIn 1.3s cubic-bezier(.16, 1, .3, 1) 1.5s both;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  margin-top: 0;
}

.hero-inner .eyebrow,
.hero-inner h1,
.hero-inner .hero-sub,
.hero-inner .hero-text,
.hero-inner .button {
  animation: heroTextLineIn 1.65s cubic-bezier(.2, .8, .25, 1) both;
}

.hero-inner .eyebrow  { animation-delay: 2.0s; }
.hero-inner h1        { animation-delay: 2.22s; }
.hero-inner .hero-sub { animation-delay: 2.44s; }
.hero-inner .hero-text{ animation-delay: 2.64s; }
.hero-inner .button   { animation-delay: 2.82s; }

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .26em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--navy-dark);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.28;
  font-weight: 600;
  letter-spacing: .04em;
}

h2 {
  margin-bottom: 12px;
  color: var(--navy-dark);
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: .09em;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy-dark);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: .07em;
}

.hero-sub {
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .06em;
}

.hero-inner .eyebrow {
  color: var(--gold);
}

.hero-inner .eyebrow::after {
  display: none;
}

.hero-text {
  width: min(440px, 100%);
  color: #2f3a45;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .055em;
}

.hero-anniv-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  max-width: 100%;
  display: flex;
  align-items: flex-end;
  gap: clamp(12px, 2vw, 20px);
  padding: 52px clamp(22px, 5vw, 86px) clamp(22px, 3vh, 42px);
  background: none;
  overflow: visible;
}

.hero-anniv-bar::before {
  content: "";
  position: absolute;
  inset: -18px 0 0;
  z-index: 0;
  background:
    radial-gradient(circle at 88% 80%, rgba(216, 166, 74, .13), transparent 28%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 210' preserveAspectRatio='none'%3E%3Cpath fill='%23061f40' fill-opacity='.98' d='M0 54 C250 92 454 40 704 38 C972 36 1196 62 1440 24 L1440 210 L0 210 Z'/%3E%3Cg fill='none' stroke-linecap='round'%3E%3Cpath stroke='%23f6d98a' stroke-width='5' stroke-opacity='.96' d='M0 50 C250 88 454 36 704 34 C972 32 1196 58 1440 20'/%3E%3Cpath stroke='%23c98d35' stroke-width='2.2' stroke-opacity='.8' d='M0 61 C250 99 456 48 706 46 C974 44 1198 70 1440 32'/%3E%3Cpath stroke='%23f7df9c' stroke-width='1.7' stroke-opacity='.72' d='M-120 178 C116 122 294 106 512 130 C712 152 842 174 1016 142'/%3E%3Cpath stroke='%23d99c3e' stroke-width='1.3' stroke-opacity='.62' d='M-92 192 C140 132 312 120 524 144 C720 166 856 188 1030 158'/%3E%3Cpath stroke='%23f0c46c' stroke-width='1.2' stroke-opacity='.5' d='M-72 206 C154 146 326 136 538 160 C734 182 858 202 1034 174'/%3E%3Cpath stroke='%23f6d98a' stroke-width='1.3' stroke-opacity='.42' d='M850 198 C1008 128 1170 104 1500 116'/%3E%3Cpath stroke='%23d99c3e' stroke-width='1' stroke-opacity='.38' d='M906 210 C1062 146 1198 128 1510 140'/%3E%3C/g%3E%3C/svg%3E") center top / 100% 100% no-repeat;
  animation: annexBarBgReveal 3.1s cubic-bezier(.22, 1, .36, 1) 1.5s both;
}

.hero-anniv-bar > * {
  position: relative;
  z-index: 1;
}


.hero-anniv-bar img {
  width: clamp(132px, 18vw, 222px);
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 10px rgba(4, 18, 45, 1)) drop-shadow(0 0 22px rgba(4, 18, 45, .85));
}

.anniv-texts {
  width: min(36vw, 430px);
  min-width: 0;
}

.hero-anniv-bar p {
  display: grid;
  gap: 2px;
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.69vw, 22px);
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.42;
  text-shadow: 0 1px 10px rgba(4, 18, 45, .95), 0 2px 20px rgba(4, 18, 45, .7);
}

.hero-anniv-bar p span:first-child {
  text-align: left;
}

.hero-anniv-bar p span:last-child {
  text-align: right;
}

.news-list b.anniv-tag {
  background: linear-gradient(135deg, #f0d878, #c8922a);
  color: #fff;
  padding: 2px 8px;
  border-radius: 99px;
  font-size: 10px;
  text-shadow: 0 1px 2px rgba(80, 40, 0, .35);
}

/* イベントタグ */
.news-list b:not(.anniv-tag):not([class]) {
  background: var(--navy);
  color: #fff;
}

/* NEWタグ */
.news-list a:first-child b,
.news-list b:empty {
  background: #e03333;
  color: #fff;
}

@keyframes badgePop {
  from { opacity: 0; transform: translateX(-50%) scale(.5); }
  to   { opacity: 1; transform: translateX(-50%) scale(1); }
}

.hero-mobile-points {
  display: none;
}

.section {
  padding: clamp(74px, 9vw, 124px) clamp(18px, 5vw, 70px);
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

/* 25周年メッセージセクション */
.anniv-message {
  position: relative;
  z-index: 1;
  background: rgba(4, 18, 45, 0.40);
  padding: 48px 28px 56px;
  display: none; /* デスクトップは非表示、モバイルのみ */
}

.anniv-message-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15.5px;
  line-height: 2.2;
  letter-spacing: .04em;
  text-align: left;
}

/* 各行：初期状態は非表示 */
.anniv-line {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1.6s ease, transform 1.6s cubic-bezier(.16, 1, .3, 1);
}

.anniv-line.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 署名ブロック */
.anniv-sign {
  margin-top: 1.6em;
  margin-left: auto;
  letter-spacing: .08em;
  line-height: 2;
  text-align: left;
  width: fit-content;
  max-width: 100%;
}

.anniv-message-inner p {
  margin-bottom: 2em;
}

.anniv-message-inner p:last-child {
  margin-bottom: 0;
}

.anniv-message-lead {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2em;
}

.soft {
  background-color: var(--soft);
  background-image: radial-gradient(rgba(160, 120, 60, .07) 1px, transparent 1px);
  background-size: 22px 22px;
}

.section-title {
  width: min(720px, 100%);
  margin-bottom: 36px;
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
}


.section-title p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 700;
}

.news-list {
  width: min(720px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.news-list a {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 15px 6px;
  border-bottom: 1px solid var(--line);
  color: var(--navy-dark);
  font-size: 14px;
  font-weight: 800;
}

.news-list time {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.news-list span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-list b {
  padding: 2px 8px;
  color: var(--navy);
  background: #ffe8a3;
  border-radius: 99px;
  font-size: 10px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.features .section-title.center {
  margin-bottom: 22px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  will-change: transform;
}

.feature-card {
  min-height: 420px;
  padding: 20px 24px 26px;
  font-size: 16px;
  overflow: hidden;
  perspective: 900px;
  text-align: center;
}

.feature-copy {
  position: relative;
  z-index: 2;
}

.feature-card img {
  width: 100%;
  height: 172px;
  margin: 0 0 20px;
  object-fit: cover;
  background: var(--soft);
  border-radius: 8px;
}

.feature-card img.feature-location-map {
  object-fit: cover;
  object-position: center 8%;
  padding: 0;
}

.feature-card .img-frame {
  position: relative;
  width: 100%;
  height: 172px;
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 8px;
}

.feature-card .img-frame img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

.feature-card .img-frame::before,
.feature-card .img-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #7a4e0a, #dba43d, #f0d878, #dba43d, #7a4e0a);
  z-index: 1;
}

.feature-card .img-frame::before { top: 0; }
.feature-card .img-frame::after  { bottom: 0; }

.feature-slider {
  position: relative;
  width: 100%;
  height: 172px;
  margin: 0 0 20px;
  overflow: hidden;
  background: var(--soft);
  border-radius: 8px;
}

.feature-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  opacity: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
  animation: featurePhotoSlide 8s ease-in-out infinite;
}

.feature-slider img:nth-child(2) {
  animation-delay: 4s;
}

.feature-card h3,
.feature-card p {
  opacity: 0;
  transform: translateY(14px);
}

.feature-card.is-visible h3 {
  animation: featureTextRise 1.2s cubic-bezier(.22, 1, .36, 1) .36s forwards;
}

.feature-card.is-visible p {
  animation: featureTextRise 1.3s cubic-bezier(.22, 1, .36, 1) .58s forwards;
}

/* カード番号 */
.feature-card span {
  display: block;
  font-family: var(--font-stylish);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  margin-bottom: 6px;
  opacity: 0;
}

.feature-card.is-visible span {
  animation: featureTextRise 1.0s cubic-bezier(.22, 1, .36, 1) .22s forwards;
}

.program-no {
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .05em;
  display: none;
}

.feature-card p,
.program p,
.branch p,
.trial-card p,
.contact p {
  color: var(--muted);
}

.contact .eyebrow {
  color: var(--gold);
  font-size: 10px;
}

.feature-card .feature-note {
  margin: 10px 0 0;
  color: #7a8290;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.7;
}

/* ━━━ 料金セクション ━━━━━━━━━━━━━━━━━ */
@media (min-width: 761px) {
  .feature-card {
    text-align: left;
  }

  .feature-card h3 {
    font-size: clamp(17px, 1.42vw, 19px);
    letter-spacing: 0;
    line-height: 1.45;
    white-space: nowrap;
  }

  .feature-card p,
  .feature-card .feature-note,
  .program p:not(.program-no):not(.target):not(.program-subtitle) {
    text-align: left;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  width: min(860px, 100%);
  margin: 0 auto 28px;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(6, 31, 64, .07);
  overflow: hidden;
}

.pricing-card--enrollment {
  border-color: rgba(219, 164, 61, .4);
  background: linear-gradient(160deg, #fffdf5 0%, #fff 60%);
}

.pricing-card-head {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-card-head h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: .06em;
}

.pricing-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  border-radius: 99px;
  white-space: nowrap;
}

.pricing-tag--gold {
  background: linear-gradient(135deg, #b8892a, #e8c46a);
  color: #fff;
}

.pricing-list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.pricing-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(6, 31, 64, .06);
}

.pricing-desc {
  order: -1;
  width: 100%;
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-list-highlight {
}

.pricing-label {
  color: var(--navy-dark);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
}

.pricing-amount {
  font-family: var(--font-stylish);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: -.01em;
}

.pricing-amount small {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .02em;
}

/* ── キャンペーンバナー ── */
.pricing-campaign {
  width: min(559px, calc(100% - 48px));
  margin: 0 auto 40px;
}

.campaign-banner-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(6, 31, 64, 0.18);
}

/* 上部ゴールドライン */
.pricing-campaign::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e8c46a, #f5e09a, #e8c46a, transparent);
}

/* タイトル */
.pricing-campaign-label {
  display: block;
  text-align: center;
  font-family: var(--font-stylish);
  font-size: clamp(20px, 3.2vw, 30px);
  font-weight: 900;
  color: var(--gold);
  padding: 26px 32px 20px;
  letter-spacing: .1em;
}

.pricing-campaign-label i {
  font-style: normal;
  font-size: 1.15em;
  opacity: .7;
  margin: 0 6px;
}

/* タイトル下ゴールドライン */
.campaign-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(219,164,61,.55) 30%, rgba(245,224,154,.7) 50%, rgba(219,164,61,.55) 70%, transparent 100%);
  margin: 0 28px;
}

/* 入会金行 */
.campaign-fee {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  padding: clamp(18px, 3vw, 28px) clamp(20px, 4vw, 40px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.campaign-fee-label {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  text-align: center;
  line-height: 1.5;
  letter-spacing: .1em;
  padding-right: clamp(12px, 2vw, 24px);
  border-right: 2px solid rgba(255,255,255,.18);
  flex-shrink: 0;
}

.campaign-fee-amount {
  font-family: var(--font-stylish);
  font-size: clamp(34px, 5.5vw, 54px);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -.01em;
  line-height: 1;
  flex: 1;
}

.campaign-fee-amount small {
  font-size: .45em;
  font-weight: 700;
  letter-spacing: .04em;
}

/* 価格ボックス */
.campaign-fee-detail {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.campaign-regular {
  font-size: clamp(11px, 1.4vw, 13px);
  color: rgba(255,255,255,.6);
  padding: 8px 14px;
  letter-spacing: .04em;
  display: block;
}

.campaign-sale {
  background: var(--gold);
  padding: 8px 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.campaign-sale > span {
  font-size: clamp(10px, 1.2vw, 12px);
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: .06em;
}

.campaign-sale > strong {
  font-family: var(--font-stylish);
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1.1;
}

.campaign-sale > strong small {
  font-size: .52em;
  font-weight: 700;
}

/* 道着プレゼント行 */
.campaign-gift {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 20px);
  padding: clamp(16px, 2.5vw, 22px) clamp(20px, 4vw, 40px);
}

.campaign-gift-icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.campaign-gift-title {
  font-family: var(--font-stylish);
  font-size: clamp(16px, 2.4vw, 22px);
  font-weight: 900;
  color: #fff;
  letter-spacing: .04em;
  flex-shrink: 0;
}

.campaign-gift-sep {
  display: block;
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,.22);
  flex-shrink: 0;
}

.campaign-gift-desc {
  font-size: clamp(12px, 1.5vw, 14px);
  color: rgba(255,255,255,.8);
  letter-spacing: .04em;
  line-height: 1.5;
}

.campaign-gift-desc em {
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
}

/* 割引後の金額スタイル */
.pricing-amount--sale s {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
  text-decoration: line-through;
  margin-right: 6px;
}

.pricing-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* stagger */
.pricing-grid .pricing-card:nth-child(2) { transition-delay: .15s; }
.pricing-grid .pricing-card:nth-child(3) { transition-delay: .30s; }

.program-list {
  width: min(980px, 100%);
  margin: 0 auto;
}

.classes .program-list {
  width: 100%;
  max-width: 100%;
}

.program {
  display: block;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.program-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 0;
  width: 100%;
  margin: 0;
}

.program-body > .program-no,
.program-body > .program-heading,
.program-body > p {
  max-width: 640px;
  width: 100%;
}

.program-body > img,
.program-body > .program-slider {
  left: 0;
  transform: none;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  order: -1;
  flex-shrink: 0;
}

.program img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: 0;
}

.program h3 {
  margin-bottom: 0;
}

.program-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.program p {
  line-height: 1.58;
  margin: 0;
}

.program .program-subtitle {
  color: #a8751f;
  font-size: clamp(18px, 2.1vw, 25px);
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.5;
}

.program .button {
  align-self: center;
  width: auto;
}

.program-slider {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  height: 190px;
  background: var(--soft);
  margin: 0 0 24px;
}

/* overflow: hidden を transform と分離（iOS Safari 対策） */
.slider-overflow {
  overflow-x: hidden;
  overflow-y: hidden;
  width: 100%;
  height: 100%;
  touch-action: pan-y;
  cursor: default;
  scrollbar-width: none;
}

.slider-overflow::-webkit-scrollbar {
  display: none;
}

/* 横スクロールトラック */
.slider-track {
  display: flex;
  gap: 0;
  height: 100%;
  width: max-content;
  -webkit-animation: sliderScroll 20s linear infinite;
  animation: sliderScroll 20s linear infinite;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  touch-action: pan-y;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slider-track img {
  display: block;
  height: 190px !important;
  width: var(--slider-img-width, auto) !important;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  flex: 0 0 auto;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slider-track--reverse {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.program-slider .slider-track img {
  aspect-ratio: auto !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center;
  width: var(--slider-img-width, auto) !important;
}

@-webkit-keyframes sliderScroll {
  from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
  to   { -webkit-transform: translate3d(-50%, 0, 0); transform: translate3d(-50%, 0, 0); }
}
@keyframes sliderScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.target {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(920px, 100%);
  margin: 0 auto;
}

.region-card {
  display: grid;
  gap: 14px;
  min-height: 260px;
  padding: 34px;
  color: var(--navy-dark);
}

.region-card span {
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
}

.region-card h3 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
}

.region-card p {
  color: var(--ink);
  font-weight: 700;
}

.region-card small {
  align-self: end;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.area-hero {
  padding-top: 138px;
  background: linear-gradient(180deg, #fff, var(--soft));
}

.area-lead {
  width: min(860px, 100%);
  margin: 0 auto 38px;
  color: var(--navy-dark);
  font-size: clamp(19px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.8;
}

.form-hero {
  padding-top: 138px;
  background: linear-gradient(180deg, #fff, var(--soft));
}

.form-hero > .section-title,
.form-note,
.form-frame {
  width: min(920px, 100%);
  margin-inline: auto;
}

.form-hero > .section-title {
  margin-bottom: 28px;
}

.form-note {
  margin-bottom: 24px;
  padding: clamp(24px, 4vw, 38px);
}

.form-note h2 {
  font-size: clamp(22px, 3vw, 32px);
}

.form-note p,
.form-note li {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.form-note ul {
  margin: 6px 0 22px;
  padding-left: 1.25em;
}

.form-frame {
  padding: 0;
  overflow: hidden;
}

.form-frame iframe {
  display: block;
}

.branch {
  display: flex;
  flex-direction: column;
  min-height: 620px;
  padding: 24px;
}

.branch-map {
  margin-top: auto;
  padding-top: 18px;
}

.branch-map iframe {
  display: block;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .04em;
}

.map-link::after {
  content: "↗";
  font-size: 11px;
}

.branch.active {
  border-color: rgba(200, 146, 42, .5);
  border-width: 2px;
}

.branch-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.branch-head span {
  padding: 5px 12px;
  color: #fff;
  background: var(--navy);
  border-radius: 4px;
  font-weight: 900;
}

.branch-head b {
  color: #b7c0cf;
  font-size: 12px;
  letter-spacing: .14em;
}

.address {
  min-height: 88px;
  color: var(--ink) !important;
  font-weight: 800;
}

.bus-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -22px 0 16px;
  color: var(--muted) !important;
  line-height: 1.6;
}

.bus-info strong {
  flex: 0 0 auto;
  padding: 6px 10px;
  color: #7a1f2b;
  border: 1px solid #7a1f2b;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  letter-spacing: .04em;
}

.bus-info.no-bus strong {
  color: var(--muted);
  border-color: var(--line);
}

.bus-info small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.schedule {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.schedule h3 {
  margin: 18px 0 4px;
  font-size: 17px;
}

.schedule h3:first-child {
  margin-top: 0;
}

.schedule p {
  margin-bottom: 4px;
  font-size: 15.5px;
}

.note {
  margin-top: 16px;
  padding: 10px 12px;
  background: #f4f0e8;
  border-left: 4px solid var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.schedule-note {
  margin-top: 8px;
  color: var(--muted) !important;
  font-size: 12px !important;
  font-weight: 700;
}

@media (min-width: 761px) {
  .branch-page .area-hero {
    padding: 124px 0 46px;
    background:
      linear-gradient(135deg, rgba(250, 247, 242, .96), rgba(255, 255, 255, .86)),
      linear-gradient(180deg, #fff, var(--soft));
  }

  .branch-page .area-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 540px) minmax(280px, 360px);
    align-items: end;
    gap: 28px;
    width: min(960px, calc(100% - 64px));
    margin: 0 auto;
  }

  .branch-page .area-hero .section-title {
    width: 100%;
    margin: 0;
    text-align: left;
  }

  .branch-page .area-hero .section-title h1 {
    max-width: 620px;
    margin-bottom: 18px;
    font-size: clamp(38px, 4.4vw, 58px);
    line-height: 1.18;
    letter-spacing: .02em;
  }

  .branch-page .area-hero .section-title p:not(.eyebrow) {
    color: var(--navy);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .04em;
  }

  .branch-page .area-lead {
    width: 100%;
    margin: 0;
    padding: 6px 0 6px 28px;
    border-left: 2px solid rgba(182, 149, 13, .5);
    color: var(--ink);
    font-size: clamp(16px, 1.45vw, 21px);
    font-weight: 700;
    line-height: 1.95;
  }

  .branch-page .locations.section {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "details"
      "actions";
    align-items: start;
    gap: 22px;
    width: min(1200px, calc(100% - 64px));
    margin: 0 auto;
    padding: 38px 0 80px;
  }

  .branch-page .area-slider {
    grid-area: photo;
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: clamp(200px, 20vw, 270px);
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--soft);
    box-shadow: 0 24px 56px rgba(9, 42, 85, .14);
    transform: none;
  }

  .branch-page .area-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(3, 25, 55, 0) 55%, rgba(3, 25, 55, .22));
  }

  .branch-page .area-slider .slider-track img {
    height: 100% !important;
    width: var(--slider-img-width, auto) !important;
  }

  .branch-page .location-grid {
    grid-area: details;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
    width: 100%;
    margin: 0;
  }

  .branch-page--single .location-grid {
    grid-template-columns: minmax(0, 880px);
    justify-content: center;
  }

  .branch-page .branch {
    min-height: 0;
    padding: 28px;
    border-radius: 8px;
  }

  .branch-page .branch.active {
    border-width: 1px;
    box-shadow: 0 22px 48px rgba(9, 42, 85, .12);
  }

  .branch-page .branch-head {
    margin-bottom: 16px;
  }

  .branch-page .address {
    min-height: 0;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
  }

  .branch-page .bus-info {
    margin: 0 0 18px;
    padding: 12px 14px;
    background: #f7f8f8;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .branch-page .schedule {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 0;
  }

  .branch-page--single .schedule {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .branch-page .schedule-day {
    min-width: 0;
    padding: 12px 14px;
    background: rgba(246, 241, 230, .58);
    border-radius: 8px;
    break-inside: avoid;
  }

  .branch-page .schedule h3 {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin: 0 0 9px;
    padding: 4px 10px;
    color: var(--navy);
    background: rgba(182, 149, 13, .14);
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.3;
  }

  .branch-page .schedule h3:first-child {
    margin-top: 0;
  }

  .branch-page .schedule p {
    margin-bottom: 6px;
    font-size: 14.5px;
    line-height: 1.7;
  }

  .branch-page .branch-map {
    margin-top: 18px;
    padding-top: 0;
  }

  .branch-page .branch-map iframe {
    height: 185px;
  }

  .branch-page .button-row {
    grid-area: actions;
    justify-content: center;
    margin-top: 8px;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .branch-page .area-hero {
    padding: 112px 0 40px;
  }

  .branch-page .area-hero-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    width: min(880px, calc(100% - 48px));
  }

  .branch-page .area-lead {
    padding: 18px 22px;
    border-left: 0;
    border-top: 2px solid rgba(182, 149, 13, .5);
    background: rgba(255, 255, 255, .7);
  }

  .branch-page .locations.section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "details"
      "actions";
    width: min(920px, calc(100% - 48px));
    gap: 22px;
    padding-top: 34px;
  }

  .branch-page .area-slider {
    height: clamp(180px, 26vw, 225px);
  }

  .branch-page .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .branch-page--single .location-grid {
    grid-template-columns: 1fr;
  }

  .branch-page--single .schedule {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.text-link {
  margin-top: auto;
  color: var(--navy);
  font-weight: 900;
}

.trial {
  background: var(--warm-white);
}

.trial-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: stretch;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
}

.trial-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.trial-slider {
  position: relative;
  width: 100%;
  height: 190px;
  margin-top: 22px;
  margin-bottom: 24px;
  overflow: hidden;
  background: var(--soft);
  border-radius: 0;
}

.trial-slider .slider-overflow {
  height: 100%;
}

.trial-slider .slider-track img {
  height: 100% !important;
  width: var(--slider-img-width, auto) !important;
  aspect-ratio: unset !important;
  position: static !important;
  opacity: 1 !important;
  transform: none !important;
}

.steps {
  display: grid;
  gap: 10px;
}

.steps .step-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 13px 15px;
  color: var(--navy);
  background: linear-gradient(180deg, #fff, #f7f8f8);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.55;
}

.steps .step-item > b {
  display: grid;
  place-items: center;
  width: 46px;
  min-height: 46px;
  color: #fff;
  background: linear-gradient(135deg, #b6950d, #d6ae3a);
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: .08em;
}

.steps .step-item > span {
  display: block;
  min-width: 0;
  padding-top: 2px;
}

.steps .step-item:last-child {
  background: #fffaf1;
  border-color: rgba(182, 149, 13, .38);
}

.steps small {
  display: block;
  margin-top: 6px;
  padding-top: 6px;
  color: var(--muted);
  border-top: 1px solid rgba(182, 149, 13, .22);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.trial-bottom-actions {
  grid-column: 1 / -1;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
  padding-top: 10px;
}

.trial-bottom-actions .button {
  min-width: min(280px, 100%);
}

@media (min-width: 761px) {
  .trial-card {
    grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
    gap: 34px;
    align-items: center;
  }

  .trial-left {
    justify-content: center;
    gap: 26px;
    min-width: 0;
  }

  .trial-desc {
    max-width: 470px;
    margin: 0;
    font-size: 16px;
    line-height: 2;
  }

  .trial-left .button-row {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
  }

  .trial-left .button {
    width: min(330px, 100%);
  }

  .trial-bottom-actions .button {
    width: min(300px, 100%);
  }

  .steps {
    gap: 12px;
  }

  .steps .step-item {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    min-height: 72px;
    padding: 14px 18px;
    box-shadow: 0 10px 24px rgba(9, 42, 85, .055);
  }

  .steps .step-item > b {
    width: 52px;
    min-height: 52px;
    font-size: 15px;
  }

  .steps .step-item > span {
    font-size: 15.5px;
  }

  .steps small {
    font-size: 12.5px;
  }
}

@media (min-width: 1024px) {
  .trial-card {
    grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
    gap: 46px;
    padding: clamp(38px, 4.5vw, 56px);
  }

  .steps .step-item {
    min-height: 76px;
  }
}

.trial-lp-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 86px) 74px;
  overflow: hidden;
  color: #fff;
  background: var(--navy-dark);
}

.trial-lp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 31, 64, .92), rgba(6, 31, 64, .66) 48%, rgba(6, 31, 64, .18)),
    linear-gradient(180deg, rgba(6, 31, 64, .22), rgba(6, 31, 64, .78));
}

.trial-lp-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.trial-lp-hero-inner {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
}

.trial-lp-hero .eyebrow {
  color: var(--gold-light);
}

.trial-lp-hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 46px;
  line-height: 1.18;
  letter-spacing: .02em;
}

.trial-lp-hero p:not(.eyebrow) {
  width: min(560px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.9;
}

.trial-lp-actions,
.trial-lp-reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trial-lp-hero .button.outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .62);
  background: rgba(255, 255, 255, .08);
}

.trial-lp-summary,
.trial-lp-photos,
.trial-lp-faq {
  background: var(--warm-white);
}

.trial-lp-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.trial-lp-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(960px, 100%);
}

.trial-lp-card {
  display: block;
  min-height: 210px;
  padding: 25px;
}

.trial-lp-card-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  margin-bottom: 12px;
}

.trial-lp-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.trial-lp-card-heading span {
  margin-bottom: 0;
  padding-top: 4px;
  white-space: nowrap;
}

.trial-lp-card h3 {
  margin: 0 0 12px;
  color: var(--navy-dark);
  font-size: 20px;
}

.trial-lp-card-heading h3 {
  margin-bottom: 0;
}

.trial-lp-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.trial-lp-flow .section-title,
.trial-lp-photos .section-title,
.trial-lp-locations .section-title,
.trial-lp-faq .section-title,
.trial-lp-reserve .section-title {
  margin-inline: auto;
}

.trial-lp-steps {
  width: min(860px, 100%);
  margin: 0 auto;
}

.trial-lp-note {
  width: min(860px, 100%);
  margin: 24px auto 0;
  padding: 22px 24px;
  color: var(--navy-dark);
  background: #fff;
  border: 1px solid rgba(182, 149, 13, .26);
  border-radius: 8px;
}

.trial-lp-note h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.trial-lp-note p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.trial-lp-note ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.25em;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.trial-lp-photos .trial-slider {
  width: min(1120px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.trial-lp-story {
  display: grid;
  gap: 18px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.trial-lp-story-item {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(9, 42, 85, .055);
}

.trial-lp-story-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

.trial-lp-story-item h3 {
  margin: 0 0 10px;
  color: var(--navy-dark);
  font-size: clamp(19px, 2vw, 24px);
}

.trial-lp-story-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.trial-lp-after-note {
  margin-top: 14px;
  padding: 14px 16px;
  background: rgba(182, 149, 13, .08);
  border: 1px solid rgba(182, 149, 13, .25);
  border-radius: 8px;
}

.trial-lp-after-note p {
  color: var(--navy-dark);
}

.trial-lp-after-note .button {
  margin-top: 12px;
  margin-left: auto;
  display: flex;
  width: fit-content;
}

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

.trial-lp-faq-list {
  display: grid;
  gap: 12px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.trial-lp-faq-item {
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(9, 42, 85, .045);
}

.trial-lp-faq-item summary {
  color: var(--navy-dark);
  cursor: pointer;
  font-weight: 900;
}

.trial-lp-faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.trial-lp-reserve {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.trial-lp-reserve .section-title h2,
.trial-lp-reserve .section-title p {
  color: #fff;
}

.trial-lp-reserve .eyebrow {
  color: var(--gold-light);
}

.trial-lp-reserve-inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.trial-lp-reserve .trial-card {
  width: min(620px, 100%);
  grid-template-columns: 1fr;
  gap: 26px;
}

.trial-lp-reserve-actions {
  justify-content: center;
}

.trial-lp-reserve .button.outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .08);
}

.trial-lp-reserve .trial-card .button.outline {
  color: var(--navy);
  border-color: var(--navy);
  background: #fff;
}

@media (max-width: 1080px) {
  .trial-lp-card-grid,
  .trial-lp-location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .trial-lp-hero {
    min-height: 560px;
    padding: 124px 20px 56px;
    align-items: end;
  }

  .trial-lp-hero::after {
    background:
      linear-gradient(180deg, rgba(6, 31, 64, .28), rgba(6, 31, 64, .88) 62%, rgba(6, 31, 64, .96)),
      linear-gradient(90deg, rgba(6, 31, 64, .78), rgba(6, 31, 64, .16));
  }

  .trial-lp-hero-img {
    object-position: 58% center;
  }

  .trial-lp-hero h1 {
    font-size: 34px;
  }

  .trial-lp-hero p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.82;
  }

  .trial-lp-actions,
  .trial-lp-reserve-actions {
    flex-direction: column;
  }

  .trial-lp-actions .button,
  .trial-lp-reserve-actions .button {
    width: 100%;
  }

  .trial-lp-card-grid,
  .trial-lp-location-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trial-lp-card {
    min-height: 0;
    padding: 22px;
  }

  .trial-lp-card h3 {
    font-size: 19px;
  }

  .trial-lp-story {
    gap: 14px;
  }

  .trial-lp-story-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 14px;
  }

  .trial-lp-story-item h3 {
    font-size: 19px;
  }

  .trial-lp-story-item p {
    font-size: 14px;
  }

  .trial-lp-note {
    padding: 20px;
  }

  .trial-lp-faq-item {
    padding: 16px 18px;
  }
}

.admission-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.admission-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 16px;
  align-content: start;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
}

.admission-step::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(9, 42, 85, .12);
  border-radius: 50%;
}

.admission-step span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  color: var(--navy-dark);
  background: var(--gold-light);
  border-radius: 50%;
  font-weight: 900;
}

.admission-step h3 {
  align-self: center;
  margin-bottom: 0;
}

.admission-step p {
  grid-column: 1 / -1;
  margin-top: 18px;
  color: var(--muted);
}

.admission-step .admission-note {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--muted) 78%, #fff);
}

.button-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.branch-other-dojo {
  margin-top: 12px;
  justify-content: center;
}

.branch-page .button-row.branch-other-dojo {
  grid-area: auto;
  margin-top: -8px;
}

.branch-page .branch-other-dojo .button {
  color: var(--muted);
  background: #f1f2f4;
  border-color: #d8dde4;
  box-shadow: none;
}

.branch-page .branch-other-dojo .button:hover {
  color: var(--navy);
  background: #e8ebef;
  border-color: #cfd5de;
}

.features .button-row {
  justify-content: center;
  justify-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(680px, 100%);
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 22px 20px;
}

.contact-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex: 0 0 64px;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.contact-card span {
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}

.line-card span {
  color: var(--green);
}

.instagram-profile {
  position: relative;
  display: block;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 22px;
  overflow: hidden;
  color: var(--navy-dark);
  text-decoration: none;
}

.instagram-profile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 214, 0, .13), rgba(255, 1, 105, .12) 52%, rgba(118, 56, 250, .13));
  pointer-events: none;
}

.instagram-profile-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 56px);
  min-width: 0;
  text-align: left;
}

.instagram-profile-copy {
  min-width: 0;
  max-width: 480px;
  text-align: left;
}

.instagram-profile-action {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.instagram-profile-icon {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(9, 42, 85, .14);
}

.instagram-profile-copy > span {
  display: block;
  margin-bottom: 5px;
  color: #a8751f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}

.instagram-profile strong {
  display: block;
  max-width: 100%;
  color: var(--navy-dark);
  font-size: clamp(20px, 2.05vw, 26px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .02em;
  overflow-wrap: anywhere;
}

.instagram-profile p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.75;
}

.instagram-profile-button {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin: 0;
  padding: 10px 18px;
  color: #fff !important;
  background: var(--navy);
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(9, 42, 85, .18);
  font-size: 14px !important;
  font-weight: 800;
  letter-spacing: .04em !important;
}

.instagram-profile-button::after {
  content: ">";
  margin-left: 10px;
}

.footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, .75fr) minmax(360px, 1.25fr) minmax(220px, .75fr);
  grid-template-areas:
    "brand nav social"
    "brand nav legal";
  gap: 18px clamp(28px, 4vw, 48px);
  align-items: center;
  padding: 48px max(32px, calc((100vw - 1180px) / 2)) 38px;
  color: #fff;
  background: var(--navy-dark);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(32px, calc((100vw - 1180px) / 2));
  right: max(32px, calc((100vw - 1180px) / 2));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 146, 42, .7), transparent);
}

.footer-brand {
  grid-area: brand;
  align-self: center;
}

.footer .brand strong,
.footer .brand small,
.footer .brand-dojo {
  color: #fff;
}

.footer .brand small,
.footer .brand-dojo {
  opacity: .72;
}

.footer nav {
  grid-area: nav;
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, auto));
  gap: 10px 28px;
  justify-content: center;
  padding: 0 clamp(20px, 3vw, 36px);
  border-left: 1px solid rgba(255, 255, 255, .12);
  border-right: 1px solid rgba(255, 255, 255, .12);
  font-size: 13px;
  font-weight: 800;
}

.footer nav a {
  color: rgba(255, 255, 255, .88);
  line-height: 1.35;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}

.footer nav a:hover {
  color: #fff;
}

.social-links {
  grid-area: social;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  background: rgba(255, 255, 255, .08);
}

.social-links img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer > small {
  grid-area: legal;
  justify-self: end;
  display: grid;
  gap: 4px;
  max-width: 320px;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.8;
  text-align: right;
  letter-spacing: .04em;
}

.footer-privacy {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: .72;
}

@media (min-width: 761px) and (max-width: 1080px) {
  .footer {
    grid-template-columns: minmax(230px, .8fr) minmax(220px, .7fr);
    grid-template-areas:
      "brand social"
      "nav nav"
      "legal legal";
    gap: 24px;
    padding: 42px 28px 34px;
  }

  .footer::before {
    left: 28px;
    right: 28px;
  }

  .footer nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
    gap: 10px;
    padding: 22px 0 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .footer nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    text-align: center;
  }

  .footer > small {
    justify-self: center;
    max-width: none;
    padding-top: 2px;
    text-align: center;
  }
}

.calendar-practice-note {
  width: min(560px, 100%);
  margin: 0 auto 22px;
  padding: 22px clamp(18px, 4vw, 34px) 24px;
  color: var(--navy-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(9, 42, 85, .08);
  text-align: center;
}

.calendar-practice-note p {
  margin: 0 0 24px;
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: .04em;
}

.calendar-practice-note p::first-letter {
  color: var(--navy);
}

.calendar-practice-note dl {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 22px);
  margin: 0;
}

.calendar-practice-note div {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.calendar-practice-note dt,
.calendar-practice-note dd {
  margin: 0;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .04em;
  white-space: nowrap;
}

.calendar-practice-note dd {
  color: var(--navy-dark);
}

@media (max-width: 760px) {
  .calendar-practice-note {
    width: calc(100vw - 28px);
    max-width: 430px;
    margin: 0 auto 28px;
    padding: 20px 10px 22px;
  }

  .calendar-practice-note p {
    margin-bottom: 22px;
    font-size: clamp(15px, 4.05vw, 17px);
    line-height: 1.55;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .calendar-practice-note dl {
    gap: 0;
  }

  .calendar-practice-note div {
    gap: 10px;
  }

  .calendar-practice-note dt,
  .calendar-practice-note dd {
    font-size: clamp(16px, 4.4vw, 20px);
    letter-spacing: 0;
  }
}

.schedule-page .news-page-body {
  max-width: 1080px;
}

.schedule-page .schedule-calendar {
  display: block;
  width: min(980px, 100%);
  margin: 0 auto;
}

.schedule-page .schedule-calendar iframe {
  display: block;
  width: 100%;
  min-height: 600px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(9, 42, 85, .08);
}

.schedule-page .html-schedule {
  display: none;
}

.html-schedule {
  display: grid;
  gap: 20px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.schedule-overview {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
}

.schedule-overview-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.schedule-overview h2,
.html-calendar h2,
.schedule-day-panel h2 {
  margin: 0;
  color: var(--navy-dark);
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
  letter-spacing: .04em;
}

.schedule-overview .eyebrow,
.schedule-day-panel .eyebrow {
  margin-bottom: 6px;
}

.schedule-google-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.schedule-source-note {
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

.schedule-upcoming,
.schedule-day-events {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}

.schedule-event {
  position: relative;
  display: grid;
  gap: 9px;
  padding: 16px 16px 17px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--branch-color, var(--navy));
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(9, 42, 85, .08);
}

.schedule-event--meisei {
  --branch-color: #082650;
  --branch-soft: rgba(8, 38, 80, .08);
}

.schedule-event--nishiharu {
  --branch-color: #b6950d;
  --branch-soft: rgba(182, 149, 13, .14);
}

.schedule-event--shikatsu {
  --branch-color: #2f6f9f;
  --branch-soft: rgba(47, 111, 159, .12);
}

.schedule-event-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.schedule-event-head span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 10px;
  color: var(--branch-color);
  background: var(--branch-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.schedule-event-head time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.schedule-event p {
  margin: 0;
  color: var(--navy-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.schedule-event ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.schedule-event li {
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.55;
}

.schedule-event-note {
  color: var(--muted) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

.schedule-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.schedule-filter {
  min-height: 38px;
  padding: 7px 15px;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(9, 42, 85, .18);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.schedule-filter.is-active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.html-calendar {
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
}

.html-calendar-head {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.html-calendar-head h2 {
  text-align: center;
  font-size: clamp(22px, 2.6vw, 30px);
}

.calendar-nav {
  width: 44px;
  height: 44px;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.html-calendar-weekdays,
.html-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.html-calendar-weekdays {
  background: #f7f3ec;
  border-bottom: 1px solid var(--line);
}

.html-calendar-weekdays span {
  padding: 10px 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.html-calendar-day {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 8px;
  min-height: 108px;
  padding: 10px;
  color: var(--navy-dark);
  background: #fff;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
}

.html-calendar-day:nth-child(7n) {
  border-right: 0;
}

.html-calendar-day.is-outside {
  color: #a5acb8;
  background: #faf8f4;
}

.html-calendar-day.is-selected {
  box-shadow: inset 0 0 0 2px var(--gold);
}

.calendar-date-number {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  font-size: 13px;
  font-weight: 900;
}

.html-calendar-day.is-today .calendar-date-number {
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
}

.calendar-day-events {
  display: grid;
  align-content: start;
  gap: 4px;
  min-width: 0;
}

.schedule-chip,
.schedule-chip-more {
  display: block;
  min-width: 0;
  padding: 3px 6px;
  color: var(--branch-color, var(--navy));
  background: var(--branch-soft, rgba(8, 38, 80, .08));
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.schedule-chip--meisei {
  --branch-color: #082650;
  --branch-soft: rgba(8, 38, 80, .1);
}

.schedule-chip--nishiharu {
  --branch-color: #8c6700;
  --branch-soft: rgba(182, 149, 13, .18);
}

.schedule-chip--shikatsu {
  --branch-color: #235f88;
  --branch-soft: rgba(47, 111, 159, .14);
}

.schedule-chip-more {
  color: var(--muted);
  background: #f1f3f6;
}

.schedule-day-panel {
  padding: clamp(20px, 4vw, 30px);
  border-radius: 8px;
}

.schedule-day-panel-head {
  margin-bottom: 18px;
}

.schedule-empty {
  margin: 0;
  padding: 18px;
  color: var(--muted);
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 760px) {
  .schedule-page .news-page-body {
    padding: 48px 14px 72px;
  }

  .html-schedule {
    gap: 16px;
  }

  .schedule-overview {
    padding: 20px 16px;
  }

  .schedule-overview-head {
    display: grid;
    gap: 14px;
  }

  .schedule-google-link {
    width: 100%;
  }

  .schedule-source-note {
    margin-bottom: 18px;
    font-size: 12.5px;
  }

  .schedule-upcoming,
  .schedule-day-events {
    grid-template-columns: 1fr;
  }

  .schedule-filter {
    flex: 1 1 auto;
    min-width: 72px;
    padding-inline: 10px;
  }

  .html-calendar-head {
    grid-template-columns: 38px 1fr 38px;
    padding: 14px 12px;
  }

  .calendar-nav {
    width: 38px;
    height: 38px;
  }

  .html-calendar-head h2 {
    font-size: 21px;
  }

  .html-calendar-weekdays span {
    padding: 8px 2px;
    font-size: 11px;
  }

  .html-calendar-day {
    min-height: 66px;
    gap: 4px;
    padding: 6px 4px;
  }

  .calendar-date-number {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .schedule-chip,
  .schedule-chip-more {
    padding: 2px 3px;
    font-size: 10px;
    text-align: center;
  }

  .schedule-day-panel {
    padding: 20px 16px;
  }
}

.mobile-cta {
  display: none;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(.16, .9, .3, 1) .14s, transform 1.1s cubic-bezier(.16, .9, .3, 1) .14s;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger delays for grid/list items */
.feature-grid .feature-card:nth-child(1) { transition-delay: .05s; }
.feature-grid .feature-card:nth-child(2) { transition-delay: .22s; }
.feature-grid .feature-card:nth-child(3) { transition-delay: .40s; }
.feature-grid .feature-card:nth-child(4) { transition-delay: .58s; }

.admission-flow .admission-step:nth-child(2) { transition-delay: .22s; }
.admission-flow .admission-step:nth-child(3) { transition-delay: .38s; }

.contact-grid .contact-card:nth-child(2) { transition-delay: .14s; }
.contact-grid .contact-card:nth-child(3) { transition-delay: .28s; }
.instagram-profile { transition-delay: .12s; }

.news-list a:nth-child(2) { transition-delay: .08s; }
.news-list a:nth-child(3) { transition-delay: .16s; }

/* ── ニュース記事カード ───────────────────────────── */
.news-articles {
  width: min(720px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.news-article {
  padding: 28px 8px 26px;
  border-bottom: 1px solid var(--line);
}

.news-article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.news-article-meta time {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .06em;
}

/* タグ共通 */
.news-article-meta b {
  padding: 2px 9px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
}
.news-article-meta b.tag-new    { background: #e03333; color: #fff; }
.news-article-meta b.tag-anniv  { background: linear-gradient(135deg,#f0d878,#c8922a); color: #fff; text-shadow: 0 1px 2px rgba(80,40,0,.3); }
.news-article-meta b.tag-event  { background: var(--navy); color: #fff; }

.news-article h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 0 0 14px;
  line-height: 1.5;
}

.news-article-body {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ink);
}

.news-article-body p {
  margin: 0 0 .7em;
}

.news-article-body p:last-child { margin-bottom: 0; }

.news-article-body ul {
  margin: 0 0 .8em;
  padding-left: 1.5em;
}

.news-article-body li {
  margin-bottom: .25em;
}

.news-article-body .info-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 18px;
  font-size: 14px;
  margin-bottom: .8em;
}

.news-article-body .info-grid dt {
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.news-article-body .info-grid dd {
  margin: 0;
}

.news-article-body .news-note {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: .5em;
}

/* ── ブログ記事スタイル ──────────────────────────── */
.blog-article {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 0 60px;
}

.blog-article .news-article-body {
  font-size: 16px;
  line-height: 2;
  color: var(--ink);
}

.blog-article .news-article-body > p {
  margin: 0 0 1.6em;
}

.blog-article .news-article-body h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 2.4em 0 .8em;
  padding: 0 0 .5em;
  border-bottom: 2px solid var(--gold);
  line-height: 1.5;
}

.blog-article .news-article-body h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin: 2em 0 .6em;
  padding-left: .8em;
  border-left: 4px solid var(--navy);
  line-height: 1.5;
}

.blog-article .news-article-body ul {
  margin: 0 0 1.4em;
  padding-left: 1.6em;
}

.blog-article .news-article-body li {
  margin-bottom: .7em;
  line-height: 1.8;
}

.blog-article .news-article-body small {
  font-size: 14px;
}

.blog-article .news-article-body .news-note {
  font-size: 14px;
  color: var(--muted);
  background: var(--soft);
  border-radius: 8px;
  padding: 10px 14px;
  margin: .8em 0 1.4em;
}

.blog-article .info-grid {
  margin: .8em 0 1.6em;
}

.blog-article .info-grid dt,
.blog-article .info-grid dd {
  font-size: 15px;
  padding: 12px 14px;
  line-height: 1.7;
}

.blog-article .info-grid small {
  font-size: 13px;
}

.monthly-template {
  max-width: 760px;
}

.monthly-template .news-article-body h2 {
  margin-top: 2.2em;
}

.monthly-hero-image {
  position: relative;
  overflow: hidden;
  margin: 8px 0 34px;
  border-radius: 16px;
  background: var(--soft);
  box-shadow: 0 18px 40px rgba(10, 26, 58, .12);
}

.monthly-hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.monthly-hero-image figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 34px 22px 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .03em;
  line-height: 1.7;
  background: linear-gradient(180deg, rgba(10, 26, 58, 0), rgba(10, 26, 58, .78));
}

.monthly-block {
  margin: 0 0 34px;
}

.monthly-feature,
.monthly-calendar-panel,
.monthly-info-card {
  border: 1px solid rgba(201, 146, 42, .26);
  border-radius: 14px;
  background: #fffdf8;
}

.monthly-feature {
  display: block;
  padding: 16px;
}

.monthly-feature > img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 0;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
}

.monthly-timeline {
  list-style: none;
  margin: 0;
  padding: 2px 0 0;
}

.blog-article .news-article-body .monthly-timeline {
  margin-bottom: 18px;
  padding-left: 0;
}

.monthly-timeline li {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid rgba(10, 26, 58, .1);
  line-height: 1.65;
}

.monthly-timeline li:first-child {
  padding-top: 0;
}

.monthly-timeline li:last-child {
  border-bottom: 0;
}

.monthly-timeline-month {
  display: block;
  padding: 17px 0 7px;
  border-bottom: 0;
}

.monthly-timeline-month:first-child {
  padding-top: 0;
}

.monthly-timeline-month span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 4px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.monthly-date {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.6;
}

.monthly-calendar-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 22px;
  align-items: center;
  overflow: hidden;
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-color: rgba(245, 211, 126, .42);
}

.monthly-calendar-panel::before {
  content: "";
  position: absolute;
  inset: auto 20px 18px auto;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(245, 211, 126, .24);
  border-radius: 50%;
  pointer-events: none;
}

.monthly-calendar-panel p {
  position: relative;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .92);
}

.monthly-calendar-panel .button-row {
  position: relative;
  margin: 0;
}

.monthly-calendar-panel > img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .2);
}

.monthly-calendar-button {
  display: flex;
  justify-content: center;
  padding: 6px 0 8px;
}

.monthly-calendar-button .button {
  min-width: min(100%, 320px);
}

.monthly-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.monthly-info-card {
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(10, 26, 58, .08);
}

.monthly-info-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.monthly-info-card > div {
  padding: 16px 18px 18px;
}

.blog-article .news-article-body .monthly-info-card h3 {
  margin: 0 0 .55em;
}

.blog-article .news-article-body .monthly-info-card p {
  margin: 0 0 .9em;
  font-size: 15px;
  line-height: 1.75;
}

.blog-article .news-article-body .monthly-info-card p:last-child {
  margin-bottom: 0;
}

.monthly-info-card--text {
  display: flex;
  align-items: center;
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #fff8e8, #fffdf8);
}

.monthly-info-card--wide {
  display: block;
  grid-column: 1 / -1;
}

.monthly-info-card--wide > img {
  height: auto;
  min-height: 0;
}

.monthly-counts-block {
  margin-top: 42px;
}

.monthly-counts-panel {
  padding: 22px;
  border: 1px solid rgba(201, 146, 42, .3);
  border-radius: 14px;
  background: linear-gradient(135deg, #fff8e8, #fffdf8);
}

.monthly-count-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.monthly-count-grid > div {
  padding: 14px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(201, 146, 42, .22);
  text-align: center;
}

.monthly-count-grid dt {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .03em;
}

.monthly-count-grid dd {
  margin: 0;
  color: var(--gold);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.monthly-counts-panel p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.9;
}

@media (max-width: 760px) {
  .monthly-template {
    max-width: none;
  }

  .monthly-hero-image {
    margin: 4px 0 28px;
    border-radius: 12px;
  }

  .monthly-hero-image img {
    aspect-ratio: 4 / 3;
  }

  .monthly-hero-image figcaption {
    padding: 42px 16px 14px;
    font-size: 13.5px;
  }

  .monthly-feature,
  .monthly-calendar-panel,
  .monthly-card-grid {
    grid-template-columns: 1fr;
  }

  .monthly-feature {
    gap: 16px;
    padding: 14px;
  }

  .monthly-feature > img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .monthly-timeline li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }

  .monthly-timeline-month {
    padding: 16px 0 6px;
  }

  .monthly-calendar-panel {
    gap: 16px;
    padding: 18px;
  }

  .monthly-calendar-panel > img {
    order: -1;
  }

  .monthly-card-grid {
    gap: 14px;
  }

  .monthly-info-card > div {
    padding: 15px 16px 17px;
  }

  .monthly-info-card--text {
    grid-column: auto;
  }

  .monthly-info-card--wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .monthly-info-card--wide > img {
    min-height: 0;
    height: auto;
  }

  .monthly-counts-block {
    margin-top: 34px;
  }

  .monthly-counts-panel {
    padding: 16px;
  }

  .monthly-count-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .monthly-count-grid > div {
    padding: 12px 8px;
  }

  .monthly-count-grid dd {
    font-size: 22px;
  }
}

.monthly-hero-image--notice img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

/* ── 指導者紹介 ──────────────────────────────────── */
.instructor-list {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 0 60px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.instructor-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.instructor-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.instructor-list > .instructor-card {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 24px;
}

.instructor-list > .instructor-card .instructor-photo {
  width: min(280px, 100%);
}

.instructor-list > .instructor-card .instructor-info {
  width: min(560px, 100%);
  text-align: center;
}

.instructor-list > .instructor-card .instructor-career-list {
  text-align: left;
}

.instructor-card--small {
  grid-template-columns: 120px 1fr;
  gap: 14px;
  max-width: 600px;
  margin: -14px auto 0;
  padding: 22px 24px 0;
  border-radius: 12px;
  background: #f7f5ef;
  background: color-mix(in srgb, var(--soft) 58%, #fff);
}

.instructor-subgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: -14px;
}

.instructor-subgrid .instructor-card--small {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 22px 20px;
  border-bottom: none;
}

.instructor-subgrid .instructor-card--small:only-child {
  grid-column: 1 / -1;
  width: min(390px, 100%);
  justify-self: center;
}

.instructor-card--small .instructor-name {
  font-size: 18px;
  font-weight: 800;
}

.instructor-card--small .instructor-badge.role {
  font-size: 9px;
  padding: 2px 7px;
  background: var(--muted);
}

.instructor-card--small .instructor-badge.rank {
  font-size: 1em;
}

.instructor-card--small .instructor-name-en {
  font-size: 9px;
}

.instructor-card--small .instructor-name-row {
  column-gap: 7px;
  margin-bottom: 10px;
}

.instructor-card--small .instructor-section-title {
  font-size: 10px;
  margin-bottom: 2px;
}

.instructor-card--small .instructor-career-list {
  margin-bottom: 8px;
  gap: 0;
}

.instructor-card--small .career-event {
  font-size: 10px;
  line-height: 1.05;
}

.instructor-card--small .career-result {
  font-size: 9.5px;
  line-height: 1.05;
}

.instructor-card--small .career-year {
  font-size: 8.5px;
  line-height: 1.05;
}

.instructor-card--small .instructor-career-list li {
  border-left-width: 2px;
  padding-left: 8px;
  padding-top: 0;
  padding-bottom: 0;
}

.instructor-card--small .instructor-photo-placeholder {
  font-size: 38px;
}

.instructor-photo {
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.instructor-photo img.instructor-photo-takase {
  object-position: center 18%;
  transform: scale(1.24);
  transform-origin: center 18%;
}

.instructor-photo img.instructor-photo-uehara {
  object-position: center 12%;
}

.instructor-photo img.instructor-photo-yamamura {
  object-position: center 16%;
}

.instructor-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 52px;
  font-weight: 900;
  color: var(--navy);
  opacity: .18;
  letter-spacing: -.02em;
  user-select: none;
}

.instructor-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.instructor-name-row {
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "role name"
    ".    en";
  align-items: end;
  column-gap: 10px;
  margin-bottom: 20px;
}

.instructor-badge.role {
  grid-area: role;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.instructor-name    { grid-area: name; margin-bottom: 0; }
.instructor-name-en { grid-area: en; margin-top: 1px; }

.instructor-name .instructor-badge.rank {
  display: inline;
  margin-left: 6px;
  vertical-align: middle;
}


.instructor-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 12px;
  border-radius: 100px;
}

.instructor-badge.role {
  background: var(--navy);
  color: #fff;
}

.instructor-badge.rank {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.instructor-name {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--navy-dark);
  margin: 0;
  line-height: 1.3;
}

.instructor-name-en {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--muted);
  margin-bottom: 0;
  text-transform: uppercase;
}


.instructor-section-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 2px;
}

.instructor-career-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
  row-gap: 0;
}

.instructor-career-list li {
  padding-left: 0;
  position: static;
  border-left: 3px solid var(--gold);
  padding-left: 10px;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}

.instructor-career-list li + li {
  margin-top: 0;
}

.career-year {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--navy);
  opacity: .8;
  margin-bottom: 0;
}

.career-event {
  display: block;
  font-size: 11.5px;
  line-height: 1.3;
  color: var(--ink);
  font-weight: 600;
}

.career-result {
  display: block;
  font-size: 11px;
  color: var(--ink);
  margin-top: 0;
  line-height: 1.3;
}

@media (max-width: 760px) {
  .instructor-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .instructor-card--small {
    grid-template-columns: clamp(104px, 31vw, 138px) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    max-width: 100%;
    margin-top: -10px;
    padding: 16px 14px;
  }

  .instructor-subgrid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: -10px;
  }

  .instructor-subgrid .instructor-card--small,
  .instructor-subgrid .instructor-card--small:only-child {
    width: 100%;
    max-width: min(520px, 100%);
    margin: 0 auto;
    padding: 16px 14px;
  }

  .instructor-card--small .instructor-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    justify-self: center;
    max-height: none;
  }

  .instructor-photo {
    aspect-ratio: 3 / 4;
    max-height: none;
  }

  .instructor-name {
    font-size: 25px;
  }

  .instructor-card--small .instructor-name {
    font-size: 16px;
    letter-spacing: .04em;
  }

  .instructor-card--small .instructor-badge.role {
    font-size: 8px;
    padding: 2px 6px;
  }

  .instructor-card--small .instructor-badge.rank {
    font-size: 1em;
  }

  .instructor-card--small .instructor-name-en {
    font-size: 8px;
  }

  .instructor-card--small .instructor-career-list {
    gap: 8px;
  }

  .instructor-card--small .career-event,
  .instructor-card--small .career-result {
    overflow-wrap: anywhere;
  }
}

/* 合宿カバンカード */
.camp-bags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0 28px;
}

.camp-bag-card {
  background: var(--soft);
  border-radius: 12px;
  padding: 18px 20px 20px;
}

.camp-bag-card ul {
  margin: 10px 0 0;
  padding-left: 1.4em;
  font-size: 15px;
  line-height: 2;
}

.camp-bag-label {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 4px;
}

.camp-bag-label.small-bag { color: var(--navy); }
.camp-bag-label.large-bag { color: var(--navy-dark); }

.camp-bag-note {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 6px;
}

@media (max-width: 600px) {
  .camp-bags {
    grid-template-columns: 1fr;
  }
}

/* 過去のニュースリンク */
.news-more-link {
  width: min(720px, 100%);
  margin: 22px auto 0;
  text-align: center;
}

.news-more-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid var(--navy);
  transition: opacity .2s;
}

.news-more-link a:hover { opacity: .65; }

.news-more-link a::after {
  content: "→";
  font-size: 13px;
}

/* ── 過去のニュースページ ─────────────────────────── */
.news-page-header {
  padding: 100px 24px 48px;
  text-align: center;
  background: var(--navy-dark);
  color: #fff;
}

.news-page-header .eyebrow {
  font-family: var(--font-stylish);
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.news-page-header h1 {
  font-size: clamp(26px, 5vw, 38px);
  margin: 0 0 10px;
  font-weight: 800;
  color: #fff;
}

.news-page-header p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin: 0;
}

.news-page-body {
  padding: 60px 24px 80px;
  max-width: 760px;
  margin: 0 auto;
}

.news-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 36px;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  transition: opacity .2s;
}

.news-back-link::before { content: "←"; font-size: 13px; }
.news-back-link:hover { opacity: .65; }

/* ── ページイントロローダー ─────────────────────── */
.page-loader {
  display: none;
}

@keyframes annexMsgBgFadeIn {
  from { background: rgba(4, 18, 45, 0); }
  to   { background: rgba(4, 18, 45, 0.40); }
}

@keyframes annexBarFadeIn {
  0%   { opacity: 0; transform: scale(1.06); filter: blur(6px); }
  60%  { filter: blur(0px); }
  100% { opacity: 1; transform: scale(1); filter: blur(0px); }
}

@keyframes annexBarBgReveal {
  0%   { opacity: 0; transform: scale(1.06); filter: blur(6px); }
  60%  { filter: blur(0px); }
  100% { opacity: 1; transform: scale(1); filter: blur(0px); }
}

/* ── テキストマスクリビール ───────────────────────── */
.section-title h2 {
  overflow: hidden;
}

.mask-text {
  display: block;
  transform: translateY(112%);
  transition: transform 1.0s cubic-bezier(.22, 1, .36, 1) .18s;
}

.section-title.is-visible .mask-text {
  transform: translateY(0);
}

/* eyebrowのラインアニメーション */
.eyebrow {
  position: relative;
  display: inline-block;
}

.section-title .eyebrow::after {
  content: none;
}

/* section-title全体のフェードアップを洗練 */
.section-title.reveal-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease .05s, transform 0.9s cubic-bezier(.22, 1, .36, 1) .05s;
}

.section-title.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── ホバー画像ズーム ─────────────────────────── */
.feature-card {
  overflow: hidden;
}

.feature-card > img {
  transition: transform .7s cubic-bezier(.25, .46, .45, .94);
}

@media (hover: hover) {
  .feature-card:hover > img {
    transform: scale(1.07);
  }
}

/* ── カウントアップ ─────────────────────────────── */
[data-countup] {
  font-variant-numeric: tabular-nums;
}

@keyframes wavePanelIn {
  to { transform: translateX(0); }
}

@keyframes wavePanelJuwa {
  0%   { opacity: 0; filter: blur(14px); transform: scale(0.96); }
  55%  { filter: blur(3px); }
  100% { opacity: 1; filter: blur(0); transform: scale(1); }
}

@keyframes textReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes wavePanelUpIn {
  to { transform: translateY(0); }
}

@keyframes heroBgZoom {
  to { transform: scale(1); }
}

@keyframes heroZoom {
  from {
    transform: scale(1.04) translateX(0);
  }

  to {
    transform: scale(1.1) translateX(2.2%);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

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

@keyframes heroTextLineIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes programSlide {
  0% {
    opacity: 0;
    filter: saturate(.9) contrast(.98);
    transform: scale(1.18) translate3d(2.4%, 0, 0);
  }

  6% {
    opacity: 1;
    filter: saturate(1) contrast(1);
    transform: scale(1.145) translate3d(1.4%, 0, 0);
  }

  14% {
    opacity: 1;
    filter: saturate(1.02) contrast(1.01);
    transform: scale(1.09) translate3d(0, 0, 0);
  }

  24% {
    opacity: 1;
    filter: saturate(1.04) contrast(1.02);
    transform: scale(1.035) translate3d(-1.8%, 0, 0);
  }

  30%,
  100% {
    opacity: 0;
    filter: saturate(.92) contrast(.98);
    transform: scale(1) translate3d(-3%, 0, 0);
  }
}

@keyframes featureTextRise {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes featurePhotoSlide {
  0% {
    opacity: 0;
    transform: translateZ(0);
  }

  10%,
  46% {
    opacity: 1;
    transform: translateZ(0);
  }

  56%,
  100% {
    opacity: 0;
    transform: translateZ(0);
  }
}

@keyframes trialPhotoSlide {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }

  8%,
  28% {
    opacity: 1;
    transform: scale(1.02);
  }

  36%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  /* スライダーは reduce でも止めない */
  .slider-track {
    -webkit-animation-name: sliderScroll !important;
    -webkit-animation-duration: var(--dur, 20s) !important;
    -webkit-animation-timing-function: linear !important;
    -webkit-animation-iteration-count: infinite !important;
    animation-name: sliderScroll !important;
    animation-duration: var(--dur, 20s) !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-header {
    gap: 12px;
  }

  .site-header.nav-open .nav-links {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    overflow-y: auto;
    animation: navFade .22s ease;
  }

  @keyframes navFade {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: none;
    margin-top: 0;
    padding-top: 0;
  }

  .nav-group--member {
    border-left: 1.5px solid var(--line);
    border-top: none;
    padding-left: 0;
    margin-left: 0;
    margin-top: 0;
    padding-top: 0;
  }

  .nav-group-label {
    display: block;
    padding: 10px 16px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--muted);
    background: var(--soft);
    border-bottom: 1px solid var(--line);
  }

  .nav-links a {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
    color: var(--navy-dark);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
  }

  .nav-links a::before {
    content: "→";
    color: var(--gold);
    font-size: 12px;
    flex-shrink: 0;
  }

  .nav-links a::after {
    content: none;
    display: none;
  }

  .feature-grid,
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── PC・タブレット（761px以上）：スマホ版と同じ縦書きヒーローデザイン ── */
@media (min-width: 761px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    height: 100vh;
    height: 100svh;
    z-index: 0;
  }

  .hero-bg img {
    object-fit: cover;
    object-position: center center;
    transform: none;
    animation: none;
  }

  .hero-bg::after {
    background:
      radial-gradient(ellipse at 24% 48%, rgba(232, 181, 88, .2), transparent 38%),
      radial-gradient(ellipse at 10% 52%, rgba(255, 246, 220, .46), transparent 46%);
  }

  .hero-wave-bg {
    display: none;
  }

  .hero-wave-panel {
    position: absolute;
    inset: 0 auto 0 clamp(24px, 5vw, 84px);
    width: clamp(260px, 26vw, 330px);
    display: flex;
    align-items: stretch;
    padding: 120px 12px 72px clamp(28px, 4vw, 58px);
    background: rgba(250, 247, 242, 0.72);
    backdrop-filter: blur(4px);
    -webkit-mask-image: linear-gradient(to right, black 52%, rgba(0,0,0,.65) 70%, rgba(0,0,0,.25) 85%, transparent 100%);
    mask-image: linear-gradient(to right, black 52%, rgba(0,0,0,.65) 70%, rgba(0,0,0,.25) 85%, transparent 100%);
    transform-origin: left center;
    transform: scale(0.96);
    opacity: 0;
    animation: wavePanelJuwa 2.0s cubic-bezier(.16, 1, .3, 1) 0.1s both;
  }

  .hero-inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 14px;
    width: 100%;
    height: 100%;
    max-width: none;
    margin-top: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    opacity: 0;
    animation: textReveal 1.4s ease 0.75s both;
  }

  /* 個別アニメーションを無効化（親のtextRevealを使用） */
  .hero-inner .eyebrow,
  .hero-inner h1,
  .hero-inner .hero-sub,
  .hero-inner .hero-text,
  .hero-inner .button {
    animation: none;
    opacity: 1;
  }

  .hero-inner .eyebrow {
    font-size: 18px;
    letter-spacing: .2em;
    margin: 0;
    writing-mode: vertical-rl;
    order: 3;
    align-self: center;
    margin-top: 20px;
    position: relative;
    top: -184px;
    transform: translateX(clamp(58px, 5.4vw, 72px));
  }

  .hero-inner h1 {
    font-size: clamp(44px, 3.6vw, 54px);
    line-height: 1.05;
    letter-spacing: .01em;
    margin: 0;
    white-space: nowrap;
    writing-mode: vertical-rl;
    order: 2;
    align-self: center;
    position: relative;
    top: -8px;
    color: var(--navy-dark);
    font-feature-settings: normal;
    font-kerning: none;
    transform: translateX(clamp(74px, 7vw, 90px));
  }

  .hero-inner h1 br {
    display: none;
  }

  .hero-inner .hero-sub,
  .hero-inner .hero-text,
  .hero-inner .button {
    display: none;
  }

  .program-body > .program-slider,
  .program-slider:has(.slider-overflow),
  .trial-slider {
    left: auto;
    transform: none;
    width: min(1200px, calc(100vw - 48px));
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .program-body > .program-slider,
  .program-slider:has(.slider-overflow) {
    align-self: center;
  }

  /* ニュース以降のセクションで固定背景を隠す */
  #news ~ section,
  #news {
    background: var(--warm-white);
  }

  /* PC・タブレット：25周年帯をスマホと同じコンパクトな帯に */
  .hero-anniv-bar {
    padding: 22px 28px 18px;
    background: none;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 20px;
    z-index: 5;
    animation: annexBarFadeIn 3.1s cubic-bezier(.22, 1, .36, 1) 1.5s both;
  }

  .hero-anniv-bar img {
    width: clamp(130px, 14vw, 180px);
    filter: drop-shadow(0 0 4px rgba(4, 18, 45, 0.8));
  }

  .anniv-texts {
    width: auto;
  }

  /* テキストを1行で表示 */
  .hero-anniv-bar p {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    gap: .8em;
    font-size: clamp(18px, 1.72vw, 24px);
    text-align: right;
    white-space: nowrap;
    line-height: 1.08;
  }

  .hero-anniv-bar p span:first-child,
  .hero-anniv-bar p span:last-child {
    text-align: right;
  }

  /* PC・タブレット：お問い合わせカード — アイコン右上・テキスト縦読み */
  .contact-card {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 28px 24px 26px;
  }

  .contact-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 54px;
    height: 54px;
  }

  .contact-text {
    gap: 6px;
    padding-right: 68px; /* アイコン分の余白 */
  }

  .contact-card strong {
    font-size: 16px;
    line-height: 1.5;
  }

  .contact-card small {
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted);
  }

  /* PC・タブレット：25周年メッセージを表示 */
  .anniv-message {
    display: block;
    background: rgba(4, 18, 45, 0);
  }

  .anniv-message.is-visible {
    animation: annexMsgBgFadeIn 2.2s ease-out both;
  }

  .anniv-message-inner {
    margin: 0 auto;
    font-size: 17px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 0;
    font-size: 17px;
    line-height: 1.9;
  }

  .site-header {
    height: 96px;
    padding-inline: 18px;
    background: #fff;
    border-bottom: 1px solid rgba(219, 164, 61, .24);
    box-shadow: 0 10px 30px rgba(6, 31, 64, .08);
  }

  .site-header.is-scrolled {
    height: 88px;
  }

  .brand {
    min-width: 0;
    gap: 14px;
  }

  .brand small {
    display: block;
    color: var(--navy);
    font-size: 11px;
    letter-spacing: .24em;
  }

  .brand strong {
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: .08em;
  }

  .brand-logo {
    width: 66px;
    height: 54px;
  }

  .menu-toggle {
    width: 74px;
    height: 74px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--navy-dark);
    box-shadow: 0 14px 30px rgba(6, 31, 64, .24);
  }

  .menu-toggle::after {
    content: "メニュー";
    display: block;
    margin-top: 1px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
  }

  .menu-toggle span {
    width: 28px;
    height: 2px;
    margin: 6px auto;
    background: #fff;
  }

  .header-cta {
    display: none;
  }

  /* タブレット以上 */
  .hero {
    min-height: min(96vh, 960px);
  }

  .hero-wave-panel {
    width: min(380px, 30%);
    padding: 100px clamp(18px, 3vw, 40px) 88px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: 43px;
    line-height: 1.18;
    letter-spacing: .03em;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 22px;
  }

  .eyebrow {
    font-size: 12px;
  }

  .hero-sub {
    position: relative;
    margin-bottom: 18px;
    padding-bottom: 13px;
    font-size: 17px;
    line-height: 1.42;
  }

  .hero-sub::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(260px, 70vw);
    height: 1px;
    background: var(--gold);
  }

  .hero-text {
    width: min(290px, 78vw);
    color: var(--navy-dark);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 800;
  }

  .hero-inner .button {
    display: none;
  }

  .hero-mobile-points {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0 -20px;
    padding: 20px 18px 24px;
    color: #fff;
    background:
      linear-gradient(180deg, rgba(3, 25, 55, .04), rgba(3, 25, 55, .96) 18%, #031936 100%);
    border-top: 1px solid rgba(219, 164, 61, .72);
  }

  .hero-mobile-points div {
    display: grid;
    gap: 5px;
    padding: 0 10px;
    text-align: center;
  }

  .hero-mobile-points div + div {
    border-left: 1px solid rgba(219, 164, 61, .6);
  }

  .hero-mobile-points span {
    color: var(--gold);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
  }

  .hero-mobile-points strong {
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: .03em;
  }

  .hero-mobile-points small {
    color: rgba(255, 255, 255, .82);
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1.55;
  }

  .section-title p:not(.eyebrow),
  .feature-card p,
  .program p,
  .branch p,
  .trial-card p,
  .contact p {
    font-size: 16.5px;
  }

  .schedule h3 {
    font-size: 18px;
  }

  .schedule p {
    font-size: 16.5px;
  }

  .note,
  .target {
    font-size: 15px;
  }

  .button,
  .header-cta {
    min-height: 48px;
    font-size: 16px;
  }

  .section {
    padding: 72px 18px;
  }

  .branch-page .area-hero {
    padding: 108px 18px 24px;
  }

  .branch-page .area-hero .section-title {
    margin-bottom: 16px;
  }

  .branch-page .area-hero .section-title h1 {
    margin-bottom: 12px;
    font-size: clamp(29px, 8vw, 34px);
    line-height: 1.22;
  }

  .branch-page .area-hero .section-title p:not(.eyebrow) {
    font-size: 14.5px;
    line-height: 1.6;
  }

  .branch-page .area-lead {
    margin-bottom: 0;
    font-size: 14.5px;
    line-height: 1.75;
  }

  .branch-page .locations.section {
    padding-top: 22px;
  }

  .location-grid,
  .region-grid,
  .trial-card,
  .admission-flow,
  .contact-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .steps {
    gap: 9px;
  }

  .steps .step-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    min-height: 58px;
    padding: 12px 12px;
    font-size: 14.5px;
    line-height: 1.55;
  }

  .steps .step-item > b {
    width: 38px;
    min-height: 38px;
    font-size: 12px;
  }

  .steps small {
    font-size: 11.5px;
  }

  .instagram-profile {
    padding: 26px 22px;
  }

  .instagram-profile-main {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
  }

  .instagram-profile-copy {
    max-width: none;
    text-align: center;
  }

  .instagram-profile-action {
    width: 100%;
  }

  .instagram-profile-icon {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    border-radius: 14px;
  }

  .instagram-profile strong {
    font-size: 19px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .instagram-profile p {
    font-size: 14px;
    line-height: 1.75;
  }

  .instagram-profile-button {
    width: 100%;
  }

  .news-list a {
    grid-template-columns: 82px minmax(0, 1fr) auto;
    gap: 8px;
    padding: 13px 0;
    font-size: 12.5px;
  }

  .news-list time {
    font-size: 11px;
  }

  .news-list b {
    padding: 1px 6px;
    font-size: 9px;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    margin: 0;
  }

  .features.section {
    padding: 72px 18px 76px;
    overflow-x: hidden;
  }

  .feature-card {
    min-height: 0;
    position: relative;
    display: block;
    padding: 20px 20px 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    text-align: center;
    perspective: none;
  }

  .feature-card:nth-child(even) {
    padding: 20px 20px 24px;
  }

  .feature-card img {
    display: block;
    align-self: unset;
    width: 100%;
    height: 200px;
    aspect-ratio: unset;
    margin: 0 0 18px;
    object-fit: cover;
    background: var(--soft);
    border-radius: 8px;
    opacity: 1;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .feature-card:nth-child(even) img {
    align-self: unset;
    margin: 0 0 18px;
  }

  .feature-card .feature-slider {
    align-self: unset;
    width: 100%;
    height: 200px;
    aspect-ratio: unset;
    margin: 0 0 18px;
    border-radius: 8px;
    opacity: 1;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .feature-card:nth-child(even) .feature-slider {
    align-self: unset;
    margin: 0 0 18px;
  }

  .feature-card .feature-slider img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    margin: 0;
    object-fit: cover;
    opacity: 0;
  }

  .feature-card .feature-copy {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    border-left: 0;
    backdrop-filter: none;
  }

  .feature-card:nth-child(even) .feature-copy {
    margin-right: 0;
    margin-left: 0;
  }

  .feature-card span {
    font-size: 13px;
  }

  .feature-card h3 {
    width: auto;
    margin-bottom: 10px;
    color: var(--navy-dark);
    font-size: 19px;
    line-height: 1.5;
    letter-spacing: .02em;
    filter: none;
    text-align: center;
    padding-bottom: 0;
  }

  .feature-card h3::after {
    content: "";
    display: block;
    height: 1px;
    background: var(--gold);
    margin: 8px auto 0;
    width: 0;
    transition: width 1.0s cubic-bezier(.22, 1, .36, 1) 1.4s;
  }

  .feature-card.is-visible h3::after {
    width: 40px;
  }

  .feature-card p {
    width: auto;
    margin: 0;
    color: var(--muted);
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.85;
    letter-spacing: .02em;
    filter: none;
    text-align: left;
  }

  .feature-card .feature-note {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.7;
    text-align: left;
  }

  .feature-card:nth-child(even) h3,
  .feature-card:nth-child(even) p {
    margin-left: 0;
  }

  .program {
    padding: 0 0 78px;
    border-bottom: 0;
  }

  .program-body,
  .program.reverse .program-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0;
    gap: 0;
  }

  .program-heading,
  .program p:not(.program-no):not(.target):not(.program-subtitle),
  .program .button {
    width: 100%;
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
    align-self: center;
  }

  .program.reverse .program-heading,
  .program.reverse p:not(.program-no):not(.target):not(.program-subtitle),
  .program.reverse .button {
    margin-left: 0;
    align-self: center;
  }

  .program-heading {
    order: 1;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    text-align: center;
  }

  .program .program-heading h3,
  .program .program-heading .target {
    width: auto;
    margin: 0;
    align-self: center;
  }

  .program .program-subtitle {
    order: 2;
    width: 100%;
    max-width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
    margin: -4px 0 18px;
    color: #a8751f;
    font-size: 17px;
    line-height: 1.65;
    text-align: center;
  }

  .program p:not(.program-no):not(.target):not(.program-subtitle) {
    order: 4;
  }

  .program .button {
    order: 5;
  }

  .program h3 {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 1.65;
    letter-spacing: .02em;
  }

  .program .target {
    color: var(--navy-dark);
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: .04em;
  }

  .program p:not(.program-no):not(.target):not(.program-subtitle) {
    margin-bottom: 22px;
    color: var(--navy-dark);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.9;
    letter-spacing: .02em;
    text-align: left;
  }

  .program .button {
    justify-content: center;
    min-height: 42px;
    font-size: 13px;
  }

  .program img,
  .program-slider {
    order: 3;
    align-self: stretch;
    width: 100%;
    margin: 0 0 22px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  /* スクロールトラック内の画像は上記ルールを無効化 */
  .program-slider:has(.slider-overflow) {
    width: 100vw !important;
    margin-left: 0 !important;
    left: 50%;
    transform: translateX(-50%) !important;
    height: 180px;
    aspect-ratio: unset;
  }

  .slider-track img {
    width: var(--slider-img-width, auto) !important;
    height: 180px !important;
    aspect-ratio: unset !important;
    margin: 0 !important;
    order: unset !important;
    align-self: auto !important;
  }

  .program.reverse img,
  .program.reverse .program-slider {
    align-self: stretch;
    margin-right: 0;
    margin-left: 0;
  }

  .branch {
    min-height: 0;
  }

  .region-card {
    min-height: 210px;
    padding: 28px 24px;
  }

  .area-hero {
    padding-top: 108px;
  }

  .branch-page .area-hero {
    padding-top: 108px;
  }

  .button-row {
    display: grid;
  }

  .admission-step {
    min-height: 0;
    padding: 24px;
  }

  /* ── フッター スマホリデザイン ── */
  .footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "social"
      "legal";
    align-items: stretch;
    gap: 0;
    padding: 32px 0 28px;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 0 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .footer .brand-logo {
    width: 52px;
    height: 52px;
  }

  .footer .brand strong {
    font-size: 22px;
  }

  .footer .brand-dojo {
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
  }

  .footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    padding: 0;
    border-left: 1px solid rgba(255, 255, 255, .1);
    margin: 0 0 0;
  }

  .footer nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    letter-spacing: .04em;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    border-right: 1px solid rgba(255, 255, 255, .1);
    text-decoration: none;
  }

  .footer nav a::after {
    content: "›";
    font-size: 18px;
    opacity: .5;
    flex-shrink: 0;
    margin-left: 6px;
  }

  .footer .social-links {
    justify-content: center;
    gap: 16px;
    padding: 28px 20px 8px;
    border-top: none;
  }

  .footer .social-links a {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 76px;
    height: auto;
    padding: 13px 8px 10px;
    border-radius: 12px;
  }

  .footer .social-links a::after {
    content: attr(aria-label);
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
    letter-spacing: .04em;
  }

  .footer .social-links img {
    width: 30px;
    height: 30px;
  }

  .footer > small {
    justify-self: stretch;
    display: block;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
    padding: 16px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 20px;
  }

  .footer > small span,
  .footer > small .footer-privacy {
    display: block;
    text-align: center;
  }

  .footer > small .footer-privacy {
    margin-top: 4px;
  }

  /* キャンペーン スマホ */
  .campaign-fee {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .campaign-fee-amount {
    font-size: clamp(30px, 9vw, 42px);
  }

  .campaign-gift {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .campaign-gift-sep {
    display: none;
  }

  .campaign-gift-desc {
    width: 100%;
    padding-left: 66px;
  }

  .mobile-cta {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    margin: 0 0 22px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .mobile-cta a {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    justify-content: start;
    gap: 12px;
    min-height: 78px;
    padding: 13px 18px;
    color: #fff;
    border: 1px solid rgba(219, 164, 61, .92);
    border-radius: 16px;
    background: linear-gradient(135deg, #092a55, #061f40);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08), 0 12px 28px rgba(3, 25, 55, .28);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .02em;
  }

  .mobile-cta a::after {
    content: "›";
    position: absolute;
    right: 14px;
    top: 50%;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, .86);
    border-radius: 50%;
    font-size: 21px;
    line-height: 1;
    transform: translateY(-50%);
  }

  .mobile-cta a span {
    display: grid;
    gap: 1px;
    padding-right: 20px;
    min-width: 0;
  }

  .mobile-cta a b,
  .mobile-cta a small {
    display: block;
    min-width: 0;
    white-space: nowrap;
  }

  .mobile-cta a b {
    font-size: clamp(15px, 4vw, 20px);
    line-height: 1.2;
  }

  .mobile-cta a small {
    color: rgba(255, 255, 255, .82);
    font-size: clamp(10px, 2.7vw, 12px);
    font-weight: 700;
    line-height: 1.35;
  }

  .mobile-cta a img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: none;
  }

  .mobile-cta a:first-child img {
    padding: 9px;
    border: 1px solid rgba(219, 164, 61, .84);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
  }

  .mobile-cta a:last-child {
    border-color: rgba(219, 164, 61, .92);
    background: linear-gradient(135deg, #18bf5f, #078a3d);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1), 0 12px 28px rgba(5, 116, 51, .28);
  }

  .mobile-cta a::before {
    content: none;
  }

  body {
    padding-bottom: 90px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 64px;
    padding-inline: 14px;
    background: #fff;
    border-bottom: 1px solid rgba(229, 231, 235, .7);
    box-shadow: none;
  }

  .site-header.nav-open .nav-links {
    top: 64px;
    left: auto;
    right: 0;
    bottom: 0;
    width: 70%;
  }

  .brand {
    gap: 11px;
  }

  .brand small {
    display: block;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: .08em;
  }

  /* フッター内のブランド小テキストは表示 */
  .footer .brand small {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .1em;
  }

  .brand strong {
    font-family: var(--font-stylish);
    font-size: 17px;
    letter-spacing: .06em;
  }

  .brand-logo {
    width: 46px;
    height: 38px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: inherit;
    background: #fff;
    box-shadow: none;
  }

  .menu-toggle::after {
    content: none;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--navy);
  }

.hero-white-panel {
    inset: 0 auto 0 0;
    width: 56vw;
    padding: 80px 0 60px clamp(14px, 4vw, 28px);
    justify-content: center;
    opacity: 0;
    transform: none;
    animation: ctaFadeIn 0.8s ease 1.9s both;
  }

  /* スマホ：ヒーロー高さをSafariツールバー分を含む高さに（バーが隠れないよう） */
  .hero {
    min-height: 100svh;
    overflow: visible;
  }

  /* スマホ：hero-inner子要素の個別アニメーションを無効化（親でtextReveal済み） */
  .hero-inner .eyebrow,
  .hero-inner h1,
  .hero-inner .hero-sub,
  .hero-inner .hero-text,
  .hero-inner .button {
    animation: none;
    opacity: 1;
  }

  /* スマホ：波背景を非表示（左パネルで代替） */
  .hero-wave-bg {
    display: none;
  }

  /* スマホ：左側縦書きパネル（右辺を波形にクリップ） */
  .hero-wave-panel {
    position: absolute;
    inset: 0 auto 0 0;
    width: 52vw;
    max-width: 210px;
    display: flex;
    align-items: stretch;   /* hero-innerをパネル全高に伸ばす */
    padding: 100px 8px 28px 47px;
    background: rgba(250, 247, 242, 0.70);
    border-radius: 0;
    /* 右辺を波形にクリップ */
    backdrop-filter: blur(3px);
    -webkit-mask-image: linear-gradient(to right, black 52%, rgba(0,0,0,.65) 70%, rgba(0,0,0,.25) 85%, transparent 100%);
    mask-image: linear-gradient(to right, black 52%, rgba(0,0,0,.65) 70%, rgba(0,0,0,.25) 85%, transparent 100%);
    transform-origin: left center;
    transform: scale(0.96);
    opacity: 0;
    animation: wavePanelJuwa 1.6s cubic-bezier(.16, 1, .3, 1) 0.1s both;
  }

  /* スマホ：縦書きレイアウト */
  /* column-reverse = vertical-rl内で左→右に積む */
  .hero-inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    /* 波が出てくる途中から文字をフェードイン */
    opacity: 0;
    animation: textReveal 1.2s ease 0.72s both;
  }

  .hero-inner .eyebrow {
    font-size: 16px;
    letter-spacing: .2em;
    margin: 0;
    writing-mode: vertical-rl;
    order: 3;              /* 右列（波に最も近い） */
    align-self: center;
    margin-top: 16px;
    position: relative;
    top: -168px;
  }

  .hero-inner h1 {
    font-size: clamp(39px, 10.35vw, 45px);
    line-height: 1.05;
    letter-spacing: 0;
    margin: 0;
    white-space: nowrap;
    writing-mode: vertical-rl;
    order: 2;
    align-self: center;
    position: relative;
    top: -18px; /* 可視エリア中央より少し上 */
  }

  .hero-inner h1 br {
    display: none;
  }

  .hero-inner .eyebrow,
  .hero-inner h1 {
    transform: translateX(28px);
  }

  .hero-inner h1 {
    font-feature-settings: normal;
    font-kerning: none;
  }

  .hero-inner .hero-sub {
    font-size: clamp(14px, 4vw, 18px);
    margin: 0;
    padding: 0;
    white-space: nowrap;
    writing-mode: vertical-rl;
    order: 1;
    align-self: flex-start;
    margin-top: clamp(275px, 44vh, 405px); /* 未来を育てる。の下端に合わせる */
    display: none;
  }

  .hero-inner .hero-sub::after {
    display: none;
  }

  .hero-inner .hero-text {
    display: none;
  }

  .hero-inner .button {
    display: none;
  }

  h1 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .hero-mobile-points {
    display: none;
  }

  @keyframes mobilePanelUp {
    to { transform: translateY(0); }
  }

  @keyframes textReveal {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  /* スマホ：25周年バー - 全幅・右から左へスライドイン → 紺色30%透過 */
  .hero-anniv-bar {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 20px 9px;
    background: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 18px;
    z-index: 5;
    opacity: 0;
    animation: annexBarFadeIn 2.2s cubic-bezier(.22, 1, .36, 1) 1.05s both;
  }

  .hero-anniv-bar::before {
    animation: annexBarBgReveal 2.2s cubic-bezier(.22, 1, .36, 1) 1.05s both;
  }

  .hero-anniv-bar img {
    width: clamp(126px, 34vw, 168px);
    filter: drop-shadow(0 0 4px rgba(4, 18, 45, 0.8));
  }

  .anniv-texts {
    width: auto;
  }

  .hero-anniv-bar p {
    font-size: 14px;
    text-align: left;
    letter-spacing: .06em;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(4, 18, 45, 0.9);
  }

  .hero-anniv-bar p span:first-child,
  .hero-anniv-bar p span:last-child {
    text-align: left;
  }

  /* スマホ：25周年メッセージを表示（グローバルのannexMsgBgFadeInを使用） */
  .anniv-message {
    display: block;
    background: rgba(4, 18, 45, 0);
  }

  .anniv-message.is-visible {
    animation: annexMsgBgFadeIn 2.2s ease-out both;
  }

  .anniv-message-inner {
    font-size: 16px;
  }

  /* スマホ：お知らせ以降は白背景で固定背景画像を隠す */
  #news ~ section,
  #news {
    background: var(--warm-white);
  }

  /* スマホ：背景画像を固定（スクロールしても動かない・拡大しない） */
  .hero-bg {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    height: 100vh;    /* フォールバック（Android旧バージョン等） */
    height: 100svh;   /* svh=Safariツールバー込みの高さで固定（iOS/新Android） */
    bottom: auto;
    z-index: 0;
  }

  .hero-bg img {
    object-position: 67% 0%;
    transform: scale(1.1) translateY(-50px);
    animation: none;
  }

  @keyframes heroBgZoomMobile {
    to { transform: scale(1.07) translateY(-66px); }
  }

  .mobile-cta {
    position: fixed;
    z-index: 30;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: auto;
    margin: 0;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 14px;
    background: rgba(255, 255, 255, .76);
    box-shadow: 0 18px 44px rgba(6, 31, 64, .22);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    transition: opacity .28s ease, transform .36s cubic-bezier(.2, .8, .2, 1);
  }

  body.mobile-cta-visible .mobile-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 54px;
    padding: 0 10px;
    color: #fff;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #092a55, #061f40);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 10px 22px rgba(9, 42, 85, .22);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .02em;
  }

  .mobile-cta a::after,
  .mobile-cta a span,
  .mobile-cta a b,
  .mobile-cta a small {
    all: unset;
  }

  .mobile-cta a img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .12));
  }

  .mobile-cta a:first-child img {
    padding: 4px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
  }

  .mobile-cta a:last-child {
    background: linear-gradient(135deg, #20c761, #0e9d46);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .24), 0 10px 22px rgba(24, 181, 83, .24);
    flex-direction: column;
    gap: 1px;
  }

  .mobile-cta a small {
    display: block;
    font-size: 9px;
    opacity: 0.85;
    letter-spacing: .03em;
    line-height: 1;
  }

  /* お知らせ記事：基本情報グリッドをスマホで縦並びに */
  .news-article-body .info-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .news-article-body .info-grid dt {
    margin-top: 12px;
    padding-bottom: 2px;
    border-bottom: 1px dotted var(--line);
  }
  .news-article-body .info-grid dd {
    padding: 4px 0 6px;
  }
}

/* スクロール中に景色が切り替わる波形セクション */
#features,
#classes,
#locations,
#trial,
#pricing,
#admission,
#contact,
#instagram {
  isolation: isolate;
  overflow: visible;
}

#features.features,
#locations.locations {
  background-color: #f2ece1;
  background-image: radial-gradient(rgba(160, 120, 60, .07) 1px, transparent 1px);
  background-size: 22px 22px;
}

#classes.classes,
#contact.contact {
  background-color: #faf7f2;
}

#pricing.pricing {
  background-color: #f2ece1;
  background-image: radial-gradient(rgba(160, 120, 60, .055) 1px, transparent 1px);
  background-size: 24px 24px;
}

#trial.trial {
  background-color: #fbf8f2;
}

#admission.admission {
  background-color: #ede6d8;
  background-image: none;
}

#instagram.instagram {
  background-color: #f2ece1;
}

#features::before,
#classes::before,
#locations::before,
#trial::before,
#pricing::before,
#admission::before,
#contact::before,
#instagram::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -68px;
  z-index: 0;
  height: 70px;
  pointer-events: none;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

#features::before,
#locations::before,
#instagram::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23f2ece1' d='M0 78 C125 42 245 84 370 68 C520 48 610 22 760 54 C910 86 955 108 1110 82 C1250 59 1330 37 1440 68 L1440 120 L0 120 Z'/%3E%3C/svg%3E");
}

#classes::before,
#contact::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23faf7f2' d='M0 72 C120 88 210 36 350 48 C500 61 560 112 730 96 C890 81 940 38 1095 48 C1245 58 1320 104 1440 76 L1440 120 L0 120 Z'/%3E%3C/svg%3E");
}

#pricing::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23f2ece1' d='M0 78 C125 42 245 84 370 68 C520 48 610 22 760 54 C910 86 955 108 1110 82 C1250 59 1330 37 1440 68 L1440 120 L0 120 Z'/%3E%3C/svg%3E");
}

#trial::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23fbf8f2' d='M0 86 C150 42 260 72 405 62 C560 52 620 18 775 46 C930 74 995 113 1160 88 C1300 67 1368 40 1440 56 L1440 120 L0 120 Z'/%3E%3C/svg%3E");
}

#admission::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23ede6d8' d='M0 84 C150 94 230 34 380 46 C545 59 590 104 750 96 C930 87 970 32 1138 44 C1285 54 1345 99 1440 82 L1440 120 L0 120 Z'/%3E%3C/svg%3E");
  top: -66px;
  height: 70px;
}

#features > *,
#classes > *,
#locations > *,
#trial > *,
#pricing > *,
#admission > *,
#contact > *,
#instagram > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  #features::before,
  #classes::before,
  #locations::before,
  #trial::before,
  #pricing::before,
  #admission::before,
  #contact::before,
  #instagram::before {
    top: -56px;
    height: 58px;
  }

  #admission::before {
    top: -60px;
    height: 64px;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .hero-inner .eyebrow {
    top: -171px;
  }

}

@media (max-width: 760px) {
  .branch-page .button-row.branch-other-dojo {
    margin-top: 14px;
  }
}
