/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #8B6914;
  --color-primary-light: #B8941F;
  --color-accent: #4A7C59;
  --color-accent-light: #6BA37A;
  --color-bg: #FFF8F0;
  --color-bg-card: #FFFFFF;
  --color-text: #333333;
  --color-text-light: #777777;
  --color-border: #E8DCC8;
  --color-danger: #C0392B;
  --color-visited: #E67E22;
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --max-width: 960px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-light);
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== Header ===== */
.site-header {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}

.site-logo:hover {
  color: #fff;
  opacity: 0.9;
}

.site-logo .logo-icon {
  height: 80px;
  width: auto;
  margin: -20px 0;
}

.site-logo .logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.85;
  display: block;
  margin-top: -4px;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

/* Navigation */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ===== Main ===== */
.main-content {
  flex: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 16px;
  width: 100%;
}

/* ===== Hero Section ===== */
.hero {
  text-align: center;
  padding: 32px 16px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.hero p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* ===== GPS Button ===== */
.gps-section {
  text-align: center;
  margin-bottom: 24px;
}

.btn-gps {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
  font-family: inherit;
}

.btn-gps:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.4);
}

.btn-gps:active {
  transform: translateY(0);
}

.btn-gps.loading {
  opacity: 0.7;
  cursor: wait;
}

