/*--------------------------------------
  ベース設定
--------------------------------------*/
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans Japanese', sans-serif;
  background: #111;
  color: #fff;
}

/* フォント 公開日 */
.fv-date {
  font-family: "Shippori Antique", sans-serif;
}

.jigen-fv {
  display: flex;
  width: 100vw;
  min-height: 100vh;
  background: #111;
  overflow: visible;
}

/*--------------------------------------
  左カラム
--------------------------------------*/
.fv-left {
  width: 50vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #111;
  position: relative;
  z-index: 2;
}
.fv-left-inner {
  width: 100%;
  max-width: 880px;
  box-sizing: border-box;
  padding: 5vh 3vw 3vh 3vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.55vw;
}
.fv-logo {
  width: 100%;
  min-width: 410px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* SNSアイコン */
.fv-btns {
  display: flex;
  flex-direction: row;    /* PCでは横並び */
  gap: 1.7vw;
  align-items: center;
  /* margin: 1vw 0 0.4vw 0; */
  width: 100%;
  justify-content: flex-start;
}
.fv-btn {
  width: 174px;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: #fff;
  color: #111;
  font-size: 1.0rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 1.1em 0;
  border: none;
  outline: none;
  display: inline-block;
  border-radius: 3.5em;
  box-shadow: 0 1.5px 18px #0004;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.fv-btn:hover {
  background: #ececec;
}
.fv-btn-theater {
  background: #222;
  color: #fff;
  border: 2px solid #fff;
}
.fv-btn-theater:hover {
  background: #fff;
  color: #222;
}

@media (max-width: 500px) {
  .fv-btns {
    flex-direction: column;
    gap: 3vw;
    align-items: center;
    /* margin: 5vw 0 4vw 0; */
    width: 100%;
  }
  .fv-btn {
    width: 100%;
    max-width: 400px;
    min-width: 0;
    padding: 1.18em 3.1em;
  }
}

/* SNSアイコン */
.fv-sns {
  display: flex;
  gap: 1.7vw;
}
.sns-circle {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.15s;
  box-shadow: 0 2px 8px #0002;
}
.sns-circle img {
  width: 26px;
  height: 26px;
  display: block;
}
.fv-sns a:hover .sns-circle {
  box-shadow: 0 4px 18px #0003;
  background: #f2f2f2;
}

/* キャスト */
.fv-cast {
  margin: 1vw 0 0.4vw 0;
}
.fv-cast img {
  width: 90%;
  /* max-width: 100%; */
  height: auto;
  display: block;
  object-fit: contain;
}

/* リリース */
.release-text-pc {
  width: 95%;
  display: block;
}
.release-text-sp {
  width: 70%;
  display: block;
}
.release-text-pc img,
.release-text-sp img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .release-text-pc { display: none; }
  .release-text-sp { display: block; }
}
@media (min-width: 901px) {
  .release-text-pc { display: block; }
  .release-text-sp { display: none; }
}



