/* ============================================================
   MIYAGI FISHING DASHBOARD
   Sporty × Pacific Navy × Sunrise Orange
   ============================================================ */

:root {
  --navy:        #0A2540;
  --navy-deep:   #061A2E;
  --navy-2:      #1E3A5F;
  --blue:        #1E5BA8;
  --blue-light:  #4A8DD6;
  --orange:      #FF6B1A;
  --orange-2:    #FF8A47;
  --sunrise:     #FFB347;
  --white:       #FFFFFF;
  --gray-50:     #F5F7FA;
  --gray-100:    #ECF1F7;
  --gray-200:    #DCE3EC;
  --gray-300:    #B8C2CE;
  --gray-500:    #6B7785;
  --gray-700:    #2E3A4A;
  --text:        #0D1B2E;
  --text-2:      #4A5A6E;
  --text-3:      #8593A3;
  --line:        #E2E8EE;
  --shadow-sm:   0 2px 8px rgba(10,37,64,0.06);
  --shadow:      0 8px 24px rgba(10,37,64,0.10);
  --shadow-lg:   0 20px 48px rgba(10,37,64,0.14);
  --radius:      4px;
  --radius-lg:   8px;
  --container:   1200px;
  --font-en:     'Anton', 'Bebas Neue', 'DM Sans', sans-serif;
  --font-jp:     'Noto Sans JP', sans-serif;
  --font-num:    'DM Sans', 'Noto Sans JP', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: transparent;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: var(--radius);
  position: relative;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: auto -3px -3px auto;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 2px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-en {
  font-family: var(--font-en);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--navy);
}
.logo-ja {
  font-size: 0.65rem;
  color: var(--text-3);
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.nav {
  display: flex;
  gap: 4px;
}
.nav-link {
  font-family: var(--font-en);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  color: var(--text-2);
  padding: 8px 12px;
  position: relative;
  transition: color 0.2s;
}
.nav-link::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover { color: var(--navy); }
.nav-link:hover::before { transform: scaleX(1); }
.header-time {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-num);
  font-size: 0.78rem;
  color: var(--text-2);
}
.header-badge {
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  background: var(--navy);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 2px;
  position: relative;
}
.header-badge::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(10,37,64,0.96) 0%, rgba(30,91,168,0.92) 100%),
    radial-gradient(circle at 80% 20%, rgba(255,107,26,0.4), transparent 50%),
    var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 120px 0 160px;
}
.hero-stripes {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    transparent 0,
    transparent 80px,
    rgba(255,255,255,0.04) 80px,
    rgba(255,255,255,0.04) 82px
  );
  pointer-events: none;
}
.hero::before {
  content: "MIYAGI";
  position: absolute;
  font-family: var(--font-en);
  font-size: 28vw;
  letter-spacing: 0;
  line-height: 0.85;
  color: rgba(255,255,255,0.045);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  pointer-events: none;
  white-space: nowrap;
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  color: var(--sunrise);
  margin-bottom: 32px;
  padding: 6px 14px 6px 12px;
  border: 1px solid rgba(255,179,71,0.35);
  border-radius: 2px;
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  display: block;
  margin-bottom: 28px;
}
.hero-title-en {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.hero-title-en::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.18em;
  background: var(--orange);
  margin-left: 0.15em;
  vertical-align: 0.18em;
}
.hero-title-ja {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-top: 20px;
  letter-spacing: 0.08em;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-en);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  color: var(--white);
  background: var(--orange);
  padding: 18px 32px;
  border-radius: 2px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 30px rgba(255,107,26,0.45);
}
.hero-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--white);
  transform: scaleY(0.4);
  transition: transform 0.25s;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255,107,26,0.6);
}
.hero-cta:hover::before { transform: scaleY(1); }
.hero-cta span {
  display: inline-block;
  font-size: 1.2rem;
  animation: bob 1.6s infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
.hero-stats {
  display: flex;
  gap: 32px;
  padding-left: 32px;
  border-left: 1px solid rgba(255,255,255,0.2);
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--font-en);
  font-size: 2rem;
  line-height: 1;
  color: var(--sunrise);
}
.stat-label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
}
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 90px; display: block; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.main { background: var(--white); }
.section {
  padding: 100px 0;
  position: relative;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.section.visible { opacity: 1; transform: none; }
.section--alt { background: var(--gray-50); }

.section-head {
  margin-bottom: 56px;
  max-width: 720px;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 16px;
}
.label-bar {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--orange);
}
.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative;
}
.section-desc {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.85;
}

