 
  /* ── セクション ── */
  .info-section {
    background: var(--white);
    padding: 6rem 3rem;
  }
 
  .section-wrap {
    max-width: 1100px;
    margin: 0 auto;
  }
 
  /* ── 見出し ── */
  .section-header {
    margin-bottom: 3rem;
  }
 
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(14px, 3.5vw, 16px);
    font-weight: 700;
    letter-spacing: 0.22em;
    color: #005bac;
    margin-bottom: 0.8rem;
  }
  .section-label::before {
    content: '';
    width: 20px; height: 2px;
    background: #005bac;
    display: inline-block;
  }
 
  .sec-title {
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    font-weight: 900;
    color: #2a5298;
    line-height: 1.4;
  }
 
  /* ── PC：左右グリッド ── */
  .info-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
  }
 
  /* ── 左：写真エリア ── */
  .info-photo {
    position: sticky;
    top: 2rem;
  }
 
  .photo-frame {
    width: 90%;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    background: var(--sky-light);
    position: relative;
  }
 
  /* 実際の写真に差し替える場合は img タグを使用 */
  .photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* 写真がない場合のプレースホルダー */
  .photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--slate-light);
  }
 
  .photo-placeholder svg {
    opacity: 0.4;
  }
 
  .photo-placeholder p {
    font-size: clamp(14px, 3.5vw, 16px);
    letter-spacing: 0.1em;
    font-weight: 500;
  }
 
  /* 写真下のキャプション */
  .photo-caption {
    margin-top: 1rem;
    font-size: clamp(14px, 3.5vw, 16px);
    color: var(--text-sub);
    line-height: 1.7;
  }
 
  .photo-caption strong {
    display: block;
    font-weight: 700;
    font-size: clamp(14px, 3.5vw, 16px);
    color: #2a5298;
    margin-bottom: 0.2rem;
  }
 
  /* ── 右：テーブル ── */
  .info-table {
    width: 100%;
    border-collapse: collapse;
  }
 
  .info-table tr {
    border-bottom: 1px solid #d3d3d3;
  }
  .info-table tr:first-child {
    border-top: 1px solid #d3d3d3;
  }
 
  .info-table th {
    padding: 2em 0;
    font-size: clamp(14px, 3.5vw, 16px);
    font-weight: 700;
    color: #005bac;
    text-align: left;
    vertical-align: top;
    white-space: nowrap;
    width: 130px;
    letter-spacing: 0.06em;
  }
 
  .info-table td {
    padding: 2em 0;
    font-size: clamp(14px, 3.5vw, 16px);
    color: var(--text);
    line-height: 1.85;
    font-weight: 400;
  }
 
  /* ── SP：縦積み ── */
  @media (max-width: 720px) {
    .info-section { padding: 3.5rem 1.4rem; }
 
    .info-layout {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
 
    .info-photo {
      position: static;
    }
 

    .info-table th {
      width: 100px;
      font-size: clamp(14px, 3.5vw, 16px);
    }
  }

.access-bg {
	margin: 4em auto 10em;
}
 
  .map-frame {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--sky-pale);
    margin-top: 2rem;
    color: var(--slate-light);
    font-size:  clamp(14px, 3.5vw, 16px);
    gap: 0.5rem;
  }
  .map-frame iframe{
    width: 100%;
    height: 22em;
}

  .access-list { margin-top: 2rem; display: flex; gap: 3rem; flex-wrap: wrap; }
  .access-item { display: flex; align-items: flex-start; gap: 0.8rem; }
  .access-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--white);
    border: 1.5px solid var(--sky-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: clamp(14px, 3.5vw, 16px);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(42,82,152,0.07);
  }
  .access-text { font-size:  clamp(14px, 3.5vw, 16px); color: var(--text); line-height: 1.7; }
  .access-text strong { display: block; font-weight: 700; font-size:  clamp(14px, 3.5vw, 16px); color: var(--navy); margin-bottom: 0.2rem; }
 