/** @format */

@charset "UTF-8";
/** @format */
/** @format */
/* =========================
   Access page
   ========================= */
.page-access {
  /* ここにページ固有の微調整があれば足す */
}

.section-access {
  margin-bottom: 36px;
}

/* =========================
   アンカーリンク（道順ナビ）
========================= */
.page-access {
  /* ▶ 矢印 */
}
.page-access .pageNav {
  margin: 16px 0;
}
.page-access .pageNav .btnRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-access .pageNav .btn {
  position: relative;
  padding: 8px 16px 8px 14px;
  border-radius: 999px;
  background: #fff;
  color: #5b768c;
  border: 3px solid #5b768c;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  line-height: 1;
  transition: all 0.2s ease;
}
.page-access .pageNav .btn::after {
  content: "›";
  margin-left: 8px;
  font-size: 1.2em;
  line-height: 1;
}
.page-access .pageNav .btn:hover {
  background: #5b768c;
  color: #fff;
}
.page-access .pageNav .btn:hover::after {
  color: #fff;
}
.page-access .pageNav .btn:last-child::after {
  content: none;
}

/* Intro（上の説明カード） */
.accessIntro .accessIntro__text {
  margin: 24px 0;
  line-height: 1.9;
}

/* 道順ステップ */
.routeStep {
  overflow: hidden;
  margin-bottom: 24px;
}
.routeStep__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}
.routeStep__no {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: #433333;
  color: #fff;
  flex: 0 0 auto;
}
.routeStep__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.35;
}
.routeStep__body {
  padding-top: 16px;
}
.routeStep__lead {
  margin: 0 0 12px;
  font-weight: 800;
  line-height: 1.7;
}
.routeStep__text {
  margin: 12px 0;
  line-height: 1.9;
}
.routeStep__media {
  margin-top: 14px;
}
.routeStep__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--line);
}

/* GOALカード */
.routeGoal {
  text-align: center;
}
.routeGoal .routeGoal__body {
  padding: 26px 18px;
}
.routeGoal .routeGoal__title {
  margin: 0 0 6px;
  font-size: 1.4rem;
  font-weight: 900;
}
.routeGoal .routeGoal__sub {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.08em;
}

/* 目次ボタン列：狭い時に折り返す */
.page-access .pageNav .btnRow {
  flex-wrap: wrap;
  gap: 8px;
}

/* 案内写真 共通フレーム */
.routeStep__media {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f3f3;
  /* 比率を固定（横長基準） */
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.routeStep__media img {
  width: 100%;
  height: 100%;
  /* ← ここが肝 */
  object-fit: contain;
  /* 余白が出た時も汚くならない */
  background: #f3f3f3;
  /* 写真感を保つ */
  border-radius: 8px;
}

/* SPは少し縦を許す */
@media (max-width: 768px) {
  .routeStep__media {
    aspect-ratio: 4/3;
  }
} /*# sourceMappingURL=access.css.map */
