/* page-satellite-events.css */

.l-main {
  background-color: #F6F6F6;
}
/* ========== タイトル背景ビジュアル固定高さ ========== */
.p-satellite-venues__visual {
  position: relative;
  overflow: hidden;
  height: 256px;
  margin-top: 104px;
  background-color: #E7E7E7;
  background-repeat: no-repeat;
  background-position: center top;
  /* background-size: auto; */
  background-size: 1440px auto;
  background-image: url('../img/title_back_pc.png');
}

@media (max-width: 767px) {
  .p-satellite-venues__visual {
    height: 200px;
    background-size: 100% auto;
    background-image: url('../img/title_back_sp.png');
  }
}

/* ========== ビジュアル内タイトル上下中央配置 ＋ テキスト中央揃え ========== */
.p-satellite-venues__visual-inner {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 1152px;
  transform: translateY(-50%);
  text-align: left;
  z-index: 1;
}

.p-satellite-venues__title {
  margin: 0;
  color: #000;
  font-size: 32px;
  font-weight: 500;
}

/* ── 投稿カードリスト ── */
.p-satellite-venues-list__cards {
  max-width: 1152px;
  margin: 136px auto 0;
  padding-bottom: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 72px;
  justify-content: flex-start;
}
.p-satellite-venues-card {
  flex: 0 0 calc((100% - 144px) / 3);
  max-width: calc((100% - 144px) / 3);
  overflow: hidden;
  padding-bottom: 23px;
}
.p-satellite-venues-card__thumb {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 14px;
}


/* サムネイル画像が拡大するようにする */
.p-satellite-venues-card-thumb {
  overflow: hidden;
  height: 189px;
  margin-bottom: 14px;
}
/* 画像に拡大アニメーションとサイズ指定 */
.p-satellite-venues-card-thumb img {
  display: block;
  width: 100%;
  transition: transform 0.3s ease;
  transform-origin: center center;
}
/* hover時に拡大 */
.p-satellite-venues-card:hover .p-satellite-venues-card-thumb img{
  transform: scale(1.1);
}
/* hover時に透過 */
.p-satellite-venues-card-link {
  transition: opacity 0.3s;
}
.p-satellite-venues-card-link:hover {
  opacity: .8;
}


.p-satellite-venues-card__title {
  font-size: 18px;
  margin-bottom: 14px;
  font-weight: 400;
}
.satellite-venue-label {
  font-size: 13px;
  margin-bottom: 4px;
}
.main-event-title {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 8px;
}
.date, .time {
  font-size: 13px;
  margin-bottom: 4px;
}
.time {
  margin-top: 12px;
}
.p-satellite-venues-card__date,
.p-satellite-venues-card__time {
  font-size: 15px;
}


/* ========================================
  カード修正のCSS
======================================== */
.satellite-fee-type.is-free {
  color: #14BCFF;
  font-size: 13px;
  width: 86px;
  /* height: 24px; */
  line-height: 24px;
  text-align: center;
  background: transparent;
  border: 1px solid #14BCFF;
  display: inline-block;
  margin-bottom: 14px;
}
.satellite-fee-type.is-paid {
  color: #fff;
  font-size: 13px;
  width: 86px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background: #14BCFF;
  display: inline-block;
  margin-bottom: 14px;
}
.p-top-satellite-venues-card h3 {
  font-size: 18px;
  margin: 0 0 4px;
  font-weight: 400;
}
.satellite-venue-name {
  font-size: 13px;
  margin-bottom: 14px;
}
.satellite-event-name {
  font-size: 13px;
  margin-bottom: 14px;
}
.satellite-event-date {
  font-size: 13px;
  margin-bottom: 14px;
}
.satellite-event-time {
  font-size: 13px;
}







/* サテライト会場のカード全体をリンク */
.p-satellite-venues-card-link {
  transition: opacity 0.3s;
}
.p-satellite-venues-card-link:hover {
  opacity: .8;
}


/* ── SPレスポンシブ ── */
@media (max-width: 767px) {
  .p-satellite-venues__visual-inner {
    top: 50%;
    padding-left: 16px;
    transform: translateY(-50%);
  }

  .p-satellite-venues__visual {
    margin-top: 72px;
  }

  .p-satellite-venues__inner {
    padding: 72px 16px 64px;
  }

  .p-satellite-venues__title {
    font-size: 23px;
  }
  .p-satellite-venues-list {
    padding: 0 16px;
  }
  .p-satellite-venues-card__title {
    font-size: 17px;
  }
  .p-satellite-venues-list__cards {
    margin: 72px 0 0;
    gap: 32px;
    padding-bottom: 53px;
  }
  .p-satellite-venues-card {
    padding-bottom: 5px;
  }
  .p-satellite-venues-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .p-satellite-venues-card .time {
    margin-top: 16px;
  }
}
