@charset "UTF-8";
/*!
Theme Name: BEAT DRIVE
Theme URI: https://studio-beatdrive.com/
Author: PEEES
Description: ダンススタジオ BEAT DRIVE 公式サイトテーマ。白ベース×紺の全面差し替えデザイン。
Version: 1.0.0
Text Domain: beatdrive
*/
/* ============================================================
 * BEAT DRIVE — style.scss（共通／ベース）
 *   ページ別スタイルは partial に分割：
 *   _header / _footer / _front-page / _fee / _lesson /
 *   _rental / _dancers / _contact / _policy / _blog
 *   → このファイル末尾で @import する
 * ============================================================ */
/* ---- ブレイクポイント ---- */
/* ---- カラートークン（CSSカスタムプロパティ） ---- */
:root {
  --base: #fafaf6; /* 白ベース */
  --ink: #1a2238; /* 本文（紺寄り） */
  --navy: #1b2b5c; /* 主役の紺 */
  --deep: #13204a; /* 濃紺パネル */
  --red: #ff4b1f;
  --yel: #ffd23e;
  --pink: #ff6fa5;
  --grn: #27ae7e;
  --ppl: #7a5cd6;
  --cyan: #29a8d8;
  --gray: #e8e7e0;
  --muted: #79788c;
  --fd: "Anton", sans-serif;
  --fj: "Zen Kaku Gothic New", sans-serif;
  --fe: "Archivo", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --snap: cubic-bezier(0.7, 0, 0.2, 1);
}

/* ---- リセット／ベース ---- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* スクロールバーの有無でページ間の横幅がズレてガタつくのを防ぐ */
html {
  scrollbar-gutter: stable;
}

body {
  font-family: var(--fj);
  background: var(--base);
  color: var(--ink);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto; /* width/height属性付き画像の縦伸び（アスペクト崩れ）を防ぐ */
  display: block;
}

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

ul {
  list-style: none;
}

button {
  font-family: var(--fj);
}

/* ---- 共通レイアウト・ユーティリティ ---- */
.wrap {
  width: min(1200px, 90%);
  margin-inline: auto;
}

.sec {
  padding: clamp(64px, 9vw, 118px) 0;
}

.eyebrow {
  font-family: var(--fe);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--navy);
  text-transform: uppercase;
}

/* ---- ボタン ---- */
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
}
.btn-line i {
  transition: transform 0.3s var(--ease);
}
.btn-line:hover i {
  transform: translateX(6px);
}

.btn-pri {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.btn-pri::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-15deg);
  transition: left 0.55s var(--snap);
}
.btn-pri:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(255, 75, 31, 0.38);
}
.btn-pri:hover::after {
  left: 120%;
}

.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  padding: 16px 42px;
  border-radius: 8px;
  font-size: 1.05rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

/* ---- セクション見出し ---- */
.shead {
  margin-bottom: 44px;
  position: relative;
  --ac: var(--yel);
}
.shead h2 {
  font-family: var(--fd);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 1;
  display: inline-block;
  position: relative;
  color: var(--navy);
}
.shead h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 0.22em;
  background: var(--ac);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s 0.3s var(--ease);
}
.shead.in h2::after {
  transform: scaleX(1);
}
.shead p {
  font-weight: 700;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.sched-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---- リビール（スクロール出現） ---- */
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.rv.in {
  opacity: 1;
  transform: none;
}
.rv.d1 {
  transition-delay: 0.08s;
}
.rv.d2 {
  transition-delay: 0.16s;
}
.rv.d3 {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .rv {
    opacity: 1 !important;
    transform: none !important;
  }
  .shead h2::after {
    transform: scaleX(1) !important;
  }
}
/* ---- ページラッパ（WP化でSPA切替は廃止） ---- */
.page {
  display: block;
}

/* ---- ページ遷移ワイプ（紺→黄） ---- */
#wipe {
  position: fixed;
  inset: 0;
  z-index: 1800;
  pointer-events: none;
}
#wipe i {
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: scaleY(0);
}
#wipe i:nth-child(2) {
  background: var(--yel);
}
#wipe {
  /* 退場：下から覆って“覆ったまま保持”（forwards）。この間に遷移する */
}
#wipe.run i {
  animation: wipeCover 0.62s var(--snap) forwards;
}
#wipe.run i:nth-child(2) {
  animation-delay: 0.1s;
}
#wipe {
  /* 入場：覆った状態から上へめくって表示（backwardsで開始時から覆う） */
}
#wipe.enter i {
  animation: wipeUncover 0.68s var(--snap) backwards;
}
#wipe.enter i:nth-child(2) {
  animation-delay: 0.12s;
}

@keyframes wipeCover {
  from {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  to {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}
@keyframes wipeUncover {
  from {
    transform: scaleY(1);
    transform-origin: top;
  }
  to {
    transform: scaleY(0);
    transform-origin: top;
  }
}
/* ワイプ中央のロゴ（覆っている間だけ表示） */
#wipe .wipe-logo {
  position: absolute;
  inset: 0;
  z-index: 3; /* 2枚のバーより前面 */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}
#wipe .wipe-logo img {
  width: min(200px, 46%);
  height: auto;
}

#wipe.run .wipe-logo {
  animation: wipeLogoIn 0.62s var(--ease) forwards;
}

#wipe.enter .wipe-logo {
  animation: wipeLogoOut 0.5s var(--ease) backwards;
}

@keyframes wipeLogoIn {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  55% {
    opacity: 1;
    transform: none;
  }
  100% {
    opacity: 1;
  }
}
@keyframes wipeLogoOut {
  0% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* モーション抑制設定では遷移ワイプ自体を無効化 */
@media (prefers-reduced-motion: reduce) {
  #wipe {
    display: none;
  }
}
/* ---- マウスストーカー（PCのみ） ---- */
#stalker,
#stalkerDot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 4000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#stalkerDot {
  width: 6px;
  height: 6px;
  background: var(--red);
}

#stalker {
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(27, 43, 92, 0.55);
  transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
}
#stalker.hov {
  width: 58px;
  height: 58px;
  background: rgba(255, 210, 62, 0.18);
  border-color: var(--yel);
}

