@charset "utf-8";

.wb-site-header {
  position: relative;
  width: 100%;
  background-image: url(../image/wb-top/mv-bg.jpg);
  background-size: cover;
  background-position: center;
  padding-bottom: 5vw;
}

.wb-top-image {
  position: relative;
  width: 85vw;
  max-width: 1750px;
  margin: 0 auto;

  height: auto;
  max-height: 1000px;
  z-index: 1;
}

.wb-top-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wb-overlay-catchphrase {
  position: absolute;
  inset: 0;
}

.wb-catchphrase-content {
  position: absolute;
  left: 13%;
  bottom: 10%;
  text-shadow: 1px 1px 30px rgba(48, 0, 0, 0.5);

  line-height: 1.4;

  & small {
    letter-spacing: 0.2em;
    font-size: 60%;
  }
}

.wb-main-catchphrase {
  font-family: "Playfair Display", serif;
  font-style: italic;
}

@media (max-width: 767px) {
  .wb-catchphrase-content {
    font-size: clamp(18px, 5vw, 24px);
  }
}

@media (max-width: 500px) {
  .wb-catchphrase-content {
    left: 8%;
    bottom: 8%;
    line-height: 1.4;
  }
}

/* ===========================================
  Sectionタイトル (全般)
=========================================== */

.wb-welcome .wb-title-container span {
  font-style: italic;
}