.state-msg {
  text-align: center;
  padding: 48px 20px;
  color: var(--text-3);
  font-size: 0.92rem;
}
.state-error { color: var(--orange); }

/* ============================================================
   WEATHER
   ============================================================ */
.area-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--line);
  flex-wrap: wrap;
}
.area-tab {
  padding: 14px 24px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-3);
  position: relative;
  transition: color 0.2s;
}
.area-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.area-tab:hover { color: var(--navy); }
.area-tab.active { color: var(--navy); font-weight: 700; }
.area-tab.active::after { transform: scaleX(1); }

.forecast-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.forecast-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 22px 18px;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.forecast-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.forecast-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue-light);
  box-shadow: var(--shadow);
}
.forecast-card:hover::before { transform: scaleX(1); }
.forecast-date {
  font-family: var(--font-num);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.forecast-icon { font-size: 2rem; margin: 6px 0 8px; }
.forecast-weather { font-size: 0.78rem; color: var(--text-2); margin-bottom: 12px; min-height: 2.4em; }
.forecast-temps {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-num);
}
.temp-max { color: var(--orange); font-weight: 700; }
.temp-min { color: var(--blue); font-weight: 700; }

.coastal-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.coastal-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 4px;
  background: var(--orange);
}
.coastal-strip h4 {
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--sunrise);
  margin-bottom: 6px;
}
.coastal-strip p { font-size: 0.92rem; line-height: 1.7; }

/* ============================================================
   WATER TEMP
   ============================================================ */
.wtemp-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.wtemp-card {
  grid-row: span 2;
  background: linear-gradient(160deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.wtemp-card::before {
  content: "SST";
  position: absolute;
  right: -12px;
  bottom: -32px;
  font-family: var(--font-en);
  font-size: 9rem;
  color: rgba(255,255,255,0.06);
  line-height: 0.85;
}
.wtemp-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--orange);
}
.wtemp-card-label {
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--sunrise);
  margin-bottom: 14px;
}
.wtemp-card-value {
  font-family: var(--font-en);
  font-size: 4.2rem;
  line-height: 1;
  color: var(--white);
  margin-bottom: 10px;
}
.wtemp-card-area {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.wtemp-card-source {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.wtemp-card-diff {
  font-family: var(--font-num);
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 2px;
  background: rgba(255,255,255,0.12);
}
.wtemp-card-diff.warm { color: var(--sunrise); background: rgba(255,179,71,0.18); }
.wtemp-card-diff.cool { color: var(--blue-light); background: rgba(74,141,214,0.2); }

.wtemp-chart-box {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: var(--radius);
}
.wtemp-chart-label {
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--text-3);
  margin-bottom: 14px;
}
.wtemp-canvas-wrap {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.wtemp-advice-box {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 20px 24px;
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
}
.wtemp-advice-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.wtemp-advice-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-2);
  padding: 4px 0;
}
.fish-tag {
  font-weight: 700;
  font-size: 0.78rem;
  background: var(--gray-100);
  color: var(--navy);
  padding: 2px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

/* ============================================================
   TIDE
   ============================================================ */
.tide-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.tide-select-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tide-label {
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--text-3);
}
.tide-select {
  font-family: var(--font-jp);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 36px 10px 14px;
  border: 2px solid var(--navy);
  border-radius: 2px;
  background: var(--white) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%230A2540' d='M0 0h10L5 6z'/></svg>") no-repeat right 14px center;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  color: var(--navy);
}
.tide-date-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tide-nav-btn {
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 9px 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: 2px;
  transition: background 0.2s;
}
.tide-nav-btn:hover { background: var(--orange); }
.tide-date-text {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  min-width: 100px;
  text-align: center;
}