@media (max-width: 1024px), (pointer: coarse) {
  #stalker,
  #stalkerDot {
    display: none;
  }
}
/* ---- 下層共通ヘッダー ---- */
.lphead {
  background: var(--deep);
  color: #fff;
  padding: clamp(120px, 16vw, 170px) 0 clamp(46px, 6vw, 64px);
  position: relative;
  overflow: hidden;
}
.lphead .lpmq {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  display: flex;
  overflow: hidden;
  opacity: 0.5;
  pointer-events: none;
}
.lphead .lpmq div {
  display: flex;
  gap: 36px;
  padding-right: 36px;
  flex-shrink: 0;
  animation: mq 26s linear infinite;
}
.lphead .lpmq span {
  font-family: var(--fd);
  font-size: 4.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.13);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .lphead .lpmq span {
    font-size: 3rem;
  }
}
.lphead .bc {
  font-family: var(--fe);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
}
.lphead .bc a {
  color: var(--yel);
  cursor: pointer;
}
.lphead h1 {
  font-family: var(--fd);
  font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: 1;
  margin-top: 10px;
  position: relative;
}
.lphead .ja {
  font-weight: 700;
  color: var(--yel);
  margin-top: 4px;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  position: relative;
}

@keyframes mq {
  to {
    transform: translateX(-50%);
  }
}
/* ---- 共通：ニュース／ブログカード（front・blog・archiveで共用） ---- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.ncard {
  display: block;
}
.ncard .thumb {
  aspect-ratio: 16/10;
  border-radius: 10px;
  background: var(--gray);
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  transition: transform 0.35s var(--ease);
  background-size: cover;
  background-position: center;
}
.ncard .thumb:not([style*=background-image])::after {
  content: "\f03e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(26, 34, 56, 0.14);
  font-size: 1.6rem;
}
.ncard:hover .thumb {
  transform: translateY(-4px);
}
.ncard .date {
  font-family: var(--fe);
  font-weight: 600;
  font-size: 0.76rem;
  color: var(--red);
}
.ncard .cat {
  font-size: 0.7rem;
  background: var(--navy);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
}
.ncard .ttl {
  font-weight: 700;
  margin-top: 4px;
  line-height: 1.5;
}
.ncard .ex {
  font-size: 0.84rem;
  color: var(--muted);
  margin-top: 6px;
}

/* ---- 共通：記事本文（single） ---- */
.article-body {
  max-width: 46em;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.95;
}
.article-body h2 {
  font-family: var(--fd);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 32px 0 12px;
  border-left: 5px solid var(--yel);
  padding-left: 12px;
}
.article-body h3 {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin: 24px 0 8px;
}
.article-body p {
  margin-bottom: 16px;
}
.article-body img {
  border-radius: 12px;
  margin: 18px 0;
}
.article-body a {
  color: var(--red);
  text-decoration: underline;
}
.article-body ul,
.article-body ol {
  padding-left: 1.4em;
  margin: 12px 0;
}
.article-body ul {
  list-style: disc;
}
.article-body ol {
  list-style: decimal;
}

/* ---- WP管理バーのオフセット ---- */
.admin-bar header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar header {
    top: 46px;
  }
}
/* ============================================================
 * ページ別 partial
 * ============================================================ */
/* ============================================================
 * _header.scss — 固定ヘッダー / オープニング / 簡易ローディング /
 *                SNSフロート / SPメニュー（header.php）
 * ============================================================ */
/* ---- 固定ヘッダー ---- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  padding: 16px 0;
}
header.scr {
  background: rgba(250, 250, 246, 0.93);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(27, 43, 92, 0.1);
  padding: 9px 0;
}
@media (max-width: 768px) {
  header {
    padding: 12px 0;
  }
}

.hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ヘッダーのロゴは常に紺（表示されるのはスクロール後・下層＝明背景のみ）。
   ヒーロー中央のロゴは別要素（.hero-logo）で白のまま */
.logo {
  display: block;
  cursor: pointer;
  position: relative;
  height: 52px;
  transition: height 0.4s, opacity 0.4s, visibility 0.4s;
}
.logo img {
  height: 100%;
  width: auto;
  display: block;
}

header.scr .logo {
  height: 44px;
}

/* TOPのヒーロー上（未スクロール）はヘッダーのロゴを隠し、ヒーロー中央のロゴを主役にする。
   スクロール後（.scr）と下層ページではヘッダーロゴを表示 */
body.is-top header:not(.scr) .logo {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.gnav ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
.gnav a {
  font-family: var(--fe);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  position: relative;
  padding: 4px 0;
  color: #fff;
  transition: color 0.4s;
  cursor: pointer;
}
.gnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--yel);
  transition: width 0.3s var(--ease);
}
.gnav a:hover::after, .gnav a.cur::after {
  width: 100%;
}
@media (max-width: 1024px) {
  .gnav {
    display: none;
  }
}

header.scr .gnav a {
  color: var(--navy);
}

.cta-btn {
  font-family: var(--fj);
  font-weight: 700;
  background: var(--yel) !important;
  color: var(--navy) !important;
  border-radius: 30px !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 28px !important;
  font-size: 0.88rem !important;
  box-shadow: 0 4px 14px rgba(255, 210, 62, 0.3);
  transition: transform 0.25s, box-shadow 0.25s;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 210, 62, 0.45) !important;
}
.cta-btn::after {
  display: none;
}

/* ---- ハンバーガー（tabで表示／spで非表示→SP下部バーへ） ---- */
.hamb {
  display: none;
}

@media (max-width: 1024px) {
  .hamb {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
  }
  .hamb span {
    width: 26px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
  }
  .hamb.on span {
    background: #fff;
  }
  .hamb.on span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamb.on span:nth-child(2) {
    opacity: 0;
  }
  .hamb.on span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  header.scr .hamb span {
    background: var(--navy);
  }
}
@media (max-width: 768px) {
  .hamb {
    display: none;
  }
}
/* ---- SPスライドメニュー ---- */
.spmenu {
  position: fixed;
  inset: 0;
  background: var(--deep);
  z-index: 1090;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 0 32px;
  transform: translateX(100%);
  transition: transform 0.45s var(--snap);
}
.spmenu.on {
  transform: none;
}
.spmenu a {
  font-weight: 700;
  color: #fff;
  font-size: 1.3rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}
