@charset "UTF-8";

/*
# =================================================================
# お問い合わせ
# =================================================================*/
/* 共通 */
h3 {
  margin: 0 0 35px 0;
  font-size: 60px;
  color: #007bad;
  text-align: center;
  line-height: 1;
  position: relative;
}
h3::after {
  content: '';
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: url(../../img/common/underline1.gif) no-repeat left top;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
}
h3 + p {
  margin: 0 0 40px 0;
  font-weight: bold;
  text-align: center;
}

/* modal */
.modalArea {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, .4);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease-in-out;
  z-index: 100;
}
.modalArea.act {
  opacity: 1;
  visibility: visible;
}
.modal {
  max-width: 560px;
  width: 90%;
  margin: 0 auto;
  background: #fff;
  border-radius: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -57%);
}
.modal .inner {
  width: 100%;
  padding: 50px;
  position: relative;
}
.modal .inner p {
  font-weight: bold;
  text-align: center;
}
.modal .btnClose {
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
}

/* mv */
#contact .mv {
  background: url(../img/mvImg1.png) no-repeat right center / 1604px;
}
#contact .mv .inner h2 {
  width: 350px;
}
#contact .mv .inner .subTtl .txt::after {
  left: 110px;
}

/* mainTxt */
#contact .mainTxt {
  margin: 0 0 90px 0;
}
#contact .mainTxt p {
  font-weight: bold;
  text-align: center;
}

/* boxPhone,boxMail(box1) */
#contact .box1 {
  margin: 0 0 100px 0;
}
#contact .box1.boxMail {
  margin: 0;
}
#contact .box1 .inner .boxNumber {
  padding: 70px 60px;
  background: #e2eaee;
  border-radius: 30px;
}
#contact .box1 .inner .boxNumber .box2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#contact .box1 .inner .boxNumber .box2 a {
  width: 47.5%;
  padding: 30px 35px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 10px 10px 30px 0 rgba(0,0,0,.08);
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
}
#contact .box1 .inner .boxNumber .box2 a.type2 {
  cursor: pointer;
}
#contact .box1 .inner .boxNumber .box2 a .icon {
  width: 60px;
  margin: 0 15px 0 0;
}
#contact .box1 .inner .boxNumber .box2 a .txt {
  width: calc(100% - 75px);
  padding: 3px 0 0 0;
}
#contact .box1 .inner .boxNumber .box2 a .txt h4 {
  margin: 0 0 5px 0;
  font-size: 14px;
  color: #606367;
  line-height: 1;
}
#contact .box1 .inner .boxNumber .box2 a .txt span {
  font-size: 35px;
  color: #007bad;
  line-height: 1;
  display: block;
}
#contact .box1 .inner .boxNumber .box2 a .txt p {
  font-size: 20px;
  font-weight: bold;
  color: #007bad;
  line-height: 1.4;
}

/*
# =================================================================
# レスポンシブ要素
# =================================================================*/
/* 4K:2560px */
@media screen and (min-width: 1921px) {
  /* mv */
  #contact .mv {
    background: url(../img/mvImg1.png) no-repeat center center / cover;
  }
}
/* PC:1920px */

/* laptop NotePC L */
@media screen and (max-width: 1660px) {
}
@media screen and (max-width: 1600px) {
  /* mv */
  #contact .mv {
    background: url(../img/mvImg1.png) no-repeat center center / cover;
  }
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1240px) {
}
@media screen and (max-width: 1120px) {
}
@media screen and (max-width: 1080px) {
}

/* laptop NotePC */
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 960px) {
  /* boxPhone,boxMail(box1) */
  #contact .box1 .inner .boxNumber .box2 {
    display: block;
  }
  #contact .box1 .inner .boxNumber .box2 a {
    width: 100%;
    margin: 0 0 30px 0;
  }
  #contact .box1 .inner .boxNumber .box2 a:nth-last-of-type(1) {
    margin: 0;
  }
}

/* tablet */
@media screen and (max-width: 767.98px) {
}
@media screen and (max-width: 640px) {
  /* modal */
  .modal .btnClose {
    top: 10px;
    right: 10px;
  }
  /* boxPhone,boxMail(box1) */
  #contact .box1 .inner .boxNumber {
    padding: 60px 5%;
  }
  #contact .box1 .inner .boxNumber .box2 a {
    padding: 25px;
  }
  #contact .box1 .inner .boxNumber .box2 a .txt span {
    font-size: 32px;
  }
}

/* mobile L */
@media screen and (max-width: 450px) {
  /* 共通 */
  h3 {
    font-size: 9.5vw;
  }
  h3 + p {
    margin: 0 0 30px 0;
    font-size: 3.8vw;
  }
  /* modal */
  .modal {
    transform: translate(-50%, -51%);
  }
  .modal .inner {
    padding: 40px 20px;
  }
  .modal .inner p {
    font-size: 3.8vw;
  }
  .modal .btnClose {
    top: -10px;
    right: -10px;
  }
  /* mv */
  #contact .mv {
    background: url(../img/mvImg1.png) no-repeat left -410px bottom / 860px;
  }
  #contact .mv .inner h2 {
    width: 270px;
  }
  #contact .mv .inner .subTtl .txt::after {
    left: 30.5vw;
  }
  /* mainTxt */
  #contact .mainTxt {
    margin: 0 0 80px 0;
  }
  #contact .mainTxt p {
    font-size: 3.8vw;
    text-align: left;
  }
  /* boxPhone,boxMail(box1) */
  #contact .box1 .inner .boxNumber .box2 a {
    padding: 25px 20px;
  }
  #contact .box1 .inner .boxNumber .box2 a .icon {
    width: 45px;
    margin: 0 10px 0 0;
  }
  #contact .box1 .inner .boxNumber .box2 a .txt {
    width: calc(100% - 55px);
    padding: 5px 0 0 0;
  }
  #contact .box1 .inner .boxNumber .box2 a .txt h4 {
    margin: 0 0 2px 0;
    font-size: 3.4vw;
  }
  #contact .box1 .inner .boxNumber .box2 a .txt span {
    font-size: 7.4vw;
  }
  #contact .box1 .inner .boxNumber .box2 a .txt p {
    font-size: 4.4vw;
  }
}
@media screen and (max-width: 400px) {
}

/* mobile M */
@media screen and (max-width: 375px) {
}

/* mobile S */
@media screen and (max-width: 320px) {
}
