@charset "UTF-8";

img {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
a {
  text-decoration: none;
}
   /*font*/
   .font-hiragino__300{
font-family: "hiragino-kaku-gothic-pron", sans-serif;
font-weight: 300;
font-style: normal;
   }

   .font-hiragino__600{
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
font-weight: 600;
font-style: normal;
   }

/* ---------- 共通トークン ---------- */
:root {
  --color-white: #ffffff;
  --color-glass-bg: rgba(255, 255, 255, 0.4);
}

/* ---------- reset ---------- */
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ---------- base ---------- */
body {

  font-family: "Shippori Mincho B1", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Yu Gothic", "Noto Sans JP", Meiryo, serif;
  font-weight: 100;
  font-style: normal;
  color: #eaf2ff;
  -webkit-font-smoothing: antialiased;
  /* 背景画像は body の background-attachment:fixed ではなく
     .bg-fixed (position:fixed の専用レイヤー)で表示している。
     iOS Safari は background-attachment:fixed を正しく扱えず、
     スクロールに追従してしまったり、実際のビューポートより
     大きな(スクロール可能領域全体の)キャンバスに対して
     cover 計算されて拡大されたように見えたりするため。
     ここでは背景色だけを保持しておく(.bg-fixed の読み込み前や
     読み込み失敗時のフォールバック) */
  background-color: #05070f;
  min-height: 100vh;
}

.wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* ---------- hero / title logo ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 56px;
}

.hero__logo {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  animation: heroLogoFadeIn 1.4s ease-out 0.3s forwards;
}

/* ロゴ(下からフェードイン)で表示される */
@keyframes heroLogoFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- 固定背景画像レイヤー ----------
   body の background-attachment:fixed の代わりに、position:fixed の
   専用要素として背景画像を敷いている(iOS Safariでも確実に
   ビューポートに固定され、拡大されて見えることもない)。
   .twinkle-layer(z-index:-1)より奥の z-index:-2 に配置する */
.bg-fixed {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("../image/bg__star.jpg") center top / cover no-repeat;
  pointer-events: none;
}

/* ---------- 背景のキラキラ星レイヤー ---------- */
.twinkle-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}


.twinkle {
  position: absolute;
  width: 64px;
  height: 52px;
  background-image: url("/static/notequalme/fanclub/feature/2026-audition_aQ9387gj/image/star-dec.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
  opacity: 0;
  animation-name: twinkle;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.twinkle--lg {
  width: 96px;
  height: 78px;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.15) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1) rotate(25deg);
  }
}

/* ---------- スクロールでのふわ表示 ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


@media (prefers-reduced-motion: reduce) {
  .hero__logo {
    animation: none;
    opacity: 1;
  }

  .twinkle-layer {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .section-title__deco {
    opacity: 1;
    animation: none;
  }

  .accordion__item[open] .accordion__panel-inner {
    animation: none;
  }
}

/* ---------- visuals (generated placeholder images) ---------- */
.visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 56px;
}

.visuals__item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  aspect-ratio: 520 / 280;
}

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

/* ---------- next episode card ---------- */
.next-card {
  background: var(--color-glass-bg);
  border-radius: 28px;
  padding: 6% 6%;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  
  transform: translateZ(0);
}

.next-card__frame {
  position: relative;
  width: 60%;
  aspect-ratio: 844 / 470;
  margin: 0 auto 20px;
}

.next-card__frame-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}


.next-card__content,
.countdown__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.next-card__content {
  position: relative;
  z-index: 1;
  height: 100%;
  text-align: center;
  padding: 0 12%;
}

.next-card__label {
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: 0.12em;
  color: var(--color-white);
  text-transform: uppercase;
  text-align: center;
}

.next-card__title {
  margin: 0 0 15px;
  font-size: 22px;
  font-weight: 100;
  color: var(--color-white);
 
}

.next-card__date {
  margin: 0 0 16px;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--color-white);
}

.countdown {
  display: flex;
  gap: 20px;
}

.countdown__box {
  width: 60px;
  height: 75px;
  background-color: #7bafc8;
}

.countdown__num {
  font-size: 27px;
  font-weight: 100;
  color: var(--color-white);
  line-height: 1.1;
}

.countdown__unit {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--color-white);
  margin-top: 10px;
}

/* ---------- next preview label + decoration ---------- */
.next-card__preview-label {
  margin: 0 0 6px;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--color-white);
}

.next-card__deco {
  width: 140px;
  margin: 0 auto 20px;
  opacity: 0.9;
}

/* ---------- video thumbnail ---------- */
.video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.video__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.video__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--color-white);
}

.video__play-icon {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #1b2a3a;
}

section{
  margin-top: 150px;
}
.section-title {
  position: relative;
  margin: 0 0 24px;
  padding: 22px 20px;
  text-align: center;
}

