@charset "UTF-8";
/* ==========================================================
  MusicPocket | Interview CSS（整理版）
  - ヒーロー動画
  - インタビュー要約（左画像/右テキスト、SPは縦）
  - Q&A（各Q=横スクロールカード/PC2枚・SP1枚：中央スナップ安定版）
  - まとめ（画像40% + テキスト60% / SPは縦）
========================================================== */
/* ----------------------------------------------------------
   1) 上段ヒーロー（動画）
---------------------------------------------------------- */
.iv-hero--movie {
  padding: clamp(16px, 4vw, 40px) 0;
  background: #fff;
}
.iv-hero__inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
}
.movie {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .25);
}
.movie iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
/* ----------------------------------------------------------
   2) インタビュー要約（左画像/右テキスト）
---------------------------------------------------------- */
.iv-intro {
  background: #fff;
  padding: clamp(16px, 4vw, 40px) 0 clamp(8px, 3vw, 20px);
}
.iv-intro__inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  gap: 24px;
}
.iv-intro__inner {
  display: block;
} /* SP=縦 */
.iv-intro__image, .iv-intro__text {
  width: 100%;
}
@media (min-width:960px) {
  .iv-intro__inner {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
  }
  .iv-intro__image {
    flex: 0 1 45%;
    order: 1;
    text-align: center;
  }
  .iv-intro__text {
    flex: 1 1 55%;
    order: 2;
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.8;
    color: #222;
  }
}
.iv-intro__image {
  text-align: center;
  margin: 0 auto;
}
.iv-intro__image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.iv-intro__caption {
  font-size: 14px;
  color: #333;
  margin-top: 8px;
}
.iv-intro__text strong {
  font-weight: 700;
}
/* タイトル（上下罫線） */
.iv-intro__title {
  position: relative;
  padding: 8px 0;
  border-top: 3px solid #ccc;
  border-bottom: 3px solid #ccc;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.5;
  margin: 1.2em 0 1em;
}
/* 箇条書き3点 */
.iv-intro__points {
  margin: 1.5em 0;
}
.iv-intro__points dt {
  font-weight: 700;
  display: inline;
}
.iv-intro__points dd {
  display: inline;
  margin-left: .2em;
}
.iv-intro__points dd::after {
  content: "";
  display: block;
  margin-bottom: .8em;
}
/* SP：画像はみ出し/左寄り防止 */
@media (max-width:768px) {
  .iv-intro__inner {
    display: block;
    gap: 0;
  }
  .iv-intro__image {
    display: block;
    width: 100%;
    max-width: 92vw;
    margin-inline: auto;
    overflow: hidden;
    border-radius: 8px;
    text-align: center;
  }
  .iv-intro__image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .iv-intro__text {
    width: 100%;
    max-width: 92vw;
    margin-inline: auto;
    padding: 0 16px;
    box-sizing: border-box;
  }
}
/* ----------------------------------------------------------
   3) Q&A（各Q＝横スクロールカード：中央スナップ安定版）
   - PC: 2枚見せ / SP(iPad縦含む): 1枚見せ
   - Q は常に縦 1 列
---------------------------------------------------------- */
.iv-qa-grid {
  background: #fff;
  padding: clamp(32px, 5vw, 64px) 0;
}
.iv-qa-grid__inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: block;
}
/* 見出し */
.iv-qa__question {
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  margin: 0 0 14px;
  position: relative;
  padding-left: 1.2em;
}
.iv-qa__question::before {
  content: "Q.";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: #222;
}
/* 枠（左右paddingは0：余白はレーン側で持つ） */
.iv-qa__wrap {
  position: relative;
  background: #fff;
  border: 1px solid #e6d9d5;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .06);
  overflow: hidden;
}
/* 見切れフェード（任意・必要なら幅を調整） */
.iv-qa__wrap::before, .iv-qa__wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  pointer-events: none;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}
.iv-qa__wrap::before {
  left: 0;
  transform: rotate(180deg);
}
.iv-qa__wrap::after {
  right: 0;
}
/* レーン：中央にスナップ基準を置く */
.iv-qa__scroll {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 24px;
  padding: 4px 0;
  scroll-padding-inline: 50%;
  overscroll-behavior-x: contain;
}
/* カード：中央スナップ */
.iv-card {
  background: #faf7f6;
  border: 1px solid #e6d9d5;
  border-radius: 12px;
  box-sizing: border-box;
  overflow: hidden;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}
