/* ============================================
   本日の出勤 タイトル
============================================ */
.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: 5px;
}
.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;
  font-family: var(--site-font);
}
.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%;
}
.cast-hover-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.cast-thumb-wrap.is-video-active .cast-hover-video {
  opacity: 1;
}
._new {
  position: absolute;
  bottom: 6px;
  right: 6px;
  z-index: 10;
  pointer-events: none;
}
._new img {
  width: 64px;
  height: auto;
  display: block;
}
.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: 4.2vw;
  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;
}
.cast_grid li ._name {
  text-align: center;
  margin-bottom: 1vw;
}
.cast_grid li ._name_text {
  font-size: 4.5vw;
  font-weight: bold;
  color: #fff;
}
/* カスタムアイコン（写真上に絶対配置） */
.custom-icon-overlay {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}
.custom-icon-pos--top-left    { top: 4px; left: 4px; }
.custom-icon-pos--top-right   { top: 4px; right: 4px; }
.custom-icon-pos--bottom-left { bottom: 4px; left: 4px; }
.custom-icon-pos--bottom-right{ bottom: 4px; right: 4px; }
/* サイズ: 小 (デフォルト) */
.custom-icon-overlay-img { display: block; width: 32px; height: 32px; object-fit: contain; }
.custom-icon-overlay-label { display: inline-flex; align-items: center; padding: 2px 8px; border-radius: 3px; font-size: 10px; font-weight: 700; color: #fff; white-space: nowrap; }
/* サイズ: 中 */
.custom-icon-sz--md .custom-icon-overlay-img { width: 52px; height: 52px; }
.custom-icon-sz--md .custom-icon-overlay-label { padding: 4px 12px; font-size: 13px; border-radius: 4px; }
/* サイズ: 大 */
.custom-icon-sz--lg .custom-icon-overlay-img { width: 72px; height: 72px; }
.custom-icon-sz--lg .custom-icon-overlay-label { padding: 6px 16px; font-size: 16px; border-radius: 5px; }

/* アニメーション: 点滅 */
.ci-anim--pulse { animation: ciPulse 2s ease-in-out infinite; }
@keyframes ciPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
/* アニメーション: バウンス */
.ci-anim--bounce { animation: ciBounce 2s ease infinite; }
@keyframes ciBounce {
  0%, 100% { transform: translateY(0); }
  25%      { transform: translateY(-6px); }
  50%      { transform: translateY(0); }
  75%      { transform: translateY(-3px); }
}
/* アニメーション: キラキラ */
.ci-anim--shine { position: relative; overflow: visible; }
.ci-anim--shine::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0) 40%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 60%);
  background-size: 200% 200%;
  animation: ciShine 2.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ciShine {
  0%   { background-position: 200% 200%; }
  100% { background-position: -50% -50%; }
}

.cast_grid li ._age {
  font-size: 3.1vw;
  color: #fff;
}
/* pickup バッジ */
.pickup {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 10;
  pointer-events: none;
}
.pickup img {
  width: 54px;
  height: auto;
  display: block;
}
.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;
}