.section-title__deco {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(560px, 100%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
}


.section-title__deco.is-visible {
  animation: titleDecoGlint 1.1s ease-out forwards;
}

@keyframes titleDecoGlint {
  0% {
    opacity: 0;
    filter: brightness(1) drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
  45% {
    opacity: 1;
    filter: brightness(2.4) drop-shadow(0 0 18px rgba(255, 255, 255, 0.9));
  }
  100% {
    opacity: 1;
    filter: brightness(1) drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
}

.section-title__text {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 40px;
  font-weight: 100;
  letter-spacing: 0.14em;
  color: var(--color-white);
}

/* ---------- 合格者セクション ----------
   出演者セクションのアコーディオン(.accordion__item)とは違い、
   開閉なしで常に中身が見えている固定パネル。
   見た目(背景・角丸・ブラー)は .accordion__item に揃えている */
.winners__panel {
  background: var(--color-glass-bg);
  border-radius: 14px;
  padding: 6%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transform: translateZ(0);
}

/* 合格者は少人数想定のため、出演者アコーディオン内の
   .cast-grid(デスクトップ4列)とは違い、常に3列で表示する
   (モバイル側は .cast-grid の3列がそのまま効くので上書き不要)。
   セレクタを .cast-grid.winners__grid にして詳細度を上げ、
   後方の .cast-grid 本体の定義(4列)より確実に優先されるようにしている */
.cast-grid.winners__grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ---------- 出演者セクション / アコーディオン ---------- */


.accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion__item {
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-glass-bg);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  /* .next-card と同じ理由でレイヤーを昇格し、表示直後からブラーを効かせる */
  transform: translateZ(0);
}

.accordion__header {
  position: relative;
  width: 100%;
  padding: 30px 44px;
  text-align: center;
  font-size: 28px;
  font-weight: 100;
  letter-spacing: 0.1em;
  color: var(--color-white);
  cursor: pointer;
  transition: padding-bottom 0.4s ease-in-out;

  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

.accordion__header::-webkit-details-marker {
  display: none;
}


.accordion__item[open] .accordion__header {
  padding-bottom: 10px;
}

.accordion__icon {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 10px;
  height: 10px;
  margin-top: -7px;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(45deg);
  transition: transform 0.4s ease-in-out;
}

.accordion__item[open] .accordion__icon {
  transform: rotate(-135deg);
  margin-top: -3px;
}

.accordion__panel-inner {
  padding: 0 6% 6%;
}


.accordion__item[open] .accordion__panel-inner {
  animation: accordionPanelFadeIn 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes accordionPanelFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.accordion__deco {
  width: 160px;
  margin: 0 auto 20px;
  opacity: 0.85;
}

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


.cast-grid__photo {
  aspect-ratio: 1 / 1.2;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.cast-grid__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.15);
  transform-origin: center top;
}

.cast-grid__name {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #595959;
  background: var(--color-white);
  border-radius: 0 0 10px 10px;
  padding: 5px 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- 番組紹介セクション ---------- */


.program__card {
  background: var(--color-glass-bg);
  border-radius: 28px;
  padding: 6% 6%;
  color: var(--color-white);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  
  transform: translateZ(0);
}

.program__lead {
  margin: 0 0 35px;
  font-size: 16px;
  line-height: 2;
  line-height: 1.6;
}

.program__list-wrap {
  position: relative;
}

.program__list {
  margin: 0;
      padding: 1.5rem;
}

.program__row {
  display: flex;
  gap: 24px;
  padding: 14px 0;
}

.program__row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.program__row-label {
  flex: 0 0 110px;
  margin: 0;
  font-weight: 100;
}

.program__row-value {
  flex: 1;
  margin: 0;
}

.program__list-deco {
  position: absolute;
  width: 70px;
  opacity: 0.9;
  pointer-events: none;
}


.program__list-deco--tl {
  top: -8px;
  left: -8px;
  transform: rotate(180deg);
}

.program__list-deco--br {
  right: -8px;
  bottom: -8px;
}


.episodes__card {
  background: var(--color-glass-bg);
  border-radius: 28px;
  padding: 6% 6%;
  backdrop-filter: blur(3px);
}

.episodes__deco {
  width: 350px;
  margin: 0 auto 28px;
  opacity: 0.9;
}

.episodes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.episode {
  display: block;
  width: 100%;
  text-align: left;
}


.episode__thumb {
  margin-bottom: 0;
  border-radius: 16px 16px 0 0;
}


.episode__body {
  background: var(--color-white);
  border-radius: 0 0 16px 16px;
  padding: 14px 16px 18px;
}

.episode__tag {
  margin: 0 0 0px;
  font-size: 12px;
  font-weight: 100;
  letter-spacing: 0.08em;
  color: #61AFD4;
}

.episode__title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 100;
  line-height: 1.5;
  color: #61AFD4;
}

.episode__excerpt {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: #555555;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.episodes__note {
  margin: 0;
  text-align: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- サイトリンク / フッター ---------- */
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 150px;
  text-align: center;
}

.site-links__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 14px 28px;
}

.site-links__item img {
  width: 140px;
}

.site-footer__copyright {
  margin: 12px 0 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- エピソード詳細モーダル ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.is-open {
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow: hidden auto;
  background: #ffffff;
  border-radius: 16px;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #1b2a3a;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.modal__thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.modal__thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.modal__body {
  padding: 10px 18px 20px;
  color: #222222;
}

.modal__number {
  margin: 0 0 0px;
  letter-spacing: 0.08em;
  color: #61AFD4;
}

.modal__number-label {
  font-size: 14px;
}

.modal__number-value {
  font-size: 11px;
}

.modal__title {
  margin: 0 0 2px;
  font-size: 25px;
  font-weight: 100;
  color: #61AFD4;
}

.modal__date {
  margin: 0 0 10px;
  font-size: 12px;
  color: #5A5A5A;
}

.modal__section-label {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 100;
  color: #61AFD4;
}

.modal__section-deco {
  width: 90px;
}

.modal__desc {
  margin: 0 0 24px;
  font-size: 13px;
  line-height: 1.9;
  color: #555555;
}

.modal__actions {
  display: flex;
  justify-content: flex-start;
  gap: 25px;
}

.modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 100;
  text-decoration: none;
}

.modal__btn--fod {
  background: linear-gradient(90deg, #61AFD4, #9CDDFC);
  color: #ffffff;
}

.modal__btn--tver {
  background: linear-gradient(90deg, #014D71, #36A4D8);
  color: #ffffff;
}

/* ---------- responsive (SP) ---------- */
@media (max-width: 960px) {

  .cast-grid__name {
    padding: 3px 6px;
}

  .wrap {
    padding: 40px 20px 64px;
  }

  .hero {
    margin-bottom: 40px;
  }

  .hero__logo {
    max-width: 100%;
  }

  .visuals {
    gap: 16px;
    margin-bottom: 40px;
  }

  .next-card {
    padding: 5% 3%;
  }

  .next-card__content {
    padding: 0 8%;
  }

  .next-card__label {
    font-size: 13px;
  }

  .next-card__title {
    font-size: 16px;
    margin: 0 0 8px;
  }

  .next-card__date {
    font-size: 12px;
  }

  .countdown {
    gap: 10px;
  }

  .countdown__box {
    width: 48px;
    height: 55px;
  }

  .countdown__num {
    font-size: 19px;
  }

  .next-card__deco {
    width: 120px;
    margin: 0 auto 10px;
  }

  .cast {
    margin-top: 100px;
  }

  .section-title {
    padding: 16px 12px;
    margin-bottom: 16px;
  }

  .section-title__text {
    font-size: 25px;
  }

  .accordion__header {
    padding: 15px 40px;
    font-size: 15px;
  }

  .accordion__item[open] .accordion__header {
    padding-bottom: 8px;
  }

  .accordion__panel-inner {
    padding: 0 14px 22px;
  }

  .accordion__deco {
    width: 120px;
    margin-top: 0;
    margin-bottom: 10px;
  }

  .cast-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 8px;
  }

  .cast-grid__name {
    font-size: 11px;
  }

  .program {
    margin-top: 100px;
  }

  .program__card {
    padding: 8% 6%;
  }

  .program__lead {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .program__row {
    gap: 12px;
    padding: 12px 0;
  }

  .program__row-label {
    flex-basis: 84px;
    font-size: 13px;
  }

  .program__row-value {
    font-size: 13px;
  }
.program__list {
    padding: 1rem;
}
  .program__list-deco {
    width: 50px;
  }

  .episodes__grid {
    grid-template-columns: 1fr;
  }

  .episodes__card {
    padding: 8% 6%;
  }

  .episodes__deco {
    width: 250px;
    margin-bottom: 20px;
  }

  .site-links__item img {
    width: 120px;
  }

  .modal__body {
    padding: 20px 18px 22px;
  }

  .modal__title {
    font-size: 17px;
    margin: 0 0 0px;
  }

  .modal__actions {
    flex-direction: row;
  }
}

@media (max-width: 960px) {

.modal__desc {
    line-height: 1.7;
}


  .countdown__unit {
    font-size: 10px;
    margin-top: 5px;
  }

  .next-card__frame {
    width: 100%;
  }

  .episode__body {
    padding: 4px 10px 10px;
}
.episode__excerpt{
    font-size: 11px;
    line-height: 1.5;
}
.episode__title {
    margin: 0 0 0px;
    font-size: 14px;
}
.next-card__preview-label {
  margin: 0 0 3px;
  font-size: 16px;
}
.next-card__preview-label {
}

.episodes__note{
  font-size: 13px;
}
.modal__btn {
    font-size: 13px;
    padding: 10px 23px;
}
.modal__section-label {
    font-size: 13px;
}
.modal__section-deco {
    width: 70px;
}

.hero {
    min-height: 40vh;
    margin: 50px auto;
}
section {
    margin-top: 100px;
}

.twinkle {
    width: 40px;
    height: 52px;
}

.site-footer {
    margin-top: 50px;
}

}

@media screen and (max-width: 960px) and (min-width: 768px) {
      .next-card__frame {
        width: 50%;
    }
  }


.snsList {
  list-style: none;
  margin: 0;
  padding: 0;
}

  .snsList li a {
    text-decoration: none;
    width: 150px;
    height: 150px;
    align-items: center;
    color: #fff;
    font-size: 40px;
}

.fa-brands, .fab, .fa {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
}

.fa-x-twitter:before {
    content: "\e61b";
}