/* =========================================================
   CLEANED / FINAL CSS
   - 重複・上書き合戦・無効化された古い定義を整理
   - RANKバッジ：下バナー（最終仕様）
   - scheduleTime：Schedule / HOME ともに非表示（最終仕様）
   - Slider：track/slide + arrow + dots（最終仕様）
   - “Luxury upgrade” は統合済み（上書き用の重複ブロック削除）
========================================================= */

:root{
  --bg:#070707;
  --bg2:#0b0b0b;

  --gold:#d6b15a;
  --gold2:#f0d58b;

  --text:#e9e9e9;
  --muted:#bdbdbd;

  --line:rgba(214,177,90,.35);
  --card:rgba(0,0,0,.55);
  --shadow:0 14px 40px rgba(0,0,0,.55);

  --serif:"Noto Serif JP", serif;
  --cinzel:"Cinzel", serif;

  /* luxury */
  --lux-glow: 0 18px 60px rgba(0,0,0,.62);
  --lux-glow2: 0 10px 26px rgba(0,0,0,.42);
  --lux-line: rgba(214,177,90,.28);
}

/* ===== Base ===== */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  font-family:var(--serif);
  background:var(--bg);
  /* ダマスク風（画像不要の簡易） */
  background-image:
    radial-gradient(1200px 600px at 50% -10%, rgba(214,177,90,.10), transparent 55%),
    radial-gradient(900px 480px at 10% 10%, rgba(255,255,255,.05), transparent 60%),
    radial-gradient(900px 480px at 90% 20%, rgba(255,255,255,.04), transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.025) 0 2px, transparent 2px 24px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.02) 0 1px, transparent 1px 18px);
  background-blend-mode: screen,screen,screen,normal,normal;
}
a{color:inherit; text-decoration:none}
.wrap{width:min(1100px, calc(100% - 32px)); margin:0 auto}

/* =========================================================
   Entrance
========================================================= */
.entrance{
  position:fixed;
  inset:0;
  z-index:2000;
  display:grid;
  place-items:center;
  background:
    radial-gradient(900px 520px at 50% 30%, rgba(214,177,90,.16), transparent 60%),
    rgba(0,0,0,.88);
  backdrop-filter: blur(6px);
}
.entrance.is-hidden{display:none}
.entrance__inner{
  width:min(760px, calc(100% - 32px));
  padding:28px 18px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.55);
  box-shadow: var(--shadow);
  text-align:center;
}
.entrance__lang{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom:18px;
  color:var(--muted);
  font-size:13px;
}
.entrance__lang-label{letter-spacing:.06em; text-transform:uppercase; margin-right:6px}
.entrance__lang-link{
  padding:6px 10px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  transition:.2s;
}
.entrance__lang-link:hover{border-color:var(--line); color:var(--gold2)}
.entrance__lang-link.is-active{border-color:var(--line); color:var(--gold2)}
.entrance__brand{display:grid; place-items:center; margin:14px 0 18px}
.entrance__logo{
  max-width:min(560px, 90%);
  height:auto;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.65));
}
.entrance__badges{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:16px;
}
.badge{
  font-family:var(--cinzel);
  letter-spacing:.08em;
  font-size:12px;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:8px;
  background:rgba(0,0,0,.35);
}
.entrance__sns{display:flex; gap:12px; justify-content:center; margin-top:18px}
.sns{
  font-size:12px;
  color:var(--muted);
  border-bottom:1px solid transparent;
}
.sns:hover{color:var(--gold2); border-bottom-color:var(--line)}

