:root {
  --forest: #234235;
  --forest-deep: #14281f;
  --leaf: #6f8b4d;
  --moss: #dfe8d2;
  --sky: #d8e7eb;
  --steam: #f3ede2;
  --amber: #c47b3a;
  --beer: #f0b64d;
  --ink: #1d2824;
  --muted: #65726d;
  --line: #d8ded5;
  --paper: #fffdf7;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(27, 44, 36, .14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.75;
}

h1,
h2,
h3 {
  word-break: auto-phrase;
  text-wrap: balance;
}

p {
  word-break: auto-phrase;
  text-wrap: pretty;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 247, .9);
  border-bottom: 1px solid rgba(216, 222, 213, .75);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 86px;
  height: 86px;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 9px 13px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--forest-deep);
  background: var(--moss);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--forest);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
  color: var(--white);
  background: var(--forest-deep);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--forest);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 72px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--forest);
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 31, 24, .78), rgba(15, 31, 24, .35) 48%, rgba(15, 31, 24, .1)),
    linear-gradient(0deg, rgba(15, 31, 24, .6), transparent 44%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0 110px;
  color: var(--white);
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 7vw, 82px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h1.main-copy {
  max-width: 1120px;
  font-size: clamp(28px, 3.8vw, 46px);
  white-space: nowrap;
}

.hero h1.main-copy span {
  display: inline;
}

.hero h1.main-copy span + span::before {
  content: " ";
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 5.4vw, 64px);
}

.hero p {
  max-width: 560px;
  margin: 20px 0 0;
  font-size: clamp(17px, 2.4vw, 23px);
}

.hero-actions,
.stat-row,
.meta-row,
.map-toolbar,
.filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.button,
.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.hero-actions {
  margin-top: 30px;
}

.button.primary {
  color: var(--forest-deep);
  background: var(--beer);
}

.button.secondary,
.filter-button.active {
  color: var(--white);
  background: var(--forest);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .52);
  background: rgba(255, 255, 255, .13);
}

.filter-button {
  color: var(--forest);
  background: var(--white);
  border-color: var(--line);
}

.filter-button.muted,
.filter-button:disabled {
  color: var(--muted);
  background: rgba(255, 255, 255, .62);
  cursor: not-allowed;
}

.filter-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.filter-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
}

.hike-filter-panel {
  width: min(1180px, calc(100% - 36px));
  margin: 24px auto 0;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(27, 44, 36, .08);
}

.hike-filter-group {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.hike-filter-group + .hike-filter-group {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.hike-filter-group .filter-label {
  padding-top: 10px;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hike-filter-selects {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hike-filter-field {
  display: grid;
  gap: 6px;
}

.hike-filter-field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.hike-filter-field select {
  width: 100%;
  min-height: 44px;
  padding: 9px 12px;
  color: var(--forest-deep);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font: inherit;
  font-weight: 750;
}

.hike-filter-field select:focus {
  outline: 3px solid rgba(240, 182, 77, .34);
  border-color: var(--beer);
}

.hike-filter-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}

.hike-filter-meta p {
  margin: 0;
  color: var(--forest);
  font-size: 14px;
  font-weight: 900;
}

.hike-filter-reset {
  padding: 8px 2px;
  color: var(--forest);
  border: 0;
  border-bottom: 2px solid var(--beer);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.intro-section,
.content-section,
.instagram-section,
.split-section,
.survey-cta-section,
.map-layout,
.feature-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.intro-section {
  padding: 82px 0 54px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(240px, .85fr) 1.15fr;
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.intro-grid h2,
.content-section h2,
.split-section h2,
.member-card h3,
.spot-card h3,
.trip-card h3,
.article-body h2 {
  margin: 0;
  line-height: 1.28;
  letter-spacing: 0;
}

.intro-grid h2,
.content-section h2,
.split-section h2 {
  font-size: clamp(28px, 4vw, 46px);
}

.intro-copy p,
.split-section p,
.article-body p {
  margin: 0 0 18px;
  color: var(--muted);
}

.survey-cta-section {
  padding: 26px 0 88px;
}

.intro-section + .survey-cta-section {
  padding-top: 0;
}

.detail-survey-cta {
  padding-top: 0;
}

.survey-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 36px);
  align-items: center;
  padding: clamp(24px, 4vw, 40px);
  color: #3a2c22;
  background:
    linear-gradient(135deg, rgba(247, 241, 229, .96), rgba(232, 221, 200, .76)),
    #f7f1e5;
  border: 1px solid rgba(63, 95, 69, .16);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(58, 44, 34, .10);
}

.survey-cta-compact {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  padding: clamp(22px, 4vw, 32px);
}

.survey-cta-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.survey-cta-icon .icon-badge {
  width: 46px;
  height: 46px;
  color: var(--white);
  background: #3f5f45;
}

.survey-cta-icon .icon-badge.secondary {
  width: 38px;
  height: 38px;
  background: #d99a3d;
}

.survey-cta-icon .icon-badge.secondary[data-icon="onsen"] {
  background: #4f8da1;
}

.survey-cta-copy {
  min-width: 0;
}

.survey-cta h2 {
  margin: 0 0 12px;
  color: #3a2c22;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.25;
  letter-spacing: 0;
}

.survey-cta-compact h2 {
  font-size: clamp(23px, 3vw, 32px);
}

.survey-cta-description {
  display: grid;
  gap: 8px;
}

.survey-cta-description p {
  margin: 0;
  color: rgba(58, 44, 34, .78);
}

.survey-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  color: #3a2c22;
  background: #d99a3d;
  border: 1px solid rgba(58, 44, 34, .08);
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 12px 28px rgba(217, 154, 61, .26);
  transition: background .16s ease, transform .16s ease, box-shadow .16s ease;
}

.survey-cta-button:hover,
.survey-cta-button:focus {
  background: #c9862f;
  box-shadow: 0 16px 32px rgba(217, 154, 61, .34);
  transform: translateY(-1px);
}

.survey-cta-compact .survey-cta-button {
  grid-column: 2;
  justify-self: start;
  margin-top: 4px;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 10px 0 76px;
}

.feature-card,
.member-card,
.spot-card,
.side-panel,
.trip-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 32px rgba(27, 44, 36, .08);
}

.feature-card {
  padding: 22px;
}

.feature-card h3,
.feature-card p {
  margin: 10px 0 0;
}

.feature-card p {
  color: var(--muted);
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
}

.icon-badge svg,
.map-pin svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.content-section {
  padding: 42px 0 86px;
}

.instagram-section {
  padding: 0 0 86px;
}

.instagram-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 4vw, 36px);
  padding: clamp(24px, 4vw, 40px);
  color: var(--forest-deep);
  background: #f7f1e5;
  border: 1px solid rgba(63, 95, 69, .18);
  border-radius: 8px;
}

