/* ============================================
   本日の出勤 タイトル
============================================ */
.todays-heading {
  text-align: center;
  padding: 36px 20px 20px;
  max-width: 1030px;
  margin: 0 auto;
}
.todays-heading__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #c0004a;
  margin-bottom: 6px;
}
.todays-heading__title {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #3a1a2a;
  letter-spacing: 0.1em;
}
.todays-heading__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #ee8a9b, #c0004a);
  border-radius: 2px;
  margin: 10px auto 0;
}
@media (max-width: 767px) {
  .todays-heading { padding: 28px 16px 16px; }
  .todays-heading__title { font-size: 1.3rem; }
}

/* ============================================
   メインビジュアル
============================================ */
.main-visual { width: 100%; margin-bottom: 16px; }
.main-visual__inner { max-width: 1030px; margin: 0 auto; }
.main-visual__inner img { display: block; width: 100%; height: auto; }

#telop {
  width: 100%;
  max-width: 1030px;
  margin: 16px auto;
}

/* ============================================
   キャストグリッド
============================================ */
.cast_section { padding: 4vw 2vw; }
.cast_grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 5vw 1vw !important;
  list-style: none;
  padding: 0;
  margin: 0;
}
.cast_grid li {
  background: linear-gradient(to bottom, #f399a8 0%, #ee8a9b 100%);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  color: #fff;
  padding-bottom: 2vw;
}
.cast-thumb-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
}
.cast-thumb-wrap > a {
  display: block;
  width: 100%;
  height: 100%;
}
._new {
  position: absolute;
  bottom: 6px;
  right: 6px;
  z-index: 10;
  pointer-events: none;
}
._new img {
  width: 44px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}
