@charset "UTF-8";
/* フォント関連
------------------------------ */
/* 配色
------------------------------ */
/* コンテンツ関連
------------------------------ */
/* 便利
------------------------------ */
/* --------------------------------------------------
  変数
-------------------------------------------------- */
/* --------------------------------------------------
  mixin,extend
-------------------------------------------------- */
/* --------------------------------------------------
  共通
-------------------------------------------------- */
@keyframes height {
  0% {
    height: 0;
  }
  50% {
    height: 50%;
  }
  100% {
    height: 100%;
  }
}
/* --------------------------------------------------
  contents
-------------------------------------------------- */
/*  visual
------------------------------ */
#visual {
  background-image: url(../img/contact-visual.jpg);
}

/*  intro
------------------------------ */
#intro {
  position: relative;
  padding: 220px 0;
}
#intro > svg {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: -1;
  transform: translateY(-50%);
  margin: auto;
  width: 310px;
  height: 310px;
  fill: #f2f5f6;
}
#intro .text p {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 2;
}
#intro .text small {
  font-size: 16px;
}

@media screen and (max-width: 960px) {
  #intro {
    padding: 150px 0;
  }
  #intro > svg {
    width: 250px;
    height: 250px;
  }
  #intro .text p {
    font-size: 14px;
  }
  #intro .text small {
    font-size: 12px;
  }
}
/*  contact
------------------------------ */
#contact {
  padding: 0 0 150px;
}
#contact .form {
  overflow: hidden;
  position: relative;
  width: 80%;
  max-width: 1060px;
  margin: 0 auto;
}
#contact .form .bg {
  background: #f2f5f6;
}
#contact .form form {
  padding: 140px 0;
  background: #f2f5f6;
}
#contact .form form dl {
  width: 600px;
  margin: 0 auto 100px;
  text-align: left;
}
#contact .form form dl dt {
  margin-bottom: 10px;
}
#contact .form form dl dt small {
  display: block;
  margin-bottom: 5px;
  font-size: 10px;
  font-weight: bold;
}
#contact .form form dl dt p {
  font-size: 18px;
  font-weight: bold;
}
#contact .form form dl dt p span {
  color: #bf2626;
}
#contact .form form dl dd {
  position: relative;
  margin-bottom: 40px;
}
#contact .form form dl dd input,
#contact .form form dl dd select,
#contact .form form dl dd textarea {
  width: 100%;
  padding: 20px;
  border: none;
  background: #fff;
  font-size: 14px;
}
#contact .form form dl dd select {
  -webkit-appearance: none;
  appearance: none;
}
#contact .form form dl dd select::-ms-expand {
  display: none;
}
#contact .form form dl dd textarea {
  font-family: 'Lato', "Noto Sans Japanese";
  height: 120px;
}
#contact .form form dl dd i {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-top: solid 10px #011e2b;
  border-right: solid 5px transparent;
  border-left: solid 5px transparent;
}
#contact .form form dl dd:last-child {
  margin-bottom: 0;
}
#contact .form form .action button {
  width: 300px;
  height: 55px;
  border: none;
  background: #011e2b;
  font-family: 'Lato', "Noto Sans Japanese";
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}
#contact .complete {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 750;
  width: 100%;
  height: 100vh;
  background: rgba(1, 30, 43, 0.9);
  color: #fff;
}
#contact .complete > .inner {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  margin: auto;
}
#contact .complete > .inner h3 {
  margin-bottom: 90px;
  font-size: 40px;
}
#contact .complete > .inner p {
  width: 640px;
  margin: 0 auto 90px;
  font-size: 15px;
  text-align: left;
  line-height: 2;
}
#contact .complete > .inner .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 55px;
  margin: 0 auto;
  border: solid 1px #fff;
  cursor: pointer;
}

@media screen and (max-width: 960px) {
  #contact {
    padding: 0 0 100px;
  }
  #contact .form {
    width: calc(100% - 40px);
    padding: 80px 0;
    margin: 0 auto;
  }
  #contact .form form dl {
    width: calc(100% - 30px);
    max-width: 400px;
    margin: 0 auto 50px;
  }
  #contact .form form dl dt {
    margin-bottom: 20px;
  }
  #contact .form form dl dt p {
    font-size: 16px;
  }
  #contact .form form .action button {
    width: calc(100% - 30px);
    max-width: 400px;
    font-size: 14px;
  }
  #contact .complete > .inner {
    padding: 0 30px;
    max-width: 600px;
  }
  #contact .complete > .inner h3 {
    margin-bottom: 40px;
    font-size: 30px;
    line-height: 1.3;
  }
  #contact .complete > .inner p {
    width: auto;
    margin: 0 auto 40px;
    font-size: 12px;
  }
  #contact .complete > .inner .btn {
    width: 100%;
  }
}