.spmenu a .e {
  font-family: var(--fe);
  font-size: 0.7rem;
  color: var(--yel);
  margin-right: 12px;
}

/* ---- SNSフロート（右下固定） ---- */
#snsFloat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#snsFloat a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 8px 20px rgba(19, 32, 74, 0.3);
  transition: transform 0.25s var(--ease);
}
#snsFloat a:hover {
  transform: translateY(-4px) scale(1.06);
}
#snsFloat .f-yt {
  background: #ff0000;
}
#snsFloat .f-ig {
  background: linear-gradient(45deg, #f09433, #dc2743 60%, #bc1888);
}
#snsFloat .f-cv {
  background: var(--navy);
  font-size: 1.1rem;
}
#snsFloat .f-in {
  background: var(--yel);
  color: var(--navy);
  font-size: 1.05rem;
}
@media (max-width: 768px) {
  #snsFloat {
    bottom: 84px;
    right: 12px;
  }
  #snsFloat a {
    width: 46px;
    height: 46px;
  }
}

/* ---- オープニング（初回のみ） ---- */
#opening {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.9s var(--snap);
}
#opening.up {
  transform: translateY(-100%);
}
#opening.skip {
  display: none;
}
#opening:hover .op-enter .btn {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 75, 31, 0.35);
}
@media (max-width: 768px) {
  #opening {
    flex-direction: column;
  }
}

.op-left {
  flex: 1;
  background: var(--base);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(28px, 6vw, 80px);
  position: relative;
}
.op-left .oplogo {
  width: min(300px, 60%);
  opacity: 0;
  transform: translateY(20px);
  animation: opln 0.9s 0.3s forwards var(--ease);
  margin: 0 auto;
}
.op-left .oc {
  font-weight: 700;
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  margin-top: 22px;
  opacity: 0;
  transform: translateY(16px);
  animation: opln 0.9s 0.7s forwards var(--ease);
  text-align: center;
}
@media (max-width: 768px) {
  .op-left {
    flex: 1;
    order: 2;
    justify-content: flex-start;
    padding-top: 26px;
  }
}

.op-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px auto 0;
  opacity: 0;
  animation: opln 0.9s 0.95s forwards var(--ease);
}
.op-genres span {
  font-family: var(--fe);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 5px 11px;
  border-radius: 30px;
}

.op-enter {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 30px auto 0;
  opacity: 0;
  animation: opln 0.9s 1.2s forwards var(--ease);
}
.op-enter .btn {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.op-enter .hint {
  font-family: var(--fe);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.op-right {
  flex: 1;
  background: var(--deep);
  position: relative;
  overflow: hidden;
}
.op-right video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.op-right .op-eq {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 9px;
  padding: 48px;
  opacity: 0.25;
}
.op-right .op-eq i {
  width: 11px;
  border-radius: 6px;
  animation: beat 1.1s ease-in-out infinite;
}
.op-right .op-eq i:nth-child(5n+1) {
  background: var(--red);
}
.op-right .op-eq i:nth-child(5n+2) {
  background: var(--yel);
}
.op-right .op-eq i:nth-child(5n+3) {
  background: var(--pink);
}
.op-right .op-eq i:nth-child(5n+4) {
  background: var(--grn);
}
.op-right .op-eq i:nth-child(5n) {
  background: var(--cyan);
}
.op-right .op-eq i:nth-child(3n) {
  animation-delay: 0.35s;
}
.op-right .op-eq i:nth-child(2n) {
  animation-delay: 0.2s;
}
.op-right .play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}
.op-right .vlabel {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font-family: var(--fe);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: var(--yel);
}
@media (max-width: 768px) {
  .op-right {
    flex: 0 0 42%;
    order: 1;
  }
}

@keyframes opln {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes beat {
  0%, 100% {
    height: 30px;
  }
  50% {
    height: 160px;
  }
}
/* ---- 簡易ローディング（2回目以降） ---- */
#qload {
  position: fixed;
  inset: 0;
  z-index: 1990;
  background: var(--deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.5s, visibility 0.5s;
}
#qload.off {
  opacity: 0;
  visibility: hidden;
}
#qload img {
  width: min(220px, 50%);
}
#qload .bars {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 30px;
}
#qload .bars i {
  width: 6px;
  border-radius: 3px;
  animation: beat2 0.8s ease-in-out infinite;
}
#qload .bars i:nth-child(1) {
  background: var(--red);
}
#qload .bars i:nth-child(2) {
  background: var(--yel);
  animation-delay: 0.12s;
}
#qload .bars i:nth-child(3) {
  background: var(--pink);
  animation-delay: 0.24s;
}
#qload .bars i:nth-child(4) {
  background: var(--grn);
  animation-delay: 0.36s;
}
#qload .bars i:nth-child(5) {
  background: var(--cyan);
  animation-delay: 0.48s;
}

@keyframes beat2 {
  0%, 100% {
    height: 8px;
  }
  50% {
    height: 30px;
  }
}
/* ============================================================
 * _footer.scss — フッター / SP下部固定バー / ライトボックス（footer.php）
 * ============================================================ */
footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 110px;
}
@media (max-width: 768px) {
  footer {
    padding-bottom: 90px;
  }
}

.f-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.f-logo img {
  width: 180px;
}

.f-info {
  font-size: 0.86rem;
  line-height: 1.9;
  margin-top: 14px;
}

.f-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 0.84rem;
}
.f-nav a {
  cursor: pointer;
}

.f-sns {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  font-size: 1.1rem;
}

.f-intro {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-family: var(--fe);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--yel);
  border: 1px solid rgba(255, 210, 62, 0.4);
  padding: 12px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}
.f-intro:hover {
  background: rgba(255, 210, 62, 0.1);
}

