@charset "UTF-8";
/* ==========================================================================
   淡路市立サンシャインホール - 施設概要ページ
   ========================================================================== */

/* ==========================================================================
   ページナビゲーション（3タブ）
   ========================================================================== */
.p-page-nav {
  background: #A2D7D4;
  padding: 3.2rem 0;
}

.p-page-nav__inner {
  display: flex;
  gap: 1.7rem;
}

.p-page-nav__link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: 9999px;
  padding: 1.6rem 2rem 1.8rem 2.1rem;
  text-decoration: none;
  color: #333;
  transition: opacity 0.2s;
}

.p-page-nav__link:hover {
  opacity: 0.8;
}

.p-page-nav__icon {
  width: 2.9rem;
  height: 2.9rem;
  flex-shrink: 0;
}

.p-page-nav__text {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 2.4rem;
  color: #333;
}

.p-page-nav__arrow {
  width: 2.8rem;
  height: 2.8rem;
  flex-shrink: 0;
}

/* ==========================================================================
   メインコンテンツ
   ========================================================================== */
.p-facility {
  padding: 4rem 0 12rem;
}

.p-facility__section {
  margin-bottom: 10rem;
}

.p-facility__section:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   メインホール概要カード
   ========================================================================== */
.p-hall-overview {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  margin-bottom: 4rem;
}

/* 3枚横並び写真 */
.p-hall-overview__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0rem;
}

.p-hall-overview__photos img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  display: block;
}

.p-hall-overview__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2.9rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #333;
  margin-bottom: -1.2rem;
}

.p-hall-overview__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.9;
  color: #333;
}

/* 左画像＋右テキスト */
.p-hall-overview__detail {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.p-hall-overview__detail-image {
  width: 30rem;
  flex-shrink: 0;
}

.p-hall-overview__detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-hall-overview__detail-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.9;
  color: #333;
}

.p-hall-overview__usage {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  background: #f7f4f0;
  border-radius: 0.4rem;
  padding: 0.8rem 1.6rem;
  margin-top: 1.6rem;
}

.p-hall-overview__usage-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #333;
  white-space: nowrap;
  flex-shrink: 0;
}

.p-hall-overview__usage-value {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: #333;
  line-height: 1.6;
}

/* ==========================================================================
   仕様テーブル
   ========================================================================== */
.p-specs-table {
  width: 100%;
  border-radius: 0.8rem;
  overflow: hidden;
  border-collapse: collapse;
  margin-bottom: 6rem;
}

.p-specs-table__label {
  background: #f7f4f0;
  padding: 0.5rem 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #333;
  width: 16rem;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
}

.p-specs-table__label::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 2rem;
  background: #333;
}

.p-specs-table__data {
  background: #f7f4f0;
  padding: 0.5rem 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
}

/* ==========================================================================
   フロアマップ
   ========================================================================== */
.p-floor-map {
  margin-bottom: 6rem;
}

.p-floor-map__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem;
}

.p-floor-map__item {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.p-floor-map__image {
  background: #f7f4f0;
  border-radius: 0.4rem;
  overflow: hidden;
}

.p-floor-map__image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-download-btn.p-floor-map__btn {
  width: 100%;
  justify-content: space-between;
  flex-direction: row;
}


/* ==========================================================================
   施設一覧
   ========================================================================== */
.p-facility-list {
  /* wrapper */
}

.p-room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-bottom: 6rem;
}

.p-room-card {
  background: #fff;
  border-radius: 0.4rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.p-room-card__image {
  aspect-ratio: 8 / 5;
  overflow: hidden;
  border-radius: 0.6rem 0.6rem 0 0;
  flex-shrink: 0;
}

.p-room-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-room-card__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0 0;
  flex: 1;
}

.p-room-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2.9rem;
  letter-spacing: 0.05em;
  color: #333;
  line-height: 1;
}

.p-room-card__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.9;
  color: #333;
  flex: 1;
}

.p-room-card__usage {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: #f7f4f0;
  border-radius: 0.4rem;
  padding: 0.8rem 1.6rem;
  margin-top: auto;
}

.p-room-card__usage-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #333;
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 0.1rem;
  position: relative;
  padding-right: 1.2rem;
}

.p-room-card__usage-label::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 2rem;
  background: #333;
}

.p-room-card__usage-value {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: #333;
  line-height: 1.6;
  padding-top: 0.3rem;
}

/* ==========================================================================
   ダウンロードボタン
   ========================================================================== */
.p-download-btn {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 1.2rem;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 5.8rem;
  padding: 1.2rem 2.4rem 1.4rem;
  text-decoration: none;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  transition: opacity 0.2s;
}

.p-download-btn:hover {
  opacity: 0.75;
}

.p-download-btn__icon {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
}

.p-download-group {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.p-download-group__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.p-download-group__list .p-download-btn {
  width: 100%;
  justify-content: space-between;
}

/* ==========================================================================
   ホール概要テーブル
   ========================================================================== */
.p-info-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #e5e5e5;
}

