@charset "UTF-8";
/* -----------------------------------------------------
	variables
----------------------------------------------------- */
/* -----------------------------------------------------
	lead
----------------------------------------------------- */
.lead .inner {
  padding: 140px 0 30px;
}

@media screen and (max-width: 768px) {
  .lead .inner {
    padding: 15.625vw 0 9.11458vw;
  }
}

.lead .inner .text {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.91667;
}

@media screen and (max-width: 768px) {
  .lead .inner .text {
    font-size: 3.125vw;
  }
}

/*------------------------------------------------------------
	map area
------------------------------------------------------------*/
.map_area .inner {
  max-width: 1920px;
  width: 100%;
  padding: 0;
}

.map_area .inner .ttl_inner {
  max-width: 1320px;
  width: 90%;
  margin: 0 auto 40px;
}

@media screen and (max-width: 768px) {
  .map_area .inner .ttl_inner {
    margin: 0 auto 7.8125vw;
  }
}

/*------------------------------------------------------------
	map link
------------------------------------------------------------*/
.map_link {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: justify;
  /*IE10*/
  -webkit-box-pack: justify;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: space-between;
  /* Safari6.1以降 */
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  /*IE10*/
  -webkit-flex-wrap: wrap;
  /*PC-Safari,iOS8.4*/
  flex-wrap: wrap;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
  gap: 30px;
  max-width: 1240px;
  width: 90%;
  margin: 4em auto 0;
  counter-reset: my-counter;
}

@media screen and (max-width: 768px) {
  .map_link {
    gap: 6.51042vw;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin: 10.41667vw auto 0;
  }
}

.map_link::after {
  content: "";
  display: block;
  width: calc(100% / 3 - 4%);
}

@media screen and (max-width: 768px) {
  .map_link::after {
    content: none;
  }
}

.map_link li {
  width: calc(100% / 3 - 4%);
  position: relative;
}

@media screen and (max-width: 768px) {
  .map_link li {
    width: calc(92% / 2);
  }
}

.map_link li .m_btn {
  display: block;
  width: 100%;
  height: 100%;
  padding: 12px 0 12px 68px;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  background: #0091d2;
  border-radius: 50vw;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(68, 68, 68, 0.2);
  box-shadow: 0px 20px 40px 0px rgba(68, 68, 68, 0.2);
  position: relative;
}

@media screen and (max-width: 1190px) {
  .map_link li .m_btn {
    font-size: 1.68067vw;
  }
}

@media screen and (max-width: 768px) {
  .map_link li .m_btn {
    display: -webkit-box;
    /*Android4.3*/
    display: -ms-flexbox;
    /*IE10*/
    display: -webkit-flex;
    /*PC-Safari,iOS8.4*/
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    /*IE10*/
    -webkit-box-align: center;
    /* Android4.3以下、Safari3.1〜6.0 */
    -webkit-align-items: center;
    /* Safari6.1以降 */
    align-items: center;
    font-size: 3.38542vw;
    padding: 0 0 0 9.89583vw;
    height: 11.71875vw;
    line-height: 1.4;
  }
}

.map_link li .m_btn::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  color: #ffffff;
  display: block;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50vw;
  font-size: 2.6rem;
  position: absolute;
  top: 50%;
  left: 6%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media screen and (max-width: 768px) {
  .map_link li .m_btn::before {
    width: 4.6875vw;
    height: 4.6875vw;
    line-height: 4.6875vw;
    font-size: 3.38542vw;
  }
}

/*------------------------------------------------------------
	modal
------------------------------------------------------------*/
#modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 200;
}

#modal .modal_mask {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 120;
  background-color: rgba(0, 0, 0, 0.6);
}

#modal .modal_wrap {
  max-width: 850px;
  width: 100%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 120;
  padding: 40px 30px 50px 40px;
  background: #ffffff;
  border-radius: 20px;
  /* 閉じるボタン */
}

@media screen and (max-width: 1400px) {
  #modal .modal_wrap {
    max-width: 570px;
  }
}

@media screen and (max-width: 768px) {
  #modal .modal_wrap {
    width: 88%;
    padding: 7.8125vw 6.51042vw;
  }
}

#modal .modal_wrap .modal_cont {
  display: none;
}

#modal .modal_wrap .modal_cont .text_area .ttl {
  margin: 20px 0;
}

@media screen and (max-width: 768px) {
  #modal .modal_wrap .modal_cont .text_area .ttl {
    margin: 5.20833vw 0 3.90625vw;
  }
}

