/* issues-navigation.css - PC専用 - Phase④ */

/* ===================================================
   PC専用スタイル: 768px以上でのみ適用
   SPとの完全分離（相互干渉防止）
   =================================================== */

#bust-issues {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 80px;
    
    /* Phase③: Parallax高さ統一（60vh最小高） */
    min-height: 60vh;
}

/* BUST-ISSUES — 点線のみ表示（実線削除） */
#bust-issues .ptlIssues__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 親テーマの個別ボーダー指定を無効化 */
#bust-issues .ptlIssues__list > li.ptlIssues__item {
  border: 0;
}

/* 項目間の実線も削除 */
#bust-issues .ptlIssues__list > li.ptlIssues__item + li.ptlIssues__item {
  border-top: none;
}

/* BUST-ISSUES: 点線のみの下線（詳細度を上げて!important不要に） */
#bust-issues .ptlIssues__list > li.ptlIssues__item,
#bust-issues .ptlIssues__list .ptlIssues__item {
  border-bottom: 1px dashed rgba(0,0,0,.18);
}

/* ===========================
   ISSUES: NAVIGATIONと完全一致
   =========================== */

/* 基本構造 - パララックス用にflex垂直中央配置を維持 */
#bust-issues {
  /* Phase③修正前: min-height: clamp(520px, 60vh, 720px); */
  /* Phase③修正前: max-height: clamp(520px, 60vh, 720px); */
  min-height: clamp(520px, 60vh, 720px); /* パララックス用の固定高さ復元 */
  max-height: clamp(520px, 60vh, 720px); /* パララックス用の固定高さ復元 */
  display: flex; /* 垂直中央配置のためにflex復元 */
  align-items: center; /* 垂直中央配置 */
  justify-content: center; /* 水平中央配置 */
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* コンテンツ余白 - NAVIGATIONと完全一致 */
#bust-issues.ptlIssues .ptl-section__inner,
#bust-issues .ptlIssues .ptl-section__inner,
#bust-issues .ptl-section__inner {
  width: 100%;
  position: relative;
  z-index: 1;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: var(--ptl-container-pad, 20px);
  padding-right: var(--ptl-container-pad, 20px);
  max-width: var(--ptl-container-max, 1200px);
  margin: 0 auto;
  box-sizing: border-box;
}

/* 背景レイヤ */
#bust-issues .ptlIssues__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: transparent;
  transform-origin: center center;
}

/* 背景メディア（動画/画像） */
#bust-issues .ptlIssues__video,
#bust-issues .ptlIssues__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  transform-origin: center center;
}

#bust-issues .ptlIssues__video {
  object-fit: cover;
}

#bust-issues .ptlIssues__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
}

/* オーバーレイ */
#bust-issues .ptlIssues__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

/* BUST-ISSUES: コンテンツ部分のスタイル */
#bust-issues .ptlIssues__head {
  text-align: center;
  margin-bottom: clamp(8px, 2vw, 12px);
}

/* PC: タイトルエリア */
#bust-issues .ptlIssues__titleArea {
  margin-bottom: clamp(48px, 6vw, 64px);
}

#bust-issues .ptlIssues .ptl-section__subtitleLine {
  width: clamp(180px, 28vw, 560px);
  height: clamp(16px, 3.2vw, 28px);
  margin: 10px auto 26px;
  background: url('../img/bg_1.png') center/contain no-repeat;
}

/* カード内のコンテンツスタイル - 25%透明度 */
#bust-issues .ptlIssues__card {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  padding: clamp(12px, 2vw, 18px);
  max-width: var(--ptl-container-max, 1200px);
  margin: 0 auto;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* PCでもカードに上下余白を追加（背景との接地防止） */

#bust-issues .ptlIssues__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#bust-issues .ptlIssues__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  column-gap: 10px;
  padding: 8px 6px;
  border-bottom: 1px dashed rgba(0,0,0,.18);
}

#bust-issues .ptlIssues__icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#bust-issues .ptlIssues__icon img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

#bust-issues .ptlIssues__text {
  color: #fff;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ========================================
   セクション余白（独自管理）
======================================== */

/* PC: padding削除、margin-bottomのみで管理 + 高さ統一 */

/* PC: SP専用改行を非表示 */
#bust-issues .sp-br {
  display: none;
}