.tide-extrema {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}
.tide-point {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 14px 16px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.tide-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}
.tide-point.high::before { background: var(--orange); }
.tide-point.low::before { background: var(--blue); }
.tp-label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--text-3);
  margin-bottom: 4px;
}
.tp-time {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
}
.tp-height {
  font-family: var(--font-num);
  font-size: 0.78rem;
  color: var(--text-2);
  margin-top: 2px;
}

.tide-chart-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: var(--radius);
  height: 280px;
  position: relative;
}

/* ============================================================
   FISH + SNS
   ============================================================ */
.fish-sns-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.fish-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.ffilter {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 9px 16px;
  background: var(--white);
  color: var(--text-2);
  border: 1.5px solid var(--line);
  border-radius: 2px;
  transition: all 0.2s;
}
.ffilter:hover { border-color: var(--navy); color: var(--navy); }
.ffilter.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.ffilter--warming.active {
  background: var(--orange);
  border-color: var(--orange);
}

.fish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.fish-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
}
.fish-card.hidden { display: none; }
.fish-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--blue-light);
}
.fish-img-wrap {
  height: 110px;
  overflow: hidden;
  background: var(--gray-100);
  position: relative;
}
.fish-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.fish-card:hover .fish-img { transform: scale(1.06); }
.fish-body { padding: 14px 16px 16px; }
.fish-emoji { font-size: 1.6rem; margin-bottom: 4px; }
.fish-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.fish-kanji {
  font-size: 0.74rem;
  color: var(--text-3);
  margin-bottom: 8px;
}
.fish-note {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 10px;
}
.fish-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.fish-badge {
  font-size: 0.66rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
  background: var(--gray-100);
  color: var(--text-2);
  letter-spacing: 0.04em;
}
.fish-badge.peak { background: var(--orange); color: var(--white); }
.fish-badge.warming { background: var(--sunrise); color: var(--navy); }
.fish-badge.river { background: var(--blue); color: var(--white); }

/* SNS column */
.sns-col {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 90px;
}
.sns-col-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 6px;
}
.sns-col-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.sns-tab-row {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--line);
}
.sns-tab {
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 10px 16px;
  color: var(--text-3);
  position: relative;
}
.sns-tab::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.sns-tab.active { color: var(--navy); }
.sns-tab.active::after { transform: scaleX(1); }
.ig-panel { padding: 8px 0; }
.ig-title { font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.ig-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ig-tags a {
  font-size: 0.78rem;
  padding: 6px 10px;
  background: var(--gray-100);
  color: var(--navy);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.ig-tags a:hover { background: var(--orange); color: var(--white); }

/* ============================================================
   MAP
   ============================================================ */
.map-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.mfilter {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 9px 16px;
  background: var(--white);
  color: var(--text-2);
  border: 1.5px solid var(--line);
  border-radius: 2px;
  transition: all 0.2s;
}
.mfilter:hover { border-color: var(--navy); color: var(--navy); }
.mfilter.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.map-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
#fishing-map {
  height: 600px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  z-index: 1;
}
.spot-detail {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 600px;
  overflow-y: auto;
  position: sticky;
  top: 90px;
}
.spot-hint {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
  color: var(--text-3);
  text-align: center;
}
.spot-hint-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.6;
}
.spot-hint p { font-size: 0.88rem; line-height: 1.7; }