#modal .modal_wrap .modal_cont .text_area .ttl span {
  font-size: 3.2rem;
  color: #042054;
  border-bottom: 4px solid #014099;
  -webkit-border-image: -webkit-gradient(linear, left top, right top, from(#0099e2), to(#014099));
  -webkit-border-image: -webkit-linear-gradient(left, #0099e2 0%, #014099 100%);
  -o-border-image: -o-linear-gradient(left, #0099e2 0%, #014099 100%);
  border-image: -webkit-gradient(linear, left top, right top, from(#0099e2), to(#014099));
  border-image: linear-gradient(to right, #0099e2 0%, #014099 100%);
  border-image-slice: 1;
}

@media screen and (max-width: 768px) {
  #modal .modal_wrap .modal_cont .text_area .ttl span {
    font-size: 4.6875vw;
  }
}

@media screen and (max-width: 768px) {
  #modal .modal_wrap .modal_cont .text_area .text {
    font-size: 3.125vw;
  }
}

#modal .modal_wrap .close_btn {
  display: block;
  position: absolute;
  top: -35px;
  right: -35px;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  #modal .modal_wrap .close_btn {
    top: -5.20833vw;
    right: -4.6875vw;
  }
}

#modal .modal_wrap .close_btn .icn_area {
  display: block;
  width: 70px;
  height: 70px;
  background: #0091d2;
  border-radius: 50vw;
}

@media screen and (max-width: 768px) {
  #modal .modal_wrap .close_btn .icn_area {
    width: 10.41667vw;
    height: 10.41667vw;
  }
}

#modal .modal_wrap .close_btn .icn_area::before, #modal .modal_wrap .close_btn .icn_area::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50%;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: transform 0.3s ease;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

#modal .modal_wrap .close_btn .icn_area::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
}

#modal .modal_wrap .close_btn .icn_area::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: 0;
}

/* -----------------------------------------------------
  map detail
----------------------------------------------------- */
.map_detail .inner {
  padding: 180px 0 0;
}

@media screen and (max-width: 768px) {
  .map_detail .inner {
    padding: 18.22917vw 0 0;
  }
}

.map_detail .inner .map_detail_wrap {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: justify;
  /*IE10*/
  -webkit-box-pack: justify;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: space-between;
  /* Safari6.1以降 */
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .map_detail .inner .map_detail_wrap {
    -ms-flex-wrap: wrap;
    /*IE10*/
    -webkit-flex-wrap: wrap;
    /*PC-Safari,iOS8.4*/
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.map_detail .inner .map_detail_wrap + .map_detail_wrap {
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  .map_detail .inner .map_detail_wrap + .map_detail_wrap {
    margin-top: 13.02083vw;
  }
}

.map_detail .inner .map_detail_wrap.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .map_detail .inner .map_detail_wrap.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.map_detail .inner .map_detail_wrap .col {
  width: calc(100% / 2 - 4%);
}

@media screen and (max-width: 768px) {
  .map_detail .inner .map_detail_wrap .col {
    width: 100%;
  }
}

.map_detail .inner .map_detail_wrap .col.img_box img {
  -webkit-box-shadow: 0px 20px 60px 0px rgba(68, 68, 68, 0.2);
  box-shadow: 0px 20px 60px 0px rgba(68, 68, 68, 0.2);
}

.map_detail .inner .map_detail_wrap .col.text_box {
  text-align: left;
}

.map_detail .inner .map_detail_wrap .col.text_box .ttl {
  color: #042054;
  font-size: 3rem;
  margin-bottom: 10px;
}

@media screen and (max-width: 1180px) {
  .map_detail .inner .map_detail_wrap .col.text_box .ttl {
    font-size: 2.54237vw;
  }
}

@media screen and (max-width: 768px) {
  .map_detail .inner .map_detail_wrap .col.text_box .ttl {
    font-size: 4.94792vw;
    margin-bottom: 2.60417vw;
  }
}

.map_detail .inner .map_detail_wrap .col.text_box .text {
  font-size: 1.8rem;
  line-height: 2;
}

@media screen and (max-width: 1180px) {
  .map_detail .inner .map_detail_wrap .col.text_box .text {
    font-size: 1.52542vw;
  }
}

@media screen and (max-width: 768px) {
  .map_detail .inner .map_detail_wrap .col.text_box .text {
    font-size: 3.38542vw;
    margin-bottom: 4.42708vw;
  }
}

.map_detail .inner .map_detail_wrap .col.text_box .text span {
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .map_detail .inner .map_detail_wrap .col.text_box .text span {
    font-size: 2.99479vw;
  }
}