.f-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  font-family: var(--fe);
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* ---- SP下部固定バー（spのみ表示） ---- */
.sp-bar {
  display: none;
}

@media (max-width: 768px) {
  .sp-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: var(--deep);
    z-index: 1200;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .sp-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 9px 0;
    color: #fff;
    cursor: pointer;
  }
  .sp-bar a.sp-tel {
    background: var(--red);
  }
  .sp-bar i {
    font-size: 1.1rem;
  }
  .sp-bar p {
    font-family: var(--fe);
    font-size: 0.54rem;
    letter-spacing: 0.08em;
  }
}
/* ---- ライトボックス（PHOTO BOARD / INFOバナー拡大） ---- */
.lb {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(10, 16, 38, 0.88);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.lb.on {
  opacity: 1;
  visibility: visible;
}
.lb.on .lb-inner {
  transform: scale(1);
}

.lb-inner {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  transform: scale(0.86);
  transition: transform 0.45s var(--ease);
  background: var(--deep);
  max-width: 92vw;
  max-height: 88vh;
  /* 実画像：原寸を保ったままビューポート内に全体表示（縦長もフルで見える） */
}
.lb-inner img {
  display: block;
  width: auto;
  height: auto;
  max-width: 92vw;
  max-height: 88vh;
  -o-object-fit: contain;
     object-fit: contain;
}
.lb-inner {
  /* 写真未設定のグラデ・プレースホルダは従来の3/2ボックス */
}
.lb-inner.ph {
  width: min(900px, 90vw);
  aspect-ratio: 3/2;
}
.lb-inner.ph .gimg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.lb-inner .glabel {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  font-family: var(--fe);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
}

.lb-x {
  position: absolute;
  top: 24px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.lb-x:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

/* ============================================================
 * _front-page.scss — TOP（front-page.php）
 *   Hero / News / Concept / Genre / Schedule / Dancers /
 *   Stats / PhotoBoard / SNS / CTA
 * ============================================================ */
/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: var(--deep);
}

/* ヒーロービジュアル中央のロゴ（未スクロール時の主役。スクロールで一緒に上へ流れる） */
.hero-logo {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  pointer-events: none;
}
.hero-logo img {
  width: min(250px, 60%);
  height: auto;
  filter: drop-shadow(0 10px 34px rgba(0, 0, 0, 0.4));
  opacity: 0;
  transform: translateY(14px);
  animation: heroLogoIn 1s 0.35s var(--ease) forwards;
}
@media (max-width: 768px) {
  .hero-logo img {
    width: min(160px, 72%);
  }
}

@keyframes heroLogoIn {
  to {
    opacity: 1;
    transform: none;
  }
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.7s ease;
}
.slide.act {
  opacity: 1;
  z-index: 2;
}
.slide .bg {
  position: absolute;
  inset: 0;
  transform: scale(1.16);
  transition: transform 6s ease-out;
  background-size: cover;
  background-position: center;
}
.slide .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 16, 38, 0.76), rgba(10, 16, 38, 0.28) 60%, transparent);
}
.slide.act .bg {
  transform: scale(1);
}
.slide .ph-tag {
  position: absolute;
  right: 20px;
  top: 90px;
  font-family: var(--fe);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
}
.slide .cap {
  position: absolute;
  bottom: 0;
  width: min(1200px, 90%);
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 14vh;
  color: #fff;
}
@media (max-width: 768px) {
  .slide .cap {
    padding-bottom: 18vh;
  }
}
.slide .cap .oe {
  display: block;
  font-family: var(--fe);
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  color: var(--yel);
  overflow: hidden;
}
.slide .cap .oe i {
  display: inline-block;
  font-style: normal;
  transform: translateY(110%);
  transition: transform 0.7s var(--ease);
}
.slide .cap .l {
  display: block;
  overflow: hidden;
}
.slide .cap .l b {
  display: block;
  font-family: var(--fd);
  font-weight: 400;
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 0.98;
  transform: translateY(110%) skewY(4deg);
  transition: transform 0.85s var(--ease);
}
.slide .cap .l b.a-yel {
  color: var(--yel);
}
.slide .cap .l b.a-pink {
  color: var(--pink);
}
.slide .cap .l b.a-cyan {
  color: var(--cyan);
}
.slide.act .cap .l b, .slide.act .cap .oe i {
  transform: none;
}
.slide.act .cap .l:nth-child(3) b {
  transition-delay: 0.1s;
}

.bg-1 {
  background: radial-gradient(120% 120% at 20% 30%, #2a3d7e, #0d1530);
}

.bg-2 {
  background: radial-gradient(120% 120% at 80% 20%, #3a2d6e, #0d1530);
}

.bg-3 {
  background: radial-gradient(120% 120% at 50% 80%, #1e4a6e, #0d1530);
}

/* PC/スマホで画像を出し分けるスライド（3枚目など） */
.slide .bg-sp {
  display: none;
}

@media (max-width: 768px) {
  .slide .bg-pc {
    display: none;
  }
  .slide .bg-sp {
    display: block;
  }
}
.hero-sweep {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}
.hero-sweep.run::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255, 210, 62, 0.5), transparent);
  transform: skewX(-12deg);
  animation: sweep 0.7s var(--snap);
}

@keyframes sweep {
  0% {
    left: -50%;
  }
  100% {
    left: 120%;
  }
}
.hero-dots {
  position: absolute;
  right: 30px;
  bottom: 14vh;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .hero-dots {
    bottom: 18vh;
  }
}
.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}
.hero-dots button.on {
  background: var(--yel);
}
.hero-dots button.on::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid var(--yel);
  animation: pulse 1.6s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 6;
  font-family: var(--fe);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.6);
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% {
    transform: scaleY(0.3);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
}
/* ---- NEWS 固定バナー ---- */
.news-banner {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 21/7;
  margin-bottom: 28px;
  background: var(--deep);
  cursor: pointer;
}
@media (max-width: 768px) {
  .news-banner {
    aspect-ratio: 16/9;
  }
}
.news-banner .nb-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.news-banner .nb-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(10, 16, 38, 0.8));
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.news-banner .nb-tag {
  font-family: var(--fe);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--yel);
}
.news-banner .nb-t {
  font-weight: 700;
  font-size: 0.92rem;
}
.news-banner .nb-x {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: rotate(-90deg);
}
.news-banner:hover .nb-x {
  opacity: 1;
  transform: none;
}

