/* =============================================================
   オーンズスキースクール リニューアル（ファミリー版）
   style.css  ―  Sky 〜 Coral やわらかポップ デザインシステム
   ============================================================= */

/* ---- Design Tokens ---- */
:root {
  --sky:      #3DAFC9;   /* 基調 */
  --sky-d:    #2A8DA6;   /* 見出し/濃いめ */
  --sky-dd:   #16485A;   /* 最も濃い青緑（フッター見出し等） */
  --sky-l:    #D6EEF4;   /* タグ/淡い面 */
  --sky-ll:   #EAF6F9;   /* セクション背景 */
  --coral:    #FF8A7A;   /* 差し色/主要CTA */
  --coral-d:  #E0594A;   /* コーラル濃いめ（文字/ホバー） */
  --coral-l:  #FFE0DB;   /* コーラル淡い面（タグ） */
  --sun:      #F4B740;   /* アクセント（黄） */
  --sun-d:    #9A6C14;   /* 黄の文字 */
  --sun-l:    #FFF2D4;   /* クリーム面（ボタン等） */
  --leaf:     #7DC98E;   /* アクセント（緑） */
  --leaf-d:   #4A9E62;   /* 緑の文字 */
  --leaf-l:   #E2F2E5;   /* 緑の淡い面 */
  --cream:    #FFF6E6;   /* クリーム背景 */
  --white:    #FFFFFF;
  --ink:      #46413A;   /* 本文 */
  --soft:     #8A8278;   /* 補足テキスト */
  --line:     #EFE9DC;   /* 罫線（点線含む） */
  --line-green: #06C755; /* LINE ブランドカラー（固定） */

  --maxw: 1120px;
  --radius: 16px;        /* 全体に丸め */
  --radius-lg: 22px;
  --radius-pill: 999px;
  --header-h: 72px;

  --font-jp: "Hiragino Maru Gothic ProN", "Rounded Mplus 1c", "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  --font-en: "Baloo 2", "Quicksand", var(--font-jp);

  --ease: cubic-bezier(.16,.84,.44,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--ink);
  background: var(--white);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }

/* ---- Utility ---- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--sky { background: var(--sky-ll); }
.section--cream { background: var(--cream); }

.sec-head { margin-bottom: 38px; }
.sec-head--center { text-align: center; }
.sec-head--center .sec-dots { justify-content: center; }
.eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--sky-d);
  font-weight: 500;
  margin: 0 0 6px;
}
.sec-title {
  font-size: 28px;
  font-weight: 500;
  color: var(--sky-d);
  letter-spacing: .02em;
  line-height: 1.4;
}
.sec-title .sub {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--soft);
  margin-top: 6px;
  letter-spacing: .03em;
}
/* 見出し下の3色ドット */
.sec-dots { display: flex; gap: 5px; margin-top: 12px; }
.sec-dots span { width: 9px; height: 9px; border-radius: 50%; }
.sec-dots span:nth-child(1) { background: var(--sky); }
.sec-dots span:nth-child(2) { background: var(--coral); }
.sec-dots span:nth-child(3) { background: var(--sun); }

.link-more {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--sky-d);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .25s var(--ease);
}
.link-more:hover { gap: 10px; }