.instagram-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
}

.instagram-mark svg {
  width: 34px;
  height: 34px;
}

.instagram-mark svg,
.instagram-link svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.instagram-copy h2 {
  margin: 4px 0 10px;
  font-size: clamp(25px, 3.4vw, 38px);
  line-height: 1.25;
  letter-spacing: 0;
}

.instagram-copy p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  color: #3a2c22;
  background: var(--beer);
  border: 1px solid rgba(58, 44, 34, .08);
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(217, 154, 61, .24);
  transition: background .16s ease, transform .16s ease, box-shadow .16s ease;
}

.instagram-link svg {
  width: 21px;
  height: 21px;
}

.instagram-link:hover,
.instagram-link:focus {
  background: #d99a3d;
  box-shadow: 0 16px 32px rgba(217, 154, 61, .32);
  transform: translateY(-1px);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 24px;
}

.text-link {
  color: var(--forest);
  font-weight: 800;
  border-bottom: 2px solid var(--beer);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card-grid.wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.model-course-preview-section {
  padding-top: 72px;
}

.model-course-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.model-course-preview-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(27, 44, 36, .09);
}

.model-course-preview-image {
  position: relative;
  min-height: 230px;
  display: block;
  background-position: center;
  background-size: cover;
}

.model-course-preview-image::after,
.model-course-detail-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 40, 31, .54), transparent 56%);
}

.model-course-transport {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 11px;
  color: var(--forest-deep);
  background: var(--beer);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.model-course-preview-image > .model-course-transport {
  position: absolute;
  top: 14px;
  left: 14px;
}

.model-course-icon-row {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  display: flex;
  gap: 7px;
}

.model-course-icon-row .icon-badge {
  width: 36px;
  height: 36px;
}

.model-course-icon-row .onsen {
  background: #4f8da1;
}

.model-course-icon-row .pint {
  color: #3a2c22;
  background: var(--beer);
}

.model-course-preview-body {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 20px;
}

.model-course-preview-body h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.32;
}

.model-course-preview-body p {
  margin: 0 0 16px;
  color: var(--muted);
}

.model-course-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
}

.model-course-preview-body .text-link {
  margin-top: auto;
}

.beginner-guide-band {
  margin: 0;
  padding: 0 18px 72px;
  scroll-margin-top: 126px;
}

.beginner-guide-band-inner {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 40px);
  color: var(--forest-deep);
  background: var(--moss);
  border: 1px solid rgba(35, 66, 53, .14);
  border-radius: var(--radius);
}

.beginner-guide-band-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius);
}

.beginner-guide-band-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.beginner-guide-band h2 {
  margin: 0 0 8px;
  font-size: clamp(25px, 3.2vw, 38px);
  line-height: 1.3;
}

.beginner-guide-band p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.page-hero.beginner-guide-hero {
  background:
    linear-gradient(120deg, rgba(20, 40, 31, .86), rgba(35, 66, 53, .24)),
    url("../images/takamikurayama-img.jpg") center 48% / cover;
}

.guide-intro {
  padding-bottom: 52px;
}

.guide-video-section {
  width: min(1180px, calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  margin: 0 auto 54px;
  padding: clamp(28px, 5vw, 52px);
  color: var(--white);
  background: var(--forest-deep);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.guide-video-copy .section-label {
  color: var(--beer);
}

.guide-video-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.3;
}

.guide-video-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.guide-video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.guide-video-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px;
  color: var(--forest-deep);
  background: var(--beer);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}

.guide-video-meta span + span {
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .1);
}

.guide-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0b1410;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .28);
}

.guide-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.guide-jump-nav {
  width: min(1180px, calc(100% - 36px));
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 auto 10px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(27, 44, 36, .07);
}

.guide-jump-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 7px 13px;
  color: var(--forest);
  background: var(--steam);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
}

.guide-jump-nav a:hover,
.guide-jump-nav a:focus {
  color: var(--forest-deep);
  background: var(--moss);
}

.guide-section,
.guide-next-step,
.guide-references {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.guide-section {
  padding: clamp(70px, 9vw, 104px) 0;
  scroll-margin-top: 125px;
}

.guide-section + .guide-section {
  border-top: 1px solid var(--line);
}

.guide-section-tint {
  background: var(--steam);
  border-top: 0 !important;
  box-shadow: 0 0 0 100vmax var(--steam);
  clip-path: inset(0 -100vmax);
}

.guide-section-heading {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  max-width: 930px;
  margin-bottom: 38px;
}

.guide-section-heading.compact-heading {
  align-items: center;
}

.guide-section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.25;
}

.guide-section-heading p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.guide-step {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--forest-deep);
  background: var(--beer);
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 900;
}

.guide-card-grid,
.guide-season-grid,
.guide-safety-grid,
.guide-layer-list {
  display: grid;
  gap: 16px;
}

.guide-card-grid.four-columns,
.guide-season-grid,
.guide-layer-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guide-card-grid.three-columns,
.guide-safety-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-card,
.guide-season-grid article,
.guide-safety-grid article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.guide-card {
  border-top: 4px solid var(--leaf);
}

.guide-card h3,
.guide-season-grid h3,
.guide-safety-grid h3,
.guide-layer-list h3 {
  margin: 0 0 9px;
  font-size: 20px;
  line-height: 1.35;
}

.guide-card p,
.guide-season-grid p,
.guide-safety-grid p,
.guide-layer-list p {
  margin: 0;
  color: var(--muted);
}

.guide-number-list {
  max-width: 980px;
  margin: 0;
  padding: 0;
  counter-reset: guide-number;
  list-style: none;
}

.guide-number-list li {
  display: grid;
  grid-template-columns: minmax(180px, .72fr) 1.28fr;
  gap: 26px;
  padding: 22px 0;
  border-top: 1px solid rgba(35, 66, 53, .17);
  counter-increment: guide-number;
}

.guide-number-list li:last-child {
  border-bottom: 1px solid rgba(35, 66, 53, .17);
}

.guide-number-list strong {
  color: var(--forest-deep);
  font-size: 17px;
}

.guide-number-list strong::before {
  content: counter(guide-number, decimal-leading-zero) ". ";
  color: var(--amber);
}

.guide-number-list span {
  color: var(--muted);
}