/* ---- CONCEPT ---- */
.concept-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}
@media (max-width: 1024px) {
  .concept-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.ph-photo {
  background: linear-gradient(135deg, rgba(27, 43, 92, 0.1), transparent 60%), var(--gray);
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
}
.ph-photo:not([style*=background-image])::after {
  content: "PHOTO";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fe);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(26, 34, 56, 0.18);
}

.concept .ph {
  aspect-ratio: 4/5;
  position: relative;
}
.concept .ph::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 2px solid var(--yel);
  border-radius: 14px;
  z-index: 1;
}
.concept .ctxt h3 {
  font-family: var(--fd);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.14;
  margin: 10px 0 18px;
  color: var(--navy);
}
.concept .ctxt h3 .mark {
  color: var(--red);
}
.concept .ctxt p {
  margin-bottom: 16px;
}

/* ---- GENRE ---- */
.genre {
  background: var(--deep);
  color: #fff;
  overflow: hidden;
}
.genre .shead h2 {
  color: #fff;
}
.genre .shead h2::after {
  background: rgba(255, 210, 62, 0.35);
}
.genre .shead p {
  color: rgba(255, 255, 255, 0.7);
}

.marquee {
  display: flex;
  overflow: hidden;
  margin: 6px 0 44px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee .track {
  display: flex;
  gap: 40px;
  padding-right: 40px;
  flex-shrink: 0;
  animation: mq 26s linear infinite;
  will-change: transform;
}
.marquee span {
  font-family: var(--fd);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: transparent;
  -webkit-text-stroke: 1.6px rgba(255, 255, 255, 0.95);
  white-space: nowrap;
}
.marquee span.f1 {
  color: var(--red);
  -webkit-text-stroke: 0;
}
.marquee span.f2 {
  color: var(--yel);
  -webkit-text-stroke: 0;
}
.marquee span.f3 {
  color: var(--pink);
  -webkit-text-stroke: 0;
}
.marquee span.f4 {
  color: var(--grn);
  -webkit-text-stroke: 0;
}
.marquee span.f5 {
  color: var(--cyan);
  -webkit-text-stroke: 0;
}

.genre-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1024px) {
  .genre-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gcard {
  background: #26407f;
  border-radius: 12px;
  padding: 24px 20px;
  transition: transform 0.35s var(--ease), background 0.35s;
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
  --ac: var(--yel);
}
.gcard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: var(--ac);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.gcard:hover {
  transform: translateY(-6px);
  background: #2f4c96;
}
.gcard:hover::before {
  transform: scaleX(1);
}
.gcard .gen {
  font-family: var(--fd);
  font-size: 1.85rem;
  letter-spacing: 0.04em;
  color: #fff;
}
.gcard .gja {
  color: var(--ac);
  margin-top: 2px;
  font-weight: 700;
  font-size: 0.84rem;
}
.gcard .gd {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 12px;
  color: #e9ecf6;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.75;
  margin-top: 12px;
}

/* ---- SCHEDULE（週間グリッド） ---- */
.wk-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .wk-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .wk-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.wk-col {
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: 12px;
  overflow: hidden;
}
.wk-col h4 {
  font-family: var(--fe);
  font-weight: 700;
  text-align: center;
  background: var(--navy);
  color: #fff;
  font-size: 0.84rem;
  padding: 8px 0;
  letter-spacing: 0.1em;
}
.wk-col h4.sat {
  color: var(--yel);
}
.wk-col ul {
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wk-chip {
  border-radius: 7px;
  padding: 7px 8px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.45;
}
.wk-chip .tm {
  display: block;
  font-family: var(--fe);
  font-weight: 600;
  font-size: 0.62rem;
  opacity: 0.75;
}

.tt-note {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 14px;
}

/* ジャンル別カラーチップ（schedule・lesson共用） */
.c-kids {
  background: #ffe7cf;
  color: #9a4a16;
}

.c-hip {
  background: #ffd9d2;
  color: #b5301f;
}

.c-girls {
  background: #fce0e8;
  color: #b23a5e;
}

.c-break {
  background: #16254f;
  color: var(--yel);
}

.c-jazz {
  background: #e7e3f5;
  color: #5b4fa0;
}

.c-kpop {
  background: #dff1ea;
  color: #1f7a5c;
}

.c-punk {
  background: #ffe9f4;
  color: #a1338b;
}

.c-gym {
  background: #e0eef7;
  color: #1f6fa0;
}

/* ---- DANCERS（横スクロール） ---- */
.dc-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 14px;
  -webkit-overflow-scrolling: touch;
  cursor: grab; /* PC：ドラッグで横スクロール（スマホはタッチでネイティブスクロール） */
  scrollbar-width: thin;
}
.dc-scroll.drag {
  cursor: grabbing;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  scroll-behavior: auto;
}
.dc-scroll {
  /* ドラッグ時のリンク／画像ゴースト掴みを抑制 */
}
.dc-scroll a {
  -webkit-user-drag: none;
}
.dc-scroll img {
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.dcard {
  flex: 0 0 240px;
}
.dcard .face {
  aspect-ratio: 3/4;
}

.gtag {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  font-family: var(--fe);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  background: var(--navy);
  color: #fff;
  padding: 4px 8px;
  border-radius: 5px;
}

/* ダンサーカード共通（dcard / inst） */
.dcard .face,
.inst .face {
  border-radius: 12px;
  background: var(--deep);
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  background-size: cover;
  background-position: center top;
}
.dcard .face .sil,
.inst .face .sil {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: rgba(255, 255, 255, 0.14);
  font-size: 7rem;
  transition: transform 0.5s var(--ease);
}
.dcard .face img,
.inst .face img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  transition: transform 0.5s var(--ease);
}
.dcard:hover .face .sil, .dcard:hover .face img,
.inst:hover .face .sil,
.inst:hover .face img {
  transform: scale(1.06);
}
.dcard .nm,
.inst .nm {
  font-weight: 700;
  font-size: 1.05rem;
}
.dcard .ne,
.inst .ne {
  font-family: var(--fe);
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ---- STATS ---- */
.stats {
  background: var(--deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "BEAT DRIVE BEAT DRIVE";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--fd);
  font-size: 9rem;
  color: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  pointer-events: none;
}
.stats .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .stats .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 14px;
  }
}
.stats .grid > div:nth-child(1) .num {
  color: var(--yel);
}
.stats .grid > div:nth-child(2) .num {
  color: var(--pink);
}
.stats .grid > div:nth-child(3) .num {
  color: var(--grn);
}
.stats .grid > div:nth-child(4) .num {
  color: var(--cyan);
}
.stats .num {
  font-family: var(--fd);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  line-height: 1;
}
.stats .num .u {
  font-size: 0.45em;
  margin-left: 2px;
}
.stats .lb {
  font-weight: 700;
  font-size: 0.86rem;
  margin-top: 6px;
  opacity: 0.92;
}