.spot-photo-wrap {
  height: 200px;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
}
.spot-photo-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--text-3);
}
.spot-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spot-info-body { padding: 22px 24px 28px; }
.spot-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.spot-address {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--text-2);
  background: var(--gray-50);
  padding: 10px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
  border-left: 3px solid var(--orange);
}
.address-icon { flex-shrink: 0; }
.spot-gmap-btns {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.btn-gmap {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 12px;
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 2px;
  transition: all 0.2s;
}
.btn-gmap:hover { background: var(--navy); color: var(--white); }
.btn-gmap--nav {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-gmap--nav:hover { background: var(--navy); border-color: var(--navy); }

.spot-types {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}
.spot-type-tag {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--navy);
  color: var(--white);
  padding: 3px 9px;
  border-radius: 2px;
}
.spot-desc {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.spot-fish-title {
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 8px;
}
.spot-fish-list { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.spot-fish-tag {
  font-size: 0.74rem;
  background: var(--gray-100);
  color: var(--navy);
  padding: 3px 9px;
  border-radius: 2px;
  font-weight: 500;
}
.difficulty-row { font-size: 0.82rem; color: var(--text-2); margin-bottom: 8px; }
.diff-beginner    { color: #2dc653; font-weight: 700; }
.diff-intermediate{ color: var(--orange); font-weight: 700; }
.diff-advanced    { color: #d62828; font-weight: 700; }
.spot-season {
  font-size: 0.82rem;
  color: var(--text-2);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.spot-season span { font-weight: 700; color: var(--navy); }

/* ============================================================
   REPORTS
   ============================================================ */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.report-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.report-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.report-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue-light);
  box-shadow: var(--shadow);
}
.report-card:hover::before { transform: scaleX(1); }
.report-card--anglers::before { background: var(--orange); transform: scaleX(1); }
.report-card--anglers { border-color: rgba(255,107,26,0.3); }
.report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.report-source {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--orange);
  font-weight: 700;
}
.report-date {
  font-family: var(--font-num);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-3);
}
.report-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 8px;
}
.report-desc {
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 12px;
}
.report-link {
  font-family: var(--font-en);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--blue);
  font-weight: 700;
}

/* ============================================================
   GEAR
   ============================================================ */
.gear-season-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.gear-season-chip {
  font-family: var(--font-en);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  background: var(--orange);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 2px;
  position: relative;
}
.gear-season-chip::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--navy);
}
.gear-season-note { font-size: 0.85rem; color: var(--text-2); }

.gear-picks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 56px;
}
.gear-pick-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gear-pick-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--sunrise));
}
.gear-pick-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.gear-pick-rank {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  background: var(--navy);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.gear-pick-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 4px;
}
.gear-pick-brand {
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 8px;
}
.gear-pick-cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--gray-100);
  color: var(--navy);
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 8px;
}
.gear-pick-target { font-size: 0.78rem; color: var(--text-2); margin-bottom: 4px; }
.gear-pick-price {
  font-family: var(--font-num);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 10px;
}
.gear-pick-desc {
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 14px;
}
.gear-pick-links { display: flex; gap: 8px; }
.gear-link {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 9px 10px;
  border-radius: 2px;
  transition: all 0.2s;
}
.gear-link.amazon {
  background: var(--navy);
  color: var(--white);
}
.gear-link.amazon:hover { background: var(--orange); }
.gear-link.naturum {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.gear-link.naturum:hover { background: var(--navy); color: var(--white); }

.gear-cat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.gear-cat-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}
.gear-cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.gcat {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 14px;
  background: var(--white);
  color: var(--text-2);
  border: 1.5px solid var(--line);
  border-radius: 2px;
  transition: all 0.2s;
}
.gcat:hover { border-color: var(--navy); color: var(--navy); }
.gcat.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.gear-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-bottom: 56px;
}
.gear-item-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform 0.2s, border-color 0.2s;
}
.gear-item-card:hover {
  transform: translateY(-2px);
  border-color: var(--blue-light);
}
.gear-item-name { font-weight: 700; color: var(--navy); margin-bottom: 4px; line-height: 1.4; }
.gear-item-brand {
  font-family: var(--font-en);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 8px;
}
.gear-item-desc { font-size: 0.8rem; color: var(--text-2); line-height: 1.7; margin-bottom: 8px; }
.gear-item-price {
  font-family: var(--font-num);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 10px;
}
.gear-item-links { display: flex; }

