@charset "UTF-8";
/* CSS Document */


/* ---------------------------------------------
*  map
--------------------------------------------- */
.contents p.map_note {
  text-align: center;
  color: #0072BC;
  font-weight: bold;
  line-height: 1.5;
  font-size: 16px;
  margin-top: 60px;
}
.contents .map {
  position: relative;
  max-width: 1000px;
  margin-top: 30px;
}
.contents .map + .img {
  margin-top: 80px;
}
.contents .map img {
  width: 100%;
  height: auto;
}
.contents .map a {
  position: absolute;
  transform: translate(-50%,-50%);
  transition: transform .2s;
  line-height: 1;
}
.contents .map a:hover {
  transform: translate(-50%,-50%) scale(1.05);
}
.contents .map a.point01 {
  left: 31%;
  top: 37%;
}
.contents .map a.point02 {
  left: 74%;
  top: 72%;
}
.contents .map a.point03 {
  left: 41.5%;
  top: 88%;
}
.contents .map a.point04 {
  left: 76%;
  top: 85%;
}
.contents .map a.point05 {
left: 74.5%;
  top: 37%;
}
.contents .map a.point06 {
  left: 23.5%;
  top: 50%;
}
.contents .map a.point07 {
  left: 82.5%;
  top: 56.5%;
}
.contents .map a.point08 {
  left: 80%;
  top: 37%;
}
.contents .map a.point09 {
  left: 31%;
  top: 63%;
}
.contents .map a.point10 {
  left: 65%;
  top: 55%;
}
@media screen and (max-width: 750px) {
  .contents p.map_note {
    font-size: 14px;
    margin-top: 30px;
  }
  .contents .map {
    margin-top: 20px;
    width: calc(100% + 130px);
    position: relative;
    left: -75px;
  }
  .contents .map + .img {
    margin-top: 30px;
  }
  .contents .map a {
    width: 7%;
  }
.contents .map a.point01 {
  left: 31%;
  top: 37%;
}
.contents .map a.point02 {
  left: 74%;
  top: 72%;
}
.contents .map a.point03 {
  left: 41.5%;
  top: 88%;
}
.contents .map a.point04 {
  left: 76%;
  top: 85%;
}
.contents .map a.point05 {
left: 74.5%;
  top: 37%;
}
.contents .map a.point06 {
  left: 23.5%;
  top: 50%;
}
.contents .map a.point07 {
  left: 82.5%;
  top: 56.5%;
}
.contents .map a.point08 {
  left: 80%;
  top: 37%;
}
.contents .map a.point09 {
  left: 31%;
  top: 63%;
}
.contents .map a.point10 {
  left: 65%;
  top: 55%;
}
}


/* ---------------------------------------------
*  modal
--------------------------------------------- */
body.modal_hidden {
  overflow-y: hidden;
}
.modal_map {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  display: none;
}
.modal_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.4);
}
.modal_scroll {
  overflow-y: auto;
  position: relative;
  z-index: 1;
  max-height: 100%;
  max-width: 1160px;
  width: 100%;
}
.modal_inner {
  background: #fff;
  border-radius: 4px;
  padding: 60px;
}
.modal_close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 54px;
  height: 54px;
  cursor: pointer;
  background: #0072BC;
  border-radius: 6px;
  transition: opacity .4s;
}
.modal_close:hover {
  opacity: .7;
}
.modal_close::before,
.modal_close::after {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 4px;
}
.modal_close::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.modal_close::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
.modal_map .img_box {
  display: flex;
  gap: 40px;
}
.modal_map .img_box .img {
  width: 50%;
  text-align: center;
}
.modal_map .img_box .txt {
  width: 50%;
  align-self: center;
}
.modal_map .img_box .txt h3 {
  display: flex;
  gap: 10px;
  line-height: 1.2;
  color: #0072BC;
}
.modal_map .img_box .txt h3 strong {
  min-width: 40px;
  margin-left: -4px;
}
.modal_map .img_box .txt h3 span {
  font-size: 28px;
  align-self: center;
}
.modal_map .img_box .txt h4 {
  font-size: 16px;
  margin-top: 20px;
}
.modal_map .img_box .txt p {
  font-size: 16px;
  margin-top: 10px;
}
.modal_map .img_box .txt p.note {
  font-size: 12px;
}
.modal_map .img_box .txt p a {
  position: relative;
  text-decoration: underline;
  color: #0072bc;
  word-break: break-all;
}
.modal_map .img_box .txt p a:hover {
  text-decoration: none;
}
.modal_map .img_box .txt p a img {
  display: block;
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  bottom: 4px;
  right: -22px;
}
@media screen and (max-width: 750px) {
  .modal_map {
    padding: 0;
    background: #fff;
  }
  .modal_close {
    position: fixed;
    width: 45px;
    height: 45px;
    right: 10px;
    top: 10px;
  }
  .modal_scroll {
    height: 100%;
    background: #fff;
  }
  .modal_inner {
    border-radius: 0;
    padding: 65px 20px 20px;
  }
  .modal_map .img_box {
    flex-direction: column;
    gap: 30px;
  }
  .modal_map .img_box .img {
    width: 100%;
  }
  .modal_map .img_box .txt {
    width: 100%;
  }
  .modal_map .img_box .txt h3 span {
    font-size: 22px;
  }
}