/* ---- PHOTO BOARD ---- */
.gallery .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: 12px;
}
@media (max-width: 1024px) {
  .gallery .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery .grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
  }
}

.gtile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--deep);
}
.gtile .gimg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease);
  background-size: cover;
  background-position: center;
}
.gtile:hover .gimg {
  transform: scale(1.07);
}
.gtile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 16, 38, 0.5));
  opacity: 0;
  transition: opacity 0.35s;
}
.gtile:hover::after {
  opacity: 1;
}
.gtile .glabel {
  position: absolute;
  left: 12px;
  bottom: 10px;
  z-index: 2;
  font-family: var(--fe);
  font-weight: 600;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
}
.gtile .gplus {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: rotate(-90deg);
}
.gtile:hover .gplus {
  opacity: 1;
  transform: none;
}

.gi1 {
  background: radial-gradient(120% 120% at 30% 20%, #2a3d7e, #0e1834);
}

.gi2 {
  background: radial-gradient(120% 120% at 70% 30%, #5c2a4a, #0e1834);
}

.gi3 {
  background: radial-gradient(120% 120% at 40% 70%, #1e5a4a, #0e1834);
}

.gi4 {
  background: radial-gradient(120% 120% at 60% 40%, #5c4a1e, #0e1834);
}

.gi5 {
  background: radial-gradient(120% 120% at 20% 60%, #3a2d6e, #0e1834);
}

.gi6 {
  background: radial-gradient(120% 120% at 80% 70%, #1e4a6e, #0e1834);
}

.t-wide {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .t-wide {
    grid-column: auto;
  }
}

.t-tall {
  grid-row: span 2;
}
@media (max-width: 768px) {
  .t-tall {
    grid-row: auto;
  }
}

/* ---- SNS ---- */
.sns-yt-banner {
  border-radius: 16px;
  padding: 30px;
  color: #fff;
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  transition: transform 0.25s var(--ease);
}
.sns-yt-banner:hover {
  transform: translateY(-3px);
}
.sns-yt-banner .igl {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sns-yt-banner i {
  font-size: 2.4rem;
}
.sns-yt-banner .h {
  font-family: var(--fe);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.sns-yt-banner .s {
  font-size: 0.8rem;
  opacity: 0.85;
}
.sns-yt-banner .igbtn {
  padding: 14px 32px;
  background: #fff;
  color: #c13584;
  font-weight: 700;
  border-radius: 30px;
  font-size: 0.88rem;
}

.sns-ig-block {
  margin-top: 18px;
  border-radius: 16px;
  padding: 30px;
  color: #fff;
  background: linear-gradient(45deg, #f09433, #e6683c 30%, #dc2743 60%, #cc2366 80%, #bc1888);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transition: transform 0.25s var(--ease); /* YouTubeバナーと揃えてブロック全体でホバー */
}
.sns-ig-block:hover {
  transform: translateY(-3px);
}
.sns-ig-block .igl {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sns-ig-block i {
  font-size: 2.4rem;
}
.sns-ig-block .h {
  font-family: var(--fe);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.sns-ig-block .s {
  font-size: 0.8rem;
  opacity: 0.9;
}
.sns-ig-block .igbtn {
  background: #fff;
  color: #c13584;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 0.88rem;
}

/* ---- CTA ---- */
.cta-sec {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: clamp(70px, 9vw, 110px) 0;
  position: relative;
  overflow: hidden;
}
.cta-sec .cta-eq {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: flex-end;
  height: 50px;
  opacity: 0.3;
}
.cta-sec .cta-eq i {
  width: 8px;
  border-radius: 4px;
  animation: beat 1.1s ease-in-out infinite;
}
.cta-sec .cta-eq i:nth-child(5n+1) {
  background: var(--red);
}
.cta-sec .cta-eq i:nth-child(5n+2) {
  background: var(--yel);
}
.cta-sec .cta-eq i:nth-child(5n+3) {
  background: var(--pink);
}
.cta-sec .cta-eq i:nth-child(5n+4) {
  background: var(--grn);
}
.cta-sec .cta-eq i:nth-child(5n) {
  background: var(--cyan);
}
.cta-sec .cta-eq i:nth-child(even) {
  animation-delay: 0.25s;
}
.cta-sec h2 {
  font-family: var(--fd);
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 10px;
  position: relative;
}
.cta-sec p {
  font-weight: 500;
  opacity: 0.95;
  margin-bottom: 30px;
  position: relative;
}

/* ============================================================
 * _fee.scss — 料金プラン（page-fee.php）
 * ============================================================ */
.fee-block {
  margin-bottom: 54px;
}
.fee-block .fh {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .fee-block .fh {
    flex-wrap: wrap;
    gap: 6px 12px;
  }
}
.fee-block .fh { /* スマホは見出しと説明を段組み */ }
.fee-block .fh .no {
  font-family: var(--fd);
  font-size: 1.1rem;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fee-block .fh h3 {
  font-family: var(--fd);
  font-size: 1.6rem;
  color: var(--navy);
  white-space: nowrap;
}
.fee-block .fh { /* 見出しは折り返さない */ }
.fee-block .fh small {
  font-weight: 700;
  color: var(--muted);
  font-size: 0.82rem;
}
@media (max-width: 768px) {
  .fee-block .fh small {
    flex-basis: 100%;
  }
}
.fee-block .fh small { /* 説明文は次の行へ */ }

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }
}
.plan-grid { /* スマホは1カラムで読みやすく */
  /* チケット（3プラン）：PC3列 → タブ2列 → スマホ1列 */
}
.plan-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .plan-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .plan-grid.cols-3 {
    grid-template-columns: 1fr;
  }
}

.plan {
  border: 1px solid var(--gray);
  border-radius: 14px;
  padding: 26px 22px;
  background: #fff;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative;
}
.plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px -18px rgba(19, 32, 74, 0.28);
}
.plan.feat {
  border: 2px solid var(--red);
}
.plan.feat::before {
  content: attr(data-badge);
  position: absolute;
  right: 14px;
  top: -12px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 4px 12px;
  border-radius: 30px;
}
.plan .pn {
  font-family: var(--fd);
  font-size: 1.45rem;
  color: var(--navy);
}
.plan .pt {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.plan .pp {
  font-family: var(--fd);
  font-size: 2.1rem;
  color: var(--red);
  line-height: 1;
}
.plan .pp small {
  font-family: var(--fj);
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 700;
}
.plan .pnote {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 10px;
  border-top: 1px solid var(--gray);
  padding-top: 10px;
}

.info-band {
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: 14px;
  padding: 24px 26px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.info-band .ib {
  flex: 1;
  min-width: 180px;
}
.info-band .ib .k {
  font-family: var(--fe);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--red);
}
.info-band .ib .v {
  font-weight: 700;
  font-size: 1.15rem;
  margin-top: 4px;
}
.info-band .ib .s {
  font-size: 0.74rem;
  color: var(--muted);
}

.note-list {
  margin-top: 30px;
  font-size: 0.86rem;
  color: var(--muted);
}
.note-list li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
}
.note-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--red);
}

/* ============================================================
 * _lesson.scss — レッスン（page-lesson.php）曜日別クラス
 * ============================================================ */
.ls-day {
  margin-bottom: 38px;
}
.ls-day h3 {
  font-family: var(--fd);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--navy);
}
.ls-day h3 small {
  font-family: var(--fj);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--muted);
}
.ls-day h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gray);
}

.ls-card {
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: 12px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 10px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.ls-card:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 26px -16px rgba(19, 32, 74, 0.3);
}
@media (max-width: 768px) {
  .ls-card {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.ls-card .tm {
  font-family: var(--fe);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--red);
}
.ls-card .cn {
  font-weight: 700;
  font-size: 1rem;
}
.ls-card .tg {
  font-size: 0.78rem;
  color: var(--muted);
}
.ls-card {
  /* 担当ダンサー（アバター付きピル／クリックで個別へ） */
}
.ls-card .ins {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fe);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  background: var(--navy);
  color: #fff;
  padding: 6px 18px 6px 6px;
  border-radius: 30px;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.25s;
}
.ls-card .ins:hover {
  transform: scale(1.05);
}
.ls-card .ins .av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  overflow: hidden;
}
.ls-card .ins .av img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.ls-card .ins.tbd {
  background: #fff;
  color: var(--muted);
  border: 1px dashed var(--muted);
  cursor: default;
  padding: 9px 16px;
}
.ls-card .ins.tbd:hover {
  transform: none;
}
.ls-card .ins.tbd .av {
  width: 32px;
  height: 32px;
  font-size: 0.8rem;
}

/* ============================================================
 * _rental.scss — レンタルスタジオ（page-rental.php）
 * ============================================================ */
.rent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
@media (max-width: 1024px) {
  .rent-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.floorplan {
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: 14px;
  padding: 26px;
}
.floorplan svg {
  width: 100%;
  height: auto;
  display: block;
}

.fp-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 10px;
}

/* 料金表 */
table.tt {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
table.tt th, table.tt td {
  border: 1px solid var(--gray);
  padding: 13px 12px;
  text-align: left;
  font-size: 0.88rem;
}
table.tt thead th {
  background: var(--navy);
  color: #fff;
  font-family: var(--fe);
  font-weight: 700;
}
table.tt tbody th {
  background: var(--base);
  font-weight: 700;
  width: 150px;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fac {
  border: 1px solid var(--gray);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.fac .fimg {
  aspect-ratio: 4/3;
  background: var(--gray);
  position: relative;
  background-size: cover;
  background-position: center;
}
.fac .fimg:not([style*=background-image])::after {
  content: "\f030";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(26, 34, 56, 0.18);
  font-size: 1.4rem;
}
.fac .fimg {
  /* 写真が入っている時はクリックで拡大 */
}
.fac .fimg.lb-zoom {
  cursor: zoom-in;
}
.fac .fimg.lb-zoom::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 38, 0.18);
  opacity: 0;
  transition: opacity 0.3s;
}
.fac .fimg.lb-zoom:hover::before {
  opacity: 1;
}
.fac .fimg.lb-zoom .fzoom {
  opacity: 1;
}
.fac .fimg .fzoom {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
  opacity: 0;
  transform: rotate(-90deg);
  transition: opacity 0.3s, transform 0.3s;
}
.fac .fimg:hover .fzoom {
  opacity: 1;
  transform: none;
}
.fac .ft {
  font-weight: 700;
  font-size: 0.86rem;
  padding: 10px 14px;
}
.fac .ft small {
  display: block;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--muted);
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .flow {
    grid-template-columns: repeat(2, 1fr);
  }
}
.flow .fl {
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: 12px;
  padding: 20px;
  position: relative;
}
.flow .fl:not(:last-child)::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 0.8rem;
  z-index: 2;
}
@media (max-width: 1024px) {
  .flow .fl:not(:last-child)::after {
    display: none;
  }
}
.flow .fl .no {
  font-family: var(--fd);
  color: var(--red);
  font-size: 1.6rem;
}
.flow .fl .ft {
  font-weight: 700;
  margin-top: 4px;
}
.flow .fl .fd {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 6px;
}

