/* ===========================
   アクセスページ — yamashita風 × 青白
=========================== */

/* メインマップ: 角丸 + デコレーション */
.access-map-sec { background: var(--off-white); padding: 80px 64px 96px; }

.access-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}

.access-info h2 {
  font-family: 'Yu Mincho', '游明朝', 'YuMincho', serif;
  font-size: 32px; font-weight: 400; color: var(--text);
  margin-bottom: 28px; line-height: 1.4;
}

.access-address-block {
  margin-bottom: 32px;
}

.access-row {
  display: flex; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; font-weight: 300;
}

.access-row:first-child { border-top: 1px solid var(--border); }

.access-row-label {
  font-size: 11px; font-weight: 400; letter-spacing: 0.1em;
  color: var(--blue-mid); min-width: 52px; padding-top: 2px;
}

.access-row-val { color: var(--text-sub); line-height: 1.8; }

.access-row-val a { color: var(--blue); }
.access-row-val a:hover { text-decoration: underline; }

/* マップ */
.access-map-visual { position: relative; padding: 40px; }

.map-circle-deco-tl, .map-circle-deco-br {
  position: absolute; pointer-events: none; z-index: 2;
}

.map-circle-deco-tl { top: 0; left: 0; }
.map-circle-deco-br { bottom: 0; right: 0; }

.map-round {
  border-radius: 40px; overflow: hidden;
  box-shadow: 0 20px 56px rgba(37,99,235,0.13);
  position: relative; z-index: 1;
}

.map-round svg { width: 100%; height: auto; display: block; }

/* Google Maps iframe ラッパー */
.map-iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.map-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* 営業時間 */
.hours-sec { background: var(--white); padding: 96px 64px; }

.hours-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
  max-width: 1200px; margin: 0 auto;
}

.hours-tbl { border-top: 1px solid var(--border); }

.hours-row {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid rgba(226,232,240,0.7);
}

.hours-row-closed { opacity: 0.45; }

.hours-day { font-size: 13px; font-weight: 400; color: var(--text); min-width: 72px; }

.hours-time { font-size: 14px; font-weight: 300; color: var(--text-sub); flex: 1; letter-spacing: 0.04em; }

.hours-badge {
  font-size: 10px; font-weight: 400; letter-spacing: 0.12em;
  padding: 4px 12px; border-radius: 20px; border: 1px solid;
}

.hours-badge.open { color: #166534; border-color: #bbf7d0; background: #f0fdf4; }
.hours-badge.closed { color: var(--text-light); border-color: var(--border); }

.hours-note-area { padding-top: 4px; }

.hours-note {
  font-size: 13px; font-weight: 300; color: var(--text-light); line-height: 2;
  margin-bottom: 40px; border-left: 2px solid var(--blue-pale); padding-left: 16px;
}

.access-ways { display: flex; flex-direction: column; gap: 28px; }

.access-way-label {
  font-size: 12px; font-weight: 700; color: var(--text);
  letter-spacing: 0.06em; margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}

.access-way-label::before {
  content: ''; display: block; width: 20px; height: 1.5px;
  background: var(--blue-light); flex-shrink: 0;
}

.access-way p { font-size: 14px; font-weight: 300; color: var(--text-sub); line-height: 1.8; padding-left: 30px; }

/* アニメーション */
.anim { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   レスポンシブ
=========================== */
@media (max-width: 1024px) {
  .access-map-sec { padding: 64px 40px 80px; }
  .hours-sec { padding: 80px 40px; }
}

@media (max-width: 900px) {
  .access-layout { grid-template-columns: 1fr; gap: 48px; }
  .hours-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .access-map-sec { padding: 56px 24px 64px; }
  .hours-sec { padding: 64px 24px; }
  .access-map-visual { padding: 24px 8px; }
}