/* =========================================================
   Header / Nav
========================================================= */
.header{
  position:sticky;
  top:0;
  z-index:1200;
  background: rgba(0,0,0,.70);
  border-bottom:1px solid rgba(214,177,90,.25);
  backdrop-filter: blur(8px);
}
.header__inner{
  width:min(1200px, calc(100% - 24px));
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
}
.brand{display:flex; align-items:center; gap:12px}
.brand__mark{
  width:44px;
  height:44px;
  object-fit:contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.55));
}
.brand__text{display:flex; flex-direction:column; line-height:1.1}
.brand__name{
  font-family:var(--cinzel);
  letter-spacing:.10em;
  font-size:18px;
  color:var(--gold2);
}
.brand__kana{
  font-size:12px;
  color:rgba(233,233,233,.8);
  letter-spacing:.22em;
}
.nav{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
}
.nav__link{
  font-family:var(--cinzel);
  font-size:12px;
  letter-spacing:.08em;
  color:rgba(233,233,233,.88);
  padding:10px 10px;
  border-radius:8px;
  transition:.2s;
  border:1px solid transparent;
}
.nav__link small{
  display:block;
  font-family:var(--serif);
  letter-spacing:.12em;
  color:rgba(233,233,233,.6);
  font-size:11px;
  margin-top:2px;
}
.nav__link:hover{
  border-color:rgba(214,177,90,.25);
  color:var(--gold2);
}
.nav__link--primary{
  border-color:rgba(214,177,90,.35);
  background: rgba(214,177,90,.10);
}
.navToggle{
  display:none;
  width:44px;
  height:44px;
  background:transparent;
  border:1px solid rgba(255,255,255,.14);
  border-radius:10px;
  cursor:pointer;
}
.navToggle span{
  display:block;
  width:22px;
  height:2px;
  background:rgba(233,233,233,.85);
  margin:5px auto;
  border-radius:2px;
}

/* =========================================================
   Hero
========================================================= */
.hero{
  position: relative;
  padding: 42px 0 18px;
}
.hero::before{
  content:"";
  position:absolute;
  inset: -40px 0 auto 0;
  height: 360px;
  pointer-events:none;
  background:
    radial-gradient(820px 420px at 50% 0%, rgba(214,177,90,.18), transparent 62%),
    radial-gradient(620px 320px at 16% 10%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(640px 340px at 84% 18%, rgba(255,255,255,.05), transparent 62%);
  opacity: .9;
}
.hero__inner{
  width:min(1200px, calc(100% - 32px));
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:26px;
  align-items:center;
}
.hero__title{margin:0 0 12px; line-height:1.06}
.hero__title-en{
  font-family:var(--cinzel);
  font-size:52px;
  letter-spacing:.08em;
  color:var(--gold2);
  text-shadow:
    0 18px 60px rgba(0,0,0,.70),
    0 2px 0 rgba(255,255,255,.06);
  display:block;
}
.hero__title-jp{
  font-size:16px;
  letter-spacing:.26em;
  color:rgba(233,233,233,.85);
}
.hero__lead{
  margin:0 0 18px;
  color: rgba(233,233,233,.88);
  line-height:1.9;
  text-shadow: 0 1px 0 rgba(0,0,0,.35);
}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap; margin:10px 0 12px}
.hero__note{color:rgba(233,233,233,.55); font-size:12px}

/* =========================================================
   Slider (Hero)
========================================================= */
.slider{
  position: relative;
  border: 1px solid var(--lux-line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.38));
  box-shadow: var(--lux-glow);
  border-radius:14px;
  overflow:hidden;
}
.slider::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(115deg, rgba(255,255,255,.08), transparent 45%),
    radial-gradient(380px 220px at 20% 10%, rgba(214,177,90,.14), transparent 60%);
  opacity:.85;
}
.slider__frame{
  padding:14px;
  overflow:hidden;
  border-radius:14px;
}
.slider__track{
  display:flex;
  width:100%;
  transform: translate3d(0,0,0);
  transition: transform 420ms ease;
  will-change: transform;
}
.slider__slide{flex:0 0 100%}
.slider__media{
  width:100%;
  height:340px;
  object-fit:cover;
  display:block;
  filter: contrast(1.03) saturate(1.05);
}
.slider.is-dragging .slider__track{transition:none}

/* arrows */
.slider__arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(214,177,90,.45);
  background: rgba(0,0,0,.48);
  color:#d6b15a;
  font-size:26px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:20;
  box-shadow: var(--lux-glow2);
}
.slider__arrow--prev{left:12px}
.slider__arrow--next{right:12px}
.slider__arrow:hover{
  transform: translateY(-50%) scale(1.04);
  border-color: rgba(214,177,90,.72);
}

/* dots */
.slider__dots{
  display:flex;
  justify-content:center;
  gap:8px;
  padding:14px 0 18px;
}
.slider__dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(214,177,90,.35);
  background: rgba(255,255,255,.20);
  cursor:pointer;
  transition: transform .2s, background .2s;
  box-shadow: 0 6px 14px rgba(0,0,0,.35);
}
.slider__dot.is-active{
  background: rgba(214,177,90,.70);
  transform: scale(1.2);
  box-shadow: 0 10px 18px rgba(214,177,90,.18);
}