/* ============================================================
 * _dancers.scss — ダンサー一覧（page-dancers.php）/
 *                 個別プロフィール（single-dancer.php）
 *   ※ カード基本（.inst .face 等）は _front-page.scss で共通定義
 * ============================================================ */
/* ---- 一覧 ---- */
.inst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1024px) {
  .inst-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.inst {
  cursor: pointer;
}
.inst .face {
  aspect-ratio: 1/1;
}
.inst .face .sil {
  font-size: 8rem;
}
.inst .face.coming {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, #1C2D60, #1C2D60 12px, #16254F 12px, #16254F 24px);
}
.inst .face.coming .cs {
  font-family: var(--fd);
  color: var(--yel);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
}
.inst .nm {
  font-size: 1.15rem;
}
.inst .pf {
  font-size: 0.84rem;
  color: var(--muted);
  margin-top: 8px;
}

/* ---- 個別プロフィール ---- */
.dd-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin-bottom: 26px;
  cursor: pointer;
  color: var(--navy);
}
.dd-back i {
  transition: transform 0.3s;
}
.dd-back:hover i {
  transform: translateX(-5px);
}

.dd-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}
@media (max-width: 768px) {
  .dd-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

.dd-photo {
  aspect-ratio: 3/4;
  border-radius: 16px;
  background: var(--deep);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
}
.dd-photo .sil {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: rgba(255, 255, 255, 0.14);
  font-size: 12rem;
}
.dd-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.dd-name {
  font-family: var(--fd);
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  color: var(--navy);
  line-height: 1;
}

.dd-en {
  font-family: var(--fe);
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin-top: 4px;
}

.dd-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0 4px;
}
.dd-tags span {
  font-family: var(--fe);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  color: #fff;
  padding: 5px 12px;
  border-radius: 30px;
}