/* ============================================
   ランキング黒ベース版 (content-ranking-bk)
============================================ */
.rkbk-block {
  background: linear-gradient(160deg, #1a1a2a 0%, #0d0d1a 100%);
  border-radius: 20px;
  padding: 28px 0 24px;
  margin-bottom: 20px;
}
.rkbk-header {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 20px;
}
.rkbk-crown {
  display: block;
  font-size: 28px;
  margin-bottom: 4px;
}
.rkbk-title {
  font-size: 30px;
  font-weight: 700;
  color: #d4a843;
  letter-spacing: 0.12em;
  line-height: 1;
  font-family: var(--site-font);
}
.rkbk-subtitle {
  font-size: 13px;
  color: #aaa;
  margin-top: 6px;
  letter-spacing: 0.05em;
}
.rkbk-wrap {
  position: relative;
}
.rkbk-outer {
  overflow: hidden;
  padding: 8px 0 10px;
}
.rkbk-track {
  display: flex;
  gap: 12px;
  will-change: transform;
}
.rkbk-card {
  flex: 0 0 var(--cw, 60%);
  min-width: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transform: scale(0.88);
  opacity: 0.45;
  transition:
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.4s ease;
}
.rkbk-card.is-active {
  transform: scale(1);
  opacity: 1;
}
.rkbk-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #222;
}
.rkbk-img a {
  display: block;
  width: 100%;
  height: 100%;
}
.rkbk-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.3s;
}
.rkbk-card.is-active .rkbk-img img {
  transform: scale(1.02);
}
.rkbk-rank {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  z-index: 3;
}
.rkbk-info {
  background: #fff;
}
.rkbk-schedule {
  background: linear-gradient(90deg, #ffd6eb, #ffbee0);
  color: #b8005a;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding: 5px 0;
  letter-spacing: 0.04em;
}
.rkbk-body {
  padding: 8px 10px 10px;
  text-align: center;
}
.rkbk-name {
  font-size: 17px;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}
.rkbk-stats {
  font-size: 12px;
  color: #aaa;
}
.rkbk-btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 20;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s;
}
.rkbk-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}
.rkbk-btn:disabled {
  opacity: 0.15;
  pointer-events: none;
}
.rkbk-btn svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rkbk-btn--prev {
  left: 6px;
}
.rkbk-btn--next {
  right: 6px;
}
.rkbk-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}
.rkbk-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s,
    transform 0.2s;
}
.rkbk-dot.is-active {
  background: #d4a843;
  transform: scale(1.5);
}

/* ランキング 黒ベース */
.ranking-block--dark {
  background:
    linear-gradient(
      135deg,
      transparent 30%,
      rgba(255, 220, 100, 0.07) 50%,
      transparent 70%
    ),
    linear-gradient(160deg, #1a1a18 0%, #0a0a0a 50%, #111110 100%) !important;
  border: none !important;
}
.ranking-block--dark .block-title {
  color: #d4a843 !important;
}
.ranking-block--dark .block-subtitle {
  color: #aaa !important;
}
.ranking-block--dark .rk-btn {
  background: #d4a843 !important;
  box-shadow: 0 2px 8px rgba(212, 168, 67, 0.5) !important;
}
.ranking-block--dark .rk-btn svg {
  stroke: #fff !important;
}
.ranking-block--dark .rk-btn:hover {
  background: #c09030 !important;
}

/* ============================================
   ランキングセクション
============================================ */
.ranking-section {
  max-width: 1030px;
  margin: 0 auto;
  padding: 40px 16px;
  font-family: var(--site-font);
}
.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-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.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  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, 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, 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 0.15s;
}
.rk-tag:hover {
  background: #f0a0c0;
  color: #fff;
}

/* SP */
@media (max-width: 767px) {
  .cast_grid li ._shift {
    margin: -14px auto 10px;
    font-size: 14px;
    padding: 5px 0;
    width: 85%;
    border-radius: 20px;
    text-align: center;
  }
  .ranking-section {
    padding: 24px 5px;
  }
  .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.2);
  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.1);
  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;
  transition: transform var(--bs-speed, 450ms) ease;
}
.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.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  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-anim--fade .bs-track,
.bs-anim--zoom .bs-track {
  display: block;
  transform: none !important;
  transition: none;
}
.bs-anim--fade .bs-slide,
.bs-anim--zoom .bs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity var(--bs-speed, 700ms) ease;
}
.bs-anim--fade .bs-slide:first-child,
.bs-anim--zoom .bs-slide:first-child {
  position: relative;
}
.bs-anim--fade .bs-slide.is-active,
.bs-anim--zoom .bs-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.bs-anim--zoom .bs-slide.is-active img {
  animation: bsZoom 7s ease-out forwards;
}
@keyframes bsZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* 縦スライド（全幅のみ・高さはJSで同期） */
.bs-anim--vertical .bs-track {
  flex-direction: column;
  height: 100%;
}
.bs-anim--vertical .bs-slide {
  flex: 0 0 100%;
}
.bs-anim--vertical .bs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* カルーセル（中央寄せ・左右見切れ） */
.bs-slider--carousel .bs-slide {
  flex: 0 0 76%;
  margin: 0 6px;
  opacity: 0.5;
  transform: scale(0.95);
  transition: opacity var(--bs-speed, 450ms) ease, transform var(--bs-speed, 450ms) ease;
}
.bs-slider--carousel .bs-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.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;
}
