.home-guide {
  overflow: hidden;
}

.home-intro {
  padding: 18px 14px 20px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 150, 76, .2), transparent 36%),
    linear-gradient(150deg, #fffaf3 0%, var(--warm) 100%);
  border-bottom: 1px solid var(--line);
}

.home-intro__lead-layout {
  display: block;
}

.home-intro__eyebrow {
  margin: 0 0 7px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

.home-intro h1 {
  margin: 0;
  font-size: clamp(26px, 7.5vw, 34px);
  line-height: 1.45;
  letter-spacing: .01em;
}

.home-intro h1 mark {
  padding: 0 .06em;
  color: inherit;
  background: linear-gradient(transparent 57%, rgba(255, 220, 66, .82) 57%, rgba(255, 220, 66, .82) 91%, transparent 91%);
  font-weight: 700;
}

.home-intro__lead {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.home-intro__lead strong {
  color: var(--ink);
  font-weight: 700;
}

.home-intro__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.home-intro__stats .home-intro__stat--access {
  color: var(--ink);
  background: #fff7c8;
  border-color: rgba(210, 157, 0, .28);
}

.home-intro__stats .home-intro__stat--access strong {
  color: #9d5700;
}

.home-intro__stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  padding: 5px 9px;
  color: var(--muted);
  background: rgba(255, 253, 248, .82);
  border: 1px solid rgba(182, 83, 43, .14);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.home-intro__stats strong {
  color: var(--orange);
  font-size: 16px;
  line-height: 1;
}

.home-intro__visual {
  position: relative;
  display: block;
  margin-top: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(23, 37, 31, .16);
}

.home-intro__visual::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(transparent, rgba(10, 27, 21, .76));
}

.home-intro__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.home-intro__visual:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.home-intro__visual:hover img {
  transform: scale(1.025);
}

.home-intro__photo-copy {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 15px;
  left: 16px;
  display: grid;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .38);
}

.home-intro__photo-copy small {
  margin-bottom: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}

.home-intro__photo-copy strong {
  font-size: 19px;
  line-height: 1.45;
}

.home-intro__photo-copy span {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
}

.home-path-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 17px;
}

.home-path-nav a {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 66px;
  padding: 9px 10px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(23, 37, 31, .05);
}

.home-path-nav .guide-icon {
  width: 25px;
  height: 25px;
  padding: 4px;
  color: var(--orange);
  background: var(--green-light);
  border-radius: 9px;
}

.home-path-nav span,
.home-path-nav strong,
.home-path-nav small {
  display: block;
  min-width: 0;
}

.home-path-nav strong {
  font-size: 13px;
  line-height: 1.4;
}

.home-path-nav small {
  margin-top: 2px;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-guide .guide-section {
  padding-block: 30px;
}

.home-guide .guide-section--first {
  padding-top: 26px;
}

.home-section-head {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  margin-bottom: 17px;
}

.home-section-head h2 {
  margin: 0 0 5px;
  font-size: 22px;
  line-height: 1.45;
}

.home-section-head p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
}

.home-section-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--orange);
  background: var(--green-light);
  border-radius: 13px;
}

