/* main.css (FULL / UPDATED) */
:root{
  --red:#084976;
  --black:#000;
  --combat:#222;
  --fitness:#084976;
  --studio:#2F80ED;
  --bg:#fff;
  --text:#111;
  --muted:#6b7280;

  /* hover now UFC blue */
  --hover: var(--red);

  --header-h:72px;
  --belt-h:70px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family:"Noto Sans JP", system-ui, -apple-system, Segoe UI, Roboto, sans-serif; color:var(--text); background:var(--bg); }
img{ max-width:100%; display:block; }
a{ color:inherit; }

.container{
  width:min(1100px, calc(100% - 32px));
  margin:0 auto;
}

.section{ padding:56px 0; }
.section-title{
  margin:0 0 14px;
  font-size:28px;
  letter-spacing:.2px;
  font-weight:700;
}
.section-text{ margin:0; font-size:15px; line-height:1.85; font-weight:400; }
.muted{ color:var(--muted); }
.center-title{ text-align:center; }
.center-legend{ justify-content:center; }

/* reserve room */
body{
  padding-top: var(--header-h);
  padding-bottom: calc(var(--belt-h) + env(safe-area-inset-bottom));
}

/* =========================
   HEADER
   ========================= */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:60;
}
.header-bar{
  background:transparent;
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.55);
  transition: background .18s ease, border-color .18s ease;
}
.site-header.is-scrolled .header-bar{
  background:#000;
  border-bottom-color: rgba(255,255,255,.10);
}

.header-inner{
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.header-inner--wide{
  width: calc(100% - 28px);
  margin: 0 auto;
  max-width: 1400px;
}

.brand{
  text-decoration:none;
  display:flex;
  align-items:center;
  flex:0 0 auto;
}
.brand-logo{
  height:54px;
  width:auto;
}

/* centered buttons */
.header-center{
  flex: 1 1 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  min-width: 0;
}

.header-right{
  display:flex;
  align-items:center;
  gap:12px;
  flex:0 0 auto;
}

.header-link{
  text-decoration:none;
  font-size:15px;
  font-weight:800;
  opacity:.95;
  white-space:nowrap;
  letter-spacing:.02em;
}
.header-link:hover{ color:var(--hover); opacity:1; }

/* Lang button */
.lang-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.40);
  color:#fff;
  border-radius:999px;
  cursor:pointer;
  font-weight:800;
  letter-spacing:.06em;
  line-height:1;
}
.lang-pill:hover{ background: rgba(0,0,0,.40); border-color: rgba(255,255,255,.55); }
.lang-pill:focus-visible{ outline:3px solid rgba(8,73,118,.45); outline-offset:3px; }
.lang-pill__label{ font-size:12px; }
.lang-pill__slash{ opacity:.75; font-size:12px; }

.burger{
  display:none;
  background:transparent;
  border:0;
  padding:8px;
  cursor:pointer;
}
.burger span{
  display:block;
  width:22px;
  height:2px;
  background:#fff;
  margin:5px 0;
}

/* Mobile overlay menu */
.mobile-menu{
  position:fixed;
  inset:0;
  display:none;
  z-index:120;
}
.mobile-menu.is-open{ display:block; }

.mobile-menu__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.62);
  z-index:0;
}

.mobile-menu__panel{
  position:absolute;
  top:0; right:0;
  width:min(420px, 92vw);
  height:100%;
  background:#000;
  color:#fff;
  border-left:1px solid rgba(255,255,255,.10);
  padding:16px 16px calc(18px + var(--belt-h) + env(safe-area-inset-bottom));
  display:flex;
  flex-direction:column;
  gap:18px;
  transform: translateX(12px);
  opacity:0;
  animation: menuIn .18s ease forwards;
  overflow-y:auto;
  -webkit-overflow-scrolling: touch;
  z-index:1;
}
@keyframes menuIn{
  to { transform: translateX(0); opacity:1; }
}

.mobile-menu__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-top:6px;
}
.mobile-menu__brand{ text-decoration:none; display:flex; align-items:center; }
.mobile-menu__logo{ height:46px; width:auto; }
.mobile-menu__close{
  width:44px; height:44px;
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
  font-size:26px;
  line-height:1;
  flex:0 0 auto;
}
.mobile-menu__close:hover{ background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.28); }