/* =========================================================
   Sections / Prose / Cards
========================================================= */
.section{padding:56px 0}
.section__head{text-align:center; margin-bottom:22px}
.section__eyebrow{
  margin:0;
  font-family:var(--cinzel);
  letter-spacing:.18em;
  color:rgba(214,177,90,.82);
  font-size:12px;
}
.section__title{
  margin:10px 0 10px;
  font-size:26px;
  letter-spacing:.14em;
  text-shadow:
    0 16px 40px rgba(0,0,0,.65),
    0 1px 0 rgba(255,255,255,.05);
}
.section__rule{
  width:150px;
  height:2px;
  margin:0 auto;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(214,177,90,.25),
    rgba(214,177,90,.75),
    rgba(214,177,90,.25),
    transparent
  );
  box-shadow: 0 10px 26px rgba(0,0,0,.45);
}
.section__sub{margin-top:28px}
.subTitle{
  margin:0 0 14px;
  font-family:var(--cinzel);
  letter-spacing:.10em;
}
.subTitle span{
  font-family:var(--serif);
  font-size:13px;
  color:rgba(233,233,233,.65);
  margin-left:8px;
  letter-spacing:.12em;
}

.prose{
  background: rgba(0,0,0,.45);
  border:1px solid rgba(214,177,90,.22);
  border-radius:14px;
  padding:22px 18px;
  box-shadow: var(--shadow);
}
.prose p{margin:0 0 12px; line-height:2.0; color:rgba(233,233,233,.85)}
.prose .sign{margin-top:14px; color:rgba(233,233,233,.72); text-align:right}

.grid{display:grid; gap:14px}
.grid--2{grid-template-columns:1fr 1fr}
.card{
  background: rgba(0,0,0,.45);
  border:1px solid rgba(214,177,90,.22);
  border-radius:14px;
  padding:18px 16px;
  box-shadow: var(--shadow);
}
.card__title{
  margin:0 0 8px;
  font-family:var(--cinzel);
  letter-spacing:.10em;
  color:var(--gold2);
}
.card__text{margin:0; line-height:1.95; color:rgba(233,233,233,.82)}

/* gallery placeholders */
.gallery{
  margin-top:16px;
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap:12px;
}
.gallery--grid{grid-template-columns: repeat(3, 1fr)}
.ph{
  border:1px dashed rgba(214,177,90,.35);
  border-radius:14px;
  background: rgba(255,255,255,.03);
  min-height:170px;
  display:grid;
  place-items:center;
  text-align:center;
  padding:12px;
  color:rgba(233,233,233,.55);
}
.ph small{display:block; margin-top:6px; color:rgba(233,233,233,.45)}
.ph--hero{min-height:340px}
.ph--tile{min-height:220px}
.ph--map{min-height:240px}

/* =========================================================
   Tiles / Cast
========================================================= */
.tiles{display:grid; grid-template-columns: repeat(4, 1fr); gap:14px}
.tiles--small{grid-template-columns: repeat(4, 1fr)}

.tile{
  position: relative;
  border: 1px solid var(--lux-line);
  border-radius:14px;
  overflow:hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.42));
  box-shadow: var(--lux-glow2);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.tile::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(120deg, rgba(255,255,255,.08), transparent 40%),
    radial-gradient(320px 200px at 20% 0%, rgba(214,177,90,.12), transparent 58%);
  opacity:.65;
}
.tile:hover{
  transform: translateY(-2px);
  border-color: rgba(214,177,90,.55);
  box-shadow: var(--lux-glow);
}

.tile__media{position:relative}
.tile__img{
  width:100%;
  height:340px;
  object-fit:cover;
  object-position:top;
  display:block;
  border-radius:14px 14px 0 0;
  filter: contrast(1.02) saturate(1.06);
  position:relative;
  z-index:1;
}

.tile__meta{padding:12px 12px 14px}
.tile__name{
  margin:0 0 6px;
  font-family:var(--cinzel);
  letter-spacing:.08em;
  color:var(--gold2);
  font-size:14px;
}
.tile__sub{margin:0 0 10px; color:rgba(233,233,233,.65); font-size:12px}
.tile__link{
  display:inline-block;
  font-size:12px;
  letter-spacing:.10em;
  color:rgba(214,177,90,.9);
  border-bottom:1px solid rgba(214,177,90,.35);
  padding-bottom:2px;
}
.tile--small .ph--tile{min-height:180px}