/* バナー */
.fv-bnr {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.fv-bnr img {
  width: 100%;
  max-width: 250px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* シェアボタン */
.fv-share {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.share-label {
  font-size: 0.6rem;
  letter-spacing: 0.11em;
  color: #daeee2;
  margin-bottom: 0px;
}
.share-icons {
  display: flex;
  gap: 16px;
}
.share-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  box-shadow: 0 2px 6px #0002;
  transition: box-shadow 0.18s, opacity 0.18s;
}
.share-btn:hover img {
  box-shadow: 0 4px 16px #0003;
  opacity: 0.82;
}

@media (max-width: 900px) {
  .fv-share {
    align-items: center;
  }
  .fv-cast img {
    width: 100%;
  }
  .fv-bnr {
    justify-content: center;
  }
  .fv-bnr img {
    width: 100%;
    max-width: 400px;
  }
}


/*--------------------------------------
  右カラム：ポスター
--------------------------------------*/
.fv-right {
  width: 50vw;
  min-height: 100vh;
  background: #111;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}
.poster-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: normal;
  justify-content: center;
  position: relative;
}
.fv-poster {
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: 100%;
  height: auto;
  z-index: 1;
  position: relative;
  object-fit: cover;
}
.catchcopy-pc {
  display: none;
  position: absolute;
  top: 2vw;
  right: 2vw;
  width: 1.31vw;
  min-width: 16px;
  height: auto;
  z-index: 10;
  pointer-events: none;
}
/* PCのみ表示 */
@media (min-width: 901px) {
  .catchcopy-pc {
    display: block;
  }
}

@media (min-width: 901px) {
  .poster-pc { display: flex; }
  .poster-sp { display: none; }
}
/* スマホ（900px以下）はSP用を表示、PC用は非表示 */
@media (max-width: 900px) {
  .poster-pc { display: none; }
  .poster-sp { display: flex; }
}

/*--------------------------------------
  モバイル対応
--------------------------------------*/
@media (max-width: 900px) {
  .jigen-fv {
    flex-direction: column;
    min-height: 100vh;
    height: auto;
  }
  .fv-left, .fv-right {
    width: 100vw;
    min-width: 0;
    min-height: 0;
    height: auto;
    align-items: center;
    padding: 0;
  }
  .fv-right {
    order: -1;
    height: auto;
    max-height: none;
    overflow-y: visible;
    align-items: flex-start;
    justify-content: center;
  }
  .poster-wrap {
    width: 100vw;
    height: auto;
    min-height: 0;
    position: relative;
  }
  .fv-poster {
    width: 100vw;
    max-width: 100vw;
    height: auto;
    max-height: none;
    margin: 0 auto;
  }
  .fv-left-inner {
    max-width: 96vw;
    padding: 0 6vw 8vw 6vw;
    align-items: center;
    text-align: center;
    gap: 5vw;
  }
  .fv-logo {
    display: none !important;
  }
  .fv-btns {
    gap: 3vw;
    align-items: center;
    /* margin: 5vw 0 4vw 0; */
    justify-content: center;
  }
  .fv-btn {
    width: 100%;
    max-width: 180px;
  }
}

/*--------------------------------------
  ローディング画面
--------------------------------------*/
#loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s;
}
@keyframes loading-zoon-depth-stop {
  0%   { transform: scale(0.09); opacity: 0; }
  100% { transform: scale(1.20); opacity: 1; }
}
.loading-logo {
  width: 270px;
  max-width: 80vw;
  display: block;
  margin-bottom: 24px;
  animation: loading-zoon-depth-stop 4.5s cubic-bezier(.06,1.28,.18,1) 0s 1 both;
}
.loading-text {
  font-size: 1.01rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.10em;
  text-align: center;
  margin-top: 0.2em;
  animation: loading-fade 1.7s infinite alternate;
  line-height: 1.6;
  padding-bottom: 0.13em;
}
@keyframes loading-fade {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

/*--------------------------------------
  モーダル動画
--------------------------------------*/
.modal {
  display: none;
  position: fixed;
  z-index: 9998;
  inset: 0;
  background: rgba(0,0,0,0.82);
  align-items: center;
  justify-content: center;
}
.modal.active {
  display: flex;
}
.modal-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.modal-content {
  position: relative;
  z-index: 2;
  background: none;
  padding: 0;
  border-radius: 0;
  max-width: 94vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.modal-close {
  position: fixed;
  top: 40px;
  right: 40px;
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  z-index: 10000;
  cursor: pointer;
  transition: opacity 0.2s;
  line-height: 1;
  padding: 0;
}
.modal-close:hover {
  opacity: 1;
}
.modal-video-wrap {
  width: 80vw;
  max-width: 1080px;
  aspect-ratio: 16/9;
  background: #000;
}
.modal-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
}
.modal-movie-switch {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 18px 0 0 0;
}
.modal-switch-btn {
  padding: 0.44em 1.4em;
  font-size: 1rem;
  background: #fff;
  color: #222;
  border: 1.2px solid #222;
  font-weight: 700;
  font-family: inherit;
  box-shadow: none;
  outline: none;
  transition: background 0.18s, color 0.18s, border 0.18s;
  letter-spacing: 0.06em;
  text-transform: none;
  appearance: none;
  min-width: 100px;
}
.modal-switch-btn.active,
.modal-switch-btn:hover {
  background: #222;
  color: #fff;
  border-color: #222;
}


@media (max-width: 900px) {
  .modal-close {
    top: 16px;
    right: 12px;
    font-size: 2.3rem;
  }
}