.guide-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.guide-check-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-height: 78px;
  padding: 15px 17px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.guide-check-item:hover {
  border-color: var(--leaf);
}

.guide-check-item input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin: 3px 0 0;
  accent-color: var(--forest);
}

.guide-check-item span {
  display: grid;
  gap: 2px;
}

.guide-check-item strong {
  color: var(--forest-deep);
}

.guide-check-item small {
  color: var(--muted);
  font-size: 13px;
}

.guide-layer-list article {
  position: relative;
  padding: 50px 20px 22px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.guide-layer-list article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: var(--forest);
}

.guide-layer-list article:nth-child(2)::before {
  background: var(--leaf);
}

.guide-layer-list article:nth-child(3)::before {
  background: var(--sky);
}

.guide-layer-list article:nth-child(4)::before {
  background: var(--amber);
}

.guide-layer-list article > span,
.guide-season-grid article > span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.guide-season-grid article {
  border-top: 4px solid var(--leaf);
}

.guide-season-grid article:nth-child(2) {
  border-top-color: var(--amber);
}

.guide-season-grid article:nth-child(3) {
  border-top-color: var(--beer);
}

.guide-season-grid article:nth-child(4) {
  border-top-color: #4f8da1;
}

.guide-safety-grid article {
  border-left: 4px solid var(--amber);
}

.guide-manners {
  padding-top: 72px;
}

.guide-manner-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-manner-list li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-top: 1px solid var(--line);
}

.guide-manner-list li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 4px;
  width: 10px;
  height: 10px;
  background: var(--leaf);
  border-radius: 50%;
}

.guide-next-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(42px, 7vw, 72px) 0;
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 0 0 100vmax var(--forest);
  clip-path: inset(0 -100vmax);
}

.guide-next-step h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.28;
}

.guide-next-step p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.guide-next-step .section-label {
  color: var(--beer);
}

.guide-next-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.guide-next-step .button.secondary {
  border-color: rgba(255, 255, 255, .5);
  background: transparent;
}

.guide-references {
  padding: 54px 0 86px;
}

.guide-references h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.guide-references > p {
  margin: 0 0 18px;
  color: var(--muted);
}

.guide-reference-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
}

.guide-reference-links a {
  color: var(--forest);
  border-bottom: 2px solid var(--beer);
  font-size: 14px;
  font-weight: 800;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-hero.courses-hero {
  background:
    linear-gradient(120deg, rgba(20, 40, 31, .84), rgba(35, 66, 53, .24)),
    url("../images/rokkosan-img.jpg") center 45% / cover;
}

.model-course-intro {
  padding-bottom: 68px;
}

.model-course-update-note {
  padding-left: 14px;
  border-left: 3px solid var(--beer);
  font-size: 14px;
}

.model-course-list-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 92px;
}

.model-course-list {
  display: grid;
  gap: 44px;
}

.model-course-detail {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  scroll-margin-top: 132px;
}

.model-course-detail-image {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: end;
  padding: clamp(26px, 5vw, 52px);
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.model-course-detail-image > div {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.model-course-detail-image .model-course-transport {
  margin-bottom: 18px;
}

.model-course-detail-image h2 {
  margin: 0;
  font-size: clamp(32px, 4.8vw, 54px);
  line-height: 1.2;
}

.model-course-detail-body {
  padding: clamp(24px, 5vw, 48px);
}

.model-course-lead {
  max-width: 920px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 18px;
}

.model-course-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.model-course-facts div {
  padding-left: 14px;
  border-left: 3px solid var(--beer);
}

.model-course-facts dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.model-course-facts dd {
  margin: 4px 0 0;
  color: var(--forest-deep);
  font-weight: 900;
}

.model-course-flow-heading {
  margin-top: 40px;
}

.model-course-flow-heading h3 {
  margin: 0;
  font-size: 30px;
}

.model-course-timeline {
  max-width: 900px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.model-course-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 26px;
}

.model-course-timeline li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 46px;
  bottom: 3px;
  left: 23px;
  width: 2px;
  background: var(--line);
}

.model-course-step-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
}

.model-course-step-icon.onsen {
  background: #4f8da1;
}

.model-course-step-icon.pint {
  color: #3a2c22;
  background: var(--beer);
}

.model-course-step-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.model-course-phase {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.model-course-timeline h4 {
  margin: 2px 0 5px;
  font-size: 19px;
  line-height: 1.35;
}

.model-course-timeline p {
  margin: 0;
  color: var(--muted);
}

.model-course-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.model-course-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.model-course-notes h3 {
  margin: 0 0 12px;
  font-size: 21px;
}

.model-course-notes ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.hike-list-controls {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 34px;
}

.hike-list-controls p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.hike-load-more {
  min-width: 220px;
  color: var(--white);
  border-color: var(--forest);
  background: var(--forest);
}

.hike-load-more:hover,
.hike-load-more:focus {
  background: var(--forest-deep);
}

.list-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  color: var(--muted);
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trip-card {
  overflow: hidden;
}

.card-photo,
.detail-hero {
  position: relative;
  display: block;
  min-height: 230px;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(35, 66, 53, .88), rgba(111, 139, 77, .42)),
    url("../images/hero-mountain-trail.png") center / cover;
}

.tone-daisen .card-photo,
.detail-hero.tone-daisen {
  background:
    linear-gradient(140deg, rgba(15, 31, 24, .72), rgba(216, 231, 235, .16)),
    url("../images/daisen-img.jpg") center / cover;
}

.tone-volcano .card-photo,
.detail-hero.tone-volcano {
  background:
    linear-gradient(140deg, rgba(71, 58, 47, .86), rgba(196, 123, 58, .38)),
    url("../images/karakunidake-img.jpg") center / cover;
}

.tone-forest .card-photo,
.detail-hero.tone-forest {
  background:
    linear-gradient(140deg, rgba(28, 75, 58, .86), rgba(216, 231, 235, .28)),
    url("../images/hero-mountain-trail.png") center / cover;
}

.tone-daimonjiyama .card-photo,
.detail-hero.tone-daimonjiyama {
  background:
    linear-gradient(140deg, rgba(24, 49, 38, .66), rgba(216, 231, 235, .12)),
    url("../images/daimonjiyama-img.jpg") center / cover;
}

.tone-arima-sanzan .card-photo,
.detail-hero.tone-arima-sanzan {
  background:
    linear-gradient(140deg, rgba(24, 49, 38, .68), rgba(111, 139, 77, .14)),
    url("../images/arima-sanzan-img.jpg") center / cover;
}

