/* ======================
   ACCESS PAGE
   モバイルファースト
====================== */

/* ======================
   ① メインビジュアル (SP)
====================== */
.contentsTop-hero-img {
  background-image: url(../img/access/access-title.jpg);
}

/* ======================
   ② 住所・写真 (SP)
   テキスト上・写真下の縦積み
====================== */
.access-info {
  padding: 2rem 6%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-heading {
  color: #9c9c9c;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.access-info-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* リスト */
.access-dl {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.4rem 1rem;
  align-items: start;
}

.access-dl dt {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #9c9c9c;
  padding-top: 0.1rem;
}

.access-dl dd {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.8;
}

/* 写真エリア */
.access-info-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.access-info-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ======================
   ③ Google MAP (SP)
====================== */
.access-map {
  padding: 2rem 5%;

}

.access-map iframe {
  width: 100%;
  height: 280px;
  border: none;
  display: block;
}

/* プレースホルダー */
.map-placeholder {
  width: 100%;
  height: 280px;
  background: #2a2a2a;
  border: 2px dashed #555;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: #666;
}

/* =====================================================
   PC (min-width: 769px)
===================================================== */
@media (min-width: 769px) {

  #main-content {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section-heading {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
  }

  /* ② 住所・写真 */
  .access-info {
    padding: 4rem 10%;
  }

  .access-info-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .access-dl {
    grid-template-columns: 8.5rem 1fr;
    gap: .8rem 5rem;
  }

  .access-dl dt {
    font-size: 1.3rem;
    margin-top: 13px;
  }

  .access-dl dd {
    font-size: 1.5rem;
  }

  .access-info-img {
    height: 80%;
    aspect-ratio: 1 / 1;
  }


  /* ③ Google MAP */
  .access-map {
    padding: 4rem 10%;
  }

  .access-map iframe {
    height: 450px;
  }

  .map-placeholder {
    height: 450px;
  }

  /* フッター調整 */
  #site-footer {
    display: block;
    padding: 2rem;
  }

  .footer-logo-box {
    margin-bottom: 1.3rem;
  }

  .footer-name {
    font-size: 1.8rem;
    margin-bottom: .9rem;
  }

  .footer-info {
    font-size: 1.2rem;
    line-height: 1.8;
  }

  .footer-copy {
    margin-bottom: 20px;
  }
}

/* end @media */