.iv-card__img img {
  width: 100%;
  height: auto;
  display: block;
}
.iv-card__body {
  padding: 14px 16px 18px;
}
.iv-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.iv-card__color {
  width: 14px;
  height: 14px;
  border-radius: 2px;
}
.iv-card__name {
  font-weight: 700;
  font-size: 15px;
}
.iv-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}
/* 幅：SP=1枚（iPad縦もこちら） / PC=2枚 */
@media (max-width:959px) {
  .iv-qa__scroll .iv-card {
    flex: 0 0 88%;
  }
}
@media (min-width:960px) {
  .iv-qa__scroll .iv-card {
    flex: 0 0 calc(50% - 12px);
  }
}
/* ナビボタン */
.iv-qa__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  line-height: 34px;
  text-align: center;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: #ea4c89;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
  z-index: 10;
}
.iv-qa__nav.is-prev {
  left: 10px;
}
.iv-qa__nav.is-next {
  right: 10px;
}
/* Qの塊間の余白 */
.iv-qa {
  margin-bottom: 15px;
}
.iv-qa:last-of-type {
  margin-bottom: 0;
}
/* ----------------------------------------------------------
   4) まとめ（画像40%＋テキスト60% / SPは縦）
---------------------------------------------------------- */
.iv-summary {
  border: 1px solid #e6d9d5;
  border-radius: 12px;
  background: #fff7f8;
  padding: 18px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .06);
  margin-top: 24px;
}
.iv-summary__title {
  font-weight: 800;
  font-size: clamp(18px, 2vw, 22px);
  margin: 0 0 12px;
}
.iv-summary__box {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
}
/* PC：40/60 */
.iv-summary__box--image {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: nowrap;
}
.iv-summary__image {
  flex: 0 0 40%;
  max-width: 40%;
  margin: 0;
}
.iv-summary__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.iv-summary__content {
  flex: 1 1 60%;
  max-width: 60%;
  min-width: 0;
}
/* SP：縦並び */
@media (max-width:959px) {
  .iv-summary__box--image {
    flex-direction: column;
  }
  .iv-summary__image, .iv-summary__content {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* 文字サイズ（本文/リスト少し大きめ） */
.iv-summary__head {
  font-weight: 700;
  font-size: 15px;
  margin: 10px 0 6px;
  padding-bottom: 2px;
  border-bottom: 2px solid #d9a3b5;
}
.iv-summary__list {
  margin: 0 0 12px 1.2em;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.9;
  color: #333;
}
.iv-summary__text {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.9;
  color: #333;
}
/* ----------------------------------------------------------
   5) 最終パッチ：SPで要約画像がはみ出さない（figure既定margin対策）
---------------------------------------------------------- */
@media (max-width:768px) {
  html, body {
    max-width: 100%;
    overflow-x: hidden;
  } /* 念のための安全網 */
  .iv-intro figure {
    margin: 0 !important;
  }
  .iv-intro__image img {
    margin: 0 auto;
  }
}
/* ----------------------------------------------------------
   6) 最終調整
   - タイトル中央寄せ
   - SP時：右端のわずかな切れを防ぐ
---------------------------------------------------------- */
/* インタビューページタイトルを中央寄せ（タイトル要素クラスは適宜） */
.iv-hero__inner h1, .iv-hero__inner .iv-title, .iv-hero__inner .iv-headline {
  text-align: center;
  margin: 0 auto;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.4;
}
/* スマホ：Q&A枠が1〜2px見切れるのを防止 */
@media (max-width:768px) {
  .iv-qa__wrap {
    margin-right: 2px;
  }
  .iv-qa__scroll {
    padding-right: 26px !important;
    scroll-padding-inline: 26px !important;
  }
}
/* ===== ① Interview タイトル画像を常にセンター ===== */
.iv-qa-grid__title {
  display: block;
  text-align: center;
  margin: 12px auto 20px !important;
}
.iv-qa-grid__title img {
  display: block;
  max-width: min(680px, 92vw);
  height: auto;
  margin: 0 auto;
}
/* ===== ② SP（および iOS）の “右端数px切れ” と “左寄り” 修正 ===== */
@media (max-width:959px) {
  .iv-qa__wrap {
    padding: 0 !important;
  }
  .iv-qa__scroll {
    padding-inline: 16px !important;
    scroll-padding-inline: 16px !important;
    gap: 16px !important;
  }
  .iv-qa__scroll .iv-card {
    flex: 0 0 calc(100% - 32px) !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
    scroll-margin-inline: 16px !important;
  }
}
/* iPhone Safari 用の保険（WebKit 限定セレクタ） */
@supports (-webkit-touch-callout:none) {
  @media (max-width: 959px) {
    .iv-qa__scroll {
      -webkit-overflow-scrolling: touch;
      padding-inline: 16px !important;
      scroll-padding-inline: 16px !important;
    }
    .iv-qa__scroll .iv-card {
      flex-basis: calc(100% - 32px) !important;
      scroll-margin-inline: 16px !important;
    }
  }
}
/* ぼかし自体を常に無効化する場合（必要に応じて enable）*/
.iv-qa__wrap::before, .iv-qa__wrap::after {
  content: none !important;
}
/* ----------------------------------------------------------
   補足ボックス（アルバム情報など）
---------------------------------------------------------- */
.iv-summary__note {
  background: #f3f4f6;        /* 薄いグレー */
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 8px;
  color: #333;
  line-height: 1.8;
  font-size: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.iv-summary__note a {
  color: #0066cc;
  text-decoration: underline;
}
.iv-summary__note b {
  color: #000;
}
/* アルバム情報の<li>のみマーカーを非表示にする */
.iv-summary__list--no-marker {
  list-style: none;
  margin-left: 0; /* 他の項目と揃える */
  padding-left: 0;
}