/* =======================================================
   Access Page Specific Styles (access.css)
   ======================================================= */

/* -------------------------------------------------------
   Header
   ------------------------------------------------------- */
   .page-access .page-header {
    text-align: center;
    margin-bottom: 48px;
  }
  
  .page-access h1 {
    font-size: 2rem;
    margin-bottom: 24px;
  }
  
  /* -------------------------------------------------------
     Grid Layout (PC: 2 Columns / SP: Stacked)
     ------------------------------------------------------- */
  .access-grid {
    display: flex;
    flex-direction: column; /* スマホは縦積み */
    gap: 40px;
    margin-bottom: 60px;
  }
  
  @media (min-width: 960px) {
    .access-grid {
      flex-direction: row; /* PCは横並び */
      align-items: flex-start; /* 上揃え */
      gap: 60px;
    }
  
    .access-grid__info {
      flex: 1; /* 左カラム */
      min-width: 0; /* flexアイテムのはみ出し防止 */
    }
  
    .access-grid__map {
      flex: 1; /* 右カラム */
      min-width: 0;
    }
  }
  
  /* -------------------------------------------------------
     Info Section (Left Column)
     ------------------------------------------------------- */
  .access-section {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
  }
  
  .access-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  /* 見出し */
  .access-section__title {
    font-size: 1.2rem;
    color: var(--color-main, #315a89);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
  }
  
  .access-section__title i {
    margin-right: 10px;
    font-size: 1.3rem;
    width: 24px; /* アイコン幅を揃える */
    text-align: center;
  }
  
  /* 住所テキスト */
  .access-address-text {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  
  /* 説明テキストボックス */
  .access-text-box {
    background: var(--color-surface, #fff);
    line-height: 1.8;
    color: #444;
  }
  
  /* Googleマップボタン */
  .btn--icon i {
    margin-right: 8px;
  }
  
  .mt-4 { margin-top: 1.5rem; }
  
  /* -------------------------------------------------------
     Map Section (Right Column)
     ------------------------------------------------------- */
  /* PC画面でスクロールしても地図がついてくるようにする */
  .map-sticky-wrapper {
    position: sticky;
    top: 100px; /* ヘッダーの高さ分などを考慮 */
  }
  
  .map-embed {
    background: #eee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    aspect-ratio: 4/3; /* 比率を固定 */
    position: relative;
  }
  
  .map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .text-muted { color: #888; }
  .text-sm { font-size: 0.85rem; }
  .mt-2 { margin-top: 0.5rem; }
  
  /* -------------------------------------------------------
     CTA (Bottom)
     ------------------------------------------------------- */
  .access-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
  }
  
  /* 大きなボタン（共通CSSになければ） */
  .btn--lg {
    padding: 16px 48px;
    font-size: 1.1rem;
    min-width: 280px;
  }
  
  .btn--shadow {
    box-shadow: 0 4px 15px rgba(49, 90, 137, 0.3);
  }
  
  .btn--outline {
    background: #fff;
    border: 1px solid var(--color-main, #315a89);
    color: var(--color-main, #315a89);
  }
  .btn--outline:hover {
    background: var(--color-main, #315a89);
    color: #fff;
  }