/* ============================================================
   media-sakai.css — 酒井章汰選手メディアページ専用スタイル
============================================================ */

/* ===== 共通コンテナ ===== */
.ms-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
}

.ms-label {
  font-family: var(--ff-serif);
  font-size: .72rem;
  letter-spacing: .22em;
  color: var(--c-gold);
  text-transform: uppercase;
  margin: 0 0 .6rem;
}

/* ===== ヒーロー（白パステル背景） ===== */
.ms-hero {
  background-color: #FAFAF8;
  background-image:
    radial-gradient(circle at 10% 15%, rgba(248,184,200,.22) 0%, transparent 10%),
    radial-gradient(circle at 88% 10%, rgba(184,216,248,.18) 0%, transparent  8%),
    radial-gradient(circle at 90% 80%, rgba(200,240,216,.20) 0%, transparent  9%),
    radial-gradient(circle at  5% 85%, rgba(220,200,248,.16) 0%, transparent  7%),
    radial-gradient(circle at 55% 92%, rgba(248,224,176,.18) 0%, transparent  8%),
    radial-gradient(circle at 30% 45%, rgba(184,216,248,.12) 0%, transparent  6%),
    radial-gradient(circle at 72% 38%, rgba(248,184,200,.10) 0%, transparent  7%);
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
  border-bottom: 1px solid #edf5f0;
}

.ms-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  color: #5a7a65;
  margin-bottom: 1.8rem;
}

.ms-hero-breadcrumb a {
  color: #5a7a65;
  text-decoration: none;
}

.ms-hero-breadcrumb a:hover {
  color: #1a3a2a;
}

/* 2カラム：テキスト左 / 画像右 */
.ms-hero-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 680px) {
  .ms-hero-body {
    grid-template-columns: 1fr;
  }
}

.ms-hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ms-hero-badge {
  display: inline-block;
  background: #e8382a;
  color: #ffffff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 20px;
  align-self: flex-start;
}

.ms-hero-heading {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: #163A2E;
  line-height: 1.4;
  margin: 0;
}

.ms-hero-sub {
  font-size: .88rem;
  color: #6E6E6E;
  line-height: 1.8;
  margin: 0;
  letter-spacing: .03em;
}

/* Hero 画像カード（シンプル白・パステル装飾なし） */
.ms-hero-img-card {
  aspect-ratio: 3 / 4;
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
}

.ms-hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (max-width: 680px) {
  .ms-hero-img-card {
    max-width: 280px;
    order: -1;
  }
}

/* ===== 紹介文 ===== */
.ms-intro-sec {
  background: #F3EEE9;
  padding: 4rem 0;
}

.ms-intro-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.ms-intro-body p {
  font-size: .92rem;
  color: #6E6E6E;
  line-height: 1.9;
  margin: 0;
}

/* ===== ギャラリー ===== */
.ms-gallery-sec {
  background: #0d1f18;
  padding: 4rem 0 3rem;
}

.ms-gallery-sec .ms-label {
  color: var(--c-gold-light);
}

.ms-gallery-heading {
  font-family: var(--ff-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 2rem;
}

/* 横スクロールラッパー */
.ms-gallery-scroll-wrap {
  position: relative;
  overflow: hidden;
}

.ms-gallery-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 0 clamp(1rem, 5vw, 3rem) 1.6rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  /* スクロールバー非表示 */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ms-gallery-track::-webkit-scrollbar {
  display: none;
}

.ms-gallery-track.is-dragging {
  cursor: grabbing;
  user-select: none;
}

/* 各アイテム */
.ms-gallery-item {
  flex: 0 0 auto;
  width: clamp(220px, 36vw, 360px);
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  margin: 0;
  scroll-snap-align: start;
  position: relative;
  background: #1a3a2a;
}

.ms-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease);
}

.ms-gallery-item:hover img {
  transform: scale(1.04);
}

/* 注目カット */
.ms-gallery-item-featured {
  width: clamp(280px, 44vw, 460px);
  border: 2px solid var(--c-gold);
}

.ms-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .5rem .8rem;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  font-size: .68rem;
  color: var(--c-gold-light);
  font-weight: 600;
  letter-spacing: .06em;
}

/* スクロールヒント */
.ms-gallery-hint {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: flex-end;
  padding: .4rem clamp(1rem, 5vw, 3rem) 0;
  font-size: .68rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
}

/* ===== サポート内容 ===== */
.ms-support-sec {
  background: #EDE8E3;
  padding: 4rem 0;
}

.ms-section-heading {
  font-family: var(--ff-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 400;
  color: #163A2E;
  margin: .4rem 0 2rem;
}

.ms-support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 580px) {
  .ms-support-grid { grid-template-columns: 1fr; }
}

.ms-support-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.4rem 1.4rem 1.2rem;
  border: 1px solid #dceae2;
}

.ms-support-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: .7rem;
  color: var(--c-gold);
  letter-spacing: .12em;
  margin-bottom: .5rem;
}

.ms-support-title {
  font-size: .95rem;
  font-weight: 700;
  color: #1a3a2a;
  margin: 0 0 .5rem;
}

.ms-support-body {
  font-size: .82rem;
  color: #3a5040;
  line-height: 1.8;
  margin: 0;
}

/* ===== CTA ===== */
.ms-cta-sec {
  background: #1a3a2a;
  padding: 4rem 0;
  text-align: center;
}