.cast_grid li img._thumnail {
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 12px 12px 0 0;
  margin-bottom: 3vw;
}
.cast_grid li ._shift {
  background: #fff;
  color: #ee8a9b;
  font-size: 3.5vw;
  font-weight: bold;
  width: 90%;
  margin: -6.5vw auto 1.4vw;
  position: relative;
  z-index: 10;
  border-radius: 10px;
  padding: 0.5vw 0;
  border: 1px solid #ee8a9b;
}
/* 本日出勤 */
.cast_grid li ._shift.attend {
  background: #fff;
  color: #c0004a;
  border-color: #c0004a;
  border-width: 2px;
  font-weight: bold;
}
/* 次回予定・次回未定 */
.cast_grid li ._shift.no_attend {
  background: #fff;
  color: #aaa;
  border-color: #ddd;
}
/* SP: _info / _name */
.cast_grid li ._info {
  width: 100%;
  padding: 0 2vw;
}
.cast_grid li ._name {
  text-align: center;
  margin-bottom: 1vw;
}
.cast_grid li ._name_text { font-size: 4.5vw; font-weight: bold; color: #fff; }
.cast_grid li ._age { font-size: 3.1vw; color: #fff; }
/* pickup バッジ */
.pickup {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 10;
  pointer-events: none;
}
.cast_grid li ._size {
  font-size: 3.2vw;
  border-top: 1px dotted rgba(255,255,255,0.5);
  width: 85%;
  margin: 2vw auto;
  padding-top: 1vw;
}
.cast_grid li ._icon { display: flex; justify-content: center; gap: 1vw; }
.cast_grid li ._icon p {
  font-size: 2.6vw;
  padding: 1vw 0;
  width: 42%;
  border-radius: 50px;
  border: 1px solid #fff;
  margin: 0;
}

/* PC (768px以上) */
@media screen and (min-width: 768px) {
  .cast_grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px !important;
    max-width: 1030px;
    margin: 0 auto;
  }
  .cast_grid li {
    background-color: #f5a0b0;
    border-radius: 12px;
    overflow: hidden;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cast-thumb-wrap {
    aspect-ratio: 2 / 3;
    width: 100%;
  }
  .cast-thumb-wrap > a {
    display: block;
    width: 100%;
    height: 100%;
  }
  ._new img { width: 50px; }
  .cast_grid li img._thumnail {
    width: 100%;
    height: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    display: block;
    margin-bottom: 0;
    border-radius: 0;
  }
  .cast_grid li ._info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cast_grid li ._shift {
    font-size: 12px;
    width: 85%;
    margin: -14px auto 10px;
    padding: 5px 0;
    background-color: #fff;
    color: #e05080;
    border: 2px solid #e05080;
    border-radius: 20px;
    text-align: center;
    font-weight: bold;
    position: relative;
    z-index: 10;
  }
  .cast_grid li ._name { text-align: center; margin-bottom: 4px; }
  .cast_grid li ._name_text {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    display: block;
    margin-bottom: 2px;
  }
  .cast_grid li ._age {
    font-size: 12px;
    color: #fff;
    display: block;
    text-align: center;
    margin-bottom: 6px;
  }
  .cast_grid li ._size {
    font-size: 12px;
    color: #fff;
    width: 85%;
    margin: 6px auto 10px;
    padding-top: 8px;
    border-top: 1px dashed rgba(255,255,255,0.6);
    text-align: center;
  }
  .cast_grid li ._icon { display: flex; gap: 6px; justify-content: center; width: 90%; }
  .cast_grid li ._icon p {
    font-size: 11px;
    padding: 5px 0;
    width: 46%;
    text-align: center;
    border-radius: 20px;
    border: 1px solid #fff;
    color: #fff;
    margin: 0;
  }
  .cast_grid li ._icon p.on  { background-color: rgba(255,255,255,0.3); }
  .cast_grid li ._icon p.off { background-color: transparent; opacity: 0.6; }
  .header_main, .info_block_inner { max-width: 1000px; margin: 0 auto; }
}

/* ============================================
   FAQ・アクセス
============================================ */
.info_block { padding: 40px 20px; background: #fdf2f4; }
.info_block h2 { text-align: center; color: #ee8a9b; font-size: 20px; }
.faq_list dt { font-weight: bold; color: #ee8a9b; margin-top: 20px; }
.faq_list dd { margin-left: 0; padding-bottom: 10px; border-bottom: 1px solid #fff; }
.access_text {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  font-size: 14px;
}

/* ============================================
   ランキングセクション
============================================ */
.ranking-section {
  max-width: 1030px;
  margin: 0 auto;
  padding: 40px 16px;
}
.ranking-update { text-align: center; margin-bottom: 32px; }
.ranking-update span {
  display: inline-block;
  background: #fff;
  border: 1.5px solid #ddd;
  border-radius: 30px;
  padding: 7px 32px;
  font-size: 14px;
  color: #555;
  letter-spacing: 0.04em;
}
.ranking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ranking-block--full { grid-column: 1 / -1; }

.ranking-block {
  border-radius: 18px;
  overflow: hidden;
  padding: 20px 0 24px;
  position: relative;
}
.ranking-block--honshimei { background: linear-gradient(160deg, #fffde8 0%, #fef5c0 100%); border: 1.5px solid #f0e080; }
.ranking-block--shinjin   { background: linear-gradient(160deg, #eaf7ee 0%, #c8ecd4 100%); border: 1.5px solid #8ecfa0; }
.ranking-block--anketo    { background: linear-gradient(160deg, #edf6ff 0%, #d0e8ff 100%); border: 1.5px solid #a0c8f0; }

/* ブロックヘッダー */
.block-header { text-align: center; padding: 0 20px; margin-bottom: 16px; }
.crown-icon { font-size: 24px; display: block; margin-bottom: 2px; line-height: 1; }
.block-title {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #c8962a;
}
.ranking-block--shinjin .block-title { color: #2e8050; }
.ranking-block--anketo  .block-title { color: #3a85d4; }
.block-subtitle { font-size: 12px; color: #888; margin-top: 4px; letter-spacing: 0.04em; }
.block-desc {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #c0005a;
  margin-top: 6px;
  letter-spacing: 0.03em;
}

/* ランキングカルーセル */
.rk-wrap { position: relative; }
.rk-btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 20;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.90);
  box-shadow: 0 2px 8px rgba(0,0,0,0.20);
  transition: opacity 0.2s, box-shadow 0.15s;
  padding: 0;
}
.rk-btn:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.28); }
.rk-btn:disabled { opacity: 0; pointer-events: none; }
.rk-btn svg { width: 14px; height: 14px; stroke: #444; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.rk-btn--prev { left: 6px; }
.rk-btn--next { right: 6px; }
.rk-outer { overflow: hidden; padding: 4px 0 6px; border-radius: 14px; }
.rk-track { display: flex; gap: 10px; will-change: transform; }

/* ランキングカード */
.rk-card {
  flex: 0 0 var(--cw, 32%);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.09);
  position: relative;
  transition: box-shadow 0.18s;
}
.rk-card:hover { box-shadow: 0 8px 22px rgba(0,0,0,0.14); }
.rk-rank {
  position: absolute; top: 8px; left: 8px;
  color: #fff; font-size: 13px; font-weight: 700;
  width: 26px; height: 26px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
}
.rk-gold   { background: linear-gradient(135deg, #f5c842, #e8a000); box-shadow: 0 2px 6px rgba(220,150,0,.45); }
.rk-silver { background: linear-gradient(135deg, #d4d4d4, #999); }
.rk-bronze { background: linear-gradient(135deg, #e8a07a, #c06030); }
.rk-normal { background: rgba(0,0,0,.45); }
.rk-badge {
  position: absolute; top: 8px; right: 8px;
  background: linear-gradient(135deg, #f5c842, #e8a000);
  color: #fff; font-size: 9px; font-weight: 700;
  padding: 3px 6px; border-radius: 8px;
  line-height: 1.35; text-align: center; z-index: 3;
}
.rk-img {
  width: 100%; aspect-ratio: 3/4;
  overflow: hidden; background: #e8e8e8;
  display: block; border-radius: 10px 10px 0 0;
}
.rk-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.rk-card:hover .rk-img img { transform: scale(1.04); }
.rk-info { padding: 0; }
.rk-schedule {
  background: linear-gradient(90deg, #ffd6eb, #ffbee0);
  color: #b8005a;
  font-size: 10px; font-weight: 700;
  text-align: center; padding: 4px 0; letter-spacing: 0.04em;
}
.rk-body { padding: 7px 10px 9px; text-align: center; }
.rk-name { font-size: 16px; font-weight: 700; color: #222; justify-content: center; }
.rk-stats { font-size: 13px; color: #bbb; margin: 2px 0 7px; }
.rk-tags  { display: flex; gap: 5px; flex-wrap: wrap; }
.rk-tag {
  border: 1px solid #f0a0c0; color: #d06090;
  font-size: 10px; border-radius: 20px;
  padding: 2px 8px; font-weight: 500; white-space: nowrap;
  transition: background .15s;
}
.rk-tag:hover { background: #f0a0c0; color: #fff; }

/* SP */
@media (max-width: 767px) {
  .cast_grid li ._shift {
    margin: -14px auto 10px;
    font-size: 12px;
    padding: 5px 0;
    width: 85%;
    border-radius: 20px;
    text-align: center;
  }
  .ranking-section { padding: 24px 8%; }
  .ranking-grid { grid-template-columns: 1fr; gap: 16px; }
  .ranking-block { padding: 20px 0 28px; }
  .rk-outer { border-radius: 12px; }
  .block-title { font-size: 32px; }
  .block-desc { display: block; font-size: 14px; padding: 6px 0; margin-top: 8px; }
  .rk-name     { font-size: 15px; }
  .rk-stats    { font-size: 12px; }
  .rk-tags     { gap: 6px; }
  .rk-tag      { font-size: 11px; padding: 3px 10px; }
  .rk-schedule { font-size: 11px; padding: 5px 0; }
}

/* ============================================
   サイドバーカルーセル
============================================ */
.sc-carousel {
  background: #fff;
  border-radius: 12px;
  border: 2px solid #e8e0f0;
  overflow: hidden;
  padding-bottom: 14px;
}
.sc-header img { width: 100%; height: auto; display: block; }
.sc-title {
  text-align: center;
  padding: 16px 12px 8px;
}
.sc-title__en {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #3a9e5f;
  margin-bottom: 4px;
}
.sc-title__ja {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 10px;
}
.sc-title__ja::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, #3a9e5f, #6fc98a);
  border-radius: 2px;
  margin: 8px auto 0;
}
.sc-subtext { font-size: 12px; color: #555; text-align: center; padding: 6px 12px 10px; line-height: 1.6; }
.sc-wrap { position: relative; }
.sc-btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 10;
  width: 28px; height: 28px;
  border-radius: 50%; border: none; cursor: pointer;
  background: #3a9e5f;
  box-shadow: 0 2px 8px rgba(0,0,0,0.20);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, box-shadow 0.15s, opacity 0.2s;
  padding: 0;
}
.sc-btn:hover { background: #2e8050; box-shadow: 0 4px 14px rgba(0,0,0,0.28); }
.sc-btn:disabled { opacity: 0; pointer-events: none; }
.sc-btn svg { width: 13px; height: 13px; stroke: #fff; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.sc-btn--prev { left: 6px; }
.sc-btn--next { right: 6px; }
.sc-outer { overflow: hidden; padding: 4px 0 6px; border-radius: 0 0 10px 10px; }
.sc-track { display: flex; gap: 10px; will-change: transform; }
.sc-card {
  flex: 0 0 60%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  position: relative;
}
.sc-card-img { width: 100%; aspect-ratio: 3 / 4; overflow: hidden; background: #eee; }
.sc-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.sc-card:hover .sc-card-img img { transform: scale(1.03); }
.sc-badge {
  display: block;
  width: fit-content;
  margin: 8px auto 4px;
  background: #5cb85c;
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 12px; border-radius: 20px;
}
.sc-card-body { padding: 4px 10px 12px; text-align: center; }
.sc-name { font-size: 20px; font-weight: 700; color: #222; margin-bottom: 5px; }
.sc-name span { font-size: 12px; color: #999; font-weight: 400; margin-left: 4px; }
.sc-time {
  display: inline-block;
  border: 1.5px solid #4a90d9; color: #4a90d9;
  font-size: 16px; font-weight: 600;
  border-radius: 20px; padding: 4px 14px; margin-bottom: 4px;
}
.sc-size { font-size: 15px; color: #aaa; }
.sc-dots { display: flex; justify-content: center; gap: 6px; margin-top: 10px; }
.sc-dot {
  width: 7px; height: 7px;
  border-radius: 50%; background: #ddd;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer; border: none; padding: 0;
}
.sc-dot.is-active { background: #e05080; transform: scale(1.3); }

/* ============================================
   バナースライダー
============================================ */
.bs-wrapper { max-width: 1030px; margin: 0 auto; overflow: hidden; }
.bs-slider { position: relative; width: 100%; overflow: hidden; background: #000; line-height: 0; }
.bs-track { display: flex; will-change: transform; }
.bs-slide { flex: 0 0 100%; min-width: 0; position: relative; line-height: 0; }
.bs-slide a { display: block; line-height: 0; }
.bs-slide img { width: 100%; height: auto; display: block; }
.bs-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 36px; height: 36px;
  border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.80);
  box-shadow: 0 2px 8px rgba(0,0,0,0.30);
  transition: background 0.15s, box-shadow 0.15s;
  padding: 0;
}
.bs-btn:hover { background: rgba(255,255,255,0.96); box-shadow: 0 4px 14px rgba(0,0,0,0.35); }
.bs-btn svg { width: 16px; height: 16px; stroke: #333; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.bs-btn--prev { left: 10px; }
.bs-btn--next { right: 10px; }
.bs-dots { display: flex; justify-content: center; gap: 7px; padding: 10px 0 8px; background: #000; line-height: 1; }
.bs-dot {
  width: 8px; height: 8px;
  border-radius: 50%; background: #666;
  border: none; cursor: pointer; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.bs-dot.is-active { background: #fff; transform: scale(1.25); }
.bs-thumbs {
  display: flex; gap: 4px;
  overflow-x: auto; background: #111; padding: 4px;
  scrollbar-width: none;
}
.bs-thumbs::-webkit-scrollbar { display: none; }
.bs-thumb {
  flex: 0 0 calc(20% - 4px);
  min-width: 80px;
  cursor: pointer; opacity: 0.55;
  transition: opacity 0.2s;
  border-radius: 3px; overflow: hidden;
  border: 2px solid transparent; line-height: 0;
}
.bs-thumb.is-active { opacity: 1; border-color: #fff; }
.bs-thumb img { width: 100%; height: auto; display: block; }