/* NEW badge（一覧カード） */
.tile__media .tag--new,
.tile__media .badgeNew{
  position:absolute;
  top:10px;
  left:10px;
  z-index:5;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:11px;
  letter-spacing:.08em;
  font-family:var(--cinzel);
  color:var(--gold2);
  border:1px solid rgba(214,177,90,.72);
  background: rgba(0,0,0,.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 14px 30px rgba(0,0,0,.42);
}

/* detail image */
.detail__img{
  width:100%;
  height:520px;
  object-fit:cover;
  object-position:top;
  display:block;
  border-radius:14px;
}
.detail__comment{margin-top:12px}
.detail__actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

/* HOME: schedule inside cast card */
.tile__schedule{
  margin:10px 0 10px;
  padding:10px 10px;
  border:1px solid rgba(214,177,90,.22);
  border-radius:12px;
  background: rgba(0,0,0,.25);
}
.tile__scheduleTime{
  font-family: var(--cinzel);
  letter-spacing:.06em;
  color: rgba(214,177,90,.95);
  font-size:13px;
}
.tile__scheduleNote{
  margin-top:6px;
  color: rgba(233,233,233,.78);
  font-size:12px;
  line-height:1.6;
}

/* ===== RANK（最終）：下バナー ===== */
.badgeRank--overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:3;

  width:auto;
  height:auto;
  border-radius: 0 0 14px 14px;

  padding:10px 10px;
  font-family: var(--cinzel);
  font-size:12px;
  letter-spacing:.22em;

  display:flex;
  align-items:center;
  justify-content:center;

  border:1px solid rgba(255,255,255,.10);
  border-top-color: rgba(214,177,90,.25);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 -10px 26px rgba(0,0,0,.35);
  overflow:hidden;

  white-space: nowrap;
}
.badgeRank--overlay::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(120deg, rgba(255,255,255,.10), transparent 55%),
    radial-gradient(240px 140px at 50% 0%, rgba(214,177,90,.18), transparent 62%);
  opacity:.9;
}

/* 素材感 */
.badgeRank--overlay.gold{
  background: linear-gradient(180deg, rgba(201,161,74,.30), rgba(0,0,0,.35));
  color: var(--gold2);
  border-top-color: rgba(214,177,90,.55);
}
.badgeRank--overlay.silver{
  background: linear-gradient(180deg, rgba(191,195,199,.22), rgba(0,0,0,.40));
  color: rgba(255,255,255,.92);
  border-top-color: rgba(255,255,255,.38);
}
.badgeRank--overlay.black{
  background: linear-gradient(180deg, rgba(20,20,20,.62), rgba(0,0,0,.48));
  color: rgba(255,255,255,.92);
  border-top-color: rgba(255,255,255,.16);
}
.badgeRank--overlay.platinum{
  background: linear-gradient(180deg, rgba(229,231,235,.24), rgba(0,0,0,.40));
  color: rgba(255,255,255,.92);
  border-top-color: rgba(255,255,255,.46);
}
.badgeRank--overlay.ask{
  background: linear-gradient(180deg, rgba(35,35,35,.60), rgba(0,0,0,.44));
  color: var(--gold2);
  border-top: 1px dashed rgba(214,177,90,.55);
}

/* small tile */
.tile--small .badgeRank--overlay{
  padding:8px 8px;
  font-size:11px;
  border-radius: 0 0 14px 14px;
}

/* =========================================================
   TODAY'S SCHEDULE
========================================================= */
.today .card{padding:18px 16px}
.today__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.08);
  margin-bottom:12px;
}
.today__label{
  font-family: var(--cinzel);
  letter-spacing:.10em;
  color: rgba(214,177,90,.92);
  font-size:12px;
}
.today__list{display:flex; flex-direction:column; gap:10px}
.today__row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding:12px 12px;
  border:1px solid rgba(214,177,90,.18);
  background: rgba(0,0,0,.25);
  border-radius:12px;
}
.today__who{min-width:0}
.today__name{
  font-family: var(--cinzel);
  letter-spacing:.08em;
  color: var(--gold2);
  font-size:14px;
  margin-bottom:4px;
}
.today__spec{
  color: rgba(233,233,233,.70);
  font-size:12px;
  line-height:1.6;
}
.today__note{
  margin-top:6px;
  color: rgba(233,233,233,.82);
  font-size:12px;
  line-height:1.6;
}
.today__time{
  flex:0 0 auto;
  font-family: var(--cinzel);
  letter-spacing:.08em;
  color: rgba(214,177,90,.95);
  font-size:13px;
  white-space:nowrap;
  padding-left:10px;
}

