.map-search-ttl {
  text-align: center;
  margin-bottom: 20px;
  font-size: 42px;
  padding: 14px;
  line-height: 1.3;
}
.map-ttl-small-wrap {
  margin-bottom: 0;
  position: relative;
}
.map-ttl-small-wrap::before {
  content: "";
  width: 100%;
  height: 10px;
  background-color: #fbdd37;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.map-ttl-small {
  background-color: #fbdd37;
  display: flex;
  font-size: 20px;
  font-weight: bold;
  padding: 3px 20px;
  width: fit-content;
  margin-inline: auto;
  z-index: 2;
  position: relative;
}
.map-search-txt {
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.selectArea.selectBlock {
  margin-top: 60px;
  margin-inline: auto;
  width: 100%;
}
.option_link {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 4%;
  margin: 0;
}
.option_link li {
  width: 22%;
}
.option_link li a {
  align-items: center;
  color: #000;
  display: flex;
  justify-content: space-between;
  border: 1px solid #ff6a30;
  border-left: 5px solid #ff6a30;
  padding: 4px 8px;
  transition: .2s;
}
.option_link li a.mountainous-link {
  border: 1px solid #FF8EBD;
  border-left: 5px solid #FF8EBD;
}
.option_link li a.mountainous-link:hover {
  background-color: #FF8EBD;
}
.option_link li a.mountainous-link:hover .areaColor_sankan {
  color: #414141;
}
.option_link li a.nonmountainous-link {
  border: 1px solid #84D6FF;
  border-left: 5px solid #84D6FF;
}
.option_link li a.nonmountainous-link:hover {
  background-color: #84D6FF;
}
.option_link li a.nonmountainous-link:hover .areaColor_hisankan {
  color: #414141;
}



.option_link li a:hover {
  background-color: #FF6A30;
  color: #414141;
  text-decoration: none;
}
.option_link_ttl {
  color: #414141;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 0;
}
.option_link_ttl + p {
  color: #617074;
  font-size: 12px;
  margin-left: 10px;
  margin-bottom: 0;
}
.map-area-wrap svg {
  height: 100%;
  width: 100%;
}
.noclick {
  pointer-events: none;
}
.noclick text {
  font-family: 'Noto Sans JP';
}
.area {
  stroke: transparent;
  cursor: pointer;
  transition: fill 0.2s ease;
}
.MountainousArea {
  fill: #FF8EBD;
}
.NonMountainousArea {
  fill: #84D6FF;
}
.area:hover {
  fill: #FFE44F;
}
.all-map:hover .area {
  fill: #FFE44F;
}
.type-list {
  display: none;
  gap: 24px;
}
.type-list li {
  border-radius: 3px;
  padding: 4px 12px;
}
.type-mountainous {
  background-color: #FF8EBD;
}
.type-nonmountainous {
  background-color: #84D6FF;
}


@media screen and (max-width: 1000px) {
  .option_link {
    gap: 26px 5%;
  }
  .option_link li {
    width: 30%;
  }
}

@media screen and (max-width: 768px) {
  .selectArea.selectBlock {
    margin-top: 40px;
    width: 100%;
  }
  .option_link li {
    width: 47%;
  }
  .map-search-txt {
    font-size: 16px;
    text-align: left;
  }
  .map-area-wrap svg {
    display: none;
  }
  .type-list {
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 600px) {
  .option_link_ttl {
    font-size: 18px;
  }
  .option_link_ttl + p {
    display: none;
  }
}