/* ===== 全体 ===== */
.artist_event_body {
  margin: 0;
  font-family: "Segoe UI", "Noto Sans JP", sans-serif;
  background: #ffffff;
  color: #1e293b;
  line-height: 1.7;
}

/* ===== バナー ===== */
.artist_event_banner {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 2 / 1;
  background: url("https://tokyomtg.com/img/nav/banner_2026-04-15_artistmeetup_v3.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.artist_event_banner h1 {
  background: rgba(255, 255, 255, 0.85);
  padding: 15px 30px;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: #0f172a;
}

/* ===== セクション ===== */
.artist_event_section {
  max-width: 1000px;
  margin: 70px auto;
  padding: 0 20px;
}

.artist_event_section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  border-left: 10px solid #000000;
  padding-left: 10px;
  color: #000000;
  
}

/* ===== テキストボックス ===== */
.artist_event_text-box {
  background: #f8fafc;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 1.5rem;
}

.artist_event_text-box-noback {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 1.5rem;
}

/* ===== グリッド ===== */
.artist_event_grid {
  display: grid;
  grid-template-columns: 1fr; /* ←これで縦並び */
  gap: 20px;
  max-width: 800px; /* ←中央に寄せてギャラリー感出す */
  margin: 0 auto;
}

/* ===== カード ===== */
.artist_event_card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.artist_event_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.artist_event_card img {
  width: 100%;
  display: block;
}

.artist_event_card-content {
  padding: 15px;
  font-size: 1.2rem;
}

.artist_event_card-title {
  font-size: 20pt;
  font-weight: bold;
  margin-bottom: 5px;
}

.artist_event_card-sub {
  font-size: 0.9rem;
  color: #64748b;
}

/* ===== 価格表テーブル全体 ===== */
.artist_event_menu-table {
  margin-top: 12px;
}

/* ===== テーブル ===== */
.artist_event_menu-table table {
  max-width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
}

/* ===== ヘッダー ===== */
.artist_event_menu-table th {
  text-align: left;
  font-weight: 600;
  padding: 6px 12p;
  border-bottom: 1px solid #e2e8f0;
}

/* ===== セル ===== */
.artist_event_menu-table td {
  padding: 6px 12px;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
}

/* ===== 記号の強調 ===== */
.artist_event_menu-table td:last-child {
  text-align: right;
  font-weight: bold;
}

/* ===== カード画像グリッド ===== */
.artist_event_image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 200px)); /* 4列 */
  gap: 8px;
  margin-top: 10px;
  justify-content: center;
}

/* ===== 画像 ===== */
.artist_event_image-grid img {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

/* カード画像が1枚しかない場合の調整用クラス */
.artist_event_image-grid.artist_event_is-1 {
  grid-template-columns: repeat(1, minmax(0, 200px));
}

/* カード画像が2枚しかない場合の調整用クラス */
.artist_event_image-grid.artist_event_is-2 {
  grid-template-columns: repeat(2, minmax(0, 200px));
}

/* カード画像が3枚しかない場合の調整用クラス */
.artist_event_image-grid.artist_event_is-3 {
  grid-template-columns: repeat(2, minmax(0, 200px));
}

/* サンプル画像用クラス */
.artist_event_sample-image {
  max-width: 300px;
  height: auto;
}

/* ホバー */
.artist_event_image-grid img:hover {
  transform: scale(1.05);
}

/* ===== テキスト全体 ===== */
.artist_event_event-text {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #e2e8f0;
}

/* ===== タイトル ===== */
.artist_event_event-text h3 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  color: #0f172a;
}

/* ===== 本文 ===== */
.artist_event_event-text p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #475569;
}

/* ===== リンクエリア ===== */
.artist_event_links {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ===== リンク ===== */
.artist_event_links a {
  font-size: 2rem;
  text-decoration: none;
  color: #1f3a8a;
  position: relative;
  width: fit-content;
}

/* 下線アニメーション */
.artist_event_links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: #1f3a8a;
  transition: width 0.3s ease;
}

.artist_event_links a:hover::after {
  width: 100%;
}

/* ===== ボタン ===== */
.artist_event_button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #1a1a1a;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 15px;
}

.artist_event_button:hover {
  background-color: #0f172a;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* ===== リスト ===== */
.artist_event_ul {
  padding-left: 20px;
  list-style: disc inside;
  margin: 0;
}

/* ===== 目次 ===== */
.artist_event_table-of-contents {
  padding: 40px 30px !important;
  margin: 50px auto !important;
}

.artist_event_table-of-contents h2 {
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #0f172a;
}

.artist_event_toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.artist_event_toc-item {
  position: relative;
}

.artist_event_toc-item a {
  display: block;
  padding: 20px;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  background-color: #1a1a1a;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.artist_event_toc-item a:hover {
  background-color: #0f172a;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* ===== スマートフォン対応 ===== */
@media (max-width: 768px) {
  .artist_event_body {
    font-size: 0.95rem;
  }

  .artist_event_section h2 {
    font-size: 1.3rem;
  }

  .artist_event_text-box {
    font-size: 1.2rem;
  }

  .artist_event_toc-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .artist_event_toc-item a {
    padding: 14px;
    font-size: 0.95rem;
  }
}
