@charset "UTF-8";

/* 全体のフォント設定 (メイリオ優先) */
body {
  font-family: "Meiryo", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #4a423d; /* 温かみのあるダークブラウン */
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

/* ページ全体のコンテナ */
.live-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
}

.live-title {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #4a423d;
}

/* スマホ改行用 */
.sp-br {
  display: inline;
}

/* プレイヤー周り */
.fp-container {
  margin: 0 auto 10px;
  max-width: 1200px;
  width: 100%;
}

/* セクション共通設定 */
.section-title {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 35px;
  position: relative;
}

/* ボルドーの下線 */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #a22041; /* ボルドー */
  margin: 12px auto 0;
  border-radius: 2px;
}

/* 商品セクション */
.item-section {
  margin: 40px auto 60px;
  max-width: 900px;
}

.item-grid {
  display: grid;
  gap: 40px 30px;
  grid-template-columns: repeat(3, 1fr);
}

.item-card {
  background: transparent;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: none;
  transition: opacity 0.3s;
  overflow: hidden;
}

.item-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #fff;
}

.item-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
  border-radius: 4px;
}

/* マウスオーバー時の挙動：白く半透明にする */
.item-card:hover img {
  opacity: 0.6;
}

.item-info {
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.item-name {
  font-size: 15px;
  font-weight: bold;
  height: auto;
  overflow: visible;
  display: block;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

/* イベントセクション */
.event-section {
  margin: 60px auto 40px;
  max-width: 1000px;
  padding: 40px 20px;
  background-color: #fff;
  border-top: 2px dashed #d7c4bb; /* ベージュ系の破線 */
}

.event-banner {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 15px;
  text-align: center;
}

.event-banner img {
  width: 100%;
  height: auto;
  box-shadow: none;
  border-radius: 0;
}

.event-catch {
  text-align: center;
  margin-bottom: 30px;
}

.event-catch-sub {
  font-size: 14px;
  color: #a22041;
  font-weight: bold;
  display: block;
  margin-bottom: 4px;
  line-height: 1.4;
}

.event-catch-main {
  font-size: 26px;
  font-weight: bold;
  color: #4a423d;
  line-height: 1.4;
  margin-top: 2px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.event-venue-card {
  background: #fcfaf8;
  padding: 18px;
  border-radius: 8px;
  border: none;
}

.venue-name {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  background: #a22041;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 12px;
  border-radius: 20px;
}

.venue-detail {
  font-size: 13px;
  line-height: 1.5;
}

.venue-place {
  font-weight: bold;
  margin-bottom: 4px;
  color: #5d4037;
}

.venue-address {
  font-size: 11px;
  color: #666;
  margin-bottom: 8px;
}

/* 地図リンク用スタイル */
.venue-map-link {
  margin-bottom: 12px;
}
.venue-map-link a {
  color: #a22041;
  text-decoration: underline;
  font-size: 11px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}
.venue-map-link a:hover {
  text-decoration: none;
}
.venue-map-link .icon-window {
  fill: #a22041;
  width: 12px;
  height: 12px;
  margin-left: 4px;
}

.venue-time-label {
  font-size: 11px;
  font-weight: bold;
  border-bottom: 1px solid #a22041;
  margin-bottom: 6px;
  padding-bottom: 2px;
  color: #a22041;
}

.venue-time-item {
  font-size: 12px;
  margin-bottom: 3px;
}

/* イベント関連リンクボタン */
.event-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 30px 0;
}

.event-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 340px;
  padding: 13px 20px;
  background-color: #a22041;
  color: #fff !important;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  border-radius: 30px;
  transition: background-color 0.3s;
}

.event-link-btn:hover {
  background-color: #8a1b37;
  opacity: 1;
}

.event-link-btn:not(.is-note)::after {
  content: '>';
  margin-left: 8px;
  font-weight: normal;
}

/* 別タブアイコン用スタイル */
.icon-window {
  width: 14px;
  height: 14px;
  fill: #fff;
  margin-left: 8px;
}

.event-footer {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  color: #4a423d;
  margin-top: 15px;
}

/* モバイル対応 (767px以下) */
@media (max-width: 767px) {
  .live-title {
    font-size: 20px;
  }
  .sp-br {
    display: block;
    margin-top: 5px;
  }
  .item-section {
    max-width: 100%;
    margin-bottom: 40px;
  }
  .item-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
  .item-name {
    font-size: 13px;
  }

  /* イベントSP */
  .event-section {
    margin: 40px 0 0;
    padding: 30px 15px;
  }
  .event-catch-main {
    font-size: 20px;
  }
  .event-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .venue-name {
    font-size: 14px;
  }
  .event-banner {
    max-width: 220px;
  }
  .event-link-btn {
    font-size: 13px;
    padding: 10px 15px;
  }
  .icon-window {
    width: 12px;
    height: 12px;
  }
  .event-footer {
    font-size: 18px;
  }
}

/* 完全に独立した注釈エリア */
.audio-notice-box {
  width: 100%;
  max-width: 1200px;
  margin: 1px auto 40px; /* プレイヤーとの間隔（15px程度が自然です） */
  padding: 0 15px;
  text-align: center;      /* 子要素を中央寄せ */
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.audio-notice-text {
  display: inline-block;
  background: none;        /* 背景なし */
  border: none;            /* 枠線なし */
  color: #a22041;          /* ベルメゾンのアクセントカラー */
  padding: 0;              /* 余計な余白を消去 */
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  margin: 0 auto;
}

/* スマホ対応 */
@media (max-width: 767px) {
  .audio-notice-box {
    margin: 10px auto 30px;
  }
  .audio-notice-text {
    font-size: 12px;
  }
}

/* ライブコーマース動画の重なり順を最前面に修正 */
.fp-container {
  position: relative !important;
  z-index: 10001 !important; /* 一般的なヘッダーのz-index（1000〜9999）を上回る値 */
}

/* 全画面表示（ブラウザ標準およびプレイヤー独自機能）への対応 */
.fp-player, 
.fp-player:fullscreen, 
.fp-player:-webkit-full-screen,
[class*="fp-"][class*="-fullscreen"] {
  z-index: 2147483647 !important; /* システム上の最大値 */
}