.gps-status {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* ===== Search Box ===== */
.search-section {
  margin-bottom: 16px;
}

.search-box {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: 50px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--color-text);
  background: var(--color-bg-card);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.search-input:focus {
  border-color: #D4A017;
}

.search-input::placeholder {
  color: var(--color-text-light);
  font-size: 0.85rem;
}

.search-clear-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: var(--color-border);
  color: var(--color-text-light);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.search-clear-btn:hover {
  background: #ccc;
}

/* ===== Prefecture Buttons ===== */
.pref-section {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

/* ===== Filter Buttons ===== */
.filter-section {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-group-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-light);
  white-space: nowrap;
}

.filter-group-btns {
  display: flex;
  gap: 4px;
}

.filter-btn {
  padding: 6px 14px;
  border: 2px solid var(--color-border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-family: inherit;
  color: var(--color-text-light);
  background: var(--color-bg-card);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--color-accent, #D4A017);
  color: var(--color-accent, #D4A017);
}

.filter-btn.active {
  background: #D4A017;
  color: #fff;
  border-color: #D4A017;
}

.filter-clear-btn {
  padding: 6px 14px;
  border: 1px solid var(--color-text-light);
  border-radius: 50px;
  font-size: 0.75rem;
  font-family: inherit;
  color: var(--color-text-light);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  margin-left: 4px;
}

.filter-clear-btn:hover {
  background: var(--color-text-light);
  color: #fff;
}

/* ===== Danger Banner ===== */
.danger-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #FDF2F0 0%, #FBE8E4 100%);
  border: 1px solid #E8C4BE;
  border-left: 4px solid var(--color-danger);
  border-radius: var(--radius-sm);
  color: var(--color-danger);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow: 0 1px 3px rgba(192, 57, 43, 0.08);
}

.danger-banner::before {
  content: "\26A0";
  font-size: 1.1rem;
}

.danger-banner::after {
  content: "\203A";
  font-size: 1.2rem;
  margin-left: auto;
  opacity: 0.5;
}

.danger-banner:hover {
  background: linear-gradient(135deg, #FBE8E4 0%, #F9DDD7 100%);
  color: var(--color-danger);
  box-shadow: 0 2px 6px rgba(192, 57, 43, 0.15);
  transform: translateY(-1px);
}

/* ===== Spot Count ===== */
.spot-count {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.spot-legend {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.legend-stamp {
  width: 32px;
  height: 32px;
}

/* ===== Spot Cards ===== */
.spot-list {
  display: grid;
  gap: 16px;
}

.spot-card {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.visited-stamp {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 88px;
  height: 88px;
  opacity: 0.85;
  transform: rotate(15deg);
  pointer-events: none;
}

@media (max-width: 768px) {
  .visited-stamp {
    width: 72px;
    height: 72px;
    bottom: -8px;
    right: -8px;
  }
}

.spot-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  color: inherit;
}

.spot-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.spot-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  flex: 1;
  min-width: 0;
}

.spot-card-right {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-left: 8px;
}

/* ===== Favorite Button (spot card) ===== */
.fav-btn {
  background: none;
  border: none;
  font-size: 1.15rem;
  cursor: pointer;
  color: var(--color-border);
  padding: 2px 4px;
  line-height: 1;
  transition: color 0.15s, transform 0.1s;
}

.fav-btn:hover {
  color: #E05555;
  transform: scale(1.2);
}

.fav-btn.active {
  color: #E05555;
}

.spot-card-distance {
  font-size: 0.82rem;
  color: var(--color-accent);
  font-weight: 600;
  white-space: nowrap;
  margin-left: 8px;
}

.spot-card-address {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 10px;
}

.spot-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 50px;
  background: var(--color-bg);
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
}

.tag-visited {
  background: var(--color-visited);
  color: #fff;
  border-color: var(--color-visited);
  font-weight: 600;
}

.tag-feature {
  background: #F0F8EC;
  color: #5A8A3A;
  border-color: #B8D9A0;
}
.tag-warn {
  background: #FFF3E0;
  color: #E65100;
  border-color: #FFB74D;
}
.detail-warn {
  background: #FFF3E0;
  color: #E65100;
  border: 1px solid #FFB74D;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: bold;
  margin-bottom: 16px;
}

.tag-category {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

/* ===== Spot Detail ===== */
.spot-gallery {
  margin-bottom: 16px;
}

.spot-gallery-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.spot-gallery-img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav:hover {
  background: rgba(0, 0, 0, 0.6);
}

.gallery-prev { left: 8px; }
.gallery-next { right: 8px; }

.spot-gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  overflow-x: auto;
}

.spot-gallery-thumb {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}

.spot-gallery-thumb:hover {
  opacity: 0.8;
}

.spot-gallery-thumb.active {
  opacity: 1;
  border-color: var(--color-primary);
}

.spot-detail {
  width: 100%;
  position: relative;
}

.spot-detail-title {
  font-size: 1.4rem;
  color: var(--color-primary);
  line-height: 1.4;
  margin-bottom: 4px;
  padding-right: 70px;
}

.spot-detail-header {
  position: relative;
}

.detail-visited-stamp {
  position: absolute;
  top: -8px;
  right: 0;
  width: 64px;
  height: 64px;
  opacity: 0.9;
  transform: rotate(10deg);
  pointer-events: none;
  z-index: 1;
}

.spot-detail-address {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

/* ===== Favorite Button (spot detail) ===== */
.detail-fav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  padding: 7px 18px;
  border: 2px solid var(--color-border);
  border-radius: 50px;
  background: none;
  font-size: 0.85rem;
  font-family: inherit;
  color: var(--color-text-light);
  cursor: pointer;
  transition: all 0.2s;
}

.detail-fav-btn:hover {
  border-color: #E05555;
  color: #E05555;
}

.detail-fav-btn.active {
  border-color: #E05555;
  color: #E05555;
  background: #FFF0F0;
}

/* ===== Nearby Spots ===== */
.nearby-spots {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.nearby-spots h3 {
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.nearby-spot-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  transition: all 0.2s;
  color: inherit;
}

.nearby-spot-card:last-child {
  margin-bottom: 0;
}

.nearby-spot-card:hover {
  border-color: var(--color-primary);
  color: inherit;
  box-shadow: var(--shadow-card);
}

.nearby-spot-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.nearby-spot-dist {
  font-size: 0.82rem;
  color: var(--color-accent);
  font-weight: 600;
  white-space: nowrap;
  margin-left: 8px;
}

.spot-map {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: block;
}

.detail-info-list {
  margin-bottom: 20px;
}

.detail-info-item {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.detail-info-item:last-child {
  border-bottom: none;
}

.detail-info-label {
  font-size: 0.82rem;
  color: var(--color-text-light);
  font-weight: 600;
  width: 100px;
  flex-shrink: 0;
}

.detail-info-value {
  font-size: 0.9rem;
  word-break: break-all;
}

.detail-remarks {
  margin-top: 20px;
  padding: 16px;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.8;
}

.detail-remarks h3 {
  font-size: 0.85rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.back-link:hover {
  color: var(--color-primary);
}

/* ===== Rating (Stars / Bars) ===== */
.rating {
  display: inline-flex;
  gap: 2px;
}

.rating-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
}

.rating-dot.filled {
  background: var(--color-primary);
}

/* ===== Share Buttons ===== */
.share-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.share-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 50px;
  color: #fff;
  transition: opacity 0.2s;
}

.share-btn:hover {
  opacity: 0.8;
  color: #fff;
}

.share-x {
  background: #000;
}

.share-line {
  background: #06C755;
}

.share-fb {
  background: #1877F2;
}

/* ===== Spot Detail: Danger Alert ===== */
.detail-danger-alert {
  margin-top: 20px;
  padding: 16px;
  background: linear-gradient(135deg, #FDF2F0 0%, #FBE8E4 100%);
  border: 1px solid #E8C4BE;
  border-left: 4px solid var(--color-danger);
  border-radius: var(--radius-sm);
}

.detail-danger-alert h3 {
  font-size: 0.9rem;
  color: var(--color-danger);
  margin-bottom: 12px;
}

.detail-danger-item {
  padding: 10px 0;
  border-bottom: 1px solid #f0e0dc;
}

.detail-danger-item:last-of-type {
  border-bottom: none;
}

.detail-danger-item p {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-top: 4px;
}

.detail-danger-date {
  font-size: 0.75rem;
  color: var(--color-danger);
  margin-left: 6px;
}

.detail-danger-more {
  display: block;
  text-align: center;
  margin-top: 12px;
  padding: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-danger);
  border: 1px solid var(--color-danger);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.detail-danger-more:hover {
  background: var(--color-danger);
  color: #fff;
}

/* ===== Danger Page ===== */
.page-title {
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.page-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.page-desc-note {
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 500;
}

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

.danger-card {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 16px;
  border-left: 4px solid var(--color-danger);
}

.danger-card-date {
  font-size: 0.78rem;
  color: var(--color-danger);
  font-weight: 600;
  margin-bottom: 4px;
}

.danger-card-location {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.danger-card-type {
  display: inline-block;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 50px;
  background: #FDECEA;
  color: var(--color-danger);
  margin-bottom: 8px;
}

.danger-card-desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.danger-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #f0e0dc;
}

.danger-spot-link {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--color-bg);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  transition: all 0.2s;
}

.danger-spot-link:hover {
  background: var(--color-primary);
  color: #fff;
}

.danger-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--color-text-light);
}

/* ===== Static Pages ===== */
.static-page {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 32px 24px;
}

.static-page h1 {
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-border);
}

.static-page h2 {
  font-size: 1.05rem;
  color: var(--color-text);
  margin-top: 24px;
  margin-bottom: 8px;
}

.static-page p,
.static-page li {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text);
}

.static-page ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.static-page li {
  margin-bottom: 4px;
}

.contact-form-wrapper {
  margin-top: 20px;
}

.contact-form-wrapper iframe {
  width: 100%;
  min-height: 1600px;
  border: none;
  border-radius: var(--radius-sm);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 24px 16px;
  margin-top: auto;
  font-size: 0.78rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.footer-nav a:hover {
  color: #fff;
}

/* ===== Ad Placeholder ===== */
.ad-slot {
  display: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Empty State ===== */
.empty-state {
  text-align: center;
  padding: 48px 20px;
  color: var(--color-text-light);
}

.empty-state-img {
  width: 120px;
  height: auto;
  margin-bottom: 16px;
  opacity: 0.8;
}

.empty-state p {
  font-size: 0.95rem;
}

/* ===== Loading ===== */
.loading-spinner {
  text-align: center;
  padding: 40px;
  color: var(--color-text-light);
}

/* ===== 404 ===== */
.page-404 {
  text-align: center;
  padding: 80px 20px;
}

.page-404-img {
  width: 160px;
  height: auto;
  margin-bottom: 16px;
}

.page-404 h1 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.page-404 p {
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.btn-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.btn-home:hover {
  background: var(--color-primary-light);
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-primary);
    flex-direction: column;
    padding: 8px 16px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 10px 12px;
    margin: 2px 0;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
  }

  .hero h1 {
    font-size: 1.25rem;
  }

  .spot-detail-title {
    font-size: 1.2rem;
    padding-right: 70px;
  }

  .detail-info-label {
    width: 80px;
    font-size: 0.78rem;
  }

  .detail-info-value {
    font-size: 0.85rem;
  }

  .static-page {
    padding: 24px 16px;
  }
}

@media (min-width: 769px) {
  .spot-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .danger-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .spot-map {
    height: 350px;
  }
}
