/* ------------------------------
 width: all
------------------------------ */
main section.s01 .wrapper {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}

main section.s01 .wrapper .mapbox {
  border: 1px solid #B5B5B6;
  background-color: #D3F4DC;
  position: relative;
}

main section.s01 .wrapper .mapbox .map {
  width: 100%;
  display: block;
}

main section.s01 .wrapper .mapbox .numlist li {
  width: 22px;
  height: 22px;
  border-radius: 14px;
  margin-top: -14px;
  margin-right: -14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 20px;
  color: #fff;
  font-size: 16px;
  position: absolute;
  cursor: pointer;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

main section.s01 .wrapper .mapbox .numlist li:hover {
  opacity: .6;
}

main section.s01 .wrapper .mapbox .numlist li.green {
  background-color: #8FC31F;
}

main section.s01 .wrapper .mapbox .numlist li.orange {
  background-color: #FF9D2B;
}

main section.s01 .wrapper .mapbox .numlist li.cha {
  background-color: #C19E00;
}

main section.s01 .wrapper .infobox li {
  background-color: #8FC31F;
  width: 405px;
  padding: 23px 30px 28px;
  position: absolute;
  right: 45px;
  bottom: 30px;
  -webkit-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.15);
  display: none;
}

main section.s01 .wrapper .infobox li p {
  text-align: center;
  font-size: 17px;
  line-height: 180%;
  color: #fff;
}

main section.s01 .wrapper .infobox li a {
  width: 150px;
  background-color: #00913A;
  display: block;
  text-decoration: none;
  font-size: 14px;
  text-align: center;
  color: #fff;
  line-height: 14px;
  padding: 13px 0;
  margin: 20px auto 0;
}

main section.s02 {
  margin-top: 60px;
}

main section.s02 .wrapper {
  width: 1000px;
  margin: 0 auto;
}

main section.s02 .wrapper ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -50px;
}

main section.s02 .wrapper ul li {
  width: 22.7%;
  margin: 30px 3.06% 0 0;
}

main section.s02 .wrapper ul li:nth-child(4n) {
  margin-right: 0;
}

main section.s02 .wrapper ul li a {
  display: block;
  text-decoration: none;
  position: relative;
  background-color: #000;
}

main section.s02 .wrapper ul li a:hover {
  opacity: 1;
}

main section.s02 .wrapper ul li a:hover .bg {
  opacity: .6;
}

main section.s02 .wrapper ul li a .bg {
  width: 100%;
  display: block;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

main section.s02 .wrapper ul li a .num {
  width: 28px;
  height: 28px;
  border-radius: 14px;
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0;
  text-align: center;
  line-height: 26px;
  font-size: 18px;
  color: #040000;
}

main section.s02 .wrapper ul li a .txtbox {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin-top: -30px;
}

main section.s02 .wrapper ul li a .txtbox .t01 {
  text-align: center;
  font-size: 11px;
  text-shadow: 0 0 5px #040000;
  color: #fff;
}

main section.s02 .wrapper ul li a .txtbox .t02 {
  font-size: 23px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 5px #040000;
  position: relative;
  line-height: 120%;
  letter-spacing: 0;
}

main section.s02 .wrapper ul li a .txtbox .t02::after {
  width: 165px;
  height: 1px;
  background-color: #fff;
  display: block;
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  margin: 0 auto;
}

main section.s02 .wrapper ul li a .txtbox .t03 {
  text-align: center;
  font-size: 14px;
  color: #fff;
  margin-top: 8px;
  text-shadow: 0 0 5px #040000;
}

/* ------------------------------
 width < $width-1
------------------------------ */
@media screen and (max-width: 860px) {
  main section.s01 .wrapper {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
  }
  main section.s01 .wrapper .mapbox {
    border: 1px solid #B5B5B6;
    background-color: #D3F4DC;
    position: relative;
  }
  main section.s01 .wrapper .mapbox .map {
    width: 100%;
    display: block;
  }
  main section.s01 .wrapper .mapbox .numlist li {
    width: 14px;
    height: 14px;
    border-radius: 14px;
    margin-top: -7px;
    margin-right: -7px;
    text-align: center;
    letter-spacing: 0;
    line-height: 14px;
    color: #fff;
    font-size: 11px;
    position: absolute;
    cursor: pointer;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
  }
  main section.s01 .wrapper .mapbox .numlist li:hover {
    opacity: .6;
  }
  main section.s01 .wrapper .mapbox .numlist li.green {
    background-color: #8FC31F;
  }
  main section.s01 .wrapper .mapbox .numlist li.orange {
    background-color: #FF9D2B;
  }
  main section.s01 .wrapper .mapbox .numlist li.cha {
    background-color: #C19E00;
  }
  main section.s01 .wrapper .infobox {
    margin-top: 20px;
  }
  main section.s01 .wrapper .infobox li {
    background-color: #8FC31F;
    width: 100%;
    padding: 20px 15px 20px;
    position: static;
    -webkit-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.15);
    display: none;
  }
  main section.s01 .wrapper .infobox li p {
    text-align: center;
    font-size: 15px;
    line-height: 180%;
    color: #fff;
  }
  main section.s01 .wrapper .infobox li a {
    width: 120px;
    background-color: #00913A;
    display: block;
    text-decoration: none;
    font-size: 13px;
    text-align: center;
    color: #fff;
    line-height: 14px;
    padding: 10px 0;
    margin: 15px auto 0;
  }
  main section.s02 {
    margin-top: 50px;
  }
  main section.s02 .wrapper {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  main section.s02 .wrapper ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: -20px;
  }
  main section.s02 .wrapper ul li {
    width: calc(50% - 5px);
    margin: 10px 0 0 !important;
  }
  main section.s02 .wrapper ul li a {
    display: block;
    text-decoration: none;
    position: relative;
    background-color: #000;
  }
  main section.s02 .wrapper ul li a:hover {
    opacity: 1;
  }
  main section.s02 .wrapper ul li a:hover .bg {
    opacity: .6;
  }
  main section.s02 .wrapper ul li a .bg {
    width: 100%;
    display: block;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
  }
  main section.s02 .wrapper ul li a .num {
    width: 24px;
    height: 24px;
    border-radius: 14px;
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0;
    text-align: center;
    line-height: 22px;
    font-size: 15px;
  }
  main section.s02 .wrapper ul li a .txtbox {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    margin-top: -30px;
  }
  main section.s02 .wrapper ul li a .txtbox .t01 {
    text-align: center;
    font-size: 10px;
    letter-spacing: 0;
    text-shadow: 0 0 5px #040000;
    color: #fff;
  }
  main section.s02 .wrapper ul li a .txtbox .t02 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-shadow: 0 0 5px #040000;
    position: relative;
    line-height: 120%;
    letter-spacing: 0;
  }
  main section.s02 .wrapper ul li a .txtbox .t02::after {
    width: 140px;
    height: 1px;
    background-color: #fff;
    display: block;
    content: "";
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    margin: 0 auto;
  }
  main section.s02 .wrapper ul li a .txtbox .t03 {
    text-align: center;
    font-size: 14px;
    color: #fff;
    margin-top: 8px;
    text-shadow: 0 0 5px #040000;
  }
}
