@charset "UTF-8";
.mvArea.second .inner01 h2 > span span {
  font-size: 9.375vw;
}
@media (max-width: 767px) {
  .mvArea.second .inner01 h2 > span span {
    font-size: 10.666vw;
  }
}
.mvArea.second .inner01 .subTtl {
  text-align: center;
  font-size: 36px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .mvArea.second .inner01 .subTtl {
    font-size: 18px;
    margin-top: 20px;
  }
}

.mapArea {
  padding: 150px 0;
}
@media (max-width: 767px) {
  .mapArea {
    padding: 60px 0;
  }
}
.mapArea .inner01 {
  max-width: 1200px;
}
.mapArea .mapBtnList {
  width: min(100%, 820px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 80px auto 0;
}
@media (max-width: 767px) {
  .mapArea .mapBtnList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
    margin: 40px auto 0;
  }
}
.mapArea .mapBtnList li {
  width: 49%;
}
@media (max-width: 767px) {
  .mapArea .mapBtnList li {
    width: 100%;
  }
}
.mapArea .mapBtnList li a {
  display: block;
  border: solid 1px #001941;
  border-radius: 90px;
  padding: 20px 10px;
  text-align: center;
  line-height: 1.2em;
  font-size: 16px;
  -webkit-transition: background 0.3s ease 0s, color 0.3s ease 0s;
  transition: background 0.3s ease 0s, color 0.3s ease 0s;
}
.mapArea .mapBtnList li a span {
  display: inline-block;
  position: relative;
  padding-right: 1.5em;
}
.mapArea .mapBtnList li a span::before {
  content: "→";
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: right 0.3s ease 0s;
  transition: right 0.3s ease 0s;
}
.mapArea .mapBtnList li a.google {
  background: #001941;
  color: #fff;
}
.mapArea .mapBtnList li a.pdf {
  background: #fff;
  color: #001941;
}
@media (min-width: 992px) {
  .mapArea .mapBtnList li a:hover.google {
    background: #fff;
    color: #001941;
  }
}
@media (min-width: 992px) {
  .mapArea .mapBtnList li a:hover.pdf {
    background: #001941;
    color: #fff;
  }
}
@media (min-width: 992px) {
  .mapArea .mapBtnList li a:hover span::before {
    right: -5px;
  }
}