/* エリアマップ */
/* 路線、駅名 */
.cls-1 {
  fill: #007a69;
}
.cls-1,
.cls-2,
.cls-3,
.cls-4,
.cls-5,
.cls-22 {
  stroke-width: 0px;
}
.cls-6 {
  font-size: 14px;
}
.cls-6,
.cls-7,
.cls-8,
.cls-9,
.cls-10 {
  font-family: YuGothic-Bold, 'Yu Gothic';
  font-weight: 700;
}
.cls-6,
.cls-11,
.cls-5 {
  fill: #231815;
}
.cls-12,
.cls-13,
.cls-14,
.cls-15,
.cls-16,
.cls-17,
.cls-18,
.cls-19 {
  fill: none;
}
.cls-12,
.cls-13,
.cls-15,
.cls-17,
.cls-18,
.cls-19 {
  stroke-miterlimit: 10;
}
.cls-12,
.cls-13,
.cls-17 {
  stroke: #fff;
}
.cls-12,
.cls-13,
.cls-17,
.cls-19 {
  stroke-width: 4px;
}
.cls-13 {
  stroke-dasharray: 0 0 11.69 11.69;
}
.cls-2 {
  fill: #ffe939;
}
.cls-20 {
  letter-spacing: 0.25em;
}
.cls-7,
.cls-8 {
  fill: #601986;
}
.cls-7,
.cls-9,
.cls-10 {
  font-size: 16px;
}
.cls-8 {
  font-size: 18px;
}
.cls-14,
.cls-16 {
  stroke-width: 2px;
}
.cls-14,
.cls-19 {
  stroke: #134890;
}
.cls-3 {
  fill: #006934;
}
.cls-21 {
  fill: #006636;
  font-family: KozGoPr6N-Medium-90ms-RKSJ-H, 'Kozuka Gothic Pr6N';
}
.cls-21,
.cls-11 {
  font-size: 13px;
  font-weight: 500;
}
.cls-9 {
  fill: #040000;
}
.cls-15,
.cls-16 {
  stroke: #601986;
}
.cls-15,
.cls-18 {
  stroke-width: 5px;
}
.cls-11 {
  font-family: YuGothic-Medium, 'Yu Gothic';
  glyph-orientation-vertical: 0deg;
  text-orientation: upright;
  writing-mode: tb;
}
.cls-10 {
  fill: #134890;
}
.cls-17 {
  stroke-dasharray: 0 0 12.09 12.09;
}
.cls-4,
.cls-22 {
  fill: #fff;
}
.cls-18 {
  stroke: #231815;
}
.cls-19 {
  stroke-linecap: round;
}

/* --------- */
.map-spot-link {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.map-spot-link a {
  color: #3a3a3a;
}
.map-grid {
  display: flex;
  align-items: flex-start;
}
.map-container {
  width: 65%;
}
.info-panel {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}
.map-area-title {
  font-size: 1.4em;
  margin-bottom: 8px;
}
.map-svg {
  width: 100%;
  height: auto;
  display: block;
}
.map-area {
  cursor: pointer;
  transition: fill 0.25s ease, stroke 0.25s ease;
  pointer-events: all;
  outline: none;
}
.map-area:hover {
  fill: #a3912d;
}
.map-area.active {
  fill: #ffc107;
  stroke: #333;
  stroke-width: 1 !important;
}
.map-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 100px;
}

/* エリア名吹き出し */
.mobile-area-bubbles {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.area-bubble {
  position: absolute;
  background: #ffc107;
  color: #333;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
  z-index: 10;
}
.area-bubble:hover {
  background: #ffeb3b;
  transform: scale(1.05);
}
.area-bubble.active {
  background: #ff9800;
  color: #fff;
}

/* 各エリアの位置調整 */
.map-container {
  position: relative;
}
.area-bubble[data-area='ohuna'] {
  top: -1%;
  right: 54%;
}
.area-bubble[data-area='kitakamakura'] {
  top: 33%;
  right: 25%;
}
.area-bubble[data-area='kamakura'] {
  bottom: 35%;
  right: 38%;
}
.area-bubble[data-area='nikaidou'] {
  top: 55%;
  right: 0;
}
.area-bubble[data-area='hase'] {
  bottom: -5%;
  left: 45%;
}
.area-bubble[data-area='inamuragasaki'] {
  bottom: -6%;
  left: 13%;
}
.area-bubble[data-area='omathi'] {
  bottom: 0;
  right: 15%;
}
.area-bubble[data-area='kamakurayama'] {
  bottom: 40%;
  left: 12%;
}
/* アイコン */
.area-icon-area {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.area-icon {
  position: absolute;
}
/* アイコン 位置調整*/
.icon-1 {
  top: 12%;
  left: 35%;
}
.icon-2 {
  bottom: 36%;
  right: 29%;
}
.icon-3 {
  bottom: 1.5%;
  left: 25.5%;
}
.icon-4 {
  bottom: 2%;
  left: 0%;
}
.icon-5 {
  bottom: 22%;
  left: 44%;
}
.icon-5 img {
  width: 90%;
}
.icon-6 {
  max-width: 85px;
  height: auto;
  bottom: 36%;
  left: 34%;
}
@media screen and (max-width: 1300px) {
  .area-bubble[data-area='inamuragasaki'] {
    bottom: -8%;
  }
  .area-icon img,
  .icon-5 img {
    width: 75%;
  }
  .icon-2 {
    right: 26%;
  }
  .icon-3 {
    bottom: 2%;
    left: 29%;
  }
  .icon-4 {
    bottom: 4%;
  }
}
@media screen and (max-width: 1100px) {
  .area-icon img,
  .icon-5 img {
    width: 65%;
  }
  .area-bubble[data-area='ohuna'] {
    top: -3%;
  }
  .area-bubble[data-area='inamuragasaki'] {
    bottom: -9%;
  }
  .area-bubble[data-area='kitakamakura'] {
    top: 31%;
    right: 20%;
  }
}
@media screen and (max-width: 920px) {
  .map-btn {
    margin-top: 50px;
  }
  .area-bubble[data-area='inamuragasaki'] {
    bottom: -3%;
  }
  .map-grid {
    align-items: center;
    flex-direction: column-reverse;
    gap: 32px;
    margin-top: 12%;
  }
  .info-panel {
    background: none;
    box-shadow: none;
    color: #fafafa;
  }
  .map-spot-link a {
    color: #fafafa;
  }
  .cls-4,
  .cls-5,
  .cls-11,
  .cls-16,
  .cls-14,
  .area-icon-area {
    display: none;
  }
  .mobile-area-bubbles {
    display: block;
  }

  .map-container {
    width: 100%;
  }
  .map-grid .btn-more {
    color: #fafafa;
    border-bottom: 1px solid #fafafa;
    font-size: 1.3em;
  }
  .map-grid .btn-more:after {
    background: #fafafa;
  }
}
@media screen and (max-width: 648px) {
  /* 各エリアの位置調整 */
  .area-bubble[data-area='ohuna'] {
    top: -7%;
  }
  .area-bubble[data-area='kitakamakura'] {
    top: 10%;
    right: 5%;
  }
  .area-bubble[data-area='nikaidou'] {
    right: 0;
  }
  .area-bubble[data-area='hase'] {
    bottom: -10%;
    left: 40%;
  }
  .area-bubble[data-area='inamuragasaki'] {
    bottom: -12%;
    left: 4%;
  }
  .area-bubble[data-area='omathi'] {
    bottom: -5%;
    right: 5%;
  }
  .area-bubble {
    padding: 4px 6px;
  }
}
