/* ============================================================
   アクセスページ専用スタイル
============================================================ */

/* ---- Page Hero ------------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, #FFF8E7 0%, #FFF3D6 100%);
  border-bottom: 3px solid #FFE0B2;
  padding: 48px 0 40px;
}
.page-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.breadcrumb { margin-bottom: 16px; }
.breadcrumb ol {
  display: flex;
  gap: 8px;
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-sub);
  flex-wrap: wrap;
}
.breadcrumb li + li::before { content: '›'; margin-right: 8px; }
.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { text-decoration: underline; }

.page-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.page-hero__icon { font-size: 1.6rem; }
.page-hero__desc { font-size: 1rem; color: var(--text-sub); }

/* ---- Access Section -------------------------------------- */
.access-section { padding: 64px 0; background: var(--white); }

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

/* 地図 */
.map-wrapper { display: flex; flex-direction: column; gap: 12px; }
.map-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-sub);
  background: var(--bg-light);
  padding: 10px 16px;
  border-radius: 8px;
  border-left: 4px solid var(--orange);
}
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
}
.map-embed iframe { display: block; }

.btn-open-map {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 10px;
  text-align: center;
  transition: background .2s;
  box-shadow: 0 4px 12px rgba(247,148,29,.3);
}
.btn-open-map:hover { background: var(--orange-dark); }

/* アクセス情報カード */
.access-info { display: flex; flex-direction: column; gap: 16px; }

.info-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
  overflow: hidden;
  border: 2px solid var(--border);
  transition: box-shadow .2s;
}
.info-card:hover { box-shadow: var(--shadow); }
.info-card--highlight {
  border-color: var(--orange);
  background: #FFFBF5;
}

.info-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--border);
}
.info-card--highlight .info-card__header { border-bottom-color: #FFE0B2; }

.info-card__icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-card__icon--orange { background: var(--orange); }
.info-card__icon--blue   { background: var(--blue); }
.info-card__icon--green  { background: var(--green-line); }
.info-card__icon--gray   { background: #757575; }
.info-card__icon--white  { background: white; border: 2px solid var(--orange); }

.info-card__title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--text);
}
.info-card__title--orange { color: var(--orange); }

.info-card__body { padding: 16px 20px; }

.info-address {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
  font-weight: 500;
}

/* アクセスリスト */
.access-list { display: flex; flex-direction: column; gap: 14px; }
.access-list__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}
.access-list__badge {
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}
.access-list__badge--walk { background: #E3F2FD; color: var(--blue); }
.access-list__badge--bus  { background: #E8F5E9; color: #388e3c; }
.accent { color: var(--orange); font-weight: 900; }

.info-text { font-size: 0.95rem; color: var(--text-sub); line-height: 1.8; }
.info-text small { font-size: 0.82rem; }

/* 営業時間テーブル */
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.97rem; }
.hours-table th,
.hours-table td { padding: 10px 12px; }
.hours-table th {
  width: 80px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  border-right: 1px solid var(--border);
}
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.open-badge {
  display: inline-block;
  background: #E8F5E9;
  color: #388e3c;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.closed-badge {
  display: inline-block;
  background: #FAFAFA;
  color: #999;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #ddd;
}

/* ---- Route Guide ----------------------------------------- */
.route-guide {
  background: var(--bg-gray);
  padding: 72px 0;
}
.route-guide__sub {
  font-size: 0.95rem;
  color: var(--text-sub);
  margin-top: 4px;
}

.route-steps {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.route-step {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 48px 200px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px;
  transition: transform .2s;
}
.route-step:hover { transform: translateX(4px); }

.route-step__num {
  width: 48px; height: 48px;
  background: var(--orange);
  color: white;
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.route-step__img img {
  width: 200px;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
}
.route-step__text h3 {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
}
.route-step__text p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.7;
}
.route-step__arrow {
  text-align: center;
  font-size: 2rem;
  color: var(--orange);
  padding: 8px 0;
  line-height: 1;
}

/* ---- Access CTA ------------------------------------------ */
.access-cta {
  background: linear-gradient(135deg, #F7941D 0%, #e86a00 100%);
  padding: 72px 0;
}
.access-cta__inner { text-align: center; }
.access-cta__title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
}
.access-cta__desc {
  font-size: 1rem;
  color: rgba(255,255,255,.9);
  line-height: 1.8;
  margin-bottom: 36px;
}
.access-cta__btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.access-cta__tel,
.access-cta__form,
.access-cta__line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 900;
  color: white;
  transition: transform .2s, opacity .2s;
  min-width: 200px;
  justify-content: center;
}
.access-cta__tel  { background: rgba(255,255,255,.2); border: 3px solid white; font-size: 1.25rem; }
.access-cta__form { background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.6); }
.access-cta__line { background: var(--green-line); border: 2px solid transparent; }
.access-cta__tel:hover,
.access-cta__form:hover,
.access-cta__line:hover { transform: translateY(-3px); opacity: .9; }

/* ---- Responsive ------------------------------------------ */
@media (max-width: 960px) {
  .access-grid { grid-template-columns: 1fr; }
  .map-embed iframe { height: 360px; }
  .route-step { grid-template-columns: 40px 1fr; }
  .route-step__img { display: none; }
}

@media (max-width: 600px) {
  .page-hero__title { font-size: 1.6rem; }
  .access-cta__btns { flex-direction: column; align-items: center; }
  .access-cta__tel, .access-cta__form, .access-cta__line { width: 100%; max-width: 320px; }
  .route-step { grid-template-columns: 40px 1fr; padding: 18px; }
  .hours-table th { width: 64px; font-size: 0.88rem; }
  .hours-table td { font-size: 0.88rem; }
}