.tone-ojigatake .card-photo,
.detail-hero.tone-ojigatake {
  background:
    linear-gradient(140deg, rgba(31, 55, 49, .64), rgba(216, 231, 235, .12)),
    url("../images/ojigatake-img.jpg") center / cover;
}

.tone-amagoyama .card-photo,
.detail-hero.tone-amagoyama {
  background:
    linear-gradient(140deg, rgba(31, 42, 36, .66), rgba(184, 126, 41, .16)),
    url("../images/amagoyama-img.jpg") center / cover;
}

.tone-ushiroyama .card-photo,
.detail-hero.tone-ushiroyama {
  background:
    linear-gradient(140deg, rgba(15, 31, 24, .78), rgba(35, 66, 53, .22)),
    url("../images/ushiroyama-img-5819.jpg") center / cover;
}

.tone-kaimondake .card-photo,
.detail-hero.tone-kaimondake {
  background:
    linear-gradient(140deg, rgba(20, 42, 34, .62), rgba(79, 141, 161, .16)),
    url("../images/kaimondake-img.jpg") center / cover;
}

.tone-nose-myokensan .card-photo,
.detail-hero.tone-nose-myokensan {
  background:
    linear-gradient(140deg, rgba(30, 54, 42, .66), rgba(111, 139, 77, .12)),
    url("../images/nose-myokensan-img.jpg") center / cover;
}

.tone-umanose-takamikurayama .card-photo,
.detail-hero.tone-umanose-takamikurayama {
  background:
    linear-gradient(140deg, rgba(26, 45, 36, .62), rgba(196, 123, 58, .14)),
    url("../images/umanose-takamikurayama-img.jpg") center / cover;
}

.tone-seppikosan .card-photo,
.detail-hero.tone-seppikosan {
  background:
    linear-gradient(140deg, rgba(26, 40, 34, .58), rgba(111, 139, 77, .10)),
    url("../images/seppikosan-img.jpg") center / cover;
}

.tone-sen-zan .card-photo,
.detail-hero.tone-sen-zan {
  background:
    linear-gradient(140deg, rgba(28, 52, 38, .54), rgba(79, 141, 161, .12)),
    url("../images/sen-zan-img.jpg") center / cover;
}

.tone-yuzuruhasan .card-photo,
.detail-hero.tone-yuzuruhasan {
  background:
    linear-gradient(140deg, rgba(34, 56, 40, .54), rgba(216, 231, 235, .12)),
    url("../images/yuzuruhasan-img.jpg") center / cover;
}

.tone-harima-alps-west .card-photo,
.detail-hero.tone-harima-alps-west {
  background:
    linear-gradient(140deg, rgba(31, 49, 38, .54), rgba(196, 123, 58, .10)),
    url("../images/harima-alps-west-img.jpg") center / cover;
}

.tone-harima-alps-traverse .card-photo,
.detail-hero.tone-harima-alps-traverse {
  background:
    linear-gradient(140deg, rgba(31, 49, 38, .48), rgba(196, 123, 58, .12)),
    url("../images/harima-alps-traverse-img.jpg") center / cover;
}

.tone-takamikurayama .card-photo,
.detail-hero.tone-takamikurayama {
  background:
    linear-gradient(140deg, rgba(31, 49, 38, .46), rgba(196, 123, 58, .12)),
    url("../images/takamikurayama-img.jpg") center / cover;
}

.tone-suma-alps-traverse .card-photo,
.detail-hero.tone-suma-alps-traverse {
  background:
    linear-gradient(140deg, rgba(31, 49, 38, .48), rgba(79, 141, 161, .10)),
    url("../images/suma-alps-traverse-img.jpg") center / cover;
}

.tone-soyama-beniyama .card-photo,
.detail-hero.tone-soyama-beniyama {
  background:
    linear-gradient(140deg, rgba(31, 49, 38, .48), rgba(196, 123, 58, .10)),
    url("../images/soyama-beniyama-img.jpg") center / cover;
}

.tone-kasagatayama .card-photo,
.detail-hero.tone-kasagatayama {
  background:
    linear-gradient(140deg, rgba(28, 52, 40, .46), rgba(79, 141, 161, .10)),
    url("../images/kasagatayama-img.jpg") center / cover;
}

.tone-tsurugisan .card-photo,
.detail-hero.tone-tsurugisan {
  background:
    linear-gradient(140deg, rgba(26, 45, 42, .42), rgba(79, 141, 161, .08)),
    url("../images/tsurugisan-img.jpg") center / cover;
}

.tone-mihirayama .card-photo,
.detail-hero.tone-mihirayama {
  background:
    linear-gradient(140deg, rgba(32, 56, 42, .50), rgba(79, 141, 161, .12)),
    url("../images/mihirayama-img.jpg") center / cover;
}

.tone-karasugasen .card-photo,
.detail-hero.tone-karasugasen {
  background:
    linear-gradient(140deg, rgba(24, 40, 34, .56), rgba(79, 141, 161, .12)),
    url("../images/karasugasen-img.jpg") center / cover;
}

.tone-kimen-dai .card-photo,
.detail-hero.tone-kimen-dai {
  background:
    linear-gradient(140deg, rgba(28, 51, 41, .50), rgba(79, 141, 161, .12)),
    url("../images/kimen-dai-img.jpg") center / cover;
}

.tone-yamato-katsuragisan .card-photo,
.detail-hero.tone-yamato-katsuragisan {
  background:
    linear-gradient(140deg, rgba(31, 50, 39, .50), rgba(196, 123, 58, .12)),
    url("../images/yamato-katsuragisan-img.jpg") center / cover;
}

.tone-rokkosan .card-photo,
.detail-hero.tone-rokkosan {
  background:
    linear-gradient(140deg, rgba(28, 49, 39, .50), rgba(79, 141, 161, .12)),
    url("../images/rokkosan-img.jpg") center / cover;
}

.tone-kotenguyama .card-photo,
.detail-hero.tone-kotenguyama {
  background:
    linear-gradient(140deg, rgba(31, 48, 40, .50), rgba(79, 141, 161, .12)),
    url("../images/kotenguyama-img.jpg") center / cover;
}

.tone-bishamonyama .card-photo,
.detail-hero.tone-bishamonyama {
  background:
    linear-gradient(140deg, rgba(30, 49, 40, .48), rgba(79, 141, 161, .12)),
    url("../images/bishamonyama-img.jpg") center / cover;
}