.ms-cta-heading {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.7;
  margin: 0 0 1.8rem;
}

.ms-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.ms-btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #06c755;
  color: #ffffff;
  font-size: .88rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s ease, transform .15s ease;
}

.ms-btn-line:hover {
  background: #05b04c;
  transform: translateY(-2px);
}

.ms-btn-tel {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.12);
  color: #ffffff;
  font-size: .88rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.3);
  transition: background .2s ease;
}

.ms-btn-tel:hover {
  background: rgba(255,255,255,.22);
}

.ms-cta-note {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  margin: 0;
}

/* ===== 関連リンク ===== */
.ms-related-sec {
  background: #F3EEE9;
  padding: 2rem 0;
}

.ms-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.ms-related-link {
  display: inline-block;
  background: #f0f7f3;
  border: 1px solid #cde3d5;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .78rem;
  color: #2d6a4f;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease;
}

.ms-related-link:hover {
  background: #2d6a4f;
  color: #ffffff;
  border-color: #2d6a4f;
}

/* ===== Hero右側画像（16:9 横長） ===== */
.sakai-hero-image-card {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: #f7f7f4;
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
  margin: 0 auto;
}

.sakai-hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* ===== 選手インタビュー画像（結合縦長・自然比率） ===== */
.sakai-interview-composite-card {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.sakai-interview-composite-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ===== 写真使用許諾 ===== */
.ms-photo-notice {
  background: #F3EEE9;
  padding: .6rem 0 1.4rem;
  text-align: center;
}

.ms-photo-notice p {
  font-size: .68rem;
  color: #8a9e92;
  margin: 0;
}

/* ============================================================
   ストーリーセクション（ms-story-*）
   雑誌特集スタイル：縦長カード・センタリング・白＋パステル
============================================================ */

/* ===== パステルボール背景ミックスイン ===== */
:root {
  --pastel-bg:
    radial-gradient(circle at 10% 15%, rgba(248,184,200,.20) 0%, transparent 10%),
    radial-gradient(circle at 88% 10%, rgba(184,216,248,.16) 0%, transparent  8%),
    radial-gradient(circle at 90% 80%, rgba(200,240,216,.18) 0%, transparent  9%),
    radial-gradient(circle at  5% 85%, rgba(220,200,248,.14) 0%, transparent  7%),
    radial-gradient(circle at 55% 92%, rgba(248,224,176,.16) 0%, transparent  8%);
}

/* ===== リード文 ===== */
.ms-lead-sec {
  background: #F3EEE9;
  padding: 3rem 0 2rem;
}

.ms-lead-text {
  font-size: .95rem;
  color: #6E6E6E;
  line-height: 1.95;
  margin: .8rem 0 0;
  max-width: 680px;
}

/* ===== ストーリーラッパー ===== */
.ms-story {
  background: #F3EEE9;
}

/* ===== 各ストーリーセクション ===== */
.ms-story-sec {
  padding: 4rem 0 3rem;
}

/* alt はわずかに薄いのみ（白ベース維持） */
.ms-story-sec-alt {
  background: transparent;
}

/* ===== 横長カード・雑誌レイアウト ===== */
.ms-story-article,
.ms-story-row,
.ms-story-row-rev {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 760px;
  margin: 0 auto;
  direction: ltr;
}

.ms-story-row-rev > * {
  direction: ltr;
}

/* ===== 2枚横並び画像グリッド ===== */
.ms-story-img-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  align-items: center;
}

.ms-story-img-grid .ms-story-img-wrap {
  max-width: 100%;
  margin: 0;
}

@media (max-width: 768px) {
  .ms-story-img-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== 画像カード（16:9 横長・装飾なし白背景） ===== */
.ms-story-img-wrap {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  margin: 0 auto;
}

.ms-story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform .4s var(--ease);
}

.ms-story-img-wrap:hover img {
  transform: scale(1.02);
}

/* ===== テキストエリア ===== */
.ms-story-body {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.ms-story-num {
  font-family: var(--ff-serif);
  font-size: .68rem;
  letter-spacing: .2em;
  color: var(--c-gold);
  font-weight: 400;
}

.ms-story-heading {
  font-family: var(--ff-serif);
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  font-weight: 400;
  color: #163A2E;
  line-height: 1.4;
  margin: 0;
}

.ms-story-text {
  font-size: .9rem;
  color: #6E6E6E;
  line-height: 1.9;
  margin: 0;
}

/* ===== 選手コメント引用ブロック ===== */
.ms-athlete-quote {
  margin: 1rem 0 0;
  padding: 1.1rem 1.4rem;
  background: rgba(240,247,243,.85);
  border-left: 3px solid var(--c-dgreen1);
  border-radius: 0 12px 12px 0;
}

.ms-athlete-quote p {
  font-size: .88rem;
  color: #1a3a2a;
  line-height: 1.9;
  margin: 0 0 .5rem;
  font-weight: 500;
}

.ms-athlete-quote cite {
  font-size: .7rem;
  color: var(--c-dgreen1);
  font-style: normal;
  font-weight: 600;
  letter-spacing: .04em;
}

/* ===== セクション区切り ===== */
.ms-story-sec + .ms-story-sec {
  border-top: 1px dashed rgba(180,220,200,.45);
}