.mobile-menu__links{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding-top:6px;
}
.mobile-menu__link{
  text-decoration:none;
  padding:14px 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  font-weight:800;
  letter-spacing:.02em;
}
.mobile-menu__link:hover{ border-color: rgba(255,255,255,.26); color: var(--hover); }

.mobile-menu__sns{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.sns-btn{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  padding:12px 12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  font-weight:800;
}
.sns-btn:hover{ border-color: rgba(255,255,255,.26); color: var(--hover); }
.sns-ico{ width:20px; height:20px; display:inline-flex; align-items:center; justify-content:center; }
.sns-ico .ico{ width:20px; height:20px; display:block; }
.sns-txt{ font-size:13px; letter-spacing:.02em; }

.mobile-menu__contact{
  margin-top:auto;
  border-top:1px solid rgba(255,255,255,.10);
  padding-top:14px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.contact-row{
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 0;
}
.contact-k{
  font-weight:900;
  letter-spacing:.08em;
  font-size:11px;
  opacity:.85;
}
.contact-v{
  font-weight:800;
  font-size:13px;
  letter-spacing:.02em;
}
.contact-note{
  font-size:12px;
  line-height:1.55;
  opacity:.9;
  margin-top:6px;
}

/* lock scroll when menu open */
body.is-locked{ overflow:hidden; }

/* =========================
   HERO
   ========================= */
.mv{ padding:0; margin-top: calc(-1 * var(--header-h)); }
.mv-hero{
  position:relative;
  width:100%;
  height: calc(100vw * 9 / 16);
  max-height: 820px;
  min-height: 520px;
  overflow:hidden;
}
.mv-video{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.mv-overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.18);
  pointer-events:none;
}

.mv-copy{
  position:absolute;
  left: clamp(18px, 5vw, 54px);
  bottom: clamp(84px, 12vw, 170px);
  transform: translateY(-8px);
  z-index:3;
  color:#fff;
  max-width: min(760px, calc(100% - 32px));
}

.mv-title{
  margin:0;
  font-weight:900;
  letter-spacing:.02em;
  line-height:1.05;
  font-size: clamp(38px, 4.8vw, 72px);
  transform: skewX(-6deg);
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.mv-title-line{ display:block; }

.mv-actions{
  margin-top:16px;
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

/* HERO black button */
.mv-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  background:#000;
  color:#fff;
  text-decoration:none;
  padding:12px 16px;
  border-radius:0;
  font-weight:900;
  font-size:14px;
  letter-spacing:.02em;
  border:1px solid rgba(0,0,0,.20);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
}
.mv-btn:hover{ filter:brightness(1.06); }
.mv-btn__text{ line-height:1; }
.mv-btn__arrow{
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.mv-btn__arrow .ico{ width:18px; height:18px; display:block; }

/* =========================
   PROMO
   ========================= */
.promo-section{
  background-image: url("assets/img/campaignbackground.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.promo-container{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  color:#111;
}
.promo-title{
  margin:0 0 22px;
  font-size:42px;
  font-weight:800;
  letter-spacing:.4px;
  line-height:1.15;
}
.promo-title-black{ color:#111; }
.promo-title-red{ color:var(--red); margin-left:10px; }
.promo-media{ width:min(980px, 100%); margin: 0 0 26px; }
.promo-image{ width:100%; height:auto; display:block; }
.promo-copy{ max-width: 920px; width:100%; }
.promo-date{ margin:0 0 10px; font-size:34px; font-weight:800; color:#111; }
.promo-lead{ margin:0 0 14px; font-size:22px; font-weight:700; color:#111; }
.promo-note{ margin:8px 0 0; font-size:13px; line-height:1.9; color:#111; }

/* shared black button */
.btn-solid{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  background:#000;
  color:#fff;
  text-decoration:none;
  padding:14px 18px;
  border-radius:0;
  font-weight:900;
  font-size:15px;
  letter-spacing:.02em;
  box-shadow: 0 10px 18px rgba(0,0,0,.18);
  border:1px solid rgba(0,0,0,.15);
}
.btn-solid:hover{ filter:brightness(1.05); }
.btn-solid__text{ line-height:1; }

/* arrow in promo button (NO white square) */
.btn-solid--arrow .btn-solid__arrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
}
.btn-solid--arrow .btn-solid__arrow .ico{ display:block; }

/* Promo CTA wrap */
.promo-cta-wrap{ margin-top:22px; display:flex; justify-content:center; }

/* =========================
   Instagram section (UPDATED)
   ========================= */
.insta-section{ background:#fff; border-top:1px solid rgba(0,0,0,.06); }
.insta-inner{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:18px;
}

.insta-head{ max-width: 680px; }
.section-hr--short{ width: 320px; max-width: 86%; }

.insta-embed{
  width:100%;
  margin-top:6px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  padding:14px;
}

.insta-grid{
  display:grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap:12px;
}

.insta-tile{
  display:block;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  background:#f6f6f6;
}
.insta-tile img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  aspect-ratio: 4 / 5;
}

/* CTA under tiles */
.insta-cta{
  margin-top:14px;
  width:100%;
  display:flex;
  justify-content:center;
}

.btn-ig{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:#1877F2;
  color:#fff;
  text-decoration:none;
  padding:12px 18px;
  border-radius:0;
  font-weight:900;
  font-size:14px;
  letter-spacing:.02em;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:none;
}
.btn-ig:hover{ filter:brightness(1.05); }
.btn-ig__ico{ width:18px; height:18px; display:inline-flex; align-items:center; justify-content:center; }
.btn-ig__ico .ico{ width:18px; height:18px; display:block; }
.btn-ig__text{ line-height:1; }

/* =========================
   Schedule
   ========================= */
.legend{
  margin:0 0 18px;
  display:flex;
  gap:16px;
  align-items:center;
  color:#111;
  font-size:13px;
}
.dot{
  width:10px;
  height:10px;
  border-radius:0;
  display:inline-block;
  margin-right:6px;
}
.dot-combat{ background:var(--combat); }
.dot-fitness{ background:var(--fitness); }
.dot-studio{ background:var(--studio); }

.schedule-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
}
.day summary{
  background:var(--red);
  color:#fff;
  padding:12px 18px;
  font-size:14px;
  font-weight:700;
  border-radius:0;
  cursor:pointer;
  letter-spacing:.3px;
  list-style:none;
}
.day summary::-webkit-details-marker{ display:none; }
.day summary::before{
  content:"▶";
  display:inline-block;
  margin-right:10px;
  transform: translateY(-1px);
  opacity:.95;
}
.day[open] summary::before{ content:"▼"; }
.day-body{
  padding:16px 18px;
  background:#fafafa;
  border:1px solid #eee;
  border-top:none;
  border-radius:0;
}
.row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:8px 0;
  border-bottom:1px dashed rgba(0,0,0,.08);
  font-size:14px;
}
.row:last-child{ border-bottom:0; }
.row strong{ width:72px; display:inline-block; font-weight:700; }
.pill{
  width:12px;
  height:12px;
  border-radius:0;
  display:inline-block;
  margin-top:3px;
  flex:0 0 auto;
}
.pill-combat{ background:var(--combat); }
.pill-fitness{ background:var(--fitness); }
.pill-studio{ background:var(--studio); }

/* =========================
   Booking / Coaches / FAQ / Access / Company / Footer
   ========================= */
.booking-inner{ max-width: 980px; }
.booking-note{ margin-top:-6px; text-align:center; }
.steps{
  margin:18px auto 0;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}
.step{ border:1px solid #e9e9e9; background:#fff; padding:14px 14px; }
.step-top{ display:flex; align-items:center; gap:10px; }
.step-badge{
  display:inline-flex; align-items:center; justify-content:center;
  height:22px; padding:0 10px;
  background: var(--red); color:#fff;
  font-weight:800; font-size:11px; letter-spacing:.08em;
  border-radius:0;
}
.step-num{ font-weight:800; letter-spacing:.08em; font-size:12px; color:rgba(0,0,0,.65); }
.step-text{ margin-top:10px; font-size:14px; line-height:1.7; font-weight:500; color:rgba(0,0,0,.86); }
.booking-widget{ margin-top:18px; border:1px solid #eee; background:#fff; padding:12px; }
.booking-widget iframe{ width:100%; min-height:900px; border:0; }

.y-coaches{ background:#f3f4f6; color:#111; padding:72px 0; border-top:1px solid rgba(0,0,0,.06); border-bottom:1px solid rgba(0,0,0,.06); }
.y-section-head{ margin-bottom:14px; }
.y-section-title{ font-size:28px; font-weight:700; letter-spacing:.04em; line-height:1.1; }
.y-section-sub{ margin-top:6px; font-size:12px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:rgba(0,0,0,.58); }
.y-coach-carousel{ position:relative; margin-top:18px; }
.y-coach-viewport{ overflow:hidden; width:100%; touch-action: pan-y; }
.y-coach-track{ display:flex; gap:16px; will-change: transform; transition: transform .28s ease; }
.y-coach-card{ flex: 0 0 calc((100% - 32px) / 3); background:#fff; border:1px solid rgba(0,0,0,.10); box-shadow: 0 18px 60px rgba(0,0,0,.08); overflow:hidden; }
.y-coach-photo{ aspect-ratio: 4 / 5; background-size:cover; background-position:center; background-color:#e9eaee; }
.y-coach-info{ padding:14px 14px; display:flex; flex-direction:column; gap:6px; }
.y-coach-name{ font-weight:700; letter-spacing:.06em; font-size:14px; }
.y-coach-role{ font-weight:600; color:rgba(0,0,0,.62); letter-spacing:.06em; text-transform:uppercase; font-size:11px; }
.y-coach-arrow{
  position:absolute; top:50%; transform: translateY(-50%);
  width:44px; height:44px;
  border-radius:0;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.96);
  color:#111;
  display:grid; place-items:center;
  cursor:pointer;
  box-shadow: 0 18px 60px rgba(0,0,0,.12);
  z-index:3;
}
.y-coach-arrow.left{ left:-10px; }
.y-coach-arrow.right{ right:-10px; }
.y-coach-arrow span{ font-size:26px; font-weight:700; line-height:1; }
.y-coach-cta{ display:flex; justify-content:center; margin-top:18px; }

/* =========================
   MEMBERSHIP PLAN (UPDATED + MORE COMPACT)
   ========================= */
.membership{ background:#fff; }
.membership-hero{
  position:relative;
  height: 210px;
  background-image: url("assets/img/membership-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat:no-repeat;
  overflow:hidden;
}
.membership-hero__overlay{
  position:absolute; inset:0;
  background: rgba(0,0,0,.32);
}
.membership-hero__title{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:900;
  letter-spacing:.08em;
  font-size:40px;
  text-transform:uppercase;
  text-align:center;
  padding:0 18px;
}

.membership-body{ padding-top:36px; }
.plan-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:14px;
  align-items:stretch;
}
.plan{
  background:#fff;
  border:1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.06);
  overflow:hidden;
}

.plan-top{
  padding:0;
  background: linear-gradient(180deg, #4b4b4b 0%, #1a1a1a 55%, #000 100%);
  color:#fff;
  min-height: 150px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  position:relative;
}

.plan-name{
  position:absolute;
  top:0;
  left:50%;
  transform: translateX(-50%);
  width:78%;
  background: var(--red);
  color:#fff;
  font-weight:900;
  letter-spacing:.06em;
  text-align:center;
  padding:7px 10px;
  font-size:15px;
}

.plan-price{
  position:absolute;
  left:50%;
  top:58%;
  transform: translate(-50%, -50%);
  margin:0;
  font-weight:900;
  letter-spacing:.02em;
  display:flex;
  align-items:baseline;
  justify-content:center;
  gap:6px;
}
.plan-price .yen{ font-size:24px; opacity:.98; }
.plan-price .num{ font-size:46px; line-height:1; }

.plan-bottom{
  padding:14px 14px 14px;
  background:#fff;
  text-align:center;
}

.plan-block{
  padding:10px 0;
  border-top:1px solid rgba(0,0,0,.10);
}
.plan-block:first-child{ border-top:0; }

.plan-big{
  font-size:16px;
  font-weight:900;
  letter-spacing:.02em;
  line-height:1.55;
  color:#000;
  text-wrap:balance;
}

/* No1 badge (FIX: moved above price, smaller, no overlap) */
.plan-badge{
  position:absolute;
  left:50%;
  top:36%;
  transform: translate(-50%, -50%);
  background: #C9A227;
  color:#111;
  font-weight:900;
  letter-spacing:.06em;
  font-size:11px;
  line-height:1;
  padding:6px 9px;
  border:1px solid rgba(255,255,255,.10);
  text-align:center;
  white-space:nowrap;
  z-index:2;
}

/* Membership CTA under plans */
.membership-cta{
  margin-top:18px;
  display:flex;
  justify-content:center;
}

/* =========================
   Info sections + Footer
   ========================= */
.info-section{ background:#fff; }
.info-card{
  background:#fff;
  border:1px solid #e8e8e8;
  border-radius:0;
  box-shadow: 0 14px 34px rgba(0,0,0,.05);
  overflow:hidden;
  margin-top:18px;
}
.faq-item{ border-top:1px solid rgba(0,0,0,.08); }
.faq-item:first-child{ border-top:0; }
.faq-q{
  list-style:none; cursor:pointer;
  padding:16px 16px;
  font-weight:600; line-height:1.45;
  display:flex; align-items:center;
  color:#0f0f10;
}
.faq-q::-webkit-details-marker{ display:none; }
.faq-q::after{
  content:"";
  margin-left:auto;
  width:10px; height:10px;
  border-right:2px solid rgba(0,0,0,.55);
  border-bottom:2px solid rgba(0,0,0,.55);
  transform: rotate(45deg);
  transition: transform .18s ease, opacity .18s ease;
  opacity:.85;
}
.faq-item[open] .faq-q::after{ transform: rotate(-135deg); }
.faq-item[open] .faq-q{ background:rgba(0,0,0,.03); }
.faq-a{
  padding:0 16px 0 16px;
  max-height:0;
  overflow:hidden;
  opacity:0;
  transform: translateY(-6px);
  transition: max-height .28s ease, opacity .22s ease, transform .22s ease, padding-bottom .22s ease;
  color:rgba(0,0,0,.78);
  line-height:1.9;
  font-size:14px;
  font-weight:400;
}
.faq-item[open] .faq-a{
  max-height: 1200px;
  opacity:1;
  transform: translateY(0);
  padding-bottom:16px;
}

.access-block{
  margin-top:24px;
  border:1px solid #e8e8e8;
  box-shadow: 0 14px 34px rgba(0,0,0,.05);
  display:grid;
  grid-template-columns: 1fr 1.35fr;
  overflow:hidden;
}
.access-left{
  padding:30px 26px;
  background:#fff;
  border-right:1px solid rgba(0,0,0,.08);
}
.info-rows{ display:grid; gap:14px; }
.info-row{
  display:grid;
  grid-template-columns: 66px 1fr;
  gap:12px;
  align-items:start;
  font-size:14px;
}
.info-row .k{ font-weight:600; color:rgba(0,0,0,.65); padding-top:2px; }
.info-row .v{ color:rgba(0,0,0,.88); line-height:1.7; font-weight:400; }
.hours{
  margin-top:20px;
  padding-top:18px;
  border-top:1px solid rgba(0,0,0,.08);
}
.hours-title{ font-weight:700; margin:0 0 10px; letter-spacing:.02em; font-size:14px; }
.hours-row{ display:flex; gap:10px; margin:6px 0; color:rgba(0,0,0,.86); font-size:14px; }
.hours-row .d{ font-weight:700; min-width:52px; }
.hours-row .t{ font-weight:400; }
.access-right iframe{
  width:100%;
  height:100%;
  min-height:420px;
  border:0;
  display:block;
}

.company-table .tr{
  display:grid;
  grid-template-columns: 150px 1fr;
  border-top:1px solid rgba(0,0,0,.08);
}
.company-table .tr:first-child{ border-top:0; }
.company-table .th{
  padding:16px 14px;
  font-weight:600;
  color:rgba(0,0,0,.65);
  background:rgba(0,0,0,.02);
  letter-spacing:.02em;
  font-size:14px;
}
.company-table .td{
  padding:16px 14px;
  color:rgba(0,0,0,.88);
  line-height:1.85;
  font-size:14px;
  font-weight:400;
}

.site-footer{
  background:#000;
  color:#fff;
  padding:22px 0;
}
.footer-inner{
  width:min(1100px, calc(100% - 32px));
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:14px;
  flex-wrap:wrap;
}

/* icons without square outline */
.footer-sns{
  display:flex;
  align-items:center;
  gap:12px;
  order:2;
}
.footer-sns__link{
  width:auto;
  height:auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0;
  text-decoration:none;
  border:0;
  background:transparent;
}
.footer-sns__link:hover{ color: var(--hover); }
.footer-sns__link .ico{ width:18px; height:18px; display:block; }

/* move "トップへ / 予約" to far right */
.footer-links{
  display:flex;
  gap:14px;
  margin-left:auto;
  order:3;
}
.footer-links a{ text-decoration:none; opacity:.9; }
.footer-links a:hover{ opacity:1; color:var(--hover); }

/* =========================
   BELT
   ========================= */
.belt-red{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:80;
  height:var(--belt-h);
  background: var(--red);
  border-top:1px solid rgba(255,255,255,.18);
  padding-bottom: env(safe-area-inset-bottom);
}
.belt-red-inner{
  height:var(--belt-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:0 18px;
}

.belt-marquee{
  position:relative;
  overflow:hidden;
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  display:flex;
  align-items:center;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.belt-marquee-row{
  display:inline-flex;
  align-items:center;
  gap:14px;
  white-space:nowrap;
  color:#fff;
  font-weight:900;
  letter-spacing:.06em;
  font-size:20px;
  line-height:1;
  will-change: transform;
  animation: beltMove 18s linear infinite;
}
.belt-item{ opacity:.98; }
.belt-dot{ opacity:.85; }
.belt-spacer{ width: 40px; }

@keyframes beltMove{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

.belt-divider{
  width:1px;
  height:44px;
  background: rgba(255,255,255,.45);
  flex:0 0 auto;
}

/* button: solid black block, no white outline; belt height unchanged */
.belt-cta-rect{
  flex:0 0 auto;
  height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border:0;
  color:#fff;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.02em;
  border-radius:0;
  background:#000;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  white-space:nowrap;
}
.belt-cta-rect:hover{
  filter:brightness(1.04);
}
.belt-cta-text{ font-size:16px; }

/* =========================================================
   YOGA — SERVICES + CLASSES v2 (UPDATED)
========================================================= */

/* shared bg layer for slideshows */
.y-bg-layer{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition: opacity .8s ease;
  will-change: opacity;
}
.y-bg-layer.is-on{ opacity:1; }

/* ---------- SERVICES (RIGHT HALF) ---------- */
.y-services{
  position:relative;
  padding:72px 0;
  overflow:hidden;
  background:#0b0b0c;
}
.y-services-bg{
  position:absolute;
  inset:0;
  z-index:0;
}
.y-services-bg__veil{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.25) 45%, rgba(0,0,0,.58)),
    radial-gradient(60% 60% at 50% 35%, rgba(8,73,118,.18), rgba(0,0,0,0) 60%);
  pointer-events:none;
}

.y-services-inner{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:flex-end; /* move content to right */
}

.y-services-card{
  width:min(560px, 50%); /* right half feel */
  background: rgba(255,255,255,.96);
  border:1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
  border-radius:0;
  padding:26px 22px;
  color:#0b0b0c;
  backdrop-filter: blur(6px);
}

.y-kicker{
  font-weight:900;
  letter-spacing:.14em;
  font-size:12px;
  text-transform:uppercase;
  color:rgba(0,0,0,.58);
}

.y-services-title{
  margin:10px 0 10px;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height:1.25;
  font-weight:900;
  letter-spacing:-0.01em;
}

.y-hr{
  width:160px;
  height:3px;
  background: var(--ufc-red, #084976);
  margin:12px 0 14px;
  border-radius:0;
}

.y-services-body{
  margin:0;
  color:rgba(0,0,0,.76);
  font-size:14px;
  line-height:1.85;
  font-weight:600;
}

.y-tags{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.y-tag{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:0;
  background: var(--ufc-red, #084976);
  color:#fff;
  font-weight:900;
  letter-spacing:.06em;
  font-size:11px;
  line-height:1.1;
  box-shadow: 0 10px 28px rgba(8,73,118,.16);
}

/* ---------- CLASSES v2 ---------- */
.y-classes-v2{
  padding:72px 0 84px;
  background:
    radial-gradient(60% 60% at 18% 18%, rgba(8,73,118,.10), rgba(255,255,255,0) 56%),
    radial-gradient(60% 60% at 82% 24%, rgba(0,0,0,.05), rgba(255,255,255,0) 62%),
    linear-gradient(180deg, #F7F8FA, #EEF0F4);
}

.y-classes-head{
  text-align:left;
  margin-bottom:20px;
}

.y-class-list{
  display:flex;
  flex-direction:column;
  gap:26px;
}

.y-class-row{
  position:relative;
  display:flex;
  gap:26px;
  align-items:center;
  padding:6px 0;
}

.y-class-row--reverse{
  flex-direction:row-reverse;
}

.y-class-media{
  position:relative;
  width:520px;
  max-width:520px;
  height:420px;
  flex:0 0 520px;
}

/* Octagon container */
.y-class-octo{
  position:absolute;
  overflow:hidden;
  border-radius:0;
  border:1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 70px rgba(0,0,0,.18);
  background:#e9eaee;
  clip-path: polygon(
    30% 0%,
    70% 0%,
    100% 30%,
    100% 70%,
    70% 100%,
    30% 100%,
    0% 70%,
    0% 30%
  );
}

.y-class-octo--1{
  width:360px;
  height:360px;
  left:0;
  top:0;
  transform: translateY(8px);
}

.y-class-octo--2{
  width:320px;
  height:320px;
  left:150px;
  top:120px;
  border-color: rgba(8,73,118,.28);
  box-shadow: 0 20px 86px rgba(0,0,0,.22);
}

.y-class-text{
  flex:1;
  min-width:260px;
  color:#0b0b0c;
}

.y-class-label{
  display:inline-flex;
  align-items:center;
  font-weight:900;
  letter-spacing:.12em;
  font-size:12px;
  text-transform:uppercase;
  color:rgba(0,0,0,.62);
}

.y-class-title{
  margin:10px 0 8px;
  font-size: clamp(20px, 2.35vw, 30px);
  line-height:1.18;
  font-weight:900;
}

.y-class-body{
  margin:0;
  color:rgba(0,0,0,.72);
  line-height:1.9;
  font-size:14.5px;
  font-weight:600;
  max-width: 74ch;
}

/* =========================
   FACILITIES / RECOVERY (NEW)
   ========================= */
.y-facilities{
  background:#fff;
  border-top:1px solid rgba(0,0,0,.06);
}
.y-facilities.is-disabled{ display:none; }

.y-facilities-head{
  max-width: 760px;
  margin-bottom:18px;
}
.y-facilities-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:14px;
  align-items:stretch;
}

.y-facility-item{
  background:#fff;
  border:1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.06);
  padding:18px 16px 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.y-facility-patch{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px 0 6px;
}
.y-facility-patch img{
  width:min(160px, 70%);
  height:auto;
  display:block;
}

.y-facility-title{
  margin:0;
  font-size:15px;
  font-weight:900;
  letter-spacing:.02em;
  color:#0b0b0c;
}
.y-facility-body{
  margin:0;
  font-size:13.5px;
  line-height:1.85;
  font-weight:600;
  color:rgba(0,0,0,.72);
}

/* ---------- Reveal animation (extended) ---------- */
.y-services-card,
.y-class-row,
.y-facility-item{
  opacity:1;
  transform:none;
}
.y-reveal .y-services-card,
.y-reveal .y-class-row,
.y-reveal .y-facility-item{
  opacity:0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.y-reveal .is-visible{
  opacity:1 !important;
  transform: translateY(0) !important;
}

/* stagger for facilities */
.y-reveal .y-facility-item:nth-child(1){ transition-delay: .00s; }
.y-reveal .y-facility-item:nth-child(2){ transition-delay: .10s; }
.y-reveal .y-facility-item:nth-child(3){ transition-delay: .20s; }
.y-reveal .y-facility-item:nth-child(4){ transition-delay: .30s; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px){
  .schedule-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  .plan-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .y-facilities-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .y-services-card{ width:min(640px, 100%); }
}

@media (max-width: 980px){
  .y-services-inner{ justify-content:center; }
  .y-services-card{ width:min(860px, 100%); }
}

@media (max-width: 820px){
  .burger{ display:block; }
  .header-center{ display:none; }
  .lang-pill{ display:inline-flex; padding:10px 12px; }
  .mv-copy{ bottom: clamp(92px, 18vw, 160px); }
  .mv-title{ font-size: clamp(34px, 8.8vw, 54px); }

  .section-title{ font-size:24px; }
  .promo-title{
    font-size:30px;
    white-space:nowrap;
    text-wrap:balance;
  }
  .promo-title-red{ margin-left:8px; }
  .promo-date{ font-size:26px; text-wrap:balance; }
  .promo-lead{ font-size:18px; text-wrap:balance; }
  .section-text{ text-wrap:balance; }

  .steps{ grid-template-columns:1fr; }
  .access-block{ grid-template-columns:1fr; }
  .access-left{ border-right:0; border-bottom:1px solid rgba(0,0,0,.08); padding:26px 18px; }
  .company-table .tr{ grid-template-columns: 120px 1fr; }

  .belt-red-inner{ padding:0 12px; gap:12px; }
  .belt-marquee-row{ font-size:18px; }
  .belt-divider{ height:40px; }
  .belt-cta-rect{ height:44px; padding:0 16px; }
  .belt-cta-text{ font-size:15px; }

  .membership-hero__title{
    font-size:28px;
    white-space:nowrap;
    text-wrap:balance;
  }

  /* Instagram: 2x2 only (4 tiles) */
  .insta-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .insta-tile:nth-child(n+5){ display:none; }

  /* schedule: 1 column on mobile */
  .schedule-grid{ grid-template-columns: 1fr; }

  .y-class-row,
  .y-class-row--reverse{
    flex-direction:column;
    gap:14px;
  }
  .y-class-media{
    width:100%;
    max-width:520px;
    flex:0 0 auto;
    height:400px;
    margin-bottom:10px;
  }
  .y-class-text{
    width:100%;
    padding-top:4px;
  }
  .y-class-title{ margin-top:12px; text-wrap:balance; }
  .y-class-body{ text-wrap:balance; }
  .y-services-title{ text-wrap:balance; }
  .y-services-body{ text-wrap:balance; }
  .step-text{ text-wrap:balance; }

  .y-class-octo--1{
    width:320px;
    height:320px;
    left:0;
    top:0;
    transform:none;
  }
  .y-class-octo--2{
    width:290px;
    height:290px;
    left:18%;
    top:128px;
  }
  .y-class-body{ font-size:14px; line-height:1.85; }

  .y-facilities-grid{ grid-template-columns: 1fr; }

  /* coaches: 2 visible on mobile */
  .y-coach-card{ flex: 0 0 calc((100% - 16px) / 2); }
}

@media (max-width: 520px){
  /* Membership: show 4 plans at once (2x2) */
  .membership-body{ padding:22px 0; }
  .plan-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap:10px;
  }

  .membership-hero{ height: 170px; }
  .membership-hero__title{ font-size:24px; }

  .plan-top{ min-height: 118px; }
  .plan-name{
    width:86%;
    font-size:12px;
    padding:6px 8px;
  }
  .plan-price{ top:60%; }
  .plan-price .yen{ font-size:16px; }
  .plan-price .num{ font-size:34px; }

  .plan-badge{
    top:34%;
    font-size:10px;
    padding:5px 8px;
  }

  .plan-bottom{ padding:10px 10px 10px; }
  .plan-block{ padding:8px 0; }

  .plan-big{
    font-size:12.5px;
    line-height:1.45;
    letter-spacing:.01em;
    text-wrap:balance;
  }

  /* prevent forced line breaks inside plan texts on mobile */
  .plan-big br{ display:none; }
}

@media (max-width: 380px){
  .y-class-media{ height:380px; }
  .y-class-octo--1{ width:300px; height:300px; }
  .y-class-octo--2{ width:270px; height:270px; left:14%; top:122px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .belt-marquee-row{ animation:none !important; }
  .mobile-menu__panel{ animation:none !important; opacity:1; transform:none; }

  .y-bg-layer{ transition:none !important; }
  .y-reveal .y-services-card,
  .y-reveal .y-class-row,
  .y-reveal .y-facility-item{
    transition:none !important;
    opacity:1 !important;
    transform:none !important;
  }
}