/* access ページ固有CSS（静的access/index.htmlのインライン<style>から抽出） */
/* ===== 上部の帯（バナー） ===== */
  .pbanner {
    position: relative; padding: clamp(150px,18vw,230px) 0 clamp(48px,6vw,80px);
    background: linear-gradient(120deg, #2e9e5b 0%, #27884d 60%, #1f7d57 100%);
    color: #fff; overflow: hidden;
  }
  .pbanner::after {
    content: ""; position: absolute; right: -120px; top: -120px; width: 460px; height: 460px;
    border-radius: 50%; background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.14), transparent 70%);
    pointer-events: none;
  }
  .pbanner__inner { width: min(1180px, 100% - 48px); margin-inline: auto; position: relative; z-index: 1; }
  .pbanner__en { font-family: var(--en); font-weight: 300; font-size: clamp(34px,5vw,58px); line-height: 1; letter-spacing: .04em; }
  .pbanner__jp { margin-top: 14px; font-size: clamp(16px,2vw,22px); font-weight: 500; letter-spacing: .06em; }

  /* ===== パンくず ===== */
  .crumb { width: min(1180px, 100% - 48px); margin: 22px auto 0; font-size: 13px; color: #78857e; }
  .crumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; list-style: none; }
  .crumb a { color: #78857e; transition: color .2s; }
  .crumb a:hover { color: var(--green); }
  .crumb li:not(:last-child)::after { content: "›"; margin-left: 8px; color: #b8c2bc; }
  .crumb [aria-current="page"] { color: var(--ink); }

  /* ===== アクセス ===== */
  .access { width: min(1180px, 100% - 48px); margin: clamp(48px,6vw,90px) auto clamp(72px,9vw,120px); }
  .access__head { margin-bottom: clamp(28px,3.5vw,44px); }
  .access__en { font-family: var(--en); font-weight: 300; font-size: clamp(24px,3vw,34px); line-height: 1; letter-spacing: .04em; color: var(--green); }
  .access__jp { margin-top: 8px; font-size: clamp(20px,2.2vw,25px); font-weight: 600; letter-spacing: .06em; color: var(--ink); }

  .access__grid { display: grid; grid-template-columns: 360px 1fr; gap: clamp(28px,4vw,56px); align-items: start; }

  /* 地図 */
  .access__map { width: 100%; aspect-ratio: 4 / 3; border-radius: 8px; overflow: hidden; border: 1px solid #e2ebe4; background: #eef3ef; }
  .access__map iframe { width: 100%; height: 100%; border: 0; display: block; }
  .access__maplink { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 14.5px; color: var(--green); }
  .access__maplink::after { content: "›"; font-size: 16px; }
  .access__maplink:hover { text-decoration: underline; }

  /* 情報 */
  .access__block + .access__block { margin-top: 28px; padding-top: 28px; border-top: 1px solid #e2ebe4; }
  .access__label { font-size: 14px; font-weight: 700; letter-spacing: .06em; color: var(--green); margin-bottom: 10px; }
  .access__zip { font-size: 14px; color: #55635b; }
  .access__addr { font-size: clamp(16px,1.1vw,18px); line-height: 1.9; color: var(--ink); font-weight: 500; }
  .access__contact { margin-top: 8px; font-size: 15.5px; color: #37453e; line-height: 1.9; }
  .access__stations { list-style: none; display: grid; gap: 12px; }
  .access__station { display: flex; gap: 12px; align-items: baseline; font-size: 15.5px; line-height: 1.7; color: #37453e; }
  .access__station-icon { flex: none; margin-top: 2px; width: 9px; height: 9px; border-radius: 50%; border: 3px solid var(--green); box-sizing: border-box; }
  .access__note { margin-top: 14px; font-size: 13px; color: #8b968f; line-height: 1.7; }

  /* ===== レスポンシブ ===== */
  @media (max-width: 820px) {
    .access__grid { grid-template-columns: 1fr; gap: clamp(28px,6vw,40px); }
    .access__map { aspect-ratio: 16 / 10; order: -1; }
  }
