/* ============================================================
   KOTO FASHION SCHOOL — access.css
   aboutus/access/index.html 固有スタイル
   共通スタイルは /css/common.css を参照
============================================================ */

/* ===== ACCESS PAGE ===== */
    .access-section { background: var(--white); }

    .access-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    /* 地図エリア */
    .map-wrap {
      position: sticky;
      top: 96px;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(0,0,0,0.1);
      border: 1px solid rgba(0,91,187,0.1);
    }

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

    .map-caption {
      padding: 16px 20px;
      background: var(--blue-dark);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .map-caption p {
      font-size: 12px;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.05em;
    }

    .map-caption a {
      font-size: 11px;
      color: var(--gold);
      text-decoration: none;
      letter-spacing: 0.15em;
      font-family: 'Outfit', sans-serif;
      white-space: nowrap;
      transition: opacity 0.3s;
    }

    .map-caption a:hover { opacity: 0.7; }

    /* 情報エリア */
    .access-info { display: flex; flex-direction: column; gap: 48px; }

    /* 基本情報カード */
    .info-card {
      background: var(--cream);
      border-radius: 4px;
      padding: 40px;
      border-left: 3px solid var(--gold);
    }

    .info-card-title {
      font-family: 'Outfit', sans-serif;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.4em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .info-row {
      display: flex;
      gap: 20px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(0,91,187,0.1);
    }

    .info-row:last-child { border-bottom: none; padding-bottom: 0; }

    .info-label {
      font-size: 11px;
      font-weight: 500;
      color: var(--blue);
      letter-spacing: 0.1em;
      min-width: 72px;
      padding-top: 2px;
    }

    .info-value {
      font-size: 14px;
      font-weight: 300;
      color: var(--dark);
      line-height: 1.8;
    }

    .info-value a {
      color: var(--blue);
      text-decoration: none;
      transition: color 0.3s;
    }

    .info-value a:hover { color: var(--gold); }

    /* アクセス方法 */
    .route-list { display: flex; flex-direction: column; gap: 20px; }

    .route-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .route-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--blue-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border: 2px solid rgba(245,200,0,0.3);
    }

    .route-icon svg { width: 22px; height: 22px; fill: var(--gold); }

    .route-body {}

    .route-name {
      font-size: 13px;
      font-weight: 500;
      color: var(--charcoal);
      letter-spacing: 0.05em;
      margin-bottom: 4px;
    }

    .route-detail {
      font-size: 13px;
      font-weight: 300;
      color: var(--mid);
      line-height: 1.7;
    }

    .route-badge {
      display: inline-block;
      padding: 2px 10px;
      background: var(--gold);
      color: var(--blue-dark);
      font-size: 11px;
      font-weight: 700;
      border-radius: 2px;
      margin-left: 8px;
      vertical-align: middle;
      letter-spacing: 0.05em;
    }

    /* CTA */
    .access-cta {
      background: var(--blue-dark);
      border-radius: 4px;
      padding: 36px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .access-cta p {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255,255,255,0.7);
      line-height: 1.8;
    }

    .access-cta .tel-link {
      font-family: 'Outfit', sans-serif;
      font-size: 26px;
      font-weight: 300;
      letter-spacing: 0.05em;
      color: var(--gold);
      text-decoration: none;
      letter-spacing: 0.05em;
      white-space: nowrap;
    }

    /* 周辺情報 */
    .nearby-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 64px;
    }

    .nearby-card {
      background: var(--cream);
      padding: 32px 28px;
      text-align: center;
    }

    .nearby-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 42px;
      font-weight: 300;
      color: var(--blue);
      line-height: 1;
      margin-bottom: 8px;
    }

    .nearby-unit {
      font-size: 13px;
      font-weight: 300;
      color: var(--mid);
      margin-bottom: 8px;
    }

    .nearby-label {
      font-size: 11px;
      font-weight: 500;
      color: var(--charcoal);
      letter-spacing: 0.1em;
    }

    @media (max-width: 1024px) {
      .access-grid { grid-template-columns: 1fr; gap: 48px; }
      .map-wrap { position: static; }
    }

    @media (max-width: 768px) {
      .info-card { padding: 28px 24px; }
      .nearby-grid { grid-template-columns: 1fr; }
      .access-cta { flex-direction: column; text-align: center; }
    }