@charset "utf-8";
/* ブラウザのUA stylesheetをリセット */
.labelBox * ,
.sp_map * {
  margin: 0;
  padding: 0;
  font: inherit;
	list-style: none;
}
/* レイアウト・動作の設定 */
.box_map {
  background-color: #fff;
  border: 4px solid  #151719;
  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: #ccc; /* 求人なしの地図の色 */
  stroke: #fff; /* 縁取りの色 */
  stroke-width: 1; /* 縁取りの太さ */
}
/* 沖縄など区切り線の色 */
.pc_map .map_border {
  fill: #ccc;
}
.pc_map svg .enable_area,
.pc_map svg .enable_pref {
  fill: #4cb5ea; /* 求人ありの地図の色 */
  pointer-events: all;
  cursor: pointer;
}
/* 求人ありの地図をホバーした時の色 */
.pc_map svg .enable_area:hover,
.pc_map svg .enable_pref:hover,
.pc_map svg .area_hover {
  fill: #1b7ae4;
  opacity: 1;
}

/* 地図に重ねているラベルの設定 */
.labelBox {
  position: absolute;
  line-height: 1.2;
}
.labelBox h3 {
  font-size: 20px;
  text-align: center;
  position: relative;
  line-height: 0;
  padding-bottom: 12px;
  margin-bottom: 3px;
}
.labelBox ul {
  width: 164px;
}
.labelBox li {
  display: inline-block;
  font-size: 14px;
  padding-right: 4px;
}
.box_map a {
  color: #ccc;
}
.box_map .enable_area h3 a,
.box_map .enable_pref a {
  color: #4cb5ea;
  pointer-events: all;
  cursor: pointer;
}
.box_map .enable_area h3 a:hover,
.box_map .enable_pref a:hover {
  color: #1b7ae4;
  opacity: 1;
}
/* 各地域のラベルの位置調整 */
.area1 {
  top: 30%;
  right: -20%;
}
.area2 {
  top: 60%;
  right: -10%;
}
.area3 {
  bottom: 54%;
  right: 34%;
}
.area4 {
  top: 84%;
  left: 58%;
}
.area5 {
  bottom: 40%;
  right: 60%;
}
.area6 {
  top: 88%;
  left: 24%;
}
.area7 {
  bottom: 6%;
  left: -21%;
}
/* ラベルの線＿全体設定 */
.labelBox h3:before,
.labelBox h3:after {
  content: "";
  background-color: #ccc;
  position: absolute;
  pointer-events: none;
  cursor: default;
}
.enable_area h3:before,
.enable_area h3:after {
  background-color: #666;
}
.labelBox h3:before {
  height: 1px;
  bottom: 0;
}
.labelBox h3:after {
  width: 1px;
}
/* ラベルの線＿北海道・東北 */
.area1 h3:before {
  width: 23vw;
  max-width: 240px;
  right: 0;
}
/* ラベルの線＿関東 */
.area2 h3:before {
  width: 24vw;
  max-width: 240px;
  right: 0;
}
/* ラベルの線＿甲信越・北陸 */
.area3 h3:before {
  width: 100%;
  left: 0;
}
.area3 h3:after {
  height: 260%;
  top: 12px;
  right: 0;
}
/* ラベルの線＿東海 */
.area4 h3:before {
  width: 100%;
  left: -3%;
}
.area4 h3:after {
  height: 150%;
  bottom: 0;
  left: -3%;
}
/* ラベルの線＿関西 */
.area5 h3:before {
  width: 106%;
  left: 0;
}
.area5 h3:after {
  height: 50px;
  top: 12px;
  right: -6%;
}
/* ラベルの線＿中国・四国 */
.area6 h3:before {
  width: 140px;
  left: 0;
}
.area6 h3:after {
  height: 130%;
  bottom: 0;
  left: 0;
}
/* ラベルの線＿九州・沖縄 */
.area7 h3:before {
  width: 18vw;
  left: 0;
  max-width: 180px;
}

/* フリーワード検索のレイアウト調整 */
.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) {
	.box_map {
		width: 100%;
		padding: 20px 15px;
	}
  .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;
}
