@charset "utf-8";
/* ブラウザのUA stylesheetをリセット */
.labelBox *,
.sp_map * {
  margin: 0;
  padding: 0;
  font: inherit;
  list-style: none;
}
/* レイアウト・動作の設定 */
.box_map {
  /* background-color: #fff;
  border: 1px solid  #ccc;
  max-width: 960px; */
  width: 100%;
  margin: auto;
  /* padding: 20px; */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.pc_map {
  position: relative;
  /* width: 70%;
  margin: 20px auto 60px; */
}
.pc_map a {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
/* 地図画像の設定 */
.pc_map svg a {
  fill: #ededed; /* 求人なしの地図の色 */
  stroke: #fff; /* 縁取りの色 */
  stroke-width: 1; /* 縁取りの太さ */
  width: 100%;
  height: 100%;
}
/* 沖縄など区切り線の色 */
.pc_map .map_border {
  fill: #ccc;
}
.pc_map svg .enable_pref {
  fill: #b7b7b7; /* 求人ありの地図の色 */
  pointer-events: all;
  cursor: pointer;
}
/* 求人ありの地図をホバーした時の色 */
.pc_map svg .enable_pref:hover,
.pc_map svg .area_hover {
  fill: #1ca22d;
  opacity: 1;
}

/* 地図に重ねているラベルの設定 */
.labelBox {
  position: absolute;
  font-size: 20px;
}
.box_map a {
  color: #ccc;
}
.box_map .enable_pref a {
  color: #666;
  pointer-events: all;
  cursor: pointer;
}
.box_map .enable_pref a:hover,
.box_map .area_hover a {
  color: #1ca22d;
}
/* ラベルの線＿全体設定 */
.labelBox:before,
.labelBox:after {
  content: "";
  background-color: #ccc;
  position: absolute;
  pointer-events: none;
  cursor: default;
}
.labelBox.enable_pref:before,
.labelBox.enable_pref:after {
  background-color: #666;
}
.labelBox:before {
  height: 1px;
  bottom: 0;
}
.labelBox:after {
  width: 1px;
}

/* ラベルの位置・線の調整_北海道・東北 */
.hokkaido-tohoku .hokkaido {
  top: 20%;
  right: 14%;
}
.hokkaido-tohoku .hokkaido:before {
  width: 12vw;
  max-width: 120px;
  right: 0;
}
.hokkaido-tohoku .aomori {
  top: 50%;
  right: 40%;
}
.hokkaido-tohoku .aomori:before {
  width: 12vw;
  max-width: 120px;
  right: 0;
}
.hokkaido-tohoku .iwate {
  top: 62%;
  right: 36%;
}
.hokkaido-tohoku .iwate:before {
  width: 12vw;
  max-width: 120px;
  right: 0;
}
.hokkaido-tohoku .miyagi {
  bottom: 18%;
  right: 42%;
}
.hokkaido-tohoku .miyagi:before {
  width: 12vw;
  max-width: 126px;
  right: 0;
}
.hokkaido-tohoku .akita {
  top: 56%;
  left: 16%;
}
.hokkaido-tohoku .akita:before {
  width: 12vw;
  max-width: 120px;
  left: 0;
}
.hokkaido-tohoku .yamagata {
  top: 72%;
  left: 14%;
}
.hokkaido-tohoku .yamagata:before {
  width: 12vw;
  max-width: 120px;
  left: 0;
}
.hokkaido-tohoku .fukushima {
  bottom: 10%;
  left: 11%;
}
.hokkaido-tohoku .fukushima:before {
  width: 12vw;
  max-width: 120px;
  left: 0;
}

/* フリーワード検索のレイアウト調整 */
.box_map form {
  background-color: #f2f2f2;
  padding: 16px 36px;
  margin-top: 20px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
}
.box_map label {
  color: #333;
  flex-shrink: 0;
}
.box_map input[type="text"] {
  border: 1px solid #ccc;
  border-radius: 4px;
  height: 31px;
  padding: 0 6px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 14px;
}
.box_map button[type="submit"] {
  background-color: #4070ff;
  border: none;
  height: 31px;
  width: 96px;
  color: #fff;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  flex-shrink: 0;
  cursor: pointer;
  font-size: 16px;
}
.box_map button[type="submit"] img {
  width: 16px;
  vertical-align: middle;
  margin-right: 6px;
}
/* スマホ版地図の設定 */
.sp_map {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc_map {
    display: none;
  }
  .sp_map {
    display: block;
    border-bottom: 1px solid #333;
    color: #333;
    background: #fff;
  }
  .sp_map_title {
    text-align: center;
    padding-bottom: 10px;
  }
  .sp_map ul {
    display: none;
  }
  .sp_map div p {
    border-top: 1px solid #333;
    padding: 10px 14px;
  }
  .sp_map li {
    border-bottom: 1px dashed #666;
    padding: 10px 28px;
  }
  .sp_map li:first-child {
    border-top: 1px solid #666;
  }
  .sp_map li:last-child {
    border-bottom: none;
  }
  .sp_map li a {
    color: #666;
    text-decoration: none;
  }
  /* フリーワード検索の設定 */
  .box_map form {
    display: block;
    margin-top: 40px;
    padding: 20px;
  }
  .box_map input[type="text"] {
    margin: 10px 0;
    height: auto;
    padding: 14px;
  }
  .box_map button[type="submit"] {
    width: 100%;
    height: auto;
    padding: 14px;
  }
}
/* PC,SP共通_求人が無いラベルを削除*/
.labelDel {
  display: none;
}