.tone-rokkosan-east-half .card-photo,
.detail-hero.tone-rokkosan-east-half {
  background:
    linear-gradient(140deg, rgba(18, 28, 32, .56), rgba(196, 123, 58, .10)),
    url("../images/rokkosan-east-half-img.jpg") center 34% / cover;
}

.tone-gozaishodake .card-photo,
.detail-hero.tone-gozaishodake {
  background:
    linear-gradient(140deg, rgba(31, 43, 36, .52), rgba(196, 123, 58, .10)),
    url("../images/gozaishodake-img.jpg") center / cover;
}

.tone-tennozan .card-photo,
.detail-hero.tone-tennozan {
  background:
    linear-gradient(140deg, rgba(31, 54, 41, .48), rgba(111, 139, 77, .10)),
    url("../images/tennozan-img.jpg") center / cover;
}

.tone-matogata-alps .card-photo,
.detail-hero.tone-matogata-alps {
  background:
    linear-gradient(140deg, rgba(27, 45, 41, .46), rgba(79, 141, 161, .10)),
    url("../images/matogata-alps-img.jpg") center / cover;
}

.tone-hyonosen .card-photo,
.detail-hero.tone-hyonosen {
  background:
    linear-gradient(140deg, rgba(30, 54, 40, .42), rgba(79, 141, 161, .08)),
    url("../images/hyonosen-img.jpg") center / cover;
}

.tone-ono-alps .card-photo,
.detail-hero.tone-ono-alps {
  background:
    linear-gradient(140deg, rgba(31, 45, 39, .48), rgba(196, 123, 58, .10)),
    url("../images/ono-alps-img.jpg") center / cover;
}

.tone-nakayama-renzan .card-photo,
.detail-hero.tone-nakayama-renzan {
  background:
    linear-gradient(140deg, rgba(31, 45, 39, .48), rgba(79, 141, 161, .10)),
    url("../images/nakayama-renzan-img.jpg") center / cover;
}

.tone-arimafuji .card-photo,
.detail-hero.tone-arimafuji {
  background:
    linear-gradient(140deg, rgba(31, 45, 39, .44), rgba(79, 141, 161, .08)),
    url("../images/arimafuji-img.jpg") center / cover;
}

.tone-rokkosan-traverse .card-photo,
.detail-hero.tone-rokkosan-traverse {
  background:
    linear-gradient(140deg, rgba(31, 45, 39, .46), rgba(79, 141, 161, .10)),
    url("../images/rokkosan-traverse-img.jpg") center / cover;
}

.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(35, 66, 53, .42), rgba(111, 139, 77, .12)),
    url("../images/hero-mountain-trail.png") center / cover;
}

.tone-daisen.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(15, 31, 24, .28), rgba(216, 231, 235, .04)),
    url("../images/daisen-img.jpg") center / cover;
}

.tone-volcano.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(71, 58, 47, .34), rgba(196, 123, 58, .12)),
    url("../images/karakunidake-img.jpg") center / cover;
}

.tone-forest.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(28, 75, 58, .36), rgba(216, 231, 235, .08)),
    url("../images/hero-mountain-trail.png") center / cover;
}

.tone-daimonjiyama.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(24, 49, 38, .26), rgba(216, 231, 235, .04)),
    url("../images/daimonjiyama-img.jpg") center / cover;
}

.tone-arima-sanzan.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(24, 49, 38, .28), rgba(111, 139, 77, .06)),
    url("../images/arima-sanzan-img.jpg") center / cover;
}

.tone-ojigatake.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(31, 55, 49, .24), rgba(216, 231, 235, .04)),
    url("../images/ojigatake-img.jpg") center / cover;
}

.tone-amagoyama.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(31, 42, 36, .26), rgba(184, 126, 41, .06)),
    url("../images/amagoyama-img.jpg") center / cover;
}

.tone-ushiroyama.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(15, 31, 24, .32), rgba(35, 66, 53, .08)),
    url("../images/ushiroyama-img-5819.jpg") center / cover;
}

.tone-kaimondake.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(20, 42, 34, .24), rgba(79, 141, 161, .06)),
    url("../images/kaimondake-img.jpg") center / cover;
}

.tone-nose-myokensan.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(30, 54, 42, .24), rgba(111, 139, 77, .05)),
    url("../images/nose-myokensan-img.jpg") center / cover;
}

.tone-umanose-takamikurayama.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(26, 45, 36, .24), rgba(196, 123, 58, .05)),
    url("../images/umanose-takamikurayama-img.jpg") center / cover;
}

.tone-seppikosan.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(26, 40, 34, .22), rgba(111, 139, 77, .04)),
    url("../images/seppikosan-img.jpg") center / cover;
}

.tone-sen-zan.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(28, 52, 38, .20), rgba(79, 141, 161, .04)),
    url("../images/sen-zan-img.jpg") center / cover;
}

.tone-yuzuruhasan.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(34, 56, 40, .20), rgba(216, 231, 235, .04)),
    url("../images/yuzuruhasan-img.jpg") center / cover;
}

.tone-harima-alps-west.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(31, 49, 38, .20), rgba(196, 123, 58, .04)),
    url("../images/harima-alps-west-img.jpg") center / cover;
}

.tone-harima-alps-traverse.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(31, 49, 38, .14), rgba(196, 123, 58, .04)),
    url("../images/harima-alps-traverse-img.jpg") center / cover;
}

.tone-takamikurayama.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(31, 49, 38, .14), rgba(196, 123, 58, .04)),
    url("../images/takamikurayama-img.jpg") center / cover;
}

.tone-suma-alps-traverse.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(31, 49, 38, .16), rgba(79, 141, 161, .04)),
    url("../images/suma-alps-traverse-img.jpg") center / cover;
}

.tone-soyama-beniyama.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(31, 49, 38, .16), rgba(196, 123, 58, .04)),
    url("../images/soyama-beniyama-img.jpg") center / cover;
}

.tone-kasagatayama.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(28, 52, 40, .14), rgba(79, 141, 161, .04)),
    url("../images/kasagatayama-img.jpg") center / cover;
}

.tone-tsurugisan.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(26, 45, 42, .12), rgba(79, 141, 161, .03)),
    url("../images/tsurugisan-img.jpg") center / cover;
}

.tone-mihirayama.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(32, 56, 42, .18), rgba(79, 141, 161, .04)),
    url("../images/mihirayama-img.jpg") center / cover;
}

.tone-karasugasen.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(24, 40, 34, .20), rgba(79, 141, 161, .04)),
    url("../images/karasugasen-img.jpg") center / cover;
}

