/* =========================
  guide 共通
========================= */


/* セクション */
.guide-section {
  margin-bottom: 3.5rem;
}

.guide-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  border-left: 4px solid #0a6;
  padding-left: 0.6rem;
}

.guide-section p.guide-comment {
  font-weight: bold;
  color: #fc7701;
  font-size: 1.2rem;
  text-align: center;
}

.guide-label {
  min-width: 7em; 
  font-weight: 700;
  white-space: nowrap;
}

/* カード */
.guide-card {
  background: #f5fbf8;
  padding: 1.5rem 2rem;
  border-radius: 8px;
}

/* リスト */
.guide-list {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.guide-list li {
  display: flex;
  gap: 0.8rem;
  line-height: 1.8;
}

/* マップ */
.guide-map {
  margin-top: 1.5rem;
}

.guide-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 8px;
}

/* =========================
  コート概要・施設内容
========================= */

/* ブロック */
.facility-block {
  margin-bottom: 3rem;
}

/* コート概要 */
.court-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.court-overview img {
  width: 100%;
  border-radius: 8px;
}

.court-text {
  line-height: 1.8;
}

/* 施設内容 */
.facility-text {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  text-align: center;
}

.facility-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  justify-items: center;
}

.facility-gallery figure {
  margin: 0;
}

.facility-gallery img {
  width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.facility-gallery figcaption {
  margin-top: 0.3rem;
  font-size: 0.85rem;
  text-align: center;
}

/* =========================
  レンタル用品
========================= */

.guide-rental {
  margin-top: 3.5rem;
}

.rental-note {
  text-align: center;
  margin-bottom: 2rem;
  color: #555;
}

/* ブロック */
.rental-block {
  margin-bottom: 2.5rem;
}

/* レンタル区分タイトル */
.rental-title {
  position: relative;
  padding-left: 1.6rem;
  font-size: 1.1rem;
}

.rental-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 3px;
  transform: translateY(-50%);
  border-radius: 2px;
  background: currentColor;
}

.rental-title.free {
  color: #149628;
}

.rental-title.paid {
  color: #0066cc;
}

/* アイテム一覧 */
.rental-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

/* カード */
.rental-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f5fbf8;
  border-radius: 8px;
  padding: 0.8rem 1rem;
}

/* 画像 */
.rental-item img {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

/* テキスト */
.rental-info {
  text-align: left;
}

.item-name {
  display: block;
  font-weight: 700;
}

.item-meta {
  font-size: 0.9rem;
  color: #555;
}

/* 有料レンタル：PCは2分割 */
.rental-paid .rental-items {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
}

/* =========================
  施設からのお願い
========================= */

.guide-request .decimal {
  margin: 0;
  padding-left: 1.2rem;
}

.guide-request .decimal li {
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

/* =========================
  SP調整
========================= */

@media screen and (max-width: 768px) {

  .guide {
    padding: 1.5rem 1rem;
  }

  .guide-hero h1 {
    font-size: 1.7rem;
  }

  .guide-section h2 {
    font-size: 1.3rem;
  }

  .guide-list{
    padding: 0;
  }

  .guide-list li {
    flex-direction: column;
    gap: 0.2rem;
  }
  .guide-label {
    min-width: auto;
  }
  .guide-card{
    padding: 1.5rem;
  }

  .court-overview {
    grid-template-columns: 1fr;
  }

  .facility-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .facility-gallery img {
    max-width: 100%;
  }

  .rental-items {
    grid-template-columns: 1fr;
  }

  .rental-item {
    gap: 0.8rem;
  }

  .rental-item img {
    width: 70px;
  }

  .rental-paid .rental-items {
    grid-template-columns: 1fr;
  }
}
