@charset "UTF-8";
/**
 * =========================
 *    features/index.html 専用
 *    ※2カラムの骨格(.layout/.main/.side)は触らない
 * =========================
 *
 * @format
 */
.ticketsHero {
  padding: 20px 0 6px;
}

.ticketsHero__title {
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0.02em;
  margin: 0;
}

.tickets {
  display: grid;
  gap: 18px;
  padding-bottom: 24px;
}

.ticketsCard {
  background: #fff;
  border: 1px solid var(--line, #ddd);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

.ticketsCard__head {
  background: #749db7;
  /* 画像の帯色イメージ */
  color: #fff;
  padding: 12px 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
}

.ticketsCard__body {
  padding: 16px;
  background: #fffffb;
  /* 画像の薄いベージュ地イメージ */
}

.ticketsSubTitle {
  display: block;
  font-weight: 900;
  margin: 0 0 10px;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid var(--line, #ddd);
  border-radius: 10px;
  font-weight: bold;
}

.ticketsTable {
  width: 100%;
  table-layout: fixed;
  font-weight: 900;
  border-collapse: separate; /* ★ collapse をやめる */
  border-spacing: 0 8px; /* ★ 縦だけ行間（好みで 12〜18px） */
  margin: 0 0 10px;
  font-size: 0.98rem;
}

.ticketsTable td {
  padding: 0; /* 行間は border-spacing に任せる */
  vertical-align: top;
}

.ticketsTable td:last-child {
  text-align: right;
  white-space: nowrap;
}

.ticketsTable .ticketsTable__item {
  padding: 12px 12px; /* 帯の中の余白はこっちで */
  background-color: #efead9;
  border-radius: 8px;
}

.ticketsTable tr + tr td {
  padding-top: 16px; /* ← 行間ここで作る */
}

.ticketsNotes {
  margin: 10px 0 0;
  padding-left: 1.2em;
  line-height: 1.6;
  font-size: 0.95rem;
}

.ticketsNotes li {
  margin: 2px 0;
}

.ticketsList {
  margin: 0;
  padding-left: 1.2em;
  line-height: 1.7;
  font-size: 0.95rem;
}

.ticketsEm {
  color: #d04a4a;
  font-weight: 900;
}

.pointCard {
  display: grid;
  gap: 14px;
  align-items: center;
  grid-template-columns: 160px 1fr;
}

.pointCard__img {
  width: 160px;
  height: 110px;
  border-radius: 0px;
  border: 1px solid var(--line, #ddd);
  background: #fff;
  object-fit: cover;
  display: block;
}

.pointCard__title {
  margin: 0 0 6px;
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1.35;
}

.pointCard__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 560px) {
  .pointCard {
    grid-template-columns: 1fr;
  }
  .pointCard__img {
    width: 100%;
    height: 160px;
  }
}
/* ===== ポイントカード：PC時だけ画像を大きく ===== */
@media (min-width: 768px) {
  .pointCard {
    grid-template-columns: 260px 1fr; /* ← 220 → 260 に */
    align-items: flex-start;
  }
  .pointCard__img {
    width: 260px; /* ← 220 → 260 */
    height: 170px; /* ← 150 → 少し余裕を */
    object-position: top; /* ★後述 */
  }
}/*# sourceMappingURL=tickets.css.map */