@charset "UTF-8";
/* ==========================================================
   MusicPocket Interview Base（スマホ優先 → PC拡張）
   完全版: 2025-11-04
   ========================================================== */
/* ------------------------------
   Reset & Base
------------------------------ */
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #222;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
  font-size: 15px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
section {
  padding: 32px 12px;
  margin: 0 auto;
  max-width: 1200px;
}
/* 共通トーン（記事見出し色・明朝体） */ :root {
  --mp-mincho: "Hiragino Mincho ProN", "Yu Mincho", serif;
  --mp-article-title-color: #222; /* h2/h3等の見出し色 */
  --mp-article-accent: #333; /* 要約dtや本文アクセント色 */
}
/* ------------------------------
   YouTube Hero（高画質・比率固定）
------------------------------ */
.mp-hero {
  background: #fff;
  margin: 10px auto 14px; /* 余白は控えめ */
  padding: 0;
}
.mp-hero__inner {
  position: relative;
  aspect-ratio: 16 / 9; /* 16:9固定 */
  max-width: 1200px; /* 1080pが選ばれやすい幅 */
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}
.mp-hero__movie {
  position: absolute;
  inset: 0;
}
.mp-hero__movie iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  /* 画質劣化を招く指定は使わない（cover/zoom/transform等） */
  object-fit: contain; /* 等倍フィットの保険 */
  transform: none;
  filter: none;
  -webkit-transform: none;
  -webkit-filter: none;
  image-rendering: auto;
}
@media (max-width: 599.98px) {
  .mp-hero__inner {
    border-radius: 12px;
  }
}
/* ------------------------------
   Interview Intro（導入）
------------------------------ */
.mp-intro {
  background: #fff;
  padding: 20px 12px;
  margin: 0 auto 16px;
}
.mp-intro > p {
  text-align: center;
  margin: 0 auto 16px;
  font-size: 15px;
  line-height: 1.9;
  color: #222;
  max-width: 760px;
}
/* タイトル（上下罫線・中央寄せ・明朝） */
.mp-intro__title {
  font-family: var(--mp-mincho);
  font-weight: 700;
  color: #222;
  text-align: center;
  margin: 12px auto 16px;
  padding: 4px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  line-height: 1.5;
  font-size: clamp(18px, 2.6vw, 26px);
  max-width: 90%;
  letter-spacing: .02em;
}
/* 画像大きめ + テキスト近接（SP） */
.mp-intro__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* 画像をやや大きく */
  align-items: center;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.mp-intro__image img {
  width: 100%;
  max-width: none;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
  object-fit: cover;
}
.mp-intro__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 4px;
}
.mp-intro__points dt {
  font-weight: 700;
  color: var(--mp-article-accent);
  margin-top: 8px;
}
.mp-intro__points dd {
  margin: 4px 0 10px 0;
  line-height: 1.7;
}
@media (max-width: 899.98px) {
  /* SPは縦並び1列 */
  .mp-intro__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 960px;
  }
}
/* ===== INTERVIEW タイトル：上罫線＋余白調整 ===== */

/* 既存の border-top 指定があれば無効化 */
.mp-qa-grid__title{
  position: relative;
  text-align: center;
  border-top: none !important;
  margin: 16px auto 14px;   /* 全体の上下余白（控えめ） */
  padding: 0;               /* ここでは余白を持たせない */
}

/* タイトル画像の上に薄いグレーの線。線の“下”に余白を付けて画像と離す */
.mp-qa-grid__title::before{
  content: "";
  display: block;
  width: min(92%, 1000px);
  height: 1px;
  background: #e6e6e6;
  margin: 0 auto 10px;      /* ← 線と画像の間のスペース（お好みで 8–14px） */
}

/* 画像側の微調整（安全策） */
.mp-qa-grid__title img{
  display: inline-block;
  vertical-align: top;
}

/* 直前がイントロ／ショップのときは“上の余白”をさらに小さく */
.mp-intro + .mp-qa-grid__title,
.mp-shop  + .mp-qa-grid__title{
  margin-top: 10px;         /* ← 上のスペースを圧縮 */
}

/* スマホは少しだけ広げる（読みやすさ用。不要なら削除OK） */
@media (max-width: 640px){
  .mp-qa-grid__title{ margin: 14px auto 12px; }
  .mp-qa-grid__title::before{ margin-bottom: 8px; }
}

