.pageTitle h1 .icon {
  color: #009CBD;
  background: #FFF102;
  padding: 4px 6px;
  margin-left: 15px;
  font-size: 16px;
  position: relative;
}
.pageTitle h1 .icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  margin-top: -5px;
  border: 5px solid transparent;
  border-right: 10px solid #FFF102;
}
.pageTitle.flex h1 {
  display: flex;
  align-items: center;
}

.rapidMap__title {
  display: none;
}

@media screen and (max-width: 768px) {
  .pageTitle h1 .icon {
    color: #009CBD;
    background: #FFF102;
    padding: 4px 6px;
    margin-left: 0;
    font-size: 13px;
    margin-bottom: 10px;
    position: relative;
  }
  .pageTitle h1 .icon:before {
    content: "";
    position: absolute;
    bottom: -12px;
    top: unset;
    left: 50%;
    margin-left: -5px;
    border: 5px solid transparent;
    border-top: 8px solid #FFF102;
    z-index: 2;
  }
  .pageTitle.flex h1 {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .rapidMap__title {
    display: block;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0;
    padding-left: 40px;
    background: url(../images/page/icon_map.svg) no-repeat;
    background-position: left;
    background-size: 26px;
    width: 92%;
    margin: 0 auto 10px;
    box-sizing: border-box;
  }
}
.rapidMap {
  background: #F4F4F4;
  padding: 20px 20px 30px;
  position: relative;
  box-sizing: border-box;
}
.rapidMap__img {
  margin: 56px 0 170px;
  padding-left: 15%;
}
.rapidMap__item {
  position: absolute;
  background: #009CBD;
  padding: 10px 6px 6px;
}
.rapidMap__item.kyusyu {
  bottom: 100px;
  left: 20px;
}
.rapidMap__item.shikoku {
  bottom: 100px;
  left: 218px;
}
.rapidMap__item.tokai {
  bottom: 100px;
  right: 128px;
}
.rapidMap__item.tyugoku {
  top: 20px;
  left: 20px;
}
.rapidMap__item.tohoku {
  top: 20px;
  right: 20px;
}
.rapidMap__item.kantou {
  top: 218px;
  right: 20px;
}
.rapidMap__item.kansai {
  top: 20px;
  left: 132px;
}
.rapidMap__item.hokuriku {
  top: 20px;
  left: 244px;
}
.rapidMap__item--lists {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.rapidMap__item--lists.flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.rapidMap__item--title {
  text-align: center;
  color: #fff;
  font-size: 13px;
  margin-bottom: 10px;
  font-weight: bold;
  display: block;
}
.rapidMap__item--list label span {
  display: block;
  text-align: center;
  background: #fff;
  color: #535353;
  font-size: 16px;
  padding: 5px 0;
  width: 80px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .rapidMap__item--list label span:hover {
    background: #004A79;
    color: #fff;
  }
}
.rapidMap__item--list input {
  display: none;
}
.rapidMap__item--list input:checked + span {
  background: #004A79;
  color: #fff;
}

.rapidMap__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.rapidMap__btn .allCheckbox {
  font-size: 14px;
  text-align: center;
  height: 41px;
  width: 200px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #009CBD;
  cursor: pointer;
}
.rapidMap__btn .allCheckbox input {
  display: none;
}
.rapidMap__btn .rSearchBtn {
  background: linear-gradient(91deg, rgba(0, 39, 117, 0) 35.76%, rgba(0, 39, 117, 0.8) 100%), #009CBD;
  border-radius: 4px;
  border: 1px solid #009CBD;
}
.rapidMap__btn .rSearchBtn input {
  font-size: 14px;
  cursor: pointer;
  color: #fff;
  text-align: center;
  height: 41px;
  width: 200px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/common/icon_search.png) no-repeat;
  background-size: 14px;
  background-position: 37%;
  padding-left: 20px;
  border: none;
}
.rapidMap__btn .rSearchBtn:hover {
  opacity: 0.8;
}

@media screen and (max-width: 999px) {
  .rapidMap__item.tokai {
    right: 20px;
  }
  .rapidMap__item--list label span {
    font-size: 13px;
    width: 60px;
  }
}
@media screen and (max-width: 768px) {
  .rapidMap {
    background: #fff;
    padding: 0;
    position: relative;
    box-sizing: border-box;
  }
  .rapidMap__img {
    display: none;
  }
  .rapidMap__item {
    position: unset;
    background: #009CBD;
    padding: 16px;
    margin-bottom: 1px;
  }
  .rapidMap__item--lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .rapidMap__item--lists.flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .rapidMap__item--title {
    text-align: center;
    color: #fff;
    font-size: 13px;
    margin-bottom: 15px;
    font-weight: bold;
    display: block;
  }
  .rapidMap__item--list label span {
    display: block;
    text-align: center;
    background: #fff;
    color: #535353;
    font-size: 16px;
    padding: 15px 0;
    width: 100%;
    cursor: pointer;
  }

  .rapidMap__item--list input {
    display: none;
  }
  .rapidMap__item--list input:checked + span {
    background: #004A79;
    color: #fff;
  }
  .rapidMap__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    box-sizing: border-box;
    padding: 10px;
    background: #fff;
  }
  .rapidMap__btn .rCheckBtn {
    width: 49.5%;
  }
  .rapidMap__btn .allCheckbox {
    font-size: 14px;
    text-align: center;
    height: 41px;
    width: 100%;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #009CBD;
    cursor: pointer;
  }
  .rapidMap__btn .allCheckbox input {
    display: none;
  }
  .rapidMap__btn .rSearchBtn {
    background: linear-gradient(91deg, rgba(0, 39, 117, 0) 35.76%, rgba(0, 39, 117, 0.8) 100%), #009CBD;
    border-radius: 4px;
    width: 49.5%;
    border: 1px solid #009CBD;
  }
  .rapidMap__btn .rSearchBtn input {
    font-size: 14px;
    cursor: pointer;
    color: #fff;
    text-align: center;
    height: 41px;
    width: 100%;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/common/icon_search.png) no-repeat;
    background-size: 14px;
    background-position: 37%;
    padding-left: 20px;
    border: none;
  }
  .rapidMap__btn .rSearchBtn:hover {
    opacity: 0.8;
  }
  .float {
    display: none !important;
  }
}/*# sourceMappingURL=map.css.map */