@charset "UTF-8";
@media (max-width: 1000px) {
  .hidden-xl {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hidden-mdsl {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .hidden-mds {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .hidden-md {
    display: none !important;
  }
}

@media (max-width: 500px) {
  .hidden-xs {
    display: none !important;
  }
}

.visible-mdsl,
.visible-xs,
.visible-md,
.visible-mds,
.visible-xl {
  display: none !important;
}

@media (max-width: 1000px) {
  .visible-xl {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .visible-mdsl {
    display: block !important;
  }
}

@media (max-width: 600px) {
  .visible-mds {
    display: block !important;
  }
}

@media (max-width: 980px) {
  .visible-md {
    display: block !important;
  }
}

@media (max-width: 500px) {
  .visible-xs {
    display: block !important;
  }
}

/* ブラウザの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: #dedede;
  /* 求人なしの地図の色 */
  stroke: #fff;
  /* 縁取りの色 */
  stroke-width: 1;
  /* 縁取りの太さ */
}

/* 沖縄など区切り線の色 */
.pc_map .map_border {
  fill: #ccc;
}

.pc_map svg .enable_area,
.pc_map svg .enable_pref {
  fill: #7ba6d6;
  /* 求人ありの地図の色 */
  pointer-events: all;
  cursor: pointer;
}

/* 求人ありの地図をホバーした時の色 */
.pc_map svg .enable_area:hover,
.pc_map svg .enable_pref:hover,
.pc_map svg .area_hover {
  fill: #114496;
}

/* 地図に重ねているラベルの設定 */
.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: #666;
  pointer-events: all;
  cursor: pointer;
}

.box_map .enable_area h3 a:hover,
.box_map .enable_pref a:hover {
  color: #ebaa4a;
}

/* 各地域のラベルの位置調整 */
.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.box_map label {
  color: #333;
  -ms-flex-negative: 0;
  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;
  -ms-flex-negative: 0;
  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;
  }
  .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;
}

.box_map {
  background: none;
  border: none;
  width: 100%;
  padding: 0;
}

.box_map form {
  background: #ecf9ff;
  position: relative;
}

@media (max-width: 767px) {
  .box_map form {
    margin-top: 20px;
  }
}

.box_map input[type="text"] {
  border-radius: 0;
  border: none;
}

.box_map button[type="submit"] {
  background: #00a0e9;
  border-radius: 0;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  cursor: pointer;
}

.box_map button[type="submit"]:hover {
  background: #7fcff4;
}

.box_map label {
  color: #003567;
  font-size: 18px;
}

/*
.area1 {
    top: 32%;
}

.area2 {
    top: 69.5%;
    right: -20%;
}

.area3 {
    h3:after {
        height: 800%;
    }
}

.area4 {
    top: 89.5%;
    left: 67%;

    h3:after {
        height: 300%;
    }
}

.area5 {
    bottom: 42%;
    right: 67%;

    h3:after {
        height: 630%;
    }
}

.area6 {
    top: 96%;
    left: 34.5%;

    h3:after {
        height: 300%;
    }
}

.area7 {
    bottom: 21%;
    left: -22%;
}
*/
.box_map form {
  background-color: #eef6fa;
  font-size: 20px;
  padding-left: 90px;
}

@media (max-width: 768px) {
  .box_map form {
    padding-left: 20px;
  }
}

.box_map span {
  display: inline-block;
  padding: 0 1em 0 0;
}

@media (max-width: 768px) {
  .box_map span {
    padding: 0 0 0 0.5em;
  }
}

.box_map label {
  color: #000;
}

.box_map .labelBox h3 {
  font-weight: bold;
}

.box_map input[type="text"] {
  margin: 0 15px 0;
  padding: 0.5em;
  border: 1px solid #d8d8d8;
  background-color: #fff;
}

@media (max-width: 768px) {
  .box_map input[type="text"] {
    margin: 10px 0;
    padding: 1em;
    width: 85%;
  }
}

@media screen and (min-width: 769px) {
  .box_map button[type="submit"] {
    width: 5.5em;
  }
}

.box_map button[type="submit"] {
  background-color: #00a0e9;
  font-size: 20px;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.box_map button[type="submit"]:hover {
  background-color: rgba(182, 0, 23, 0.85);
}

.box_map button[type="submit"] img {
  margin-right: 4px;
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.pc_map svg a {
  fill: #dadada;
  /* 求人なしの地図の色 */
  stroke: transparent;
}

.pc_map svg .enable_area,
.pc_map svg .enable_pref {
  fill: #7fcff4;
  /* 求人ありの地図の色 */
  -webkit-transition: fill 0.5s;
  -o-transition: fill 0.5s;
  transition: fill 0.5s;
}

/* 求人ありの地図をホバーした時の色 */
.pc_map svg .enable_area:hover,
.pc_map svg .enable_pref:hover,
.pc_map svg .area_hover {
  fill: #ff80ab;
}

.box_map .enable_area h3 a,
.box_map .enable_pref a {
  color: #00a0e9;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.box_map .enable_area h3 a:hover,
.box_map .enable_pref a:hover {
  color: #d84e8f;
}