/* =========================================================
   Tables
========================================================= */
.tableWrap{
  border:1px solid rgba(214,177,90,.22);
  border-radius:14px;
  overflow:hidden;
  background: rgba(0,0,0,.45);
  box-shadow: var(--shadow);
}
.table{width:100%; border-collapse:collapse; font-size:14px}
.table th, .table td{
  padding:14px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.table th{
  text-align:left;
  font-family:var(--cinzel);
  letter-spacing:.10em;
  color:rgba(214,177,90,.92);
  background: rgba(214,177,90,.08);
}
.table tbody tr:hover{background: rgba(255,255,255,.03)}

/* =========================================================
   Pricing
========================================================= */
.pricing{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
.pricing__item{
  background: rgba(0,0,0,.45);
  border:1px solid rgba(214,177,90,.22);
  border-radius:14px;
  padding:18px 16px;
  box-shadow: var(--shadow);
}
.pricing__item h3{
  margin:0 0 10px;
  font-family:var(--cinzel);
  letter-spacing:.10em;
  color:var(--gold2);
}
.pricing__item ul{margin:0; padding:0; list-style:none}
.pricing__item li{
  display:flex;
  justify-content:space-between;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  color:rgba(233,233,233,.82);
}
.pricing__item li:last-child{border-bottom:none}
.price{
  font-family:var(--cinzel);
  letter-spacing:.08em;
  color:rgba(214,177,90,.95);
}
.pricing__note{margin:10px 0 0; font-size:12px; color:rgba(233,233,233,.55)}

/* =========================================================
   Online / Mail
========================================================= */
.mail, .online{
  background: rgba(0,0,0,.45);
  border:1px solid rgba(214,177,90,.22);
  border-radius:14px;
  padding:18px 16px;
  box-shadow: var(--shadow);
}
.mail__text{margin:0 0 12px; color:rgba(233,233,233,.82); line-height:1.9}
.mail__form{display:flex; gap:10px; flex-wrap:wrap; align-items:end}
.field{display:flex; flex-direction:column; gap:8px; min-width:min(420px, 100%)}
.field__label{font-size:12px; letter-spacing:.12em; color:rgba(233,233,233,.65)}
.field__input{
  height:44px;
  padding:0 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  color:var(--text);
  outline:none;
}
.field__input:focus{border-color:rgba(214,177,90,.45)}

.online{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
.online__box{
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  padding:16px 14px;
  background: rgba(0,0,0,.30);
}
.online__box h3{
  margin:0 0 8px;
  font-family:var(--cinzel);
  letter-spacing:.10em;
  color:var(--gold2);
}
.online__buttons{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

/* list */
.list{margin:10px 0 0; padding-left:18px; color:rgba(233,233,233,.78); line-height:1.9}

/* =========================================================
   Buttons
========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  color:var(--text);
  cursor:pointer;
  font-family:var(--cinzel);
  letter-spacing:.10em;
  transition:.2s;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(214,177,90,.25)}
.btn--gold{
  border-color: rgba(214,177,90,.45);
  background: linear-gradient(180deg, rgba(214,177,90,.22), rgba(214,177,90,.08));
  color: var(--gold2);
}
.btn--line{
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
}
.btn--enter{
  width:min(320px, 80%);
  height:54px;
  border-radius:999px;
  border-color: rgba(214,177,90,.45);
  background: linear-gradient(180deg, rgba(214,177,90,.22), rgba(214,177,90,.06));
  color: var(--gold2);
  font-size:14px;
  letter-spacing:.20em;
}

/* =========================================================
   News
========================================================= */
.news{
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--lux-line);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.44));
  box-shadow: var(--lux-glow2);
  margin-bottom: 14px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.news::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(120deg, rgba(255,255,255,.08), transparent 45%),
    radial-gradient(320px 200px at 18% 0%, rgba(214,177,90,.12), transparent 58%);
  opacity:.65;
}
.news:hover{
  transform: translateY(-1px);
  border-color: rgba(214,177,90,.45);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}
.news__left{min-width:0}
.news__img{
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit:cover;
  border-radius:12px;
  display:block;
  filter: contrast(1.02) saturate(1.05);
  box-shadow: 0 12px 26px rgba(0,0,0,.45);
}
.news__ph{
  width:100%;
  aspect-ratio: 4 / 3;
  border-radius:12px;
  background: rgba(255,255,255,.03);
  border: 1px dashed rgba(214,177,90,.35);
  display: grid;
  place-items: center;
  font-size: 11px;
  color: rgba(233,233,233,.55);
}
.news__right{display:flex; flex-direction:column; gap:6px; min-width:0}
.news__date{
  font-family: var(--cinzel);
  letter-spacing: .10em;
  color: rgba(214,177,90,.92);
  font-size: 12px;
}
.news__title{
  margin:0;
  font-size:15px;
  letter-spacing:.04em;
  color:#fff;
  text-shadow: 0 10px 24px rgba(0,0,0,.55);
}
.news__body{
  margin:4px 0 0;
  font-size:13px;
  line-height:1.7;
  color: rgba(233,233,233,.75);
}
.news__link{
  margin-top:auto;
  align-self:flex-start;
  font-size:12px;
  letter-spacing:.10em;
  color: rgba(214,177,90,.9);
  border-bottom:1px solid rgba(214,177,90,.35);
  padding-bottom:2px;
  position:relative;
}
.news__link:hover{color: var(--gold2); border-bottom-color: rgba(214,177,90,.65)}
.news__link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(214,177,90,.75), transparent);
  opacity:.7;
}

