@charset "UTF-8";
* {
  font-family: "Noto Sans JP", sans-serif;
}

.title {
  font-size: 25px;
  font-weight: 700;
  color: #004AAE;
  text-align: center;
  line-height: 22px;
}
.title span {
  display: inline-block;
  margin-top: 2px;
  font-weight: 400;
  font-size: 14px;
}

@media (min-width: 768px) {
  .title {
    font-size: 40px;
    line-height: 35px;
  }
  .title span {
    font-size: 20px;
  }
}
.pc-only {
  display: none;
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
}
.header-section {
  background: #fff;
  padding: 10px 20px;
  height: 58px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  z-index: 999;
  box-sizing: border-box;
}
.header-section .header-logo {
  width: 175px;
}
.header-section .header-nav {
  width: 100vw;
  height: 100vh;
  overflow: scroll;
  position: absolute;
  top: 58px;
  left: 0;
  background: #024F9F;
  display: none;
  padding-top: 40px;
  padding-bottom: 100px;
  box-sizing: border-box;
}
.header-section .header-nav .sp-nav {
  width: 90%;
  margin: 40px auto 0 auto;
  text-align: center;
  color: #fff;
}
.header-section .header-nav .sp-nav h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 16px;
}
.header-section .header-nav .sp-nav a {
  text-decoration: none;
}
.header-section .header-nav .sp-nav .tel {
  font-size: 35px;
  font-weight: 700;
  line-height: 45px;
  color: #fff;
}
.header-section .header-nav .sp-nav .tel span {
  font-size: 20px;
  line-height: 20px;
  margin-right: 3px;
}
.header-section .header-nav .sp-nav p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 23px;
  font-weight: 500;
}
.header-section .header-nav .sp-nav .mail-cv {
  color: #024F9F;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  background: #FFFFFF;
  width: 315px;
  margin: 30px auto;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 1px 2px 4px 2px rgba(255, 255, 255, 0.65);
  box-sizing: border-box;
  display: block;
}
.header-section .header-nav .nav-link-text {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  position: relative;
  width: 90%;
  margin: 0 auto;
  display: block;
  padding-bottom: 24px;
  border-bottom: 1px solid #fff;
  max-width: 500px;
}
.header-section .header-nav li {
  margin-bottom: 20px;
}
.header-section .open-active {
  display: block;
}
.header-section .cv-container {
  display: none;
}

@media (min-width: 1310px) {
  .header-section {
    padding: 0 0 0 70px;
    height: 80px;
    max-width: 1500px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .header-section .header-logo {
    width: 255px;
    height: 59px;
    margin-right: 40px;
    padding-top: 15px;
  }
  .header-section .header-nav {
    display: flex !important;
    background: transparent !important;
    position: initial !important;
    height: initial !important;
    width: initial !important;
    padding-top: 0;
    overflow: initial;
  }
  .header-section .header-nav .sp-nav {
    display: none;
  }
  .header-section .header-nav .nav-link-text {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    margin: 35px 20px 0 0;
    display: block;
    position: relative;
    padding-bottom: 0;
    display: inline-block;
    width: auto;
  }
  .header-section .header-nav .nav-link-text::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #004AAE;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }
  .header-section .header-nav .nav-link-text:hover {
    color: #004AAE;
  }
  .header-section .header-nav .nav-link-text:hover::after {
    transform: scale(1, 1);
  }
  .header-section .cv-container {
    display: flex;
  }
  .header-section .cv-container .tel-content {
    display: flex;
    margin-right: 30px;
    margin-top: 18px;
  }
  .header-section .cv-container .tel-content .tel-icon {
    width: 15px;
    height: 20px;
    margin: 5px 4px 0 0;
  }
  .header-section .cv-container .tel-content .tel-text {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    line-height: 25px;
  }
  .header-section .cv-container .tel-content .tel-text span {
    font-size: 14px;
    font-weight: 500;
  }
  .header-section .cv-container .mail-content {
    background: #004AAE;
    display: flex;
    position: relative;
    transition: all 0.3s;
    width: 168px;
  }
  .header-section .cv-container .mail-content .mail-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }
  .header-section .cv-container .mail-content a {
    text-align: center;
    display: block;
    width: 100%;
    margin-top: 40px;
    position: relative;
  }
  .header-section .cv-container .mail-content a::before {
    content: "";
    background: url("../lp_images/mail.webp");
    background-size: 100%;
    background-repeat: no-repeat;
    width: 18px;
    height: 15px;
    display: inline-block;
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
  }
  .header-section .cv-container .mail-content .mail-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
  }
}
.open-menu {
  /*ボタン内側*/
  /*activeクラスが付与されると線が回転して×に*/
}
.open-menu .openbtn1 {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 5px;
}
.open-menu .openbtn1 span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  height: 3px;
  background: #004AAE;
  width: 100%;
}
.open-menu .openbtn1 span:nth-of-type(1) {
  top: 10px;
}
.open-menu .openbtn1 span:nth-of-type(2) {
  top: 19px;
}
.open-menu .openbtn1 span:nth-of-type(3) {
  top: 28px;
}
.open-menu .openbtn1.active span:nth-of-type(1) {
  top: 14px;
  left: -5px;
  transform: translateY(6px) rotate(-45deg);
  width: 40px;
  background: #004AAE;
}
.open-menu .openbtn1.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.open-menu .openbtn1.active span:nth-of-type(3) {
  top: 26px;
  left: -5px;
  transform: translateY(-6px) rotate(45deg);
  width: 40px;
  background: #004AAE;
}

