   /* ── PC: 横並びレイアウト ── */
  .access-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
 
  /* ── 情報カラム ── */
  .info-col {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
 
  .info-row {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 12px;
    padding: 18px 0;
    border-bottom: 1px solid #E0DDD7;
    align-items: start;
  }
  .info-row:first-child {
    border-top: 1px solid #D9D9D9;
  }
 
  .info-label {
    display: inline-flex;
	 color: #014099;
    align-items: center;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .04em;
    white-space: nowrap;
  }
 
  .info-value {
    font-size: 16px;
    color: #1C1C1C;
    line-height: 1.8;
  }
 
  .info-value a {
    color: #1C1C1C;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
 
  .info-value .note {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 4px;
  }
 
  /* アクセス複数行 */
  .access-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
 
  /* ── マップカラム ── */
  .map-col {
    position: sticky;
    top: 24px;
  }
 
  .map-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid #D9D9D9;
  }
 
  .map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }
 
  /* ── モバイル ── */
  @media (max-width: 768px) {
	  
    .access-layout {
      grid-template-columns: 1fr;
      gap: 32px;
    }
	  
	 .info-label {
    font-size: 14px;
  }
 
    /* モバイル時はマップを下に */
    .info-col  { order: 1; }
    .map-col   { order: 2; position: static; }
 
    .map-wrap {
      aspect-ratio: 4 / 3;
    }
 
    .info-row {
      grid-template-columns: 76px 1fr;
      gap: 10px;
      padding: 14px 0;
    }
 
    .info-value {
      font-size: 14px;
    }
  }