/* ------------------------------
   Shop Info（補足・小型）
------------------------------ */
.mp-shop {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px 12px;
  margin: 20px auto;
  max-width: 740px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .04);
}
.mp-shop__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.mp-shop__logo img {
  width: 120px;
  height: auto;
  border-radius: 8px;
}
.mp-shop__info {
  text-align: center;
  font-size: 14px;
  color: #333;
  line-height: 1.7;
}
.mp-shop__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.mp-shop__address, .mp-shop__tel, .mp-shop__url {
  margin: 2px 0;
}
.mp-shop__url a {
  color: #036eb8;
  text-decoration: underline;
}
@media (min-width:900px) {
  .mp-shop__inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
  .mp-shop__logo img {
    width: 140px;
  }
  .mp-shop__info {
    text-align: left;
  }
}
/* ------------------------------
   Report / Summary（本文セクション）
------------------------------ */
/* h2（レポートタイトル） */
.mp-section-title {
  font-family: var(--mp-mincho);
  color: var(--mp-article-title-color);
  font-weight: 700;
  letter-spacing: .01em;
  text-align: center;
  font-size: clamp(18px, 3vw, 26px);
  margin: 8px 0 12px; /* 余白は控えめ */
}
.mp-section-lead {
  text-align: center;
  font-size: 15px;
  color: #444;
  margin-bottom: 24px;
}
/* 記事カードのグリッド：SP=1列 / PC=2列 */
.mp-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.mp-section__grid {
  display: grid;
  grid-template-columns: 1fr; /* SP 1列 */
  gap: 20px 16px;
  align-items: start;
}
@media (min-width:900px) {
  .mp-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* PC 2列 */
    gap: 28px 24px;
  }
}
.mp-section__block {
  width: auto;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px 16px 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .03);
}
.mp-section__block figure {
  margin: 8px 0 12px;
}
.mp-section__block figure img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.mp-section__block p {
  margin: 0 0 12px;
  line-height: 1.8;
}
/* h3（各ブロック見出し・明朝＆同色） */
.mp-section__sub {
  font-family: var(--mp-mincho);
  color: var(--mp-article-title-color);
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
  margin: 6px 0 8px;
}
/* ------------------------------
   Summary（下まとめ）
------------------------------ */
.mp-summary {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 32px 16px;
  text-align: center;
  max-width: 960px;
  margin: 40px auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
}
.mp-summary__title {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  color: #e4007f;
  margin-bottom: 16px;
}
.mp-summary__lead {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 14px;
}
.mp-summary__lead b {
  color: #036eb8;
}
/* ------------------------------
   Utility
------------------------------ */
strong {
  color: #111;
}
@media (min-width:1200px) {
  body {
    font-size: 16px;
  }
}
/* Qタグ（薄いグレー版） */
.mp-q {
  display: inline-block;
  margin: 0 0 6px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 700;
  color: #555; /* 文字：濃いめグレー */
  background: #f2f2f2; /* 背景：薄いグレー */
  border: 1px solid #e5e5e5; /* うっすら枠（不要なら削除OK） */
  border-radius: 999px;
}
/* Qの直後の見出しの余白を最小化（任意） */
.mp-section__block .mp-q + .mp-section__sub {
  margin-top: 2px;
}
/* ===== INTERVIEW タイトル画像を小さく中央表示に戻す ===== */
.mp-qa-grid__title{
  position: relative;
  text-align: center;
  margin: 16px auto 14px;
  padding: 0;
  border-top: none !important;
}

/* 上の薄い罫線（必要なら残す） */
.mp-qa-grid__title::before{
  content:"";
  display:block;
  width:min(92%, 1000px);
  height:1px;
  background:#e6e6e6;
  margin:0 auto 24px;  /* 罫線と画像の間 */
}

/* ★画像の幅を固定（もしくは小さめの可変）にして全幅化を抑止 */
.mp-qa-grid__title img{
  display:inline-block;
  width: 240px !important;                      /* ここで戻す（固定） */
  max-width: 60vw !important;                   /* 画面が狭い時だけ少し縮む安全策 */
  height:auto !important;
  vertical-align: top;
}

/* スマホは少しだけ小さめに */
@media (max-width: 640px){
  .mp-qa-grid__title{ margin:14px auto 12px; }
  .mp-qa-grid__title img{ width: 200px !important; }
}

/* 直前がイントロやショップ情報のとき、上余白を控えめに */
.mp-intro + .mp-qa-grid__title,
.mp-shop  + .mp-qa-grid__title{
  margin-top: 10px;
}
/* ===== Mini Player（スクロールで右下固定）===== */
#js-hero-inner{
  position: relative;
  aspect-ratio: 16/9;
}

/* pinned（右下ミニ表示） */
.is-mini #js-hero-inner{
  position: fixed;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom)); /* iOSの安全域対応 */
  width: min(360px, 42vw);
  max-width: 90vw;
  z-index: 9999;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  background: #000;
  transition: width .2s ease, right .2s ease, bottom .2s ease, transform .2s ease;
}

/* スマホでは少し大きめに */
@media (max-width: 640px){
  .is-mini #js-hero-inner{ width: 72vw; }
}

/* ボタン */
.mini-btn{
  position: absolute;
  right: 8px;
  width: 28px; height: 28px;
  border: 0; border-radius: 999px;
  background: rgba(0,0,0,.6);
  color: #fff; font-weight: 700; line-height: 28px;
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 2;
}
.mini-close{ top: 8px; }
.mini-restore{ top: 44px; }

/* ミニ状態でないときはボタン非表示（ホバー時だけ出したいなら調整） */
#js-hero-inner:not(.always-show) .mini-btn{ display: none; }
.is-mini .mini-btn{ display: grid; }

/* クリックしやすいように */
.mini-btn:active{ transform: scale(.95); }
