.teto-bodymap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 16px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  color: #263238;
}

.teto-bodymap * {
  box-sizing: border-box;
}

.tbm-title {
  text-align: center;
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: 0.04em;
}

.tbm-lead {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 24px;
  line-height: 1.8;
  color: #556;
  font-size: 15px;
}

.tbm-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.tbm-map-area {
  background: #f7fbfb;
  border: 1px solid #dcebea;
  border-radius: 18px;
  padding: 18px;
}

.tbm-map-title {
  text-align: center;
  font-size: 18px;
  margin: 0 0 14px;
}

.tbm-svg-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.tbm-figure {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e4eeee;
  padding: 10px;
  text-align: center;
}

.tbm-figure h4 {
  margin: 0 0 8px;
  font-size: 14px;
  color: #607d8b;
}

.tbm-figure svg {
  width: 100%;
  max-width: 260px;
  height: auto;
}

.tbm-body-line {
  fill: none;
  stroke: #9bb8b8;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tbm-body-fill {
  fill: #edf7f6;
  stroke: #9bb8b8;
  stroke-width: 4;
}

.tbm-hotspot {
  cursor: pointer;
  outline: none;
}

.tbm-hotspot circle {
  fill: #ffffff;
  stroke: #2f8f8c;
  stroke-width: 3;
  transition: 0.2s;
}

.tbm-hotspot text {
  font-size: 11px;
  fill: #245f5d;
  font-weight: 700;
  pointer-events: none;
}

.tbm-hotspot:hover circle,
.tbm-hotspot.is-active circle,
.tbm-hotspot:focus circle {
  fill: #2f8f8c;
}

.tbm-hotspot:hover text,
.tbm-hotspot.is-active text,
.tbm-hotspot:focus text {
  fill: #ffffff;
}

.tbm-panel {
  background: #ffffff;
  border: 1px solid #dcebea;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.tbm-panel h3 {
  margin: 0 0 10px;
  font-size: 24px;
  color: #245f5d;
}

.tbm-note {
  font-size: 13px;
  line-height: 1.7;
  color: #5d7775;
  background: #f2f8f7;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 16px;
}

.tbm-section {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #edf2f2;
}

.tbm-section h4 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #37474f;
}

.tbm-section p {
  margin: 0;
  line-height: 1.8;
  font-size: 15px;
}

.tbm-cta {
  margin-top: 18px;
  padding: 14px;
  border-radius: 12px;
  background: #fff9ef;
  border: 1px solid #f0dfbd;
  line-height: 1.8;
  font-size: 14px;
}

.tbm-chip-area {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.tbm-chip {
  border: 1px solid #aacdcc;
  background: #fff;
  color: #245f5d;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
}

.tbm-chip.is-active,
.tbm-chip:hover,
.tbm-chip:focus {
  background: #2f8f8c;
  color: #fff;
}

@media (max-width: 820px) {
  .tbm-layout {
    grid-template-columns: 1fr;
  }

  .tbm-svg-wrap {
    grid-template-columns: 1fr;
  }

  .tbm-title {
    font-size: 24px;
  }
}