.home-section-icon .guide-icon {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.home-featured-tags .guide-tag-card:first-child {
  grid-column: 1 / -1;
  min-height: 180px;
}

.home-featured-tags .guide-tag-card:first-child .guide-tag-card-name {
  font-size: 22px;
}

.home-featured-tags .guide-tag-card {
  border: 1px solid rgba(255, 255, 255, .38);
  box-shadow: 0 7px 18px rgba(23, 37, 31, .1);
}

.home-featured-tags .guide-tag-card:nth-child(n + 10),
.guide-photo-discovery-grid--home .guide-photo-discovery-card:nth-child(n + 10) {
  display: none;
}

.home-more {
  justify-content: space-between;
  padding: 0 18px;
  background: #8f3d20;
  box-shadow: 0 6px 16px rgba(111, 47, 25, .14);
}

.home-more .guide-icon {
  width: 19px;
  height: 19px;
  stroke-width: 2.3;
}

.home-map-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(132px, .92fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  background: #fffaf2;
  border: 1px solid #ead8c8;
  border-radius: 18px;
  box-shadow: 0 7px 20px rgba(75, 49, 32, .07);
}

.home-map-card__visual {
  min-width: 0;
  text-align: center;
}

.mie-area-map {
  display: block;
  width: 100%;
  max-width: 190px;
  height: auto;
  margin: 0 auto;
  overflow: visible;
}

.mie-area-map__link path {
  stroke: #fffaf2;
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
  transition: filter .18s ease, opacity .18s ease, transform .18s ease;
  transform-box: fill-box;
  transform-origin: center;
}

.mie-area-map__link--hokuse path { fill: #d86943; }
.mie-area-map__link--chuse path { fill: #7c70a2; }
.mie-area-map__link--nansei path { fill: #3f7fa5; }
.mie-area-map__link--iga path { fill: #d7a72e; }
.mie-area-map__link--higashikishu path { fill: #468474; }

.mie-area-map__link:hover path,
.mie-area-map__link:focus path {
  filter: brightness(.92) saturate(1.12);
  transform: scale(1.015);
}

.mie-area-map__link:focus {
  outline: none;
}

.mie-area-map__link:focus-visible path {
  stroke: var(--ink);
  stroke-width: 2.4;
}

.home-map-choices {
  display: grid;
  gap: 7px;
}

.home-map-choice {
  --area-color: var(--orange);
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) 16px;
  min-height: 62px;
  align-items: center;
  gap: 7px;
  padding: 7px 7px 7px 9px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #eadfd5;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(75, 49, 32, .04);
}

.home-map-choice--hokuse { --area-color: #d86943; }
.home-map-choice--chuse { --area-color: #7c70a2; }
.home-map-choice--nansei { --area-color: #3f7fa5; }
.home-map-choice--iga { --area-color: #d7a72e; }
.home-map-choice--higashikishu { --area-color: #468474; }

.home-map-choice__marker {
  width: 10px;
  height: 10px;
  background: var(--area-color);
  border-radius: 50%;
}

.home-map-choice__copy {
  display: grid;
  min-width: 0;
}

.home-map-choice__copy strong {
  font-size: 13px;
  line-height: 1.35;
}

.home-map-choice__tagline {
  margin-top: 5px;
  color: #5f554d;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.home-map-choice__copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.home-map-choice > .guide-icon {
  width: 16px;
  height: 16px;
  color: var(--area-color);
  stroke-width: 2.3;
}

.home-guide .spot-list,
.home-guide .article-list {
  gap: 10px;
}

.home-guide .guide-spot-card,
.home-guide .guide-article-card {
  box-shadow: 0 5px 16px rgba(23, 37, 31, .05);
}

.home-popular-article-list .guide-article-card:first-child {
  border-color: #efc5ad;
  box-shadow: 0 8px 22px rgba(143, 61, 32, .11);
}

.home-popular-article-list .guide-article-card:not(:first-child),
.top-latest-articles .guide-article-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
}

.home-popular-article-list .guide-article-card:not(:first-child) .guide-card-image,
.top-latest-articles .guide-article-card .guide-card-image {
  height: 100%;
  min-height: 118px;
  aspect-ratio: 1;
}

.home-popular-article-list .guide-article-card:not(:first-child) .card-copy,
.top-latest-articles .guide-article-card .card-copy {
  padding: 10px 11px;
}

.home-popular-article-list .guide-article-card:not(:first-child) h3,
.top-latest-articles .guide-article-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 5px 0 0;
  font-size: 15px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-popular-article-list .guide-article-card:not(:first-child) .card-copy > p,
.top-latest-articles .guide-article-card .card-copy > p {
  display: none;
}

.home-popular-article-list .guide-article-card:not(:first-child) .article-location-badge,
.top-latest-articles .guide-article-card .article-location-badge {
  top: 7px;
  left: 7px;
  padding: 3px 7px;
  font-size: 11px;
}

.home-photo-library {
  border-top: 1px solid var(--line);
}

.home-photo-library__head {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 13px;
}

.home-photo-library__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--orange);
  background: var(--green-light);
  border-radius: 16px;
}

.home-photo-library__icon .guide-icon {
  width: 27px;
  height: 27px;
}

.home-photo-library h2 {
  margin: 0 0 7px;
  font-size: 20px;
}

.home-photo-library p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.home-photo-library__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.home-photo-library__grid li {
  min-width: 0;
}

.home-photo-library__card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  color: #fff;
  background: #d9dfdc;
  border-radius: 12px;
  box-shadow: 0 5px 14px rgba(20, 38, 30, .09);
}

.home-photo-library__card::after {
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(transparent, rgba(10, 24, 18, .8));
  content: "";
}

.home-photo-library__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.home-photo-library__card strong {
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 9px;
  left: 10px;
  display: -webkit-box;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.45;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .45);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-photo-library__rank {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 7px;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #fff;
  background: rgba(143, 61, 32, .92);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

.home-photo-library__card:hover img,
.home-photo-library__card:focus-visible img {
  transform: scale(1.04);
}

.home-photo-library__cta {
  gap: 12px;
}

.home-photo-library__cta .guide-icon {
  width: 16px;
  height: 16px;
}

@media (max-width: 350px) {
  .home-intro__stats {
    gap: 5px;
  }

  .home-intro__stats span {
    padding-inline: 7px;
  }

  .home-path-nav a {
    grid-template-columns: 28px minmax(0, 1fr);
    padding-inline: 8px;
  }

  .home-path-nav .guide-icon {
    width: 23px;
    height: 23px;
  }

  .home-map-card {
    grid-template-columns: minmax(0, 1fr) 126px;
    padding: 10px;
  }

  .home-map-choice {
    grid-template-columns: 9px minmax(0, 1fr);
    min-height: 62px;
    padding-inline: 7px;
  }

  .home-map-choice > .guide-icon {
    display: none;
  }
}
