/* /public_html/luxe-sano/assets/css/schedule.css */

:root{
  --gold:#C9A24D;                 /* シャンパンゴールド */
  --bg:#000;
  --panel:#0b0b0b;                /* カード背景（黒寄り） */
  --line:rgba(201,162,77,.22);    /* ゴールド線 */
  --muted:rgba(255,255,255,.65);
}

/* まず紫リンクを殺す（base.cssの影響が薄くても効くよう強め） */
.schedule a,
.schedule a:visited{
  color: var(--gold);
  text-decoration: none;
}
.schedule a:hover{
  opacity:.9;
}

/* 全体 */
.schedule{
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 40px;
  color:#fff;
}

/* タイトル＋週ナビ */
.schedule-head{
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:center;
  text-align:center;
  margin-bottom: 14px;
}

.schedule-title{
  font-size:18px;
  letter-spacing:.12em;
  color:#fff;
}

.schedule-range{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  color: var(--muted);
  font-size:14px;
}

.week-nav{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color: var(--gold);
  letter-spacing:.08em;
}

.range-text{
  color: rgba(255,255,255,.85);
  letter-spacing:.04em;
}

/* 曜日タブ（丸） */
.day-tabs{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin: 18px 0 22px;
}

.day-tab{
  width:86px;
  height:86px;
  border-radius:999px;
  display:flex;                 /* ←これが無いと縦並びになる */
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;

  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);

  color: var(--gold);
  letter-spacing:.10em;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.day-tab:hover{
  transform: translateY(-1px);
  border-color: rgba(201,162,77,.35);
  background: rgba(201,162,77,.08);
}

.day-tab.is-active{
  background: rgba(201,162,77,.18);
  border-color: rgba(201,162,77,.55);
  color:#000;
}

.day-tab.is-empty{
  opacity:.35;
}

.day-dow{
  font-size:12px;
  line-height:1;
}

.day-md{
  font-size:14px;
  font-weight:700;
  line-height:1;
}

.day-today{
  font-size:10px;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(201,162,77,.45);
  color: var(--gold);
  background: rgba(0,0,0,.35);
  letter-spacing:.10em;
}

/* 空表示 */
.schedule-empty{
  border:1px dashed rgba(201,162,77,.35);
  background: rgba(255,255,255,.02);
  border-radius:14px;
  padding:16px;
  text-align:center;
  color: rgba(255,255,255,.75);
  letter-spacing:.06em;
}

/* キャストカード */
.cast-grid{
  display:grid;
  gap:18px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 720px){
  .cast-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1040px){
  .cast-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.cast-card{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 14px;

  background: var(--panel);
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}

.cast-card:hover{
  border-color: rgba(201,162,77,.35);
  background: rgba(255,255,255,.03);
}

.cast-photo{
  width:84px;
  height:84px;
  border-radius:16px;
  overflow:hidden;
  background:#111;
  border:1px solid rgba(255,255,255,.10);
  flex: 0 0 84px;
}

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

.cast-meta{
  display:flex;
  flex-direction:column;
  gap:8px;
  min-width:0;
}

.cast-name{
  font-size:16px;
  font-weight:800;
  letter-spacing:.08em;
  color:#fff;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.cast-time{
  font-size:13px;
  color: rgba(255,255,255,.70);
  letter-spacing:.06em;
}
