@charset "utf-8";
.map_wrap svg{
  width: 100%;
  height: auto;
}
.map_pc{
  display: none;
}
.map_svg{
  position: relative;
}
@media screen and (min-width: 768px) {
  .map_pc{
    display: block;
  }
  .map_sp{
    display: none;
  }
}

/* 塗り */
.fill_evenodd {
  fill-rule: evenodd;
}
.map_fukuoka .fill_opacity {
  fill-opacity: .4;
}
.map_fukuoka .fill_navy {
  fill: #020068;
}
.map_fukuoka .fill_white {
  fill: #ffffff;
}
.map_fukuoka .fill_green {
  fill: #499f68;
}
.map_fukuoka .fill_mint {
  fill: #6bd5a3;
}
.map_fukuoka .fill_red {
  fill: #ea5454;
}
.map_fukuoka .fill_pale {
  fill: #c5eefe;
}
.map_fukuoka .fill_blue {
  fill: #3c90ce;
}
.map_fukuoka .fill_black {
  fill: #333333;
}
.map_fukuoka .fill_purple {
  fill: #9147ab;
}
@media screen and (min-width: 768px) {
  .btn_map:hover .btn_text{
    fill: #fff;
  }
  .map_fukuoka .btn_map:hover .btn_border{
    fill: #fff;
  }
  .map_fukuoka .btn_map.btn_navy:hover .btn_bg{
    fill: #020068;
  }
  .map_fukuoka .btn_map.btn_red:hover .btn_bg{
    fill: #ea5454;
  }
  .map_fukuoka .btn_map.btn_blue:hover .btn_bg{
    fill: #3c90ce;
  }
  .map_fukuoka .btn_map.btn_purple:hover .btn_bg{
    fill: #9147ab;
  }
  .map_fukuoka .fill_opacity {
    fill-opacity: .6;
  }
}

.nav_select{
  margin-top: 16px;
}
.nav_select-head{
  display: none;
}
.nav_select-body{
  padding-bottom: 16px;
}
.nav_select-list{
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
}
.nav_select-item{
  width: calc(33.3333% - 11px);
  padding-left: 0;
}
.nav_select-item a{
  display: block;
  position: relative;
  padding-top: 48px;
  padding-bottom: 8px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 8px;
  background-color: #fff;
  border: 2px solid #020068;
  color: #020068;
  text-align: center;
  font-weight: bold;
  font-size: 1.4rem;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.nav_select-item a::before{
  display: block;
  position: absolute;
  font-family: 'FontAwesome';
  width: 40px;
  height: 40px;
  align-content: center;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 27px;
}
.nav_select-item.area a::before{
  content: "\f279";
}
.nav_select-item.line a::before{
  content: "\f239";
}
.nav_select-item.map a::before{
  content: "\f3c5";
}
@media screen and (min-width: 768px) {
  .map_fukuoka .nav_select{
    position: absolute;
    right: 0;
    bottom: 0;
    margin-top: 0;
  }
  .nav_select-head{
    display: block;
    width: 300px;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #020068;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 2.4rem;
  }
  .nav_select-body{
    width: 300px;
    padding-top: 16px;
    padding-left: 16px;
    padding-right: 16px;
    border: 2px solid #020068;
    background-color: #fff;
  }
  .nav_select-list{
    display: block;
  }
  .nav_select-item{
    width: 100%;
  }
  .nav_select-item:not(:last-of-type){
    margin-bottom: 16px;
  }
  .nav_select-item a{
    height: 62px;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 72px;
    padding-right: 0;
    border: 1px solid #020068;
    text-align: left;
    font-size: 2.0rem;
  }
  .nav_select-item a::before{
    z-index: 5;
    height: 27px;
    color: #fff;
    top: 50%;
    left: 11px;
    transform: translateX(0);
    transform: translateY(-50%);
    text-align: center;
  }
  .nav_select-item a::after{
    display: block;
    position: absolute;
    content: "";
    z-index: 1;
    width: 62px;
    height: 100%;
    background-color: #020068;
    left: 0;
    top: 0;
  }
  .nav_select-item a span{
    display: block;
    padding-top: 15px;
  }
  .nav_select-item a:hover{
    background-color: #eee;
    border: 1px solid #333;
    color: #333;
  }
  .nav_select-item a:hover::after{
    background-color: #333;
  }
}

.area-search_form{
  display: grid;
  grid-template-areas: "search submit";
  grid-template-columns: 1fr 80px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 16px;
  margin-top: 16px;
  background: #eaeaea;
  border-radius: 16px;
}
.area-search_form .hdform__input{
  grid-area: search;
  padding: 8px;
  background-color: #fff;
  font-size: 1.6rem;
}
.area-search_form .hdform__input::placeholder{
  color: #a0a0a0;
}
.area-search_form .hdform__btn{
  grid-area: submit;
  width: 80px;
  background-color: #333;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.area-search_form .hdform__btn::before{
  font-size: 2.0rem;
}
@media screen and (min-width: 768px) {
  .area-search_form{
    max-width: 470px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr 110px;
  }
  .area-search_form .hdform__input{
    font-size: 1.8rem;
  }
  .area-search_form .hdform__btn{
    width: 110px;
  }
}