@charset "UTF-8";
/* ----------------------------------------------
  lower common
---------------------------------------------- */
body {
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}
body .wrapper {
  flex: 1;
  background: #f1f1f1;
}
a.backlink {
  position: relative;
  display: inline-block;
  font-size: min(1.333vw,16px);
  font-weight: 600;
  line-height: 1;
  transition: .3s;
  margin-top: min(3.333vw,40px);
}
a.backlink::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: max(-0.417vw,-5px);
  left: 0;
  transition: .3s;
}
a.backlink:hover {
  color: #00a5a5;
}
a.backlink:hover::before {
  background: #00a5a5;
}
@media screen and (max-width: 767px) {
  a.backlink {
    font-size: 3.2vw;
    margin-top: 8vw;
  }
}
/* ----------------------------------------------
  thanks-content
---------------------------------------------- */
.thanks-content {
  text-align: center;
  padding: min(5.417vw,65px) 0 min(6.667vw,80px);
}
.thanks-content .title,
.thanks-content .text {
  font-size: min(2.5vw,30px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: min(3.333vw,40px);
}
.thanks-content .text p {
  font-size: min(1.667vw,20px);
  line-height: 1.425em;
  margin-bottom: min(3.75vw,45px);
}
.thanks-content .image img {
  width: min(100%,750px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .thanks-content {
    padding: 12vw 0;
  }
  .thanks-content .title,
  .thanks-content .text {
    font-size: 8vw;
    margin-bottom: 6.667vw;
  }
  .thanks-content .text p {
    font-size: 5.333vw;
    text-indent: -3.733vw;
    margin-left: 3.733vw;
  }
}
/* ----------------------------------------------
  notfound-content
---------------------------------------------- */
.notfound-content {
  text-align: center;
  padding: min(5.417vw,65px) 0 min(6.667vw,80px);
}
.notfound-content .title {
  font-size: min(2.5vw,30px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: min(3.333vw,40px);
}
.notfound-content .whiteBox {
  background: #fff;
  padding: min(3.333vw,40px) min(5vw,60px) min(4.167vw,50px);
}
.notfound-content .text {
  font-size: min(1.5vw,18px);
  line-height: 2em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .notfound-content {
    padding: 12vw 0;
  }
  .notfound-content .title {
    font-size: 5.333vw;
    line-height: 1.425em;
    margin-bottom: 6.667vw;
    text-indent: -3.733vw;
    margin-left: 3.733vw;
  }
  .notfound-content .whiteBox {
    padding: 8vw 8vw 9.333vw;
  }
  .notfound-content .text {
    font-size: 3.733vw;
    font-weight: 300;
    text-align: left;
  }
}