.wb-new,
.wb-popular {
  background: linear-gradient(to bottom right, #dc001a, #550b15);
}

/* ===========================================
  Welcome Section (ウェルカムボード)
=========================================== */

.wb-welcome-content {
  width: clamp(320px, 90%, 900px);
  aspect-ratio: 4 / 3;
  margin: 0 auto;
  background-image: url(../image/wb-top/welcome-bg.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;

  display: grid;
  place-items: center;
}

.wb-welcome-text {
  font-size: clamp(13px, 1.7vw, 20px);
  line-height: 2;
  padding: 0 1em 0 4.1em;

  /* 以下は改行制御のセット */
  word-break: keep-all;
  overflow-wrap: anywhere;

  .wb-icon-heart svg {
    width: 1.1em;
    aspect-ratio: 1 / 1;
    fill: #dc001a;
    vertical-align: sub;
  }

  .wb-icon-music svg {
    width: 1.1em;
    aspect-ratio: 1 / 1;
    fill: #333 !important;
    vertical-align: sub;
  }
}

@media (max-width: 767px) {
  .wb-welcome-text {
    line-height: 1.8;
  }
}

@media (max-width: 550px) {
  .wb-welcome-content {
    height: fit-content;
    aspect-ratio: unset;
  }

  .wb-welcome-text {
    padding: 5em 1.8em 5em max(3.6em, 14vw);
    line-height: 1.8;
    letter-spacing: -0.05em;
  }

  .wb-sp {
    display: none;
  }
}

@media (max-width: 430px) {
  .wb-welcome .model-inner {
    padding: min(10vw, 60px) 0 30px;
  }
}

/* ===========================================
  Fresh Picks Section (新着コレクション)
=========================================== */

.wb-new-music,
.wb-new-cooking {
  display: block;
  width: fit-content;
  margin: 0 auto;

  & h3 {
    line-height: 1.2;
    margin-bottom: 0.5em;
    font-family: "Kaisei Decol", serif;
    font-weight: 400;
    text-shadow: 3px 0px 10px var(--color-accent);
  }
}

.wb-new-cooking {
  margin-top: 80px;
}

.wb-video-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.wb-video-list,
.wb-popular-list {
  font-family: "Noto Sans JP", sans-serif;
  padding: 0;
}

.wb-video-list li {
  flex: 0 0 calc((100% - 60px) / 4);
}
.wb-video-list li,
.wb-popular-inner {
  background-color: #b0005e;
  border-radius: 3px;
}

.wb-video-list li,
.wb-video-list li > a {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.wb-list-content {
  padding: 0.7em 0.7em 1em;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 20px;

  flex: 1;
  justify-content: space-between;
}

.wb-list-content > span {
  font-family: Arial, Helvetica, "Hiragino Kaku Gothic ProN", sans-serif; /* 欧米フォントを使い「...」にする */

  font-size: var(--fs-16);
  line-height: 1.4; /*文字省略のために指定が必要*/
}

/* ※img幅を指定することで全体幅も整理 */
.wb-video-list li img,
.wb-popular-inner img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.wb-list-date,
.wb-list-count {
  font-size: var(--fs-14);
  line-height: 1.2;
  /* ※ ↓垂直方向の中央揃え */
  display: flex;
  align-items: center;
  padding-left: 0.5em;
}

.wb-list-date span:nth-child(1),
.wb-list-count span:nth-child(1) {
  color: var(--color-base);
  background-color: var(--color-accent);
  padding: 2px 0.6em;
  border-radius: 1.2em;
  margin-right: 0.5em;
}

@media (max-width: 767px) {
  .wb-video-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
  }

  .wb-video-list li:nth-child(n + 4) {
    display: none;
  }

  .wb-list-content span {
    font-size: 12px;
  }
}

@media (max-width: 500px) {
  /* 親の幅固定を解除して画面いっぱいに広がるようにする */
  .wb-new-music,
  .wb-new-cooking {
    width: 100%;
  }

  .wb-video-list {
    grid-template-columns: 1fr; /* 縦1列 */
    gap: 15px;
  }

  /* 非表示にしていた要素を再表示させる場合 */
  .wb-video-list li,
  .wb-video-list li:nth-child(n + 4) {
    display: block; /* 一旦blockに戻す */
  }

  .wb-video-list li a {
    display: flex;
    flex-direction: row;
    align-items: stretch; /* 高さを揃える */
    width: 100%;
    text-decoration: none;
  }

  /* 画像コンテナの修正 */
  .wb-new-music .wb-new-image,
  .wb-new-cooking .wb-new-image {
    flex: 0 0 40%; /* 幅を40%で固定 */
    max-width: 40%;
    position: relative;
    overflow: hidden; /* はみ出し防止 */
  }

  .wb-new-music .wb-new-image img,
  .wb-new-cooking .wb-new-image img {
    /* 絶対配置を使わず、aspect-ratioで高さを出す */
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    /* absolute系の指定は削除 */
    position: static;
    transform: none;
  }

  /* コンテンツ側の修正 */
  .wb-new-music .wb-list-content,
  .wb-new-cooking .wb-list-content {
    flex: 1; /* 残りの60%を占める */
    width: 60%;
    padding: 10px;
    gap: 10px; /* 間隔を少し詰める */
    justify-content: center; /* 上下中央寄せ（お好みで） */
  }

  .wb-new-music .wb-list-content span,
  .wb-new-cooking .wb-list-content span {
    font-size: 12px;
  }

  .wb-new-music .wb-list-date,
  .wb-new-cooking .wb-list-date {
    padding-left: 0;
    font-size: 11px;
  }
}
/* ===========================================
  What's Hot Section (人気コレクション)
=========================================== */

.wb-popular-video .wb-bat-btn {
  margin-top: 90px;
}

.wb-popular-item {
  padding: 0 10px;
  overflow: hidden;
  width: 100%;

  display: flex;
  flex: 1;
  flex-direction: column;
}

.wb-popular-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/*==========================*/
/*===高さを揃えるためのcss===*/
.wb-popular-list.responsive .slick-track {
  display: flex;
  align-items: stretch;
}

/* スライド各枚の要素を高さ100%に */
.wb-popular-list.responsive .slick-slide {
  height: auto; /* デフォルトの固定高さを解除 */
  display: flex; /* 子要素を伸ばすためにFlexにする */
}

/* 内部のaタグを一番下まで伸ばす */
.wb-popular-inner,
.wb-popular-inner > a {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}
/*===高さを揃えるためのcss(完)===*/
/*=============================*/

.responsive .slick-prev {
  width: 30px;
  left: -35px;
}
.responsive .slick-next {
  width: 30px;
  right: -35px;
}

.responsive .slick-prev:before,
.responsive .slick-next:before {
  font-size: 40px;
  color: var(--color-accent);
}

.wb-popular-list .slick-dots {
  bottom: -35px;
}

.wb-popular-list .slick-dots li button:before {
  font-size: 15px;
}

.wb-popular-list.responsive .slick-dots li button:before {
  color: var(--color-accent);
}

@media (max-width: 767px) {
  .wb-popular .model-inner {
    width: 100%;
  }

  /* 矢印の共通設定 */
  .responsive .slick-prev,
  .responsive .slick-next {
    z-index: 1; /* ★画像より手前に持ってくる */
    top: 38%; /* 上下中央へ */
    transform: translateY(-50%); /* 中央配置の補正 */
  }

  /* 左矢印：画像の左端に中央を合わせる */
  .responsive .slick-prev {
    left: 0; /* いったん左端へ */
    /* 10pxの隙間(padding)がある場合、中央を合わせるために微調整 */
    margin-left: -10px;
  }

  /* 右矢印：画像の右端に中央を合わせる */
  .responsive .slick-next {
    right: 0; /* いったん右端へ */
    margin-right: 2px;
  }
}

@media (max-width: 450px) {
  .wb-popular-item {
    padding: 0 2vw;
  }

  .wb-popular-inner {
    border-radius: 10px;
    overflow: hidden;
  }

  .wb-popular-item .wb-list-content {
    padding: 10px 20px;
  }
  .wb-popular-item .wb-list-date,
  .wb-popular-item .wb-list-count {
    padding: 0;
  }
}

/* ===========================================
  Share the Fun Section (アプリ紹介)
=========================================== */

.wb-share-container {
  background: linear-gradient(to bottom right, #b1025f, #e82f92);
  padding: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #ddd;
  width: 100%;
  max-width: 900px;
  border-radius: 3px;
  align-items: flex-start;
  align-self: center;
  margin: 0 auto 30px;

  &:last-child {
    margin-bottom: 0;
  }
}

.wb-share-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  font-size: var(--fs-16);
}

.wb-share-link a {
  display: block;
  width: 100%;
  max-width: 350px; /* ボタンの最大幅 */
  aspect-ratio: 470 / 140; /* 元画像の比率を維持 */
}

.wb-share-link a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wb-link-iriam .wb-share-content p {
  margin-bottom: 30px;
}

.wb-link-iriam .wb-share-content a {
  background-color: #333;
  margin-top: 5px;
  letter-spacing: 0.3em;
  padding: 0.5em 2em;
  box-shadow: 5px 3px 10px rgb(111, 0, 59, 0.5);
}

.wb-link-setlink .wb-share-link a img {
  background-color: #a3d7fe;
}

.wb-share-content > p {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

@media (max-width: 767px) {
  .wb-share-container {
    grid-template-columns: 1fr;
    max-width: max(65vw, 280px);
  }

  .wb-share-content {
    font-size: 12px;
  }
}

/* ===========================================
  My Favorites Section (私のとっておき)
=========================================== */

.wb-favorite {
  position: relative;
  overflow: hidden;
}

.wb-favorite::before {
  content: "VAMPI\A APPLE"; /* ← 改行は \A */
  white-space: pre; /* ← 改行を有効にする */

  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);

  font-size: clamp(110px, 30vw, 450px);
  font-weight: bold;
  color: #555;
  opacity: 0.2;
  line-height: 1.2;
  text-shadow: 3px 3px 20px rgb(255, 255, 255, 0.8);

  pointer-events: none; /* 操作の邪魔をしない */
}

.wb-favor-container {
  width: 70%; /*全体のサイズはココで調整*/
  max-width: 1000px;
  margin: 0 auto 40px;
  position: relative;
}

.wb-favor-container ul {
  padding-left: 0;
  margin: 0;
}

.slider-for img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  vertical-align: bottom;
}

/* メインスライダー */
.slider-for .slick-slide {
  outline: none;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;

  &::after {
    content: "タップして動画へ";
    position: absolute; /*メインは内部でrelativeされている*/
    bottom: 15px;
    right: 12px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    background-color: rgba(176, 0, 94, 0.7);
    color: #fff;
    padding: 0.5em 1em;
    font-size: 14px;
    border-radius: 7px;
    pointer-events: none; /* タップ干渉しないように */
    z-index: 1;
  }
}

/* サムネイルスライダー（中央配置の修正） */
.slider-nav {
  margin: 0 auto;
  width: 100%; /* max-widthを外すか、JSのslidesToShowと整合性を取る */
  max-width: 100%;
}

.slider-nav .slick-slide {
  padding: 0 0.5vw;
  cursor: pointer;
  outline: none;
  border-radius: 8px;
  overflow: hidden;

  transform: scale(0.9);
  margin: 0 -10px;
  filter: brightness(0.7) grayscale(0.3);
  position: relative;
  z-index: 1;
}

.slider-nav .slick-center {
  transform: scale(1);
  filter: brightness(1) grayscale(0);
  z-index: 2;
}

.slider-nav img {
  width: 100%;
  height: 100%;
  max-height: 140px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
  border: 3px solid transparent;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.slider-nav img:hover {
  opacity: 1;
}

/* アクティブなサムネイル */
.slider-nav .slick-current img {
  border-color: var(--color-accent, #ff4d4d);
  opacity: 1;
}

/* 矢印の共通設定（アクセシビリティ対応サイズ） */
.wb-favor-container .slick-arrow {
  z-index: 10;
  width: 35px;
  height: 35px;
  cursor: pointer;
}

.wb-favor-container .slick-arrow::before {
  color: var(--color-accent, #ff4d4d);
  font-size: 35px;
  opacity: 1;
}

/* 矢印の位置調整（containerに対して配置） */
.wb-favor-container .slick-prev,
.wb-favor-container .slick-next {
  text-shadow: 1px 1px 3px rgb(0, 0, 0, 0.3);
}

.wb-favor-container .slick-prev {
  left: 0; /* 一旦ゼロへ */
  margin-left: -20px;
}
.wb-favor-container .slick-next {
  right: 0; /* 一旦ゼロへ */
  margin-right: -20px;
}

/* ドットの調整 */
.wb-favor-container .slick-dots {
  bottom: -40px;
}

.wb-favor-container .slick-dots li button::before {
  font-size: 15px;
  color: #ccc;
}

.wb-favor-container .slick-dots li.slick-active button::before {
  color: var(--color-accent, #ff4d4d);
}

@media (max-width: 1023px) {
  .wb-favorite::before {
    top: 52%;
  }
}

@media screen and (max-width: 834px) {
  .slick-dots {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .slider-nav {
    display: block;
    width: 85%;
    margin: 0 auto !important;
  }

  .slider-nav .slick-slide {
    margin: 0 -5px;
  }

  .wb-favor-container .slick-prev {
    left: -10px;
  }
  .wb-favor-container .slick-next {
    right: -10px;
  }
}

@media (max-width: 600px) {
  .wb-favor-container {
    width: 90%;
  }

  .slider-for .slick-slide::after {
    bottom: 3vw;
    right: 1vw;
    font-size: 12px;
    padding: 0.25em 0.6em;
  }
}

/* ===========================================
  Art Collection Section (作品集)
=========================================== */

.wb-collect {
  position: relative;
  z-index: 0; /* ※1-重ね合わせの起点を作る。背景をmainより上の最後方 */
  background-image: url(../image/wb-top/collect-bg.jpg);
  background-size: auto 100%;
  background-position: top left;
  background-repeat: no-repeat;
  overflow: hidden;

  /* ※2-クリックをmainに奪われないよう、スタックを隔離 */
  isolation: isolate;

  &::before {
    content: "";
    position: absolute;
    inset: 0; /*top: 0;,left: 0;,width: 100%;,height: 100%;を包括*/
    background: linear-gradient(to bottom, #950d0f 0%, rgb(195, 0, 25, 0.9) 20%, rgb(209, 186, 146, 0.6) 60%, #950d0f 100%);
    z-index: 1; /* ※3-背景(0)より上 */
    pointer-events: none;
  }
}

.wb-collect > div {
  width: 85vw;
  position: relative; /* ※4-スモーク(1)よりテキスト達を上にする */
  z-index: 2;
}

.wb-pro-collect,
.wb-fan-collect,
.wb-vam-collect {
  width: 100%;
  max-width: 1640px;
  margin-bottom: clamp(70px, 8.5vw, 100px);
}

.wb-pro-title,
.wb-fan-title,
.wb-vam-title {
  position: relative;
  width: fit-content;
  padding: 0.3em 1em 0.3em 0.5em;
  line-height: 1.2;
  margin-bottom: max(1em, 25px);

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* 座標の設定: 左端中央を頂点とした5角形 */
    clip-path: polygon(0% 0%, 94% 0%, 100% 60%, 95% 100%, 0% 100%);
    border-radius: 3px;

    z-index: -1;
    pointer-events: none;
  }

  & small {
    font-size: 70%;
  }
}

.wb-pro-title::before {
  background: linear-gradient(to right, #3216be, #222222);
}
.wb-fan-title::before {
  background: linear-gradient(to right, #d88100, #222222 70%);
}
.wb-vam-title::before {
  background: linear-gradient(to right, #c51cc5, #222222 65%);
}

.wb-collect-list {
  display: grid;
  /* ★1-重要：minmax(0, 1fr)で最小値を0に固定します */
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  /* align-items: stretch; */
  padding: 0;
}

.wb-collect-list > li {
  display: flex;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
}

.wb-collect-container {
  flex-direction: column;
  width: fit-content;
  max-width: 100%;

  gap: 5px;
  padding: 5px 3px;
  line-height: 1.2;
  border-radius: 5px;
  box-sizing: border-box;
}

.wb-pro-collect .wb-collect-container {
  background-color: #3c3aa6;
}

.wb-fan-collect .wb-collect-container {
  background-color: #c37500;
}

.wb-vam-collect .wb-collect-container {
  background-color: #b81bb8;
}

.wb-collect-image {
  /* ★3-画像のコンテナは幅を指定せず、中のimgに任せる */
  width: fit-content;
  margin: 0 auto;
  overflow: hidden;
}

.wb-collect-image img {
  display: block;
  /* ★4-width: 100%をやめ、高さ固定(20vw)による自然な幅を維持させる */
  width: auto;
  max-width: 100%;
  height: 20vw;
  min-height: 120px;
  object-fit: cover;
  border-radius: 3px;
  background: radial-gradient(ellipse, #b0005e 0%, #b0005e 30%, #720c7a 100%);
}

.wb-collect-info {
  /* ★5-重要：親(container)がfit-contentなので、
     width: 0; min-width: 100%; とすることで「画像が作った幅」を上限にします */
  width: 0;
  min-width: 100%;
  box-sizing: border-box;

  padding: 1px 0.5em 3px;
  font-size: var(--fs-14);
  word-break: break-all;
}

.wb-info-x a {
  color: rgb(238, 238, 238, 0.7);
  font-style: italic;
}

.wb-collect-info.text-btm {
  order: 2;
}

.wb-collect-top {
  align-items: flex-start;
}

.wb-collect-mid {
  align-items: center;
}

.wb-collect-btm {
  align-items: flex-end;
}

.wb-collect-full {
  /* align-items: center; */
  /* height: 100%; */
  flex-grow: 1;

  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 767px) {
  .wb-collect .model-inner {
    padding-left: 15px;
    padding-right: 15px;
  }

  .wb-pro-title,
  .wb-fan-title,
  .wb-vam-title {
    font-size: var(--fs-24);
  }

  .wb-collect-list {
    gap: 10px;
  }

  .wb-collect-container {
    padding: 3px 2px;
  }

  .wb-collect-info {
    font-size: 12px;
  }
}

@media (max-width: 500px) {
  .wb-pro-title,
  .wb-fan-title,
  .wb-vam-title {
    font-size: clamp(17px, 4vw, 20px);
  }
  .wb-collect-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }

  .wb-collect-image img {
    height: 35vw;
  }
}

/* ===========================================
  Weekly Schedule Section (スケジュール)
=========================================== */

.wb-schedule {
  width: auto;
  height: 100%;
  background-image: url(../image/wb-top/sche-bg-1.jpg), url(../image/wb-top/sche-bg-2.jpg);
  background-size:
    auto 100%,
    /* ※重要 セクションの高さに画像100%を表示*/ auto 100%;
  background-repeat: no-repeat, repeat-x;
  background-position:
    left center,
    left center;
  padding-bottom: 100px;
}

.wb-schedule .wb-sect-title {
  &::before {
    background-color: #950d0f;
  }
}

.wb-schedule .wb-sche-period {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 5em;
  aspect-ratio: 1 / 1;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: #d5001b;
  border-radius: 50%;
  font-size: var(--fs-18);
  font-weight: bold;

  & span:nth-child(1) {
    margin-top: -0.3em;
  }

  & span:nth-child(2) {
    font-size: 78%;
  }
}

/* 全体コンテナ：スケジュール(3) vs 画像(1) の比率 */
.wb-sche-container {
  display: flex;
  justify-content: center;
  margin-left: 4vw;
}

/** 全体レイアウト **/
/* 親要素 */
.wb-sche-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%; /* 左右に少し余裕を持たせる */
  max-width: 1200px; /* 1200px以上は広がらない */
  margin: 0 auto;
}

/* スケジュールリスト */
.wb-sche-list {
  flex: 6; /* 横並び時の比率 */
  min-width: 360px; /* 縮小を許可 */
  max-width: 480px;
  display: flex; /* これが必要！ */
  flex-direction: column;
  gap: clamp(5px, 1vw, 10px);
  z-index: 2;
  margin: 0;
  padding: 0;
}

/* 画像BOX */
.wb-sche-image {
  flex: 5; /* リストより少し狭い比率にする */
  max-width: 395px; /* 1200pxの時の「理想の幅」を上限にする */
  min-width: 0; /* 画面が狭くなったら395px以下になることを許可 */
  margin-left: -50px;
  position: relative;
  z-index: 1;
}

/* 画像自体の設定 */
.wb-sche-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* 親（.wb-sche-image）に合わせて伸縮 */
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
/** 全体レイアウト（終わり） **/

/* 1行のレイアウト（3列） */
.wb-day-contents {
  display: flex;
  align-items: center;
  height: auto;
  /* padding: 1px 0; */

  font-size: var(--fs-24); /*※ ←これが全ての基準*/

  background: #ffaaaa;
  border-radius: 10px;
  box-shadow: 1px 1px 6px rgb(238, 238, 238);
}

/* 1列目：日付と曜日の丸 */
.wb-day-circle {
  flex-shrink: 0; /* 潰れないように固定 */
  width: 2.8em; /*曜日文字サイズが基準*/
  aspect-ratio: 1 / 1;
  background: #d5001b;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  /* 円を左側に少しはみ出させる、または適切な位置に固定 */
  margin-left: -1.25em;
}

.wb-sche-day {
  font-size: 60%;
  font-weight: bold;
  margin: -0.5em 0 0;
}

.wb-sche-week {
  font-size: 1.2em;
}

/* 2列目：得点のみ表示 */
.wb-day-score {
  text-align: center;
  width: min(100px, calc(7vw + (7vw - 35px) * 0.8));
  font-weight: bold;
  text-shadow: 2px 2px 10px #b2767680;
}

/* スコアの数字を強調する場合の例 */
.is-bronze,
.is-silver,
.is-gold {
  display: inline-block;
  color: #fff; /* 通常時は白 */
  text-shadow:
    0px 0px 3px rgba(139, 0, 0, 0.5) /* 濃い赤で輪郭を強調 */,
    0px 0px 10px rgb(255, 255, 255);

  animation: intense-pulse 2s ease-in-out infinite;
}

/* 銅 (2) */
.is-bronze {
  --glow-color: #a65e2e;
  text-shadow:
    0px 0px 5px rgba(139, 0, 0, 0.5),
    /* 輪郭（維持） */ 0px 0px 10px rgba(217, 144, 88, 0.6),
    /* ★白ではなく、明るい銅色に変更。サイズも絞る */ 0px 0px 20px rgba(166, 94, 46, 0.9); /* 銅の光の密度を上げる */
}

/* 銀 (4) */
.is-silver {
  --glow-color: #909090;
  text-shadow:
    /* 0px 0px 3px rgba(50, 50, 50, 0.5), */
    /* 銀に合わせた濃いグレーの輪郭 */ 0px 0px 20px rgba(160, 160, 160, 0.8); /* 指定色 #a0a0a0 */
}

/* 金 (6) */
.is-gold {
  --glow-color: #d4af37;
  text-shadow:
    0px 0px 3px rgba(139, 0, 0, 0.5),
    0px 0px 10px rgb(255, 255, 255),
    0px 0px 20px rgba(241, 196, 15, 0.8); /* 明るい金の光 */
}

/* アニメーション：白 → 各色 → 白 */
@keyframes intense-pulse {
  0% {
    transform: scale(1);
    color: #ffffff; /* 白からスタート */
    filter: brightness(1);
  }
  50% {
    transform: scale(1.2);
    color: var(--glow-color); /* 各色へ変化 */
    /* 元のCSSの光の強さを維持 */
    filter: brightness(1.5) drop-shadow(0 0 15px rgba(255, 255, 255, 1));
  }
  100% {
    transform: scale(1);
    color: #ffffff;
    filter: brightness(1);
  }
}
/* スコアの数字を強調する場合の例（完） */

/* 3列目：午前・午後の詳細 */
.wb-day-details {
  flex-grow: 1; /* 残りの幅をすべて使う */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25em;
  color: rgb(74, 40, 41, 0.9);
  font-size: 80%;
  line-height: 1.2;
}

.wb-day-score,
.wb-day-details {
  font-family: "Hachi Maru Pop", cursive;
  font-weight: bold;
}

.wb-day-item {
  display: grid;
  /* 時間の幅を固定（例: 140px）にすることで、その後のテキスト開始位置が全行で揃う */
  grid-template-columns: 4em 0.8em 4em minmax(0, 1fr);
  width: 100%;
  align-items: center;
  gap: 0.1em;
}

.wb-time-start {
  text-align: right;
}

.wb-time-sepa {
  text-align: center;
  /* margin-left: 0.2em; */
}

.wb-time-end {
  text-align: right;
}

.wb-day-text {
  margin-left: min(3vw, 25px);
  white-space: nowrap; /* テキストが長い場合も改行させない */
  overflow: hidden;
}

/* お休み時のスタイル上書き */
.wb-day-item.is-off {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 1.4em;
  padding: 0 10px;
}

.wb-day-item.is-off .wb-day-text {
  margin-left: 0;
  width: 100%;
  display: block;
  text-align: center;
  color: var(--color-accent);
  background-color: #b0005e;
  border-radius: 10px;
  padding: 0 0 4px;
  box-sizing: border-box;
}
/* お休み時のスタイル上書き(完) */

@media (max-width: 1023px) {
  .wb-sche-list {
    max-width: 460px;
  }

  .wb-schedule .wb-sche-period {
    left: 5%;
  }
}

@media (max-width: 767px) {
  .wb-schedule .wb-sche-period {
    left: -15%;
  }
}

@media (max-width: 650px) {
  .wb-schedule .model-inner {
    width: 100%;
    padding: 60px min(3vw, 15px);
  }

  .wb-sche-list {
    min-width: 288px;
  }
  .wb-day-contents {
    font-size: var(--fs-20);
  }

  .wb-sche-day {
    margin: -0.2em 0;
  }

  .wb-day-score {
    font-size: 1em;
    /* width: calc(7vw + (7vw - 35px) * 1.5); */
  }

  .wb-day-text {
    margin-left: 2vw;
  }
}

@media (max-width: 500px) {
  .wb-schedule .model-inner {
    padding-left: 15px;
  }

  .wb-schedule .wb-title-container span {
    padding-left: 1.1em;
    letter-spacing: 0.05em;
  }

  .wb-schedule .wb-sche-period {
    left: -7%;
    font-size: clamp(12px, 1.2vw, 14px);
  }

  .wb-sche-inner {
    flex-direction: column;
    max-width: 350px;
  }

  .wb-sche-list {
    order: 2;
  }

  .wb-sche-image {
    position: unset;
    margin: 0 auto -5vw;
    flex: none;
    width: 50%;
  }

  /* 画像自体の設定 */
  .wb-sche-image img {
    position: unset;
  }

  .wb-day-score {
    width: 12vw;
  }

  /* .wb-day-text {
    margin-left: 2em;
  } */
}

/* ===========================================
  Information Section (お知らせ)
=========================================== */
/* --- 1. レイアウトとリストの基本設定 --- */
.wb-info-list {
  width: 65vw;
  max-width: 900px;
  margin: 4em auto;
  font-size: var(--fs-16);
  color: #ddd;
}

.wb-info-item {
  border-bottom: 1px solid #ddd;
  margin-top: 1em;
}

/* --- 2. アコーディオン（details/summary） --- */
.wb-info-summary {
  list-style: none;
  cursor: pointer;
  outline: none; /* フォーカス時の枠線が気になる場合 */

  &::-webkit-details-marker {
    display: none; /* Safari用 */
  }
}

.wb-info-wrap {
  padding: 1em 0 0.5em;
  display: flex; /* 念のため追加：日付とヘッドを並べる場合 */
  align-items: center;
}

/* --- 3. ニュース項目内の詳細要素 --- */
.wb-info-date {
  flex-shrink: 0;
  font-size: 0.85em;
  font-weight: normal;
  margin-right: 50px;
  padding: 0 0.5em;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
}

.wb-info-head {
  display: flex;
  width: 100%;
  flex-grow: 1; /* 残りの幅を埋める */
  justify-content: space-between;
  align-items: center;

  /* 矢印アイコン（3階層目） */
  &::after {
    content: "▼";
    font-size: 0.8em;
    margin-left: auto;
    padding-left: 0.5em;
    padding-right: 1em;
    flex-shrink: 0; /* ★矢印が潰れないように固定 */
  }
}

.wb-info-head > span {
  font-size: 113%;
  line-height: 1.2; /*文字省略のために指定が必要*/
  letter-spacing: -0.02em;
  padding-right: 2em;
}

/* --- 4. 開閉コンテンツの状態 --- */
.wb-info-content {
  font-family: "Noto Sans JP", sans-serif;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  overflow: hidden;

  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  box-shadow: 1px 1px 4px gray;

  transition:
    grid-template-rows 0.4s ease,
    opacity 0.4s ease;
}

/* JSで .is-open クラスがついた時のスタイル */
.wb-info-accordion.is-open .wb-info-content {
  grid-template-rows: 1fr;
  opacity: 1;
}
.wb-info-accordion.is-open .wb-info-head::after {
  content: "▲";
}

.wb-info-inner {
  min-height: 0;
  padding: 0 0.7em; /*上下の余白をここで作るとカクつく*/
  overflow: hidden;
}

.wb-info-text {
  margin: 1.4em 0; /* 上下の余白はここで作る */
  line-height: 1.2;
}

@media (max-width: 700px) {
  .wb-info .model-inner {
    width: 100%;
  }

  .wb-info-list {
    width: 90%;
    font-size: 12px;
  }

  .wb-info-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .wb-info-date {
    margin-bottom: 0.5em;
  }

  .wb-info-inner {
    padding: 0 0.5em 0 1em;
  }

  .wb-info-text {
    margin: 0.5em 0;
  }
}

/* ===========================================
  共通アニメーション
=========================================== */

.wb-popular-item,
.wb-favorite .slider-for li,
.wb-favorite .slider-nav li {
  padding: 8px; /* ← 拡大用の余白を確保 */
}

.wb-video-list li,
.wb-popular-list li,
.wb-video-list li,
.wb-popular-list .wb-popular-inner,
.wb-favorite .slider-for,
/* .wb-favorite .slider-nav .slick-center, */
.wb-favorite .slider-nav li,
.wb-collect-list li,
.wb-link-iriam .wb-share-content a,
.wb-footer-sns a {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

  &:hover {
    transform: scale(1.05);
    filter: brightness(1.1); /* 1.1倍に明るくして目立たせる */
  }
}

.wb-share-link a {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

  &:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(111, 0, 59, 0.4);
  }
}