.gear-kw-head {
  font-family: var(--font-en);
  font-size: 1rem;
  letter-spacing: 0.14em;
  color: var(--navy);
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 3px solid var(--orange);
}
.gear-kw-list { display: flex; flex-wrap: wrap; gap: 8px; }
.gear-kw {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 14px;
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--line);
  border-radius: 2px;
  transition: all 0.2s;
}
.gear-kw:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--sunrise) 50%, var(--orange) 100%);
}
.footer::after {
  content: "MIYAGI";
  position: absolute;
  font-family: var(--font-en);
  font-size: 14rem;
  color: rgba(255,255,255,0.04);
  bottom: -3rem;
  right: -2rem;
  letter-spacing: 0;
  pointer-events: none;
  line-height: 1;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.footer-brand .footer-en {
  font-family: var(--font-en);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--white);
}
.footer-brand .footer-ja {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.footer-note {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav { display: none; }
  .header-inner { height: 60px; }
  .hero { padding: 80px 0 120px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-stats { padding-left: 0; border-left: none; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.2); width: 100%; }
  .section { padding: 64px 0; }
  .wtemp-layout { grid-template-columns: 1fr; }
  .wtemp-card { grid-row: auto; }
  .fish-sns-layout { grid-template-columns: 1fr; }
  .map-layout { grid-template-columns: 1fr; }
  .spot-detail { height: auto; max-height: 600px; position: static; }
  .sns-col { position: static; }
}
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .header-time { display: none; }
  .hero-title-en { font-size: 3rem; }
  .hero-stats { gap: 18px; }
  .stat-num { font-size: 1.6rem; }
  .section-title { font-size: 1.6rem; }
  .tide-toolbar { flex-direction: column; align-items: stretch; }
  .gear-cat-head { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   YOUTUBE VIDEO CARDS
   ============================================================ */
.yt-video-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.yt-card {
  display: flex;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  text-decoration: none;
  color: inherit;
}
.yt-card:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
}
.yt-thumb {
  width: 120px;
  min-width: 120px;
  height: 68px;
  object-fit: cover;
  background: var(--gray-100);
}
.yt-info {
  padding: 8px 10px 8px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
}
.yt-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.yt-meta {
  font-size: 0.72rem;
  color: var(--text-3);
  font-family: var(--font-num);
}
.yt-fallback-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.yt-fallback-links a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  padding: 10px 14px;
  background: var(--gray-50);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.yt-fallback-links a:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* ============================================================
   BBS 掲示板
   ============================================================ */
.bbs-setup-notice {
  background: var(--gray-50);
  border: 1.5px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 32px;
}
.bbs-setup-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.bbs-setup-steps {
  padding-left: 20px;
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 2;
}
.bbs-setup-steps a { color: var(--orange); font-weight: 700; }
.bbs-sql-block {
  margin-top: 16px;
  font-size: 0.82rem;
}
.bbs-sql-block summary {
  cursor: pointer;
  color: var(--blue);
  font-weight: 700;
  padding: 6px 0;
}
.bbs-sql-block pre {
  background: var(--navy);
  color: #7dd3fc;
  padding: 16px;
  border-radius: var(--radius);
  overflow-x: auto;
  font-size: 0.75rem;
  line-height: 1.7;
  margin-top: 10px;
}

.bbs-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.bbs-cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bbs-cat {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 14px;
  background: var(--white);
  color: var(--text-2);
  border: 1.5px solid var(--line);
  border-radius: 2px;
  transition: all 0.2s;
}
.bbs-cat:hover { border-color: var(--navy); color: var(--navy); }
.bbs-cat.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.bbs-new-btn {
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  background: var(--orange);
  color: var(--white);
  border-radius: 2px;
  transition: background 0.2s;
  white-space: nowrap;
}
.bbs-new-btn:hover { background: var(--navy); }

.bbs-new-form {
  background: var(--white);
  border: 1.5px solid var(--orange);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 24px;
}
.bbs-form-head {
  font-family: var(--font-en);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  color: var(--orange);
  margin-bottom: 12px;
}
.bbs-input {
  width: 100%;
  font-family: var(--font-jp);
  font-size: 0.9rem;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: 2px;
  margin-bottom: 8px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  display: block;
}
.bbs-input:focus { outline: none; border-color: var(--orange); }
.bbs-textarea {
  width: 100%;
  font-family: var(--font-jp);
  font-size: 0.9rem;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: 2px;
  margin-bottom: 10px;
  color: var(--text);
  background: var(--white);
  resize: vertical;
  transition: border-color 0.2s;
  display: block;
}
.bbs-textarea:focus { outline: none; border-color: var(--orange); }
.bbs-form-btns { display: flex; gap: 8px; }
.bbs-submit-btn {
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 20px;
  background: var(--orange);
  color: var(--white);
  border-radius: 2px;
  transition: background 0.2s;
}
.bbs-submit-btn:hover { background: var(--navy); }
.bbs-cancel-btn {
  font-size: 0.88rem;
  padding: 10px 16px;
  background: var(--white);
  color: var(--text-2);
  border: 1.5px solid var(--line);
  border-radius: 2px;
}

.bbs-thread-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.bbs-thread-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.15s;
  text-align: left;
  width: 100%;
}
.bbs-thread-row:last-child { border-bottom: none; }
.bbs-thread-row:hover { background: var(--gray-50); }
.bbs-thread-main { min-width: 0; }
.bbs-thread-cat-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.bbs-cat-report { background: rgba(30,91,168,0.1); color: var(--blue); }
.bbs-cat-spot   { background: rgba(255,107,26,0.12); color: var(--orange); }
.bbs-cat-gear   { background: rgba(10,37,64,0.08); color: var(--navy); }
.bbs-cat-free   { background: var(--gray-100); color: var(--text-2); }
.bbs-thread-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bbs-thread-meta {
  font-size: 0.74rem;
  color: var(--text-3);
  font-family: var(--font-num);
}
.bbs-thread-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.bbs-reply-count {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
}
.bbs-reply-label {
  font-size: 0.68rem;
  color: var(--text-3);
  font-family: var(--font-en);
  letter-spacing: 0.1em;
}