/* ---- Buttons（すべて丸ピル） ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  border: none;
  transition: transform .2s var(--ease), background .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(.98); }
.btn .ti { font-size: 17px; }

/* 主役：コーラル塗り＋影 */
.btn--coral { background: var(--coral); color: #fff; box-shadow: 0 4px 14px rgba(224,89,74,.4); }
.btn--coral:hover { background: var(--coral-d); }
/* 副：クリーム塗り＋影 */
.btn--cream { background: var(--sun-l); color: var(--sun-d); box-shadow: 0 4px 14px rgba(154,108,20,.22); }
.btn--cream:hover { background: #FCEBC6; }
/* 白塗り（濃い背景上のCTA用） */
.btn--white { background: #fff; color: var(--coral-d); box-shadow: 0 4px 14px rgba(0,0,0,.12); }
.btn--white:hover { background: #fff8f6; }
/* アウトライン（淡い背景上のサブ動線） */
.btn--ghost { background: #fff; color: var(--sky-d); border: 2px solid var(--sky); }
.btn--ghost:hover { background: var(--sky-ll); }
/* LINE（固定グリーン） */
.btn--line { background: var(--line-green); color: #fff; box-shadow: 0 4px 14px rgba(6,199,85,.28); }
.btn--line:hover { background: #05b34c; }

.btn--block { width: 100%; }

/* ---- Pills / Tags ---- */
.tag { display: inline-block; padding: 3px 12px; border-radius: var(--radius-pill); font-size: 11px; font-weight: 500; }
.tag--sky  { background: var(--sky-l);  color: #1f6478; }
.tag--coral{ background: var(--coral-l);color: var(--coral-d); }
.tag--sun  { background: var(--sun-l);  color: var(--sun-d); }
.tag--leaf { background: var(--leaf-l); color: var(--leaf-d); }

/* =============================================================
   Header
   ============================================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
  transition: box-shadow .3s;
}
.header.is-scrolled { box-shadow: 0 4px 20px rgba(61,175,201,.12); }
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; }
.logo img { height: 48px; width: auto; display: block; }

.gnav { display: flex; align-items: center; gap: 24px; }
.gnav__list { display: flex; gap: 22px; }
.gnav__list a { font-size: 14px; color: var(--ink); padding: 4px 0; position: relative; transition: color .2s; }
.gnav__list a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--coral); border-radius: 2px;
  transition: width .25s var(--ease);
}
.gnav__list a:hover { color: var(--sky-d); }
.gnav__list a:hover::after { width: 100%; }

/* Gnav dropdown */
.gnav__list > li { position: relative; }
.gnav__item--drop > a { display: inline-flex; align-items: center; gap: 3px; }
.gnav__chevron { font-size: 10px; line-height: 1; transition: transform .2s; vertical-align: middle; }
.gnav__item--drop:hover > a { color: var(--sky-d); }
.gnav__item--drop:hover > a::after { width: 100%; }
.gnav__item--drop:hover .gnav__chevron { transform: rotate(180deg); }
.gnav__drop {
  display: none;
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(70,65,58,.14);
  padding: 6px 0;
  list-style: none;
  min-width: 152px;
  z-index: 300;
}
.gnav__item--drop:hover .gnav__drop { display: block; }
.gnav__drop li { display: block; }
.gnav__drop a {
  display: block; padding: 9px 18px;
  font-size: 13px; color: var(--ink);
  white-space: nowrap;
}
.gnav__drop a::after { display: none; }
.gnav__drop a:hover { color: var(--sky-d); background: var(--sky-ll); }
.gnav__drop a[aria-current="page"] { color: var(--sky-d); font-weight: 500; background: var(--sky-ll); }
.gnav__item--drop:has(a[aria-current="page"]) > a { color: var(--sky-d); }
.gnav__item--drop:has(a[aria-current="page"]) > a::after { width: 100%; background: var(--sky); }

.nav-toggle {
  display: none; width: 40px; height: 40px;
  background: transparent; border: none; color: var(--sky-d); font-size: 26px;
  align-items: center; justify-content: center;
}

/* =============================================================
   First View (Slideshow)
   ============================================================= */
.hero {
  position: relative;
  height: clamp(540px, 90vh, 820px);
  margin-top: var(--header-h);
  overflow: hidden;
  background: linear-gradient(160deg,#3DAFC9 0%,#2A8DA6 70%,#247892 100%);
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease-in-out;
}
.hero__slide.is-active { opacity: 1; }
/* 画像未設定時のダミー背景（実装時は background-image に差し替え） */
.hero__slide--1 { background-image: url("../images/top01.png"); }
.hero__slide--2 { background-image: url("../images/top02.jpg"); }
.hero__slide--3 { background-image: url("../images/top03.png"); }
.hero__slide--4 { background-image: url("../images/top04.jpg"); }

/* 文字可読性のためのオーバーレイ（実写時に効く） */
.hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(120deg, rgba(20,60,80,.55) 0%, rgba(20,60,80,.2) 60%, rgba(20,60,80,0) 100%);
}
/* 下端の白い雪のふくらみ */
.hero__snow {
  position: absolute; left: -10%; right: -10%; bottom: -2px; height: 64px; z-index: 3;
  background: #fff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.hero__deco { position: absolute; z-index: 2; color: #fff; pointer-events: none; }
.hero__deco--snowman { right: 4%; top: 14%; opacity: .16; font-size: clamp(120px,16vw,210px); }
.hero__deco--flake1 { right: 22%; top: 20%; opacity: .5; font-size: 26px; }
.hero__deco--flake2 { right: 12%; top: 42%; opacity: .4; font-size: 18px; }

.hero__content {
  position: relative; z-index: 4; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
}
.hero__eyebrow {
  font-family: var(--font-en); font-size: 13px; letter-spacing: .2em;
  color: #bdeaf3; font-weight: 500; margin-bottom: 18px;
  opacity: 0; animation: heroIn .9s var(--ease) .2s forwards;
}
.hero__title {
  font-size: clamp(34px, 5.5vw, 58px); font-weight: 500; color: #fff;
  line-height: 1.4; margin-bottom: 18px;
  opacity: 0; animation: heroIn .9s var(--ease) .35s forwards;
}
.hero__lead {
  font-size: 15px; color: #dff3f7; line-height: 1.9; max-width: 420px; margin-bottom: 32px;
  opacity: 0; animation: heroIn .9s var(--ease) .5s forwards;
}
.hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: heroIn .9s var(--ease) .65s forwards;
}
@keyframes heroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.hero__dots {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--maxw); padding: 0 24px; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
}
.hero__dots-list { display: flex; gap: 9px; }
.hero__dot { width: 12px; height: 12px; border: none; padding: 0; border-radius: 50%; background: rgba(255,255,255,.4); transition: background .3s, transform .3s; }
.hero__dot.is-active { background: #fff; transform: scale(1.2); }
.hero__count { font-family: var(--font-en); font-size: 12px; letter-spacing: .1em; color: rgba(255,255,255,.8); }

/* =============================================================
   News
   ============================================================= */
.sec-head--between { display: flex; align-items: flex-end; justify-content: space-between; }
.news-list { }
.news-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 8px; border-bottom: 2px dashed var(--line);
  transition: background .2s, padding-left .25s var(--ease);
  border-radius: var(--radius);
}
.news-item:hover { background: var(--sky-ll); padding-left: 16px; }
.news-item[hidden] { display: none; }
.news-item__date { font-family: var(--font-en); font-size: 12px; color: var(--soft); width: 84px; flex-shrink: 0; }
.news-item__cat { flex-shrink: 0; }
.news-item__title { font-size: 14px; color: var(--ink); }

/* =============================================================
   Lesson
   ============================================================= */
.lesson-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.lesson-card {
  background: #fff; border-radius: var(--radius-lg); padding: 22px;
  display: flex; gap: 16px; align-items: center;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.lesson-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(61,175,201,.16); }
.lesson-card__icon { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.lesson-card__icon .ti { font-size: 28px; }
/* アイコン円の色分け */
.lesson-card__icon--sky  { background: #E3F4F8; } .lesson-card__icon--sky .ti  { color: var(--sky-d); }
.lesson-card__icon--coral{ background: #FFEDEA; } .lesson-card__icon--coral .ti{ color: var(--coral-d); }
.lesson-card__icon--sun  { background: #FCF1D9; } .lesson-card__icon--sun .ti  { color: #C98A1E; }
.lesson-card__icon--leaf { background: var(--leaf-l);} .lesson-card__icon--leaf .ti { color: var(--leaf-d); }
.lesson-card__body { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.lesson-card__title { font-size: 16px; font-weight: 500; color: var(--sky-d); margin: 6px 0 2px; }
.lesson-card__desc { font-size: 12px; color: var(--soft); }
.lesson-foot { text-align: center; margin-top: 32px; }

/* =============================================================
   Badge Test（サン＝黄のにぎやかバンド）
   ============================================================= */
.badge { position: relative; overflow: hidden; }
.section--badge { background: var(--sun); }
.badge__deco { position: absolute; right: -2%; bottom: -10%; opacity: .2; color: #fff; font-size: 180px; pointer-events: none; }
.badge__inner { position: relative; z-index: 2; max-width: 560px; }
.badge .eyebrow { color: #8a5e0e; }
.badge__title { font-size: 26px; font-weight: 500; color: #7a520c; margin: 6px 0 12px; }
.badge__lead { font-size: 14px; color: #86671f; line-height: 1.9; margin-bottom: 24px; }

/* =============================================================
   Reservation 3 step (dummy)
   ============================================================= */
.steps { display: flex; align-items: flex-start; gap: 12px; max-width: 760px; margin: 0 auto 38px; }
.step { flex: 1; text-align: center; }
.step__num {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--sky-l); color: var(--sky-d);
  display: grid; place-items: center;
  font-family: var(--font-en); font-size: 24px; font-weight: 500; margin: 0 auto 14px;
}
.step__title { font-size: 14px; font-weight: 500; color: var(--sky-d); margin-bottom: 3px; }
.step__desc { font-size: 11px; color: var(--soft); }
.step-arrow { padding-top: 20px; color: var(--coral); font-size: 24px; flex-shrink: 0; }
.reserve-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.reserve-note { font-size: 11px; color: var(--soft); text-align: center; margin-top: 16px; }

/* =============================================================
   School About
   ============================================================= */
.about { display: flex; gap: 36px; align-items: center; }
.about__body { flex: 1; }
.about__text { font-size: 14px; color: var(--ink); line-height: 1.95; margin-bottom: 20px; }
.about__stats { display: flex; gap: 12px; }
.stat { flex: 1; background: #fff; border-radius: var(--radius); padding: 16px 10px; text-align: center; }
.stat__num { font-family: var(--font-en); font-size: 28px; font-weight: 500; line-height: 1; }
.stat__num small { font-size: 13px; }
.stat--sky .stat__num  { color: var(--sky-d); }
.stat--coral .stat__num{ color: var(--coral-d); }
.stat--leaf .stat__num { color: var(--leaf-d); }
.stat__label { font-size: 11px; color: var(--soft); margin-top: 6px; }
.about__visual {
  width: 260px; align-self: stretch; min-height: 220px;
  background: #fff; border-radius: var(--radius-lg);
  display: grid; place-items: center; flex-shrink: 0; overflow: hidden;
}
.about__visual .ti { font-size: 60px; color: var(--sky); }
.about__visual img { width: 100%; height: 100%; object-fit: cover; }
.about-foot { margin-top: 28px; }

/* =============================================================
   Calendar
   ============================================================= */
.cal { background: #fff; border-radius: var(--radius-lg); padding: 24px; max-width: 720px; margin: 0 auto; }
.cal--on-sky { background: var(--sky-ll); }
.cal__head { display: flex; align-items: center; justify-content: center; gap: 26px; margin-bottom: 16px; }
.cal__nav { background: transparent; border: none; color: var(--soft); font-size: 20px; display: grid; place-items: center; }
.cal__nav:hover { color: var(--sky-d); }
.cal__month { font-size: 16px; font-weight: 500; color: var(--sky-d); }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal__dow { text-align: center; font-size: 11px; color: var(--soft); padding: 6px 0; }
.cal__dow--sun { color: var(--coral-d); }
.cal__dow--sat { color: var(--sky-d); }
.cal__cell { text-align: center; font-size: 12px; color: var(--ink); padding: 9px 0; border-radius: var(--radius); min-height: 42px; }
.cal__cell--sun { color: var(--coral-d); }
.cal__cell--muted { color: #c9c2b5; }
.cal__cell--test  { background: var(--sky); color: #fff; font-weight: 500; }
.cal__cell--night { background: var(--coral); color: #fff; font-weight: 500; }
.cal__cell small { display: block; font-size: 9px; margin-top: 2px; }
.cal__legend { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 14px; padding-top: 12px; border-top: 2px dashed var(--line); }
.cal__legend span { font-size: 11px; color: var(--soft); display: inline-flex; align-items: center; gap: 6px; }
.cal__legend i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }
.cal__cell--junior { background: var(--sky-d); color: #fff; font-weight: 500; }
.cal__cell--prize  { background: var(--sun); color: var(--sun-d); font-weight: 500; }

/* =============================================================
   Calendar page: month tabs + expanded grid
   ============================================================= */
.cal-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.cal-tab {
  padding: 8px 20px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500; cursor: pointer;
  border: 2px solid var(--sky-l); background: #fff; color: var(--sky-d);
  transition: background .18s, color .18s, border-color .18s;
}
.cal-tab:hover { background: var(--sky-l); }
.cal-tab.is-active { background: var(--sky); border-color: var(--sky); color: #fff; }

.cal-month-panel { display: none; }
.cal-month-panel.is-active { display: block; }

.cal--full { max-width: 100%; }
.cal--full .cal__grid { gap: 6px; }
.cal--full .cal__cell { min-height: 56px; padding: 8px 4px 4px; font-size: 13px; }
.cal--full .cal__cell small { font-size: 10px; margin-top: 3px; }

.cal-legend-bar {
  display: flex; flex-wrap: wrap; gap: 20px;
  background: var(--sky-ll); border-radius: var(--radius);
  padding: 14px 20px; margin-bottom: 28px;
}
.cal-legend-bar span { font-size: 13px; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.cal-legend-bar i { width: 12px; height: 12px; border-radius: 3px; display: inline-block; flex-shrink: 0; }

@media (max-width: 760px) {
  .cal--full .cal__cell { min-height: 44px; font-size: 11px; padding: 6px 2px 4px; }
  .cal--full .cal__cell small { font-size: 9px; }
  .cal-tabs { gap: 6px; }
  .cal-tab { padding: 7px 14px; font-size: 13px; }
}
@media (max-width: 420px) {
  .cal--full .cal__grid { gap: 3px; }
  .cal--full .cal__cell { min-height: 38px; font-size: 10px; }
  .cal-legend-bar { gap: 12px; padding: 12px 14px; }
  .cal-legend-bar span { font-size: 12px; }
}

/* =============================================================
   Access
   ============================================================= */
.access { display: flex; gap: 28px; }
.access__map { flex: 1; min-height: 320px; background: #cfe6ec; border-radius: var(--radius-lg); display: grid; place-items: center; overflow: hidden; }
.access__map .ti { font-size: 44px; color: var(--sky-d); }
.access__map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.access__info { flex: 1; }
.access__name { font-size: 17px; font-weight: 500; color: var(--sky-d); margin-bottom: 12px; }
.access__list { font-size: 14px; line-height: 2.1; }
.access__list .ti { font-size: 16px; color: var(--coral); vertical-align: -3px; margin-right: 6px; }
.access__list dt { color: var(--ink); margin-top: 8px; font-weight: 500; }
.access__list dd { color: var(--soft); margin: 0; }

/* =============================================================
   CTA Band (dummy)
   ============================================================= */
.cta { position: relative; overflow: hidden; text-align: center; padding: 72px 0; background: linear-gradient(135deg,#3DAFC9,#2A8DA6); }
.cta__deco { position: absolute; color: #fff; opacity: .3; pointer-events: none; }
.cta__deco--1 { left: 6%; top: 18%; font-size: 18px; }
.cta__deco--2 { right: 8%; bottom: 22%; font-size: 24px; }
.cta__title { font-size: 26px; font-weight: 500; color: #fff; margin-bottom: 8px; position: relative; }
.cta__lead { font-size: 13px; color: #dff3f7; margin-bottom: 26px; position: relative; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* =============================================================
   Footer
   ============================================================= */
.footer { background: #fff; padding: 52px 0 28px; border-top: 4px solid var(--sky); }
.footer__top { display: flex; gap: 52px; margin-bottom: 32px; }
.footer__brand { flex: 1.6; }
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__logo .mk { width: 30px; height: 30px; border-radius: 50%; background: var(--sky); display: grid; place-items: center; }
.footer__logo .mk .ti { color: #fff; font-size: 16px; }
.footer__logo span { font-size: 15px; font-weight: 500; color: var(--sky-d); }
.footer__addr { font-size: 12px; color: var(--soft); line-height: 1.9; }
.footer__col { flex: 1; }
.footer__col h4 { font-size: 12px; color: var(--coral-d); font-weight: 500; margin: 0 0 14px; }
.footer__col a { font-size: 13px; color: var(--soft); display: block; line-height: 2.1; transition: color .2s; }
.footer__col a:hover { color: var(--sky-d); }
.footer__bottom { border-top: 2px dashed var(--line); padding-top: 20px; text-align: center; }
.footer__copy { font-family: var(--font-en); font-size: 11px; color: var(--soft); }

/* =============================================================
   Mobile Drawer
   ============================================================= */
.drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; opacity: 0; transition: opacity .3s, visibility .3s; }
.drawer.is-open { visibility: visible; opacity: 1; }
.drawer__backdrop { position: absolute; inset: 0; background: rgba(20,60,80,.45); }
.drawer__panel {
  position: absolute; top: 0; right: 0; width: min(82vw, 340px); height: 100%;
  background: #fff; padding: 24px; transform: translateX(100%);
  transition: transform .35s var(--ease); overflow-y: auto;
  border-radius: 24px 0 0 24px;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.drawer__head .logo__name { color: var(--sky-d); }
.drawer__close { background: transparent; border: none; font-size: 26px; color: var(--sky-d); }
.drawer__list a { display: block; font-size: 15px; color: var(--ink); padding: 14px 4px; border-bottom: 2px dashed var(--line); }
.drawer__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 900px) {
  .badge__inner { max-width: none; }
  .about { flex-direction: column; }
  .about__visual { width: 100%; order: -1; min-height: 180px; }
  .access { flex-direction: column; }
}
@media (max-width: 760px) {
  .section { padding: 54px 0; }
  .container { padding: 0 18px; }
  .sec-title { font-size: 23px; }

  .gnav { display: none; }
  .nav-toggle { display: flex; }
  .header__inner .btn { padding: 9px 18px; font-size: 12px; }

  .hero { height: clamp(500px, 82vh, 660px); }
  .hero__lead { font-size: 13px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }

  .lesson-grid { gap: 12px; }
  .lesson-card { flex-direction: column; align-items: flex-start; padding: 18px; gap: 12px; }

  .steps { flex-wrap: wrap; gap: 12px; }
  .step { flex: 0 0 100%; display: flex; align-items: center; gap: 16px; text-align: left; background: #fff; border-radius: var(--radius-lg); padding: 14px 16px; }
  .step__num { margin: 0; width: 46px; height: 46px; font-size: 19px; flex-shrink: 0; }
  .step-arrow { display: none; }
  .reserve-actions { flex-direction: column; }
  .reserve-actions .btn { width: 100%; }

  .about__stats { gap: 8px; }
  .stat__num { font-size: 23px; }

  .cta__actions { flex-direction: column; }
  .cta__actions .btn { width: 100%; }

  .footer__top { flex-wrap: wrap; gap: 26px; }
  .footer__brand { flex: 0 0 100%; }

  .cal { padding: 16px; }
  .cal__cell { font-size: 11px; padding: 6px 0; min-height: 36px; }
}
@media (max-width: 420px) {
  .lesson-grid { grid-template-columns: 1fr; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition: none; }
  .hero__eyebrow, .hero__title, .hero__lead, .hero__actions { animation: none; opacity: 1; }
  html { scroll-behavior: auto; }
}

/* =============================================================
   Sub-page: アクティブナビ
   ============================================================= */
.gnav__list a[aria-current="page"] { color: var(--sky-d); }
.gnav__list a[aria-current="page"]::after { width: 100%; background: var(--sky); }
.drawer__list a[aria-current="page"] { color: var(--sky-d); font-weight: 500; }

/* =============================================================
   Sub-page Hero（下層ページ共通タイトル帯）
   ============================================================= */
.page-hero {
  margin-top: var(--header-h);
  background: linear-gradient(135deg, var(--sky-d) 0%, var(--sky) 65%, #5DC3D8 100%);
  padding: 40px 0 52px;
  position: relative;
  overflow: hidden;
}
.page-hero__deco {
  position: absolute; color: rgba(255,255,255,.12); pointer-events: none;
}
.page-hero__deco--1 { right: 4%;  top: -10%; font-size: clamp(100px, 14vw, 180px); }
.page-hero__deco--2 { right: 24%; bottom: -8%; font-size: 52px; }
.page-hero__inner { position: relative; z-index: 2; }

/* Breadcrumb */
.breadcrumb { margin-bottom: 22px; }
.breadcrumb__list { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb__item { font-size: 12px; font-family: var(--font-en); }
.breadcrumb__item a { color: rgba(255,255,255,.68); transition: color .2s; }
.breadcrumb__item a:hover { color: #fff; }
.breadcrumb__item--current { color: rgba(255,255,255,.92); font-weight: 500; }
.breadcrumb__sep { color: rgba(255,255,255,.4); font-size: 12px; display: flex; align-items: center; }

.page-hero__eyebrow {
  font-family: var(--font-en); font-size: 12px; letter-spacing: .18em;
  color: rgba(255,255,255,.65); font-weight: 500; margin-bottom: 10px;
}
.page-hero__title {
  font-size: clamp(26px, 4vw, 42px); font-weight: 500; color: #fff;
  letter-spacing: .04em; line-height: 1.25; margin-bottom: 14px;
}
.page-hero__lead {
  font-size: 14px; color: rgba(255,255,255,.82); line-height: 1.9;
  max-width: 500px;
}

/* =============================================================
   Profile Card（校長・主任教師）
   ============================================================= */
.profile { display: flex; gap: 44px; align-items: flex-start; }
.profile + .profile {
  margin-top: 56px; padding-top: 56px;
  border-top: 2px dashed var(--line);
}
.profile--reverse { flex-direction: row-reverse; }

.profile__photo {
  width: 200px; flex-shrink: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--sky-ll); aspect-ratio: 3/4;
  display: grid; place-items: center;
}
.profile__photo .ti { font-size: 54px; color: var(--sky); }
.profile__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.profile__body { flex: 1; }
.profile__role {
  display: inline-block;
  background: var(--coral-l); color: var(--coral-d);
  font-size: 11px; font-weight: 500;
  padding: 3px 14px; border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.profile__name {
  font-size: 24px; font-weight: 500; color: var(--sky-d);
  line-height: 1.3; margin-bottom: 4px;
}
.profile__nickname {
  display: inline-block; margin-left: 8px;
  background: var(--sky-l); color: var(--sky-d);
  font-size: 11px; padding: 2px 10px;
  border-radius: var(--radius-pill); font-weight: 500;
  vertical-align: middle;
}
.profile__kana {
  font-size: 12px; color: var(--soft); letter-spacing: .06em;
  margin-bottom: 18px; font-family: var(--font-en);
}
.profile__bio { font-size: 14px; color: var(--ink); line-height: 2.05; }
.profile__bio--mt { margin-top: 14px; }

/* =============================================================
   Staff Block（インストラクター紹介）
   ============================================================= */
.staff-block { display: flex; gap: 40px; align-items: flex-start; }
.staff-block__body { flex: 1; }
.staff-block__lead {
  font-size: 14px; color: var(--ink); line-height: 2.05; margin-bottom: 26px;
}
.staff-block__stats { display: flex; gap: 14px; flex-wrap: wrap; }
.staff-block__visual {
  width: 320px; flex-shrink: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  background: #fff; min-height: 220px;
  display: grid; place-items: center;
}
.staff-block__visual .ti { font-size: 60px; color: var(--sky); }
.staff-block__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* =============================================================
   Price Card（コース料金カード — ジュニア・一般・検定ページ共通）
   ============================================================= */
.price-group { margin-bottom: 56px; }
.price-group:last-child { margin-bottom: 0; }
.price-group__head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px; padding-bottom: 14px;
  border-bottom: 2px dashed var(--line);
}
.price-group__num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--sky); color: #fff;
  font-family: var(--font-en); font-size: 13px; font-weight: 600;
  display: grid; place-items: center; flex-shrink: 0;
}
.price-group__title { font-size: 18px; font-weight: 500; color: var(--sky-d); }
.price-group__note { font-size: 12px; color: var(--soft); margin-left: auto; align-self: flex-end; }

/* Grid */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-grid--1 { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
.price-grid--2 { grid-template-columns: repeat(2, 1fr); }
.price-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Card */
.price-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 22px 20px; border: 2px solid var(--line);
  position: relative;
  transition: box-shadow .25s var(--ease), transform .2s var(--ease);
  display: flex; flex-direction: column;
}
.price-card:hover { box-shadow: 0 8px 28px rgba(61,175,201,.14); transform: translateY(-2px); }
.price-card--sky  { border-color: var(--sky);     background: linear-gradient(150deg, var(--sky-ll) 0%, #fff 100%); }
.price-card--coral{ border-color: var(--coral-l); background: linear-gradient(150deg, #fff6f5 0%, #fff 100%); }
.price-card--sun  { border-color: var(--sun-l);   background: linear-gradient(150deg, #fffbf0 0%, #fff 100%); }

/* Tags row */
.price-card__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }

/* Badges (absolute) */
.badge--reserve {
  position: absolute; top: 14px; right: 14px;
  background: var(--coral); color: #fff;
  font-size: 10px; font-weight: 500; letter-spacing: .03em;
  padding: 2px 9px; border-radius: var(--radius-pill);
}
.badge--bus {
  position: absolute; top: 14px; right: 14px;
  background: var(--leaf); color: #fff;
  font-size: 10px; font-weight: 500;
  padding: 2px 9px; border-radius: var(--radius-pill);
}

/* Course name */
.price-card__name {
  font-size: 15px; font-weight: 500; color: var(--sky-d);
  line-height: 1.45; margin-bottom: 14px;
}

/* Price rows */
.price-card__price { display: flex; flex-direction: column; gap: 6px; margin-bottom: 4px; }
.price-card__row { display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; }
.price-card__label { font-size: 11px; color: var(--soft); min-width: 28px; }
.price-card__amount {
  font-family: var(--font-en); font-size: 30px; font-weight: 600;
  color: var(--sky-d); line-height: 1;
}
.price-card__amount--lg { font-size: 38px; }
.price-card__yen { font-size: 14px; font-weight: 500; color: var(--sky-d); }
.price-card__price-note { font-size: 11px; color: var(--soft); margin-top: 2px; }

/* Meta info */
.price-card__meta {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 12px; padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-size: 12px; color: var(--soft);
  flex: 1;
}
.price-card__meta-item { display: flex; align-items: flex-start; gap: 6px; }
.price-card__meta-item .ti { font-size: 13px; color: var(--sky); flex-shrink: 0; margin-top: 2px; }

/* Sub-option note */
.price-card__opt {
  margin-top: 10px; padding-top: 10px;
  border-top: 1px dashed var(--line);
  font-size: 11px; color: var(--soft); line-height: 1.75;
}

/* =============================================================
   Schedule Table（日程表）
   ============================================================= */
.schedule-wrap { overflow-x: auto; margin: 24px 0; }
.schedule-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px; min-width: 420px;
}
.schedule-table th {
  background: var(--sky); color: #fff;
  font-weight: 500; padding: 10px 16px; text-align: left;
}
.schedule-table th:first-child { border-radius: var(--radius) 0 0 0; }
.schedule-table th:last-child  { border-radius: 0 var(--radius) 0 0; }
.schedule-table td { padding: 12px 16px; border-bottom: 1px solid var(--line); }
.schedule-table tbody tr:last-child td { border-bottom: none; }
.schedule-table tbody tr:nth-child(even) { background: var(--sky-ll); }
.schedule-table tr.is-closed td { color: var(--soft); }
.status-pill {
  display: inline-block; font-size: 11px; font-weight: 500;
  padding: 2px 10px; border-radius: var(--radius-pill);
}
.status-pill--closed { background: var(--line); color: var(--soft); }
.status-pill--open   { background: var(--coral-l); color: var(--coral-d); }

/* =============================================================
   Lesson Note / Option Box
   ============================================================= */
.lesson-note {
  background: var(--sun-l); border-left: 3px solid var(--sun);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 16px; font-size: 13px; color: var(--ink);
  line-height: 1.85; margin-top: 22px;
}
.lesson-note .ti { color: var(--sun-d); margin-right: 3px; }

.option-box {
  background: #fff; border-radius: var(--radius-lg);
  border: 2px dashed var(--sky-l);
  padding: 18px 22px; margin-top: 22px;
  font-size: 13px; color: var(--ink); line-height: 2;
}
.option-box__title {
  font-size: 13px; font-weight: 500; color: var(--sky-d);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.option-box__title .ti { color: var(--sky); }

/* =============================================================
   PDF Download Links
   ============================================================= */
.dl-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.dl-link {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--sky-ll); color: var(--sky-d);
  border: 1px solid var(--sky-l); border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 500; padding: 9px 18px;
  transition: background .2s;
}
.dl-link:hover { background: var(--sky-l); }
.dl-link .ti { font-size: 15px; color: var(--coral); }

/* =============================================================
   Bus CTA Card
   ============================================================= */
.bus-cta {
  background: #fff; border-radius: var(--radius-lg);
  padding: 28px 28px; display: flex; gap: 22px; align-items: center;
}
.bus-cta__icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--sky-l); display: grid; place-items: center; flex-shrink: 0;
}
.bus-cta__icon .ti { font-size: 28px; color: var(--sky-d); }
.bus-cta__body { flex: 1; }
.bus-cta__title { font-size: 17px; font-weight: 500; color: var(--sky-d); margin-bottom: 4px; }
.bus-cta__desc { font-size: 13px; color: var(--soft); line-height: 1.75; }

/* =============================================================
   Price / Lesson page — Responsive
   ============================================================= */
/* --- Sub-page responsive --- */
@media (max-width: 900px) {
  .profile { gap: 28px; }
  .profile__photo { width: 160px; }
  .staff-block { gap: 28px; }
  .staff-block__visual { width: 260px; }
}
@media (max-width: 760px) {
  .page-hero { padding: 30px 0 40px; }

  .profile { flex-direction: column; }
  .profile--reverse { flex-direction: column; }
  .profile__photo { width: 100%; aspect-ratio: 4/3; max-height: 240px; }

  .staff-block { flex-direction: column; }
  .staff-block__visual { width: 100%; min-height: 180px; }
  .staff-block__stats { gap: 10px; }

  .price-grid     { grid-template-columns: repeat(2, 1fr); }
  .price-grid--4  { grid-template-columns: repeat(2, 1fr); }
  .schedule-table { font-size: 12px; }
  .schedule-table td, .schedule-table th { padding: 8px 10px; }
  .bus-cta { flex-direction: column; text-align: center; }
  .bus-cta__icon { margin: 0 auto; }
}
@media (max-width: 500px) {
  .price-grid, .price-grid--2, .price-grid--4 { grid-template-columns: 1fr; }
}

/* =============================================================
   ONZEキッズ（/info/yukilab/）
   ============================================================= */

/* Intro lead */
.kids-lead {
  font-size: 15px; color: var(--ink); line-height: 2;
  max-width: 680px; margin-bottom: 32px;
}

/* Feature cards — 3-up */
.kids-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.kids-feature {
  background: #fff; border-radius: var(--radius-lg);
  padding: 28px 22px; text-align: center;
}
.kids-feature__icon {
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center; margin: 0 auto 16px;
}
.kids-feature__icon .ti { font-size: 28px; }
.kids-feature__icon--coral { background: var(--coral-l); }
.kids-feature__icon--coral .ti { color: var(--coral-d); }
.kids-feature__icon--sky   { background: var(--sky-l);  }
.kids-feature__icon--sky   .ti { color: var(--sky-d);   }
.kids-feature__icon--leaf  { background: var(--leaf-l); }
.kids-feature__icon--leaf  .ti { color: var(--leaf-d);  }
.kids-feature__title { font-size: 15px; font-weight: 500; color: var(--sky-d); margin-bottom: 8px; }
.kids-feature__desc  { font-size: 13px; color: var(--soft); line-height: 1.85; }

/* Photo gallery — 3 columns */
.photo-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0; }
.photo-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sky-ll); border: 2px dashed var(--sky-l);
  display: grid; place-items: center;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-frame__placeholder { text-align: center; padding: 20px; }
.photo-frame__placeholder .ti { font-size: 44px; color: var(--sky); display: block; margin-bottom: 10px; }
.photo-frame__placeholder p   { font-size: 12px; color: var(--soft); line-height: 1.7; }

/* Instagram CTA */
.insta-cta {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 26px 30px; display: flex; align-items: center; gap: 22px;
  border: 2px dashed var(--coral-l);
}
.insta-cta__icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  display: grid; place-items: center; flex-shrink: 0;
}
.insta-cta__icon .ti { font-size: 26px; color: #fff; }
.insta-cta__body { flex: 1; }
.insta-cta__title { font-size: 16px; font-weight: 500; color: var(--sky-dd); margin-bottom: 4px; }
.insta-cta__desc  { font-size: 13px; color: var(--soft); line-height: 1.75; }

@media (max-width: 760px) {
  .kids-features  { grid-template-columns: 1fr; gap: 12px; }
  .photo-gallery  { grid-template-columns: 1fr; }
  .insta-cta      { flex-direction: column; text-align: center; }
  .insta-cta__icon { margin: 0 auto; }
}

/* =============================================================
   Badge Test Page — Jump Nav & Sub-heading
   ============================================================= */
.jumpnav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.jumpnav__inner { display: flex; gap: 10px; flex-wrap: wrap; }

.test-subhead {
  font-size: 15px; font-weight: 500; color: var(--sky-d);
  margin: 32px 0 6px;
  padding-left: 10px;
  border-left: 3px solid var(--sky);
}

/* =============================================================
   Bus Route Page
   ============================================================= */
.bus-overview {
  display: flex; gap: 32px; align-items: flex-start;
  background: #fff; border-radius: var(--radius-lg);
  padding: 32px; border: 2px solid var(--sky-l);
}
.bus-overview__icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--sky-ll); display: grid; place-items: center; flex-shrink: 0;
}
.bus-overview__icon .ti { font-size: 34px; color: var(--sky-d); }
.bus-overview__lead { font-size: 15px; line-height: 1.85; color: var(--ink); margin-bottom: 16px; }
.bus-overview__points { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.bus-overview__points li { font-size: 14px; color: var(--ink); display: flex; align-items: flex-start; gap: 8px; }
.bus-overview__points .ti { color: var(--sky); font-size: 17px; flex-shrink: 0; margin-top: 1px; }

.bus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.bus-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 2px solid var(--line);
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow .2s;
}
.bus-card--active { border-color: var(--sky-l); }
.bus-card--active:hover { box-shadow: 0 6px 24px rgba(61,175,201,.14); }
.bus-card__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.bus-card__term {
  font-size: 18px; font-weight: 600; color: var(--sky-d);
  font-family: var(--font-en);
}
.bus-card__dates {
  font-size: 13px; color: var(--ink); line-height: 1.7;
  display: flex; align-items: flex-start; gap: 6px;
  flex: 1;
}
.bus-card__dates .ti { color: var(--coral); font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.bus-card__dl {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 16px; border-radius: var(--radius-pill);
  background: var(--sky-ll); color: var(--sky-d);
  font-size: 13px; font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--sky-l);
  transition: background .18s, border-color .18s;
  margin-top: auto;
}
.bus-card__dl:hover { background: var(--sky-l); border-color: var(--sky); }
.bus-card__dl .ti { font-size: 15px; }

@media (max-width: 900px) {
  .bus-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .bus-overview { flex-direction: column; padding: 22px; }
  .bus-overview__icon { width: 56px; height: 56px; }
  .bus-overview__icon .ti { font-size: 26px; }
}
@media (max-width: 540px) {
  .bus-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   Contact Page — Form
   ============================================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* Form wrapper */
.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  border: 2px solid var(--sky-l);
}
.contact-form__note {
  font-size: 13px; color: var(--soft);
  background: var(--cream); border-radius: var(--radius);
  padding: 12px 16px; margin-bottom: 28px;
  display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.75;
}
.contact-form__note .ti { color: var(--coral); font-size: 16px; flex-shrink: 0; margin-top: 2px; }

/* Field group */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block; font-size: 14px; font-weight: 500;
  color: var(--ink); margin-bottom: 7px;
}
.form-label .required {
  font-size: 11px; color: #fff; background: var(--coral);
  border-radius: 4px; padding: 1px 6px; margin-left: 6px;
  vertical-align: middle;
}
.form-label .optional {
  font-size: 11px; color: var(--soft);
  margin-left: 6px; vertical-align: middle;
}

/* Inputs */
.form-input,
.form-select,
.form-textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--line); border-radius: var(--radius);
  font-size: 15px; font-family: var(--font-jp);
  color: var(--ink); background: #fff;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(61,175,201,.15);
}
.form-input::placeholder,
.form-textarea::placeholder { color: #c2bbb2; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A8278' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 140px; line-height: 1.7; }

/* Row: two columns */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Submit area */
.form-submit { margin-top: 32px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }
.form-submit-note { font-size: 12px; color: var(--soft); text-align: center; margin-top: 10px; }

/* Submit result message */
.form-result {
  display: none;
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px; line-height: 1.75;
  background: var(--cream); color: var(--ink);
  border: 1.5px solid var(--sun);
}
.form-result.is-visible { display: block; }

/* Sidebar: phone contact */
.contact-tel-card {
  background: linear-gradient(135deg, var(--sky-d), var(--sky));
  border-radius: var(--radius-lg); padding: 32px 28px;
  color: #fff; text-align: center;
  position: sticky; top: calc(var(--header-h) + 20px);
}
.contact-tel-card__eyebrow {
  font-size: 11px; letter-spacing: .08em; opacity: .85;
  font-family: var(--font-en); margin-bottom: 16px;
}
.contact-tel-card__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: grid; place-items: center; margin: 0 auto 14px;
}
.contact-tel-card__icon .ti { font-size: 26px; }
.contact-tel-card__title { font-size: 14px; font-weight: 500; margin-bottom: 12px; opacity: .9; }
.contact-tel-card__num {
  font-size: 26px; font-weight: 600; font-family: var(--font-en);
  letter-spacing: .02em; margin-bottom: 6px;
}
.contact-tel-card__num a { color: #fff; text-decoration: none; }
.contact-tel-card__num a:hover { text-decoration: underline; }
.contact-tel-card__hours { font-size: 12px; opacity: .8; margin-bottom: 20px; }
.contact-tel-card__divider { border: none; border-top: 1px solid rgba(255,255,255,.25); margin: 20px 0; }
.contact-tel-card__note { font-size: 12px; opacity: .8; line-height: 1.75; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-tel-card { position: static; }
  .contact-form { padding: 28px 24px; }
}
@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
}

/* =============================================================
   News Page — Category filter
   ============================================================= */
.news-filter {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.news-filter__btn {
  padding: 6px 16px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 500; cursor: pointer;
  border: 2px solid var(--line); background: #fff; color: var(--soft);
  transition: background .18s, color .18s, border-color .18s;
}
.news-filter__btn:hover { border-color: var(--sky); color: var(--sky-d); }
.news-filter__btn.is-active { background: var(--sky); border-color: var(--sky); color: #fff; }

.news-empty {
  text-align: center; padding: 48px 0;
  font-size: 14px; color: var(--soft);
}