.tone-kimen-dai.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(28, 51, 41, .18), rgba(79, 141, 161, .04)),
    url("../images/kimen-dai-img.jpg") center / cover;
}

.tone-yamato-katsuragisan.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(31, 50, 39, .18), rgba(196, 123, 58, .04)),
    url("../images/yamato-katsuragisan-img.jpg") center / cover;
}

.tone-rokkosan.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(28, 49, 39, .18), rgba(79, 141, 161, .04)),
    url("../images/rokkosan-img.jpg") center / cover;
}

.tone-kotenguyama.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(31, 48, 40, .18), rgba(79, 141, 161, .04)),
    url("../images/kotenguyama-img.jpg") center / cover;
}

.tone-bishamonyama.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(30, 49, 40, .16), rgba(79, 141, 161, .04)),
    url("../images/bishamonyama-img.jpg") center / cover;
}

.tone-rokkosan-east-half.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(18, 28, 32, .24), rgba(196, 123, 58, .04)),
    url("../images/rokkosan-east-half-img.jpg") center 34% / cover;
}

.tone-gozaishodake.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(31, 43, 36, .18), rgba(196, 123, 58, .04)),
    url("../images/gozaishodake-img.jpg") center / cover;
}

.tone-tennozan.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(31, 54, 41, .16), rgba(111, 139, 77, .04)),
    url("../images/tennozan-img.jpg") center / cover;
}

.tone-matogata-alps.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(27, 45, 41, .14), rgba(79, 141, 161, .04)),
    url("../images/matogata-alps-img.jpg") center / cover;
}

.tone-hyonosen.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(30, 54, 40, .14), rgba(79, 141, 161, .03)),
    url("../images/hyonosen-img.jpg") center / cover;
}

.tone-ono-alps.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(31, 45, 39, .16), rgba(196, 123, 58, .04)),
    url("../images/ono-alps-img.jpg") center / cover;
}

.tone-nakayama-renzan.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(31, 45, 39, .16), rgba(79, 141, 161, .04)),
    url("../images/nakayama-renzan-img.jpg") center / cover;
}

.tone-arimafuji.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(31, 45, 39, .14), rgba(79, 141, 161, .03)),
    url("../images/arimafuji-img.jpg") center / cover;
}

.tone-rokkosan-traverse.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(31, 45, 39, .16), rgba(79, 141, 161, .04)),
    url("../images/rokkosan-traverse-img.jpg") center / cover;
}

.tone-hachibuseyama .card-photo,
.detail-hero.tone-hachibuseyama,
.tone-hachibuseyama.trip-card .card-photo {
  background:
    linear-gradient(140deg, rgba(20, 40, 31, .24), rgba(79, 141, 161, .04)),
    url("../images/profile-header-new.jpg") center 65% / cover;
}

.card-photo::after,
.detail-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 40, 31, .58), transparent 55%);
}

.trip-card .card-photo::after {
  background: linear-gradient(0deg, rgba(20, 40, 31, .24), transparent 58%);
}

.card-icon-group {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 7px;
}

.card-icon-group .icon-badge.floating {
  position: static;
}

.card-icon-group .icon-badge.onsen,
.card-icon-group .icon-badge.pint {
  width: 34px;
  height: 34px;
}

.card-icon-group .icon-badge.onsen {
  background: #4f8da1;
}

.card-icon-group .icon-badge.pint {
  color: #3a2c22;
  background: var(--beer);
}

.card-icon-group .icon-badge.onsen svg,
.card-icon-group .icon-badge.pint svg {
  width: 19px;
  height: 19px;
}

.card-body {
  padding: 20px;
}

.meta-row {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.trip-card h3 {
  margin-top: 10px;
  font-size: 22px;
}

.trip-card p {
  color: var(--muted);
}

.stat-row {
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
}

.score-wrap {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.score-wrap > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.score {
  display: flex;
  gap: 5px;
}

.score span {
  width: 16px;
  height: 8px;
  border-radius: 99px;
  background: var(--line);
}

.score .filled {
  background: var(--beer);
}

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 30px 0 96px;
}

.mini-map,
.big-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255,255,255,.46) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.46) 1px, transparent 1px),
    radial-gradient(circle at 25% 35%, rgba(111, 139, 77, .34), transparent 22%),
    radial-gradient(circle at 72% 70%, rgba(216, 231, 235, .72), transparent 26%),
    #e7eadf;
  background-size: 46px 46px, 46px 46px, auto, auto, auto;
  box-shadow: var(--shadow);
}

.big-map {
  min-height: 620px;
}

.big-map.leaflet-container {
  font: inherit;
  background: #e7eadf;
}

.leaflet-peak-marker {
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
}

.leaflet-peak-pin {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 8px;
  background: var(--forest);
  box-shadow: 0 12px 26px rgba(27, 44, 36, .24);
  transform: rotate(-45deg);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.leaflet-peak-pin svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(45deg);
}

.leaflet-marker-icon.is-hovered .leaflet-peak-pin,
.leaflet-marker-icon.is-selected .leaflet-peak-pin,
.leaflet-peak-marker:hover .leaflet-peak-pin {
  border-color: var(--beer);
  box-shadow: 0 16px 32px rgba(27, 44, 36, .30);
  transform: rotate(-45deg) scale(1.12);
}

.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large {
  background: rgba(35, 66, 53, .24);
}

.marker-cluster-small div,
.marker-cluster-medium div,
.marker-cluster-large div {
  color: var(--forest-deep);
  background: var(--beer);
  font: 900 14px/32px var(--font-sans);
}

.leaflet-popup-content-wrapper {
  border-radius: 8px;
}

.leaflet-popup-content {
  margin: 12px;
}

.leaflet-popup-card {
  display: grid;
  gap: 5px;
  min-width: 180px;
}

.leaflet-popup-card span,
.leaflet-popup-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.leaflet-popup-card strong {
  color: var(--forest-deep);
  font-size: 16px;
}

.leaflet-popup-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 4px;
  padding: 7px 10px;
  color: var(--forest-deep);
  border-radius: 8px;
  background: var(--beer);
  font-weight: 900;
}

.map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 6px;
  background: var(--forest);
  box-shadow: 0 10px 26px rgba(27, 44, 36, .22);
  cursor: pointer;
  transform: translate(-50%, -100%) rotate(-45deg);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.map-pin:hover,
.map-pin:focus,
.map-pin.is-hovered,
.map-pin.is-selected {
  z-index: 4;
  border-color: var(--beer);
  box-shadow: 0 14px 30px rgba(27, 44, 36, .28);
  transform: translate(-50%, -100%) rotate(-45deg) scale(1.12);
}

