.slider-scale-inner {
  height: 400px;
  margin: 0 auto;
}

.slider {
  width: 900px;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.slide {
  width: 150px;   /* 1枚分 */
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 枠いっぱいに表示し、余分はトリミング */
  display: block;
}

/* 番組紹介 */
.about-title-wrap {
  display: flex;
  justify-content: center;
}

.about-title {
  position: relative;
  padding-top: .75em;
  color: var(--main-color);
  font-size: 2rem;
  letter-spacing: 0.5rem;  /* 文字間を広げる */
  line-height: 1;
  text-align: center;
}

/* 後ろに出す「ABOUT」 */
.about-title::before {
  content: attr(data-word);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  font-family: "Lexend Zetta", sans-serif;
  font-weight: 200;
  font-style: normal;
  color: #cacaca;
  font-size: 2.2rem;
  line-height: 1;
  pointer-events: none;
}

.about-text {
  position: relative;
  padding: 30px;
  background: linear-gradient(145deg, #ffffff, #f9fffb);
  border: 2px solid transparent;
  border-radius: 20px;
  box-shadow: 
    0 8px 32px rgba(9, 100, 1, 0.329),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  line-height: 1.8;
  max-width: 800px;
  margin: 5px auto;
}

.about-text::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 22px;
  z-index: -1;
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
  .slider-scale-inner {
    height: 200px;
  }
  
  .slider {
    width: 450px;    /* 75px × 6枚だけ見せる */
  }
  
  .slide {
    width: 75px;
  }
}

@media (max-width: 800px) {
  
  .about-title {
    font-size: 1.6rem;
    letter-spacing: 0.3rem;
  }
  
  .about-text {
    width: 76vw;
    max-width: none; /* max-width無効化 */
    padding: 24px;
    margin: 10px auto;
  }
}

@media (max-width: 450px) {
  .slider-scale-inner {
    height: 200px;
  }
  
  .slider {
    width: 300px;    /* 75px × 4枚だけ見せる */
  }
  
  .slide {
    width: 75px;
  }
}