@media (min-width: 1310px) {
  .open-menu {
    display: none;
  }
}
.fv-section {
  padding-top: 58px;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
.fv-section .container {
  font-family: "Noto Serif JP", serif !important;
  position: absolute;
  top: 88px;
  left: 5%;
}
.fv-section .container h1 {
  font-size: min(11.7vw, 55px);
  letter-spacing: -2.4px;
  font-weight: 700;
  line-height: 110%;
  color: #fff;
  text-shadow: 0px 0px 10px #0031B0, 0px 0px 10px #0031B0, 0px 0px 10px #0031B0;
  margin-bottom: 6px;
}
.fv-section .container h1 span {
  font-size: min(8vw, 38px);
}
.fv-section .container .top {
  color: #fff;
  font-size: min(8vw, 38px);
  font-weight: 700;
  line-height: 100%;
  text-shadow: 0px 2px 3px #0031B0, 0px 2px 3px #0031B0, 0px 2px 3px #0031B0;
  margin-bottom: 9px;
}
.fv-section .container .top span {
  font-size: min(5.4vw, 25px);
}
.fv-section .container .sub {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-shadow: 0px 2px 3px #0031B0, 0px 2px 3px #0031B0, 0px 2px 3px #0031B0;
  margin-bottom: 14px;
}
.fv-section .container .support {
  font-size: 20px;
  font-weight: 900;
  color: #C40E13;
  padding: 10px 18px;
  box-sizing: border-box;
  box-shadow: 0px 3px 3px 0px #000;
  background-image: linear-gradient(111deg, #caa052, #fff3dd 23%, #fef0d7 74%, #f1b243);
  display: inline-block;
}
.fv-section img {
  width: 100%;
}

@media (min-width: 768px) {
  .fv-section {
    padding-top: 80px;
    max-width: 1500px;
  }
  .fv-section .container {
    top: 24%;
  }
  .fv-section .container h1 {
    font-size: min(6.5vw, 100px);
    line-height: 80%;
    margin-bottom: 40px;
  }
  .fv-section .container h1 span {
    font-size: min(4.5vw, 70px);
  }
  .fv-section .container .top {
    margin-bottom: 15px;
    font-size: min(4.3vw, 62px);
  }
  .fv-section .container .top span {
    font-size: min(3vw, 43px);
  }
  .fv-section .container .sub {
    margin-bottom: 20px;
    font-size: min(3vw, 41px);
  }
  .fv-section .container .support {
    font-size: min(2.5vw, 34px);
    padding: 17px 30px;
  }
}
.feature-section {
  max-width: 500px;
  padding: 100px 0 200px 0;
  margin: 0 auto;
  background: url("../images/bg_sp1.webp") no-repeat center top/cover;
}
.feature-section .inner {
  max-width: 500px;
  margin: 0 auto;
  width: 90%;
}
.feature-section .inner .container .content {
  margin-top: 40px;
}
.feature-section .inner .container .content .feature {
  margin-bottom: 30px;
}
.feature-section .inner .container .content .feature h3 {
  font-size: 20px;
  font-weight: 700;
  color: #004AAE;
  line-height: 30px;
  margin-bottom: 10px;
}
.feature-section .inner .container .content .feature h3 span {
  font-size: 20px;
  margin-right: 10px;
}
.feature-section .inner .container .content .feature p {
  font-size: 16px;
  line-height: 25px;
}
.feature-section .inner .container img {
  width: 69%;
  display: block;
  margin: 0 auto;
  max-width: 250px;
}

@media (min-width: 768px) {
  .feature-section {
    padding: 160px 0 200px 0;
    background: url("../images/bg_pc1.webp") no-repeat center top/cover;
    max-width: 1500px;
    margin: 0 auto;
  }
  .feature-section .inner {
    max-width: 1120px;
    width: 80%;
  }
  .feature-section .inner .container {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .feature-section .inner .container .content {
    width: 50%;
    margin-top: 0;
  }
  .feature-section .inner .container .content .feature h3 {
    font-size: 25px;
    margin-bottom: 15px;
  }
  .feature-section .inner .container .content .feature h3 span {
    margin-right: 20px;
    font-size: 25px;
  }
  .feature-section .inner .container .content .feature p {
    font-size: 18px;
    line-height: 30px;
  }
  .feature-section .inner .container .content .feature:last-of-type {
    margin-bottom: 0;
  }
  .feature-section .inner .container img {
    width: 42%;
    max-width: initial;
    margin: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right;
       object-position: right;
  }
}
.case-section {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  font-family: "Noto Serif JP", serif !important;
}
.case-section img {
  width: 100%;
}
.case-section h2 {
  position: absolute;
  top: 39.4%;
  left: 0;
  text-align: center;
  color: #fff;
  font-size: min(8vw, 40px);
  width: auto;
  text-shadow: 0px 0px 10px #0031B0, 0px 0px 10px #0031B0, 0px 0px 10px #0031B0;
  letter-spacing: -2.2px;
}
.case-section h2 span {
  font-size: min(5.3vw, 25px);
}

@media (min-width: 768px) {
  .case-section {
    max-width: 1500px;
  }
  .case-section h2 {
    top: 27%;
    left: 44%;
    font-size: min(4vw, 56px);
  }
  .case-section h2 span {
    font-size: min(3vw, 39px);
  }
}
.work-section {
  max-width: 500px;
  padding: 80px 0;
  background: url("../images/bg_sp2.webp") no-repeat center top/cover;
  margin: 0 auto;
}
.work-section .inner {
  width: 90%;
  margin: 0 auto;
  max-width: 500px;
}
.work-section .inner .container {
  margin-top: 10px;
}
.work-section .inner .container .content {
  position: relative;
}
.work-section .inner .container .content img {
  width: 100%;
  padding-top: 30px;
  margin-bottom: 30px;
  display: block;
}
.work-section .inner .container .content::after {
  content: "";
  position: absolute;
  background: url("../images/case_arrow.webp");
  display: inline-block;
  width: 50px;
  height: 30px;
  background-size: 100%;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  transform: translateX(-50%);
}
.work-section .inner .youtube-title {
  margin-top: 80px;
}
.work-section .inner .video {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  margin-top: 40px;
}
.work-section .inner .video .youtube {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .work-section {
    padding: 120px 0 160px 0;
    max-width: 1500px;
    margin: 0 auto;
    background: url("../images/bg_pc2.webp") no-repeat center top/cover;
  }
  .work-section .inner {
    max-width: 1120px;
    width: 80%;
  }
  .work-section .inner .container {
    margin-top: 30px;
  }
  .work-section .inner .container .content {
    display: flex;
    justify-content: space-between;
  }
  .work-section .inner .container .content img {
    width: calc((100% - 109px) / 2);
  }
  .work-section .inner .container .content::after {
    left: calc(50% - 25px);
    transform: rotate(-90deg);
  }
  .work-section .inner .youtube-title {
    margin-top: 130px;
  }
  .work-section .inner .video {
    margin-top: 60px;
  }
  .work-section .inner .video .youtube {
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.price-section {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  font-family: "Noto Serif JP", serif !important;
}
.price-section .title {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .price-section .title {
    margin-bottom: 60px;
  }
}
.price-section img {
  width: 100%;
}
.price-section .title-section {
  position: absolute;
  top: 10%;
  color: #fff;
  font-weight: 700;
  width: 100%;
  text-align: center;
  text-shadow: 0px 0px 10px #0031B0, 0px 0px 10px #0031B0, 0px 0px 10px #0031B0;
}
.price-section .title-section h2 {
  font-size: min(7vw, 29px);
}
.price-section .title-section h2 span {
  font-size: min(5.3vw, 20px);
}
.price-section .title-section p {
  font-size: min(5.6vw, 22px);
  line-height: 150%;
}
.price-section .price-content {
  position: absolute;
  top: 16%;
  color: #fff;
  text-align: center;
  width: 100%;
  font-weight: 700;
  text-shadow: 0px 0px 10px #0031B0, 0px 0px 10px #0031B0, 0px 0px 10px #0031B0;
}
.price-section .price-content h3 {
  font-size: min(8.5vw, 32px);
  line-height: 140%;
}
.price-section .price-content h3 span {
  font-size: min(6.5vw, 24px);
}
.price-section .price-content .top {
  line-height: 140%;
  font-size: min(5.4vw, 21px);
}
.price-section .price-content .sub {
  line-height: 140%;
  font-size: min(4vw, 15px);
}
.price-section .price-content .support {
  font-size: 20px;
  font-weight: 900;
  color: #C40E13;
  padding: 10px 18px;
  box-sizing: border-box;
  box-shadow: 0px 3px 3px 0px #000;
  background-image: linear-gradient(111deg, #caa052, #fff3dd 23%, #fef0d7 74%, #f1b243);
  display: inline-block;
  margin-top: 16px;
  text-shadow: none;
}

@media (min-width: 768px) {
  .price-section {
    max-width: 1500px;
  }
  .price-section .title-section {
    position: absolute;
    top: 15%;
    color: #fff;
    font-weight: 700;
    width: 100%;
    text-align: center;
  }
  .price-section .title-section h2 {
    font-size: min(6vw, 86px);
  }
  .price-section .title-section h2 span {
    font-size: min(4.3vw, 60px);
  }
  .price-section .title-section p {
    font-size: min(5.6vw, 66px);
    line-height: 150%;
  }
  .price-section .price-content {
    position: absolute;
    top: 35%;
    left: 5%;
    color: #fff;
    text-align: left;
    width: auto;
    font-weight: 700;
  }
  .price-section .price-content h3 {
    font-size: min(4.5vw, 63px);
    line-height: 140%;
  }
  .price-section .price-content h3 span {
    font-size: min(3.5vw, 47px);
  }
  .price-section .price-content .top {
    line-height: 140%;
    font-size: min(3vw, 42px);
  }
  .price-section .price-content .sub {
    line-height: 140%;
    font-size: min(2.5vw, 29px);
  }
  .price-section .price-content .support {
    font-size: min(2.5vw, 34px);
    padding: 17px 30px;
  }
}
.support-section {
  max-width: 500px;
  margin: 60px auto 0 auto;
  width: 90%;
  background: linear-gradient(180deg, #004AAE, #051E84);
  padding: 60px 0;
}
.support-section img {
  width: 90%;
  display: block;
  margin: 0 auto;
}
.support-section a {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #024F9F;
  text-align: center;
  display: block;
  text-decoration: none;
  background: #fff;
  padding: 13px 0;
  width: 295px;
  margin: 25px auto 0 auto;
  border-radius: 10px;
  box-shadow: 1px 2px 4px 2px rgba(255, 255, 255, 0.65);
}

@media (min-width: 768px) {
  .support-section {
    margin-top: 80px;
    padding: 80px 0;
    max-width: 1500px;
  }
  .support-section a {
    font-size: 36px;
    padding: 40px 0;
    width: 648px;
    margin-top: 40px;
  }
}
.contact-section {
  margin: 80px auto 0 auto;
  max-width: 500px;
  width: 90%;
}
.contact-section .tel-container {
  margin-top: 40px;
  background: #F4FAFC;
  padding: 30px 5%;
  text-align: center;
}
.contact-section .tel-container h4 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  color: #004AAE;
}
.contact-section .tel-container a {
  font-size: 35px;
  line-height: 45px;
  text-decoration: none;
  font-weight: 700;
  color: #333;
  display: block;
  margin: 10px 0 20px 0;
}
.contact-section .tel-container a span {
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
  margin-right: 3px;
  font-weight: 400;
  position: relative;
  top: -3px;
}
.contact-section .tel-container p {
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
}
.contact-section .text {
  font-size: 16px;
  line-height: 25px;
  margin: 40px 0;
}
.contact-section .form-container .form-content {
  margin-bottom: 30px;
}
.contact-section .form-container .form-content .form-title {
  display: flex;
  margin-bottom: 10px;
}
.contact-section .form-container .form-content .form-title p {
  font-size: 16px;
  line-height: 16px;
  margin-right: 15px;
}
.contact-section .form-container .form-content .form-title span {
  font-size: 13px;
  line-height: 13px;
  color: #fff;
  padding: 3px 13px;
  border-radius: 3px;
  background: #004AAE;
}
.contact-section .form-container .form-content .input input, .contact-section .form-container .form-content .input textarea {
  border: none;
  font-size: 16px;
  line-height: 16px;
  background: #F7F7F7;
  width: 100%;
  box-sizing: border-box;
  padding: 20px 15px;
}
.contact-section .form-container .form-content .input input::-moz-placeholder, .contact-section .form-container .form-content .input textarea::-moz-placeholder {
  color: #AAAAAA;
}
.contact-section .form-container .form-content .input input::placeholder,
.contact-section .form-container .form-content .input textarea::placeholder {
  color: #AAAAAA;
}
.contact-section .form-container button {
  font-size: 20px;
  line-height: 20px;
  color: #fff;
  text-decoration: none;
  display: block;
  text-align: center;
  padding: 15px 0;
  background: #004AAE;
  border-radius: 10px;
  border: none;
  width: 240px;
  margin: 40px auto 0 auto;
}

@media (min-width: 768px) {
  .contact-section {
    margin-top: 120px;
    max-width: 1000px;
    width: 75%;
  }
  .contact-section .tel-container {
    margin-top: 60px;
    padding: 40px 0;
  }
  .contact-section .tel-container h4 {
    font-size: 20px;
    line-height: 30px;
  }
  .contact-section .tel-container a {
    font-size: 50px;
    line-height: 45px;
    margin: 25px 0 20px 0;
  }
  .contact-section .tel-container a span {
    font-size: 24px;
    line-height: 20px;
  }
  .contact-section .tel-container p {
    font-size: 16px;
    font-weight: 500;
    line-height: 23px;
  }
  .contact-section .text {
    text-align: center;
    margin: 60px 0;
    font-size: 20px;
    line-height: 30px;
  }
  .contact-section .form-container .form-content {
    display: flex;
    margin-bottom: 60;
  }
  .contact-section .form-container .form-content .form-title {
    min-width: 190px;
    margin-right: 60px;
    width: 30%;
    display: flex;
    justify-content: space-between;
    margin: 35px 6% 0 0;
  }
  .contact-section .form-container .form-content .form-title p {
    margin: 0;
  }
  .contact-section .form-container .form-content .form-title span {
    height: 20px;
    box-sizing: border-box;
  }
  .contact-section .form-container .form-content .input {
    width: 70%;
  }
  .contact-section .form-container .form-content .input input, .contact-section .form-container .form-content .input textarea {
    padding: 30px;
  }
  .contact-section .form-container button {
    font-size: 20px;
    line-height: 20px;
    width: 350px;
    padding: 25px 0;
    font-size: 25px;
  }
}
.company-section {
  width: 90%;
  max-width: 500px;
  margin: 80px auto 0 auto;
  padding-bottom: 60px;
}
.company-section .title {
  margin-bottom: 40px;
}
.company-section dl {
  padding: 10px 0;
  position: relative;
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(to right, #004AAE 0%, #004AAE 40%, #E1E1E1 40%, #E1E1E1 100%) 1;
     border-image: linear-gradient(to right, #004AAE 0%, #004AAE 40%, #E1E1E1 40%, #E1E1E1 100%) 1;
}
.company-section dl dt, .company-section dl dd {
  font-size: 16px;
  line-height: 30px;
}
.company-section dl dt {
  margin-bottom: 5px;
}
.company-section dl:first-of-type {
  border-top: 1px solid;
  -o-border-image: linear-gradient(to right, #004AAE 0%, #004AAE 40%, #E1E1E1 40%, #E1E1E1 100%) 1;
     border-image: linear-gradient(to right, #004AAE 0%, #004AAE 40%, #E1E1E1 40%, #E1E1E1 100%) 1;
}
.company-section .small {
  text-align: center;
  display: block;
  margin-top: 60px;
  font-size: 12px;
}

@media (min-width: 768px) {
  .company-section {
    max-width: 1000px;
    width: 75%;
    margin-top: 120px;
    padding-bottom: 130px;
  }
  .company-section .title {
    margin-bottom: 60px;
  }
  .company-section dl, .company-section dl:first-of-type {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    -o-border-image: linear-gradient(to right, #004AAE 0%, #004AAE 14%, #E1E1E1 14%, #E1E1E1 100%) 1;
       border-image: linear-gradient(to right, #004AAE 0%, #004AAE 14%, #E1E1E1 14%, #E1E1E1 100%) 1;
  }
  .company-section dl dt, .company-section dl:first-of-type dt {
    width: 23%;
  }
  .company-section dl dd, .company-section dl:first-of-type dd {
    width: 77%;
  }
  .company-section .small {
    margin-top: 80px;
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */

.form-container {
	margin-top: 60px;
}