.map-pin svg {
  transform: rotate(45deg);
}

.pin-onsen {
  background: #4f8da1;
}

.pin-pint {
  background: var(--amber);
}

.page-hero {
  position: relative;
  min-height: 440px;
  display: grid;
  align-items: end;
  margin-bottom: 20px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(20, 40, 31, .88), rgba(35, 66, 53, .42)),
    url("../images/hero-mountain-trail.png") center / cover;
}

.page-hero.compact {
  min-height: 350px;
}

.page-hero.hikes-hero {
  background:
    linear-gradient(120deg, rgba(20, 40, 31, .82), rgba(35, 66, 53, .28)),
    url("../images/hikes-header-2.jpg") center / cover;
}

.page-hero.map-hero {
  background:
    linear-gradient(120deg, rgba(20, 40, 31, .78), rgba(216, 231, 235, .16)),
    url("../images/map-header.jpg") center / cover;
}

.page-hero.survey-hero {
  background:
    linear-gradient(120deg, rgba(20, 40, 31, .82), rgba(35, 66, 53, .18)),
    url("../images/survey-header.jpg") center / cover;
}

.page-hero.onsen {
  background:
    linear-gradient(120deg, rgba(33, 71, 82, .88), rgba(216, 231, 235, .26)),
    url("../images/onsen-header.jpg") center / cover;
}

.page-hero.pint {
  background:
    linear-gradient(120deg, rgba(79, 53, 29, .9), rgba(196, 123, 58, .34)),
    url("../images/pub-header.jpg") center / cover;
}

.page-hero.profile {
  background:
    linear-gradient(120deg, rgba(20, 40, 31, .88), rgba(111, 139, 77, .36)),
    url("../images/profile-header-new.jpg") center 65% / cover;
}

.page-hero > div {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(50px, 5vw, 64px) 0;
}

.page-hero p,
.detail-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  font-size: 18px;
}

.filter-bar {
  width: min(1180px, calc(100% - 36px));
  margin: 24px auto 0;
}

.detail-hero {
  min-height: 580px;
  display: grid;
  align-items: end;
  color: var(--white);
}

.detail-hero h1 {
  max-width: 720px;
  font-size: clamp(30px, 4.4vw, 52px);
}

.detail-hero p {
  max-width: 620px;
  font-size: 16px;
}

.detail-hero-text {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.article-body {
  font-size: 18px;
}

.article-body h2 {
  margin: 34px 0 12px;
  font-size: 28px;
}

.article-body h2:first-child {
  margin-top: 0;
}

.detail-side {
  display: grid;
  gap: 18px;
  align-content: start;
}

.side-panel {
  padding: 20px;
}

.side-panel h2 {
  margin: 0 0 14px;
  font-size: 20px;
}

.data-list {
  margin: 0;
}

.data-list div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.data-list dt {
  color: var(--muted);
  font-weight: 800;
}

.data-list dd {
  margin: 0;
}

.yamap-links {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.yamap-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 12px;
  color: var(--forest);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.yamap-links a:hover {
  background: var(--moss);
}

.spot-list {
  display: grid;
  gap: 16px;
}

.spot-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px;
}

.spot-card p {
  margin: 10px 0;
  color: var(--muted);
}

.spot-area {
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
}

.spot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.spot-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 9px 12px;
  color: var(--forest);
  background: #f6f2e8;
  border: 1px solid rgba(35, 66, 53, .18);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.spot-action::after {
  content: "→";
  font-size: 15px;
  line-height: 1;
}

.spot-action.external::after {
  content: "↗";
}

.spot-action:hover {
  color: var(--forest);
  background: #fff8df;
  border-color: rgba(184, 126, 41, .45);
  transform: translateY(-1px);
}

.spot-card.onsen .icon-badge {
  background: #4f8da1;
}

.spot-card.pub .icon-badge {
  background: var(--amber);
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.member-card {
  padding: 24px;
}

.member-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.member-card p {
  color: var(--muted);
}

.member-profile-details {
  margin: 20px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.member-profile-details h4 {
  margin: 18px 0 8px;
  color: var(--forest);
  font-size: 15px;
}

.member-profile-details h4:first-child {
  margin-top: 0;
}

.member-profile-details ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.member-profile-details li + li {
  margin-top: 7px;
}

.member-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 6px;
  padding: 8px 14px;
  color: var(--forest);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.member-link:hover {
  background: var(--moss);
}

.avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-weight: 900;
  font-size: 22px;
}

.member-avatar-image {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: 34% center;
  border-radius: 50%;
}

.member-avatar-image.hiro-avatar {
  object-position: center 64%;
}

.member-avatar-image.tsuyo-avatar {
  object-position: 52% 53%;
}

.image-zoom-trigger {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: zoom-in;
}

.image-zoom-trigger:focus-visible {
  outline: 3px solid var(--beer);
  outline-offset: 3px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(12, 24, 19, .82);
}

.image-lightbox.open {
  display: grid;
}

.image-lightbox img {
  max-width: min(920px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  background: rgba(20, 40, 31, .65);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  padding: 32px 0 96px;
}

.map-panel {
  min-width: 0;
}

.map-search-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 14px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(27, 44, 36, .08);
}

.map-search-field {
  display: grid;
  gap: 6px;
}

.map-search-field label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.map-search-field input,
.map-search-field select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--forest-deep);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font: inherit;
  font-weight: 700;
}

.map-search-field input:focus,
.map-search-field select:focus {
  outline: 3px solid rgba(240, 182, 77, .34);
  border-color: var(--beer);
}

.map-clear {
  white-space: nowrap;
}

.map-toolbar {
  margin-bottom: 14px;
}

.map-view-tabs {
  display: none;
}

.map-view-tab {
  min-height: 44px;
  padding: 9px 16px;
  color: var(--forest);
  border: 0;
  border-radius: 6px;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.map-view-tab.active {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 6px 16px rgba(27, 44, 36, .14);
}

.map-list-wrap {
  min-width: 0;
}

.map-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 0 2px;
  color: var(--forest);
}

.map-list-head span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.map-list {
  display: grid;
  gap: 10px;
  align-content: start;
  max-height: 722px;
  overflow: auto;
  padding-right: 4px;
}

.map-list-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 14px;
  color: inherit;
  text-align: left;
  font: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.map-list-item:hover,