.dd-sec {
  margin-top: 22px;
}
.dd-sec h4 {
  font-family: var(--fd);
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: 0.06em;
  border-left: 4px solid var(--yel);
  padding-left: 10px;
  margin-bottom: 8px;
}
.dd-sec p {
  font-size: 0.92rem;
  white-space: pre-line;
}

/* CAREER：カテゴリ見出し＋項目リスト */
.dd-career .dd-cat {
  font-family: var(--fe);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--red);
  margin: 16px 0 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gray);
}
.dd-career .dd-cat:first-of-type {
  margin-top: 4px;
}
.dd-career .dd-list {
  list-style: none;
  margin: 0 0 4px;
}
.dd-career .dd-list li {
  position: relative;
  padding-left: 14px;
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--ink);
}
.dd-career .dd-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yel);
}

/* ============================================================
 * _contact.scss — お問い合わせ（page-contact.php）
 * ============================================================ */
.ct-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: start;
}
@media (max-width: 1024px) {
  .ct-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.form .row {
  margin-bottom: 18px;
}
.form label {
  display: block;
  font-weight: 700;
  font-size: 0.86rem;
  margin-bottom: 6px;
}
.form label .req {
  color: #fff;
  background: var(--red);
  font-size: 0.68rem;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 4px;
}
.form input, .form select, .form textarea {
  width: 100%;
  border: 1px solid var(--gray);
  border-radius: 8px;
  padding: 13px 14px;
  font-family: var(--fj);
  font-size: 0.95rem;
  background: #fff;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 43, 92, 0.12);
}
.form .btn-pri {
  border: none;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
  margin-top: 6px;
}
.form .auto-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 10px;
}

/* Contact Form 7 を流し込んだ場合の見た目調整 */
.wpcf7 input[type=text], .wpcf7 input[type=email], .wpcf7 input[type=tel], .wpcf7 select, .wpcf7 textarea {
  width: 100%;
  border: 1px solid var(--gray);
  border-radius: 8px;
  padding: 13px 14px;
  font-family: var(--fj);
  font-size: 0.95rem;
  background: #fff;
}
.wpcf7 input[type=submit] {
  width: 100%;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 15px 32px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  margin-top: 6px;
}
.wpcf7 input[type=submit]:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(255, 75, 31, 0.38);
}

.ct-side .card {
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 18px;
}
.ct-side .card h3 {
  font-family: var(--fd);
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.map-ph {
  aspect-ratio: 16/10;
  border-radius: 12px;
  background: var(--gray);
  position: relative;
  overflow: hidden;
  margin-top: 12px;
}
.map-ph iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.map-ph:not(:has(iframe))::after {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(26, 34, 56, 0.2);
  font-size: 2rem;
}

/* ============================================================
 * _policy.scss — プライバシーポリシー（page-policy.php）
 * ============================================================ */
.policy-body {
  max-width: 46em;
}
.policy-body h3 {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin: 28px 0 8px;
  border-left: 4px solid var(--yel);
  padding-left: 10px;
}
.policy-body p, .policy-body li {
  font-size: 0.92rem;
}
.policy-body ul {
  padding-left: 1.4em;
  list-style: disc;
  margin-top: 6px;
}

/* ============================================================
 * _blog.scss — ブログ一覧 / カテゴリ / アーカイブ
 *              （home.php / index.php）
 *   ※ カード（.news-grid .ncard）は style.scss 共通で定義
 * ============================================================ */
.blog-cats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.blog-cats a, .blog-cats button {
  font-weight: 700;
  font-size: 0.82rem;
  border: 1px solid var(--gray);
  background: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.25s;
  color: var(--ink);
}
.blog-cats a.on, .blog-cats a:hover, .blog-cats button.on, .blog-cats button:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.pager {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 44px;
  flex-wrap: wrap;
}
.pager a, .pager span {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 1px solid var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fe);
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}
.pager .current, .pager a:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}/*# sourceMappingURL=style.css.map */