@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: 96%;
  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: #c5c5c5; /* 求人なしの地図の色 */
  stroke: #fff; /* 縁取りの色 */
  stroke-width: 1; /* 縁取りの太さ */
  width: 100%;
  height: 100%;
}
/* 沖縄など区切り線の色 */
.pc_map .map_border {
  fill: #ccc;
}
.pc_map svg .enable_pref {
  fill: #8e8e8e; /* 求人ありの地図の色 */
  pointer-events: all;
  cursor: pointer;
}
/* 求人ありの地図をホバーした時の色 */
.pc_map svg .enable_pref:hover,
.pc_map svg .area_hover {
  fill: #edbf00;
}

/* 地図に重ねているラベルの設定 */
.labelBox {
  position: absolute;
  font-size: 20px;
}
.box_map a {
  color: #ccc;
}
.box_map .enable_pref a {
  color: #8e8e8e;
  pointer-events: all;
  cursor: pointer;
}
.box_map .enable_pref a:hover,
.box_map .area_hover a {
  color: #edbf00;
}
/* ラベルの線＿全体設定 */
.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;
}

/* ラベルの位置・線の調整_関西 */
.kansai .shiga {
  top: 19%;
  right: 6%;
}
.kansai .shiga:before {
  width: 12vw;
  max-width: 120px;
  right: 0;
}
.kansai .kyoto {
  top: 3%;
  right: 36%;
}
.kansai .kyoto:before {
  width: 12vw;
  max-width: 120px;
  right: 0;
}
.kansai .osaka {
  top: 47%;
  left: 20%;
}
.kansai .osaka:before {
  width: 21vw;
  max-width: 220px;
  left: 0;
}
.kansai .hyogo {
  top: 21%;
  left: 9%;
}
.kansai .hyogo:before {
  width: 12vw;
  max-width: 120px;
  left: 0;
}
.kansai .nara {
  top: 52%;
  right: 14%;
}
.kansai .nara:before {
  width: 12vw;
  max-width: 120px;
  right: 0;
}
.kansai .wakayama {
  bottom: 20%;
  left: 24%;
}
.kansai .wakayama:before {
  width: 16vw;
  max-width: 160px;
  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;
  text-align: center;
}
.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;
  }
  .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;
}