.map-list-item:focus,
.map-list-item.is-selected {
  border-color: rgba(240, 182, 77, .8);
  box-shadow: 0 12px 28px rgba(27, 44, 36, .10);
  transform: translateY(-1px);
}

.map-list-item small {
  display: block;
  color: var(--muted);
}

.map-empty {
  margin: 0;
  padding: 18px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.map-selection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid rgba(240, 182, 77, .7);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(27, 44, 36, .08);
}

.map-selection:empty {
  display: none;
}

.map-selection div {
  display: grid;
  gap: 3px;
}

.map-selection span,
.map-selection small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.map-selection strong {
  color: var(--forest-deep);
  font-size: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--forest-deep);
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  font-size: 14px;
  white-space: nowrap;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    padding: 12px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    width: 100%;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    padding: 12px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    width: 100%;
  }

  .intro-grid,
  .guide-video-section,
  .split-section,
  .instagram-callout,
  .survey-cta,
  .detail-layout,
  .map-layout {
    grid-template-columns: 1fr;
  }

  .survey-cta {
    align-items: start;
  }

  .survey-cta-compact .survey-cta-button {
    grid-column: auto;
  }

  .map-search-panel {
    grid-template-columns: 1fr 180px;
  }

  .hike-filter-selects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-search-field:first-child {
    grid-column: 1 / -1;
  }

  .map-list {
    max-height: none;
  }

  .map-view-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-bottom: 14px;
    padding: 4px;
    background: var(--moss);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .map-layout[data-map-view="map"] .map-list-wrap {
    display: none;
  }

  .map-layout[data-map-view="list"] .big-map,
  .map-layout[data-map-view="list"] .map-selection {
    display: none;
  }

  .feature-band,
  .card-grid,
  .card-grid.wide,
  .member-grid,
  .model-course-preview-grid {
    grid-template-columns: 1fr;
  }

  .beginner-guide-band-inner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .beginner-guide-band-inner .button {
    grid-column: 2;
    justify-self: start;
  }

  .guide-card-grid.four-columns,
  .guide-season-grid,
  .guide-layer-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-card-grid.three-columns,
  .guide-safety-grid {
    grid-template-columns: 1fr;
  }

  .guide-next-step {
    grid-template-columns: 1fr;
  }

  .guide-next-actions {
    justify-content: flex-start;
  }

  .model-course-preview-card {
    grid-template-columns: minmax(240px, .8fr) 1.2fr;
    grid-template-rows: auto;
  }

  .model-course-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-side {
    order: -1;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand span:last-child {
    font-size: 15px;
  }

  .brand-logo {
    width: 70px;
    height: 70px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding: 74px 0 82px;
  }

  .hero h1,
  .page-hero h1,
  .detail-hero h1 {
    font-size: 36px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .detail-hero {
    min-height: 520px;
  }

  .detail-hero h1 {
    font-size: 30px;
  }

  .detail-hero p {
    font-size: 15px;
  }

  .hero h1.main-copy {
    font-size: 28px;
    white-space: normal;
  }

  .hero h1.main-copy span {
    display: block;
  }

  .hero h1.main-copy span + span::before {
    content: none;
  }

  .filter-divider {
    display: none;
  }

  .filter-label {
    flex: 0 0 100%;
    margin-top: 6px;
  }

  .hike-filter-panel {
    padding: 16px;
  }

  .hike-filter-group {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hike-filter-group .filter-label {
    margin: 0;
    padding: 0;
  }

  .hike-filter-selects {
    grid-template-columns: 1fr;
  }

  .hike-filter-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .hike-filter-reset {
    align-self: start;
  }

  .site-footer p:last-child {
    font-size: 13px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .beginner-guide-band {
    padding: 0 14px 60px;
    scroll-margin-top: 92px;
  }

  .beginner-guide-band-inner {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .beginner-guide-band-inner .button {
    grid-column: auto;
    width: 100%;
  }

  .guide-video-section {
    grid-template-columns: 1fr;
    gap: 24px;
    width: calc(100% - 28px);
    margin-bottom: 38px;
    padding: 22px;
  }

  .guide-video-copy h2 {
    font-size: 28px;
  }

  .beginner-guide-band-icon,
  .guide-step {
    width: 50px;
    height: 50px;
  }

  .guide-jump-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px;
    scrollbar-width: thin;
  }

  .guide-jump-nav a {
    flex: 0 0 auto;
  }

  .guide-section {
    padding: 64px 0;
    scroll-margin-top: 95px;
  }

  .guide-section-heading {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 28px;
  }

  .guide-section-heading h2 {
    font-size: 29px;
  }

  .guide-section-heading p {
    font-size: 15px;
  }

  .guide-card-grid.four-columns,
  .guide-season-grid,
  .guide-layer-list,
  .guide-checklist,
  .guide-manner-list {
    grid-template-columns: 1fr;
  }

  .guide-number-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .guide-next-actions {
    display: grid;
  }

  .guide-next-actions .button {
    width: 100%;
  }

  .guide-reference-links {
    display: grid;
  }

  .model-course-preview-section {
    padding-top: 56px;
  }

  .model-course-preview-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .model-course-preview-image {
    min-height: 220px;
  }

  .model-course-detail-image {
    min-height: 310px;
    padding: 24px 20px;
  }

  .model-course-detail-image h2 {
    font-size: 29px;
  }

  .model-course-lead {
    font-size: 16px;
  }

  .model-course-facts,
  .model-course-notes {
    grid-template-columns: 1fr;
  }

  .model-course-facts {
    gap: 16px;
  }

  .model-course-timeline li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .model-course-step-icon {
    width: 42px;
    height: 42px;
  }

  .model-course-timeline li:not(:last-child)::before {
    top: 40px;
    left: 20px;
  }

  .survey-cta-section {
    padding-bottom: 62px;
  }

  .survey-cta {
    padding: 22px;
  }

  .instagram-section {
    padding-bottom: 62px;
  }

  .instagram-callout {
    padding: 22px;
  }

  .instagram-mark {
    width: 54px;
    height: 54px;
  }

  .instagram-link {
    width: 100%;
  }

  .survey-cta-icon {
    flex-wrap: wrap;
  }

  .survey-cta-button {
    width: 100%;
  }

  .section-heading,
  .site-footer {
    align-items: start;
    flex-direction: column;
  }

  .big-map {
    min-height: 520px;
  }

  .map-search-panel {
    grid-template-columns: 1fr;
  }

  .map-selection {
    align-items: stretch;
    flex-direction: column;
  }

  .map-clear,
  .map-selection .spot-action {
    width: 100%;
  }

}