/* スレッド内 */
.bbs-back-btn {
  font-family: var(--font-en);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--text-2);
  padding: 8px 14px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 2px;
  margin-bottom: 16px;
  transition: all 0.2s;
  display: inline-block;
}
.bbs-back-btn:hover { border-color: var(--navy); color: var(--navy); }

.bbs-thread-header {
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.bbs-thread-header::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--orange);
}
.bbs-thread-header-cat {
  font-size: 0.72rem;
  color: var(--sunrise);
  font-family: var(--font-en);
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}
.bbs-thread-header-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}
.bbs-thread-header-meta {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-num);
}

.bbs-posts {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}
.bbs-post {
  padding: 16px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.bbs-post:last-child { border-bottom: none; }
.bbs-post:nth-child(even) { background: var(--gray-50); }
.bbs-post-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.bbs-post-num {
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--orange);
  font-weight: 700;
}
.bbs-post-author {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}
.bbs-post-date {
  font-size: 0.72rem;
  color: var(--text-3);
  font-family: var(--font-num);
}
.bbs-post-body {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
  white-space: pre-wrap;
  word-break: break-word;
}

.bbs-reply-form {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 20px 22px;
}

/* ============================================================
   LEAFLET TUNING
   ============================================================ */
.leaflet-popup-content-wrapper {
  border-radius: var(--radius) !important;
  border-left: 3px solid var(--orange);
}
.leaflet-popup-content {
  font-family: var(--font-jp);
  font-size: 0.82rem !important;
  line-height: 1.6 !important;
  color: var(--text) !important;
  margin: 12px 14px !important;
}
.leaflet-popup-content strong { color: var(--navy); }