.p-info-table tr {
  border-bottom: 1px solid #e5e5e5;
}

.p-info-table__label {
  background: #f7f4f0;
  padding: 1.6rem 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  color: #333;
  width: 16rem;
  vertical-align: middle;
  white-space: nowrap;
}

.p-info-table__data {
  background: #fff;
  padding: 1.6rem 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  line-height: 1.7;
  color: #333;
}

/* ==========================================================================
   マップセクション
   ========================================================================== */
.p-map-section {
  margin-bottom: 6rem;
}

.p-map-section__maps {
  display: flex;
  gap: 5rem;
}

.p-map-section__item {
  flex: 1;
}

.p-map-section__item img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   交通アクセス
   ========================================================================== */
.p-transport-section {
  margin-bottom: 6rem;
}

.p-transport-section__inner {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.p-transport-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.p-transport-info__item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.p-transport-info__main {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #333;
}

.p-transport-info__note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2;
  color: #7d7d7d;
}

/* 駐車場ボックス */
.p-parking-box {
  flex-shrink: 0;
  width: 38rem;
  background: #f7f4f0;
  border-radius: 0.6rem;
  padding: 2.4rem 3.2rem;
  display: flex;
  flex-direction: column;
}

.p-parking-box__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  color: #333;
  line-height: 1;
  padding-bottom: 1.4rem;
  border-bottom: 2px solid #D8D8D8;
  margin-bottom: 1.4rem;
}

.p-parking-box__main {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 0.8rem;
}

.p-parking-box__note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #7d7d7d;
  padding-left: 1em;
  text-indent: -1em;
}

.p-parking-box__note-mark {
  margin-right: 0.2rem;
}

/* ==========================================================================
   アクセスマップ（2列）
   ========================================================================== */
.p-access-maps {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
}

.p-access-maps__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.p-access-maps__item img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   各方面からの所要時間
   ========================================================================== */
.p-access-time {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.p-access-time__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   交通アクセス リスト
   ========================================================================== */
.p-transport-list {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.p-transport-list__item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  padding-left: 1.8rem;
  position: relative;
}

.p-transport-list__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.8rem;
  height: 0.8rem;
  background: #337D8A;
  border-radius: 50%;
}

/* ==========================================================================
   SP対応 (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {

  /* ページナビ */
  .p-page-nav {
    padding: 2rem 0;
  }

  .p-page-nav__inner {
    flex-direction: column;
    gap: 1rem;
  }

  .p-page-nav__link {
    border-radius: 1rem;
    padding: 1.4rem 1.6rem;
  }

  .p-page-nav__text {
    font-size: 1.6rem;
  }

  /* メインコンテンツ */
  .p-facility {
    padding: 2.4rem 0 8rem;
  }

  .p-facility__section {
    margin-bottom: 6rem;
  }

  /* メインホール概要カード */
  .p-hall-overview {
    gap: 2.4rem;
  }

  .p-hall-overview__photos img {
    height: 16rem;
  }

  .p-hall-overview__detail {
    flex-direction: column;
    gap: 2rem;
  }

  .p-hall-overview__detail-image {
    width: 100%;
  }

  .p-hall-overview__content {
    padding: 2rem;
  }

  .p-hall-overview__title {
    font-size: 2.2rem;
  }

  .p-hall-overview__desc {
    font-size: 1.5rem;
  }

  /* 仕様テーブル */
  .p-specs-table__label {
    width: 9rem;
    padding: 1rem 1.2rem;
    font-size: 1.4rem;
    white-space: normal;
  }

  .p-specs-table__data {
    padding: 1rem 1.2rem;
    font-size: 1.3rem;
  }

  /* 施設一覧グリッド */
  .p-room-grid {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }

  .p-room-card__title {
    font-size: 2rem;
  }

  .p-room-card__desc {
    font-size: 1.5rem;
  }

  /* ダウンロードグループ */
  .p-download-group__list {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .p-floor-map__download .p-download-btn,
  .p-download-group__list .p-download-btn {
    width: 100%;
  }

  .p-floor-map__grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  /* ホール概要テーブル */
  .p-info-table__label {
    width: 9rem;
    padding: 1.2rem 1rem;
    font-size: 1.5rem;
    white-space: normal;
  }

  .p-info-table__data {
    padding: 1.2rem 1rem;
    font-size: 1.5rem;
  }

  /* マップ */
  .p-map-section__maps {
    flex-direction: column;
    gap: 2.4rem;
  }

  /* 交通アクセス */
  .p-transport-section__inner {
    flex-direction: column;
    gap: 3.2rem;
  }

  .p-parking-box {
    width: 100%;
  }

  /* アクセスマップ */
  .p-access-maps {
    flex-direction: column;
    gap: 4rem;
  }
}