/* =========================================================
   Footer / ToTop
========================================================= */
.footer{
  padding:30px 0 50px;
  border-top:1px solid rgba(214,177,90,.22);
  background: rgba(0,0,0,.60);
}
.footer__inner{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:18px;
  align-items:center;
}
.footer__logo{max-width:260px; height:auto}
.footer__small{margin:8px 0 0; color:rgba(233,233,233,.55); font-size:12px}
.footer__links{
  display:flex;
  gap:12px;
  justify-content:flex-end;
  flex-wrap:wrap;
  color:rgba(233,233,233,.7);
  font-size:12px;
}
.footer__links a:hover{color:var(--gold2)}
.footer__copy{
  grid-column: 1 / -1;
  color:rgba(233,233,233,.45);
  font-size:12px;
  text-align:center;
  margin-top:6px;
}
.toTop{
  position:fixed;
  right:14px;
  bottom:14px;
  width:44px;
  height:44px;
  border-radius:999px;
  display:grid;
  place-items:center;
  border:1px solid rgba(214,177,90,.35);
  background: rgba(0,0,0,.55);
  color:rgba(214,177,90,.95);
  box-shadow: var(--shadow);
}

/* =========================================================
   Final FIX: scheduleTime を完全非表示（最終）
========================================================= */
#scheduleList .scheduleTime,
#todaySchedule .scheduleTime{
  display:none !important;
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 980px){
  .hero__inner{grid-template-columns:1fr}
  .tiles{grid-template-columns: repeat(2, 1fr)}
  .tiles--small{grid-template-columns: repeat(2, 1fr)}
  .gallery{grid-template-columns: 1fr 1fr}
  .gallery--grid{grid-template-columns: 1fr 1fr}
  .pricing{grid-template-columns:1fr}
  .online{grid-template-columns:1fr}
}
@media (max-width: 860px){
  .navToggle{display:block}
  .nav{
    position:fixed;
    inset:72px 12px auto 12px;
    background: rgba(0,0,0,.88);
    border:1px solid rgba(214,177,90,.22);
    border-radius:14px;
    padding:10px;
    display:none;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 92px);
    overflow:auto;
  }
  .nav.is-open{display:flex; flex-direction:column; align-items:stretch}
  .nav__link{display:flex; justify-content:space-between; align-items:center}
  .nav__link small{margin:0; text-align:right}
}
@media (max-width: 640px){
  .news{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .hero__title-en{font-size:40px}
  .section{padding:46px 0}
  .footer__inner{grid-template-columns:1fr}
  .footer__links{justify-content:flex-start}

  .today__row{flex-direction:column; align-items:flex-start}
  .today__time{
    padding-left:0;
    margin-top:6px;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:8px;
    width:100%;
  }
}