@charset "UTF-8";
/* =================
//		Font
================== */
/* =================
//		Color
================== */
/* =================
//		Mixin
================== */
/* FONT */
@font-face {
  font-family: "NotoBold";
  src: url("../lp/fonts/NotoSansJP-Bold.otf");
}
@font-face {
  font-family: "NotoJP";
  src: url("../lp/fonts/NotoSansJP-Medium.otf");
}
@font-face {
  font-family: "Josefin";
  src: url("../lp/fonts/JosefinSans-Regular.ttf");
}
/* =================
//		Mixin
================== */
/* =================
//		animation
================== */
.js-anime.fade-down {
  transform: translate(0, -40px);
  opacity: 0;
  transition: 1s;
  transition-timing-function: ease-in-out;
}
.js-anime.fade-down.active {
  transform: translate(0, 0);
  opacity: 1;
}
.js-anime.fade-up {
  transform: translate(0, 100px);
  opacity: 0;
  transition-timing-function: ease-in-out;
  transition: 1s;
}
.js-anime.fade-up.active {
  transform: translate(0, 0);
  opacity: 1;
}
.js-anime.fade-to-right {
  transform: translate(-100px, 0);
  opacity: 0;
  transition-timing-function: ease-in-out;
  transition: 1s;
  transition-delay: 0.8s;
}
.js-anime.fade-to-right.active {
  transform: translate(0, 0);
  opacity: 1;
}
.js-anime.fade-to-left {
  transform: translate(100px, 0);
  opacity: 0;
  transition-timing-function: ease-in-out;
  transition: 1s;
  transition-delay: 0.8s;
}
.js-anime.fade-to-left.active {
  transform: translate(0, 0);
  opacity: 1;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "NotoJP";
  color: #1a1311;
}

.wrap {
  display: inline-block;
}

header .l-title {
  background: url(../lp/images/bg_l_title.svg) no-repeat;
  background-size: contain;
  color: #fff;
}
header .l-title h1 {
  font-weight: normal;
  position: relative;
}
header .l-title h1 a {
  color: #fff;
  text-decoration: none;
}
header .l-title h1:before {
  content: "";
  background: url(../lp/images/ico_map.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
}
header .l-form-wrapper {
  position: relative;
  background-color: #fff;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header .l-form-wrapper::before {
  content: "";
  background: url(../lp/images/bg-l-formup.svg) no-repeat;
  background-size: contain;
  width: 100%;
  height: 108px;
  position: absolute;
  top: 0;
  left: 0;
}
header .l-form-wrapper::after {
  content: "";
  background: url(../lp/images/bg-l-formbt.svg) no-repeat;
  background-size: contain;
  width: 100%;
  height: 108px;
  position: absolute;
  bottom: 0;
  left: 0;
}
header .l-form-wrapper .l-form {
  width: 100%;
}
header .l-form-wrapper .l-form .l-form-title {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .l-form-wrapper .l-form .l-form-title img {
  width: 25%;
}
header .l-form-wrapper .l-form .l-form-title p {
  color: #ee7b47;
  font-size: 3rem;
  border-bottom: 2.5px solid #ee7b47;
  padding: 0 0 8px;
  margin: 8px 0 0 10px;
  letter-spacing: 0.02em;
}
header .l-form-wrapper .l-form form {
  width: 100%;
  margin-top: 20px;
}
header .l-form-wrapper .l-form form span {
  color: #ee7b47;
  font-size: 1.2rem;
  display: inline-block;
  padding-bottom: 5px;
}
header .l-form-wrapper .l-form form span::before {
  font-family: "Font Awesome 5 Free";
  content: "\f06a";
  font-weight: bold;
  font-size: 1.1em;
  margin-right: 3px;
}
header .l-form-wrapper .l-form form input,
header .l-form-wrapper .l-form form select {
  border: 0.8px solid #6d6d6d;
  padding: 8px 10px;
  width: 100%;
  cursor: pointer;
  color: #1a1311;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.6rem;
}
header .l-form-wrapper .l-form form input:invalid,
header .l-form-wrapper .l-form form select:invalid {
  color: #777;
  font-weight: normal;
}
header .l-form-wrapper .l-form form input {
  margin-bottom: 20px;
}
header .l-form-wrapper .l-form form select {
  appearance: none;
}
header .l-form-wrapper .l-form form .l-form-flex {
  display: flex;
  justify-content: space-between;
}
header .l-form-wrapper .l-form form .l-form-flex .l-area {
  width: 34%;
}
header .l-form-wrapper .l-form form .l-form-flex .l-jobs {
  width: 55%;
}
header .l-form-wrapper .l-form form .l-form-flex p {
  color: #1a1311;
}
header .l-form-wrapper .l-form form .l-form-flex .l-form-select {
  position: relative;
}
header .l-form-wrapper .l-form form .l-form-flex .l-form-select::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 8px;
  font-size: 1.2em;
  transform: translateY(-50%);
}
header .l-form-wrapper .l-form form .l-form-btn {
  margin: 27px 0 0;
}
header .l-form-wrapper .l-form form .l-form-btn .l-submit-btn {
  background-color: #ee7b47;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: none;
  color: #fff;
  text-decoration: none;
  border-radius: 35.7px;
  width: 100%;
  font-weight: 600;
  position: relative;
  cursor: pointer;
  z-index: 2000;
  transition: 1s;
}
header .l-form-wrapper .l-form form .l-form-btn .l-submit-btn::after {
  content: "";
  width: 30px;
  height: 30px;
  background: url(../lp/images/ico_arrow.svg);
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
header .l-form-wrapper .l-form form .l-form-btn .l-submit-btn:hover {
  transform: scale3d(1.01, 1.01, 1.01);
  transition: 1s;
  background-color: #d55014;
}
header .l-form-wrapper .l-form form .l-form-btn .l-entry {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  transition: 1s;
}
header .l-form-wrapper .l-form form .l-form-btn .l-entry span {
  display: block;
  text-align: center;
  font-size: 1.7rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px 0 80px 0;
  width: 50%;
  color: #1a1311;
  line-height: 1.56;
  cursor: pointer;
  border-radius: 10px;
}
header .l-form-wrapper .l-form form .l-form-btn .l-entry span::before {
  position: absolute;
  top: 5px;
  right: 10px;
  width: 20px;
  height: 20px;
  font-family: "Font Awesome 5 Free";
  content: "\f00d";
  font-weight: bold;
  color: #00a0a3;
  font-size: 1.5em;
}
header .l-form-wrapper .l-form form .l-form-btn .l-entry span::after {
  font-size: 1.5rem;
  content: "閉じる";
  position: absolute;
  background-color: #ee7b47;
  padding: 6px 25px;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
}
header .l-form-wrapper .l-form form .l-form-btn .l-entry.close {
  display: none;
}
header .l-subtitle p {
  font-weight: 700;
}
header .l-subtitle p .bold {
  color: #00a0a3;
  padding-bottom: 7px;
  border-bottom: 2.5px solid #00a0a3;
}

@keyframes Scroll {
  0% {
    height: 0;
  }
  45% {
    height: 100%;
  }
  55% {
    height: 100%;
    top: 0;
  }
  100% {
    height: 0;
    top: 100%;
  }
}
.scroll_wrapper {
  position: relative;
}
.scroll_wrapper .scroll_icon {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  width: 1px;
  height: 130px;
  margin: auto;
  z-index: 100;
}
.scroll_wrapper .scroll_icon span {
  background-color: #fff;
  position: absolute;
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  padding: 5px 0;
}
.scroll_wrapper .scroll_icon::before, .scroll_wrapper .scroll_icon::after {
  width: 2px;
  height: 130px;
  margin: auto;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: auto;
  content: "";
  background-color: #00a0a3;
}
.scroll_wrapper .scroll_icon::before {
  opacity: 0.2;
}
.scroll_wrapper .scroll_icon:after {
  animation: Scroll 2s infinite cubic-bezier(0.77, 0, 0.18, 1);
}

main section {
  width: 100%;
}
main section .l-content {
  position: relative;
}
main section .l-content::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 2000;
}
main section .txt-support {
  border-top: 2.5px solid #1a1311;
  font-family: "Josefin";
  padding-top: 18px;
  display: block;
  width: 65px;
}
main section .ttl-support {
  width: 50%;
  background-size: 300px;
  background-repeat: no-repeat;
  background-position: right top;
}
main section .ttl-support h2 {
  position: relative;
  padding: 70px 0 100px 0;
  font-size: 3.2rem;
  letter-spacing: 0.08em;
  line-height: 1.46;
}
main section .ttl-support h2::after {
  content: "";
  background: url(../lp/images/line.svg);
  height: 48px;
  width: 58px;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 15%;
}
main section .flex-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main section .flex-title .txt-support {
  margin-left: 12%;
}
main section .inner-support .img-content {
  width: 63%;
}
main section .inner-support .txt-content {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 2.22;
  padding: 20px 25px;
}
main section.sec01 .l-content::before {
  background-image: url(../lp/images/ico_job_listings.svg);
  bottom: 5px;
  left: 7%;
  width: 12%;
  height: 90%;
}
main section.sec01 .ttl-support {
  background-image: url(../lp/images/ico_01.svg);
}
main section.sec02 {
  background-color: #f2ebe5;
  position: relative;
  top: -10px;
  margin-bottom: -15px;
  padding-bottom: 25px;
}
main section.sec02 .l-content::before {
  background-image: url(../lp/images/ico_interview.svg);
  width: 12%;
  height: 70%;
  top: 0;
  right: 0;
}
main section.sec02 .ttl-support {
  background-image: url(../lp/images/ico_02.svg);
}
main section.sec02 .txt-support {
  margin: 0 12% 0 auto;
  padding-right: 10%;
}
main section.sec02 .img-content {
  margin: 0 0 0 auto;
}
main section.sec02 .sec2_inner {
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  z-index: 1000;
}
main section.sec03 {
  padding: 250px 0 0;
}
main section.sec03 .l-content::before {
  background-image: url(../lp/images/ico_career_support.svg);
  top: -70px;
  left: -59px;
  width: 19%;
  height: 100%;
}
main section.sec03 .txt-support {
  margin-left: 12%;
}
main section.sec03 .ttl-support {
  background-image: url(../lp/images/ico_03.svg);
  width: 100%;
}
main section.sec03 .inner-support .txt-content {
  width: 100%;
}
main section.sec03 .inner-support .img-content {
  width: 52%;
  margin-top: 35px;
}
main section.sec03 .sec3_inner {
  position: absolute;
  bottom: 35px;
  right: 0;
  width: 53%;
  z-index: 1000;
}
main section .l-thanks {
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  margin: 100px 0 200px;
  line-height: 2;
}
main .l-btn {
  margin-top: 220px;
}
main .l-btn a {
  background-color: #ee7b47;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: none;
  color: #fff;
  text-decoration: none;
  transition: 1.5s;
  font-size: 2.8rem;
  letter-spacing: 0.08em;
  margin: 0 auto;
  display: block;
  text-align: center;
  padding: 50px 0;
  border-radius: 60px;
  position: relative;
}
main .l-btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 17%;
  width: 65px;
  height: 65px;
  background: url(../lp/images/ico_30sec_wt.svg) no-repeat;
  background-size: contain;
}
main .l-btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 7%;
  width: 32px;
  height: 32px;
  background: url(../lp/images/ico_arrow_top.svg) no-repeat;
  background-size: contain;
}
main .l-btn a:hover {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: 2s;
  background-color: #d55014;
}
main .l-btn.bg-under {
  position: relative;
  margin: 0;
  padding-top: 210px;
}
main .l-btn.bg-under a {
  z-index: 1000;
}
main .l-btn.bg-under::after {
  content: "";
  background: url(../lp/images/bg_under_pc.svg) no-repeat;
  width: 100%;
  height: 750px;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
}

footer {
  padding: 100px 0 60px;
  background-color: #ccc;
  text-align: center;
  color: #fff;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer .privacy {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  margin: 24px 0 65px;
}
footer .copyright {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}
footer .link_yumexia {
  width: 50%;
  margin: 0 auto;
}
footer .link_yumexia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 950px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
  header {
    background: url(../lp/images/top_img.jpg) no-repeat bottom;
    background-size: cover;
    min-height: 770px;
    height: 50vw;
    width: 100%;
  }
  header.thanks {
    background: none;
    background-size: cover;
    min-height: auto;
    height: auto;
    width: 100%;
    max-height: auto;
  }
  header.thanks .l-title {
    height: 120px;
  }
  header .l-title {
    height: 14%;
  }
  header .l-title h1 {
    font-size: 2rem;
    margin: 0 0 60px 30px;
    padding: 20px 0 0 50px;
    letter-spacing: 0.06em;
    line-height: 1.17;
  }
  header .l-title h1::before {
    width: 40px;
    height: 50px;
    top: 27px;
  }
  header .l-title h1 span {
    font-size: 1.3rem;
    letter-spacing: 0.12em;
  }
  header .l-form-wrapper {
    order: 1;
    width: 400px;
    height: 530px;
    margin-bottom: 6vw;
  }
  header .l-form-wrapper form .l-form-flex p {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  header .l-form-wrapper .l-form-btn .l-submit-btn {
    font-size: 2.2rem;
    padding: 16px 0;
  }
  header .l-subtitle {
    order: 2;
    z-index: 1000;
    margin: 0 auto -50px 0;
    padding-left: 20px;
  }
  header .l-subtitle p {
    line-height: 1.32;
    font-size: 4.7rem;
    letter-spacing: 0.05em;
  }
  header .l-subtitle p .small {
    font-size: 3.2rem;
  }
  header .l-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1000px;
    margin: 20px auto 0 auto;
  }
  .scroll_wrapper {
    margin-top: 210px;
  }
  main {
    padding-top: 20px;
  }
  main .l-content {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    padding: 0 5%;
  }
  main section .txt-support {
    font-size: 2rem;
  }
  main section .txt-support span {
    font-size: 3.3rem;
    letter-spacing: 0.14em;
    display: block;
  }
  main section .inner-support {
    position: relative;
  }
  main section .inner-support .img-content {
    width: 63%;
  }
  main section .inner-support .img-content img {
    width: 100%;
  }
  main section .inner-support .txt-content {
    width: 50%;
    min-width: 450px;
  }
  main section.sec01 {
    background: url(../lp/images/bg_upper_pc.svg) no-repeat bottom;
    padding-bottom: 150px;
    background-size: 100%;
  }
  main section.sec01 .txt-content {
    position: absolute;
    top: 0;
    right: 0;
  }
  main section.sec01 .inner-support .img-content img {
    box-shadow: -50px 56px #cfe8e1;
  }
  main section.sec02 .inner-support .img-content img {
    box-shadow: 35px 40px #fff;
  }
  main section.sec03 {
    padding-bottom: 180px;
  }
  main section.sec03 .inner-support .img-content img {
    box-shadow: -27px 43px #fbdbc6;
  }
  main .l-btn a {
    min-width: 700px;
    width: 40%;
  }
}
@media screen and (max-width: 950px) {
  /* =================
  //		animation
  ================== */
  .js-anime.fade-to-right {
    transition-delay: 0;
  }
  .js-anime.fade-to-left {
    transition-delay: 0;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  header {
    background: url(../lp/images/top_img.jpg) no-repeat;
    background-size: contain;
    width: 100%;
  }
  header .l-title {
    height: 86px;
  }
  header .l-title h1 {
    font-size: 1.5rem;
    margin: 0 0 0 25px;
    padding: 16px 0 0 40px;
    letter-spacing: 0.06em;
    line-height: 1.2;
  }
  header .l-title h1::before {
    width: 33px;
    height: 37px;
    top: 20px;
  }
  header .l-title h1 span {
    font-size: 0.9rem;
    letter-spacing: 0.11em;
  }
  header .l-form-wrapper {
    order: 2;
    width: 70%;
    margin: 100px auto 0 auto;
  }
  header .l-form-wrapper::before {
    background: url(../lp/images/bg-l-formup.svg) no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
  }
  header .l-form-wrapper::after {
    content: "";
    background: url(../lp/images/bg-l-formbt.svg) no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    top: 75%;
  }
  header .l-form-wrapper .l-form {
    z-index: 10000;
  }
  header .l-form-wrapper form .l-form-flex p {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  header .l-form-wrapper .l-form-btn .l-submit-btn {
    font-size: 2.2rem;
    padding: 16px 0;
  }
  header .l-form-wrapper .l-form-btn .l-entry span {
    width: 80% !important;
  }
  header .l-subtitle {
    order: 1;
    z-index: 1000;
    margin: 0 auto 0 0;
    padding-left: 10px;
  }
  header .l-subtitle p {
    line-height: 1.32;
    font-size: 2.9rem;
    letter-spacing: 0.05em;
    color: #ee7b47;
    text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
  }
  header .l-subtitle p .small {
    font-size: 2rem;
  }
  header .l-content {
    margin-top: 20%;
  }
  .scroll_wrapper {
    display: none;
  }
  main .l-content {
    width: 60%;
    margin: 0 auto;
  }
  main section .txt-support {
    font-size: 1.5rem;
    padding-top: 8px;
    width: 50px;
  }
  main section .txt-support span {
    font-size: 2.5rem;
    letter-spacing: 0.14em;
    display: block;
  }
  main section .ttl-support {
    width: 100%;
    background-size: 50%;
    background-position: right center;
  }
  main section .ttl-support h2 {
    font-size: 4rem;
  }
  main section .flex-title {
    flex-direction: column;
    align-items: flex-start;
  }
  main section .flex-title .txt-support {
    order: 2;
    margin-left: 20%;
    width: 50px;
  }
  main section .flex-title .ttl-support {
    order: 1;
  }
  main section .inner-support .img-content {
    width: 110%;
  }
  main section .inner-support .img-content img {
    width: 100%;
  }
  main section .inner-support .txt-content {
    width: 100%;
    position: relative;
    margin-top: 25px;
  }
  main section.sec01 {
    background: url(../lp/images/bg_upper_sp.svg) no-repeat bottom;
    padding-bottom: 230px;
    padding-top: 80px;
    background-size: 100%;
  }
  main section.sec01 .l-content::before {
    top: 28%;
    left: 0;
    width: 17%;
    height: 100%;
  }
  main section.sec01 .inner-support .img-content img {
    box-shadow: -48px 25px #cfe8e1, -48px 120px #cfe8e1, 0 120px #cfe8e1;
  }
  main section.sec02 .l-content::before {
    background-image: url(../lp/images/ico_interview.svg);
    width: 18%;
    height: 100%;
    top: 15%;
    right: 0;
  }
  main section.sec02 .sec2_inner {
    position: relative;
    top: -70px;
  }
  main section.sec02 .img-content {
    margin: 15px 0 0 -10%;
  }
  main section.sec02 .inner-support .txt-content {
    margin-top: 10px;
  }
  main section.sec02 .inner-support .img-content img {
    box-shadow: 40px 11px #fff, 40px 40px #fff, 0 40px #fff;
  }
  main section.sec02 .txt-support {
    margin: 0 17% 0 auto;
  }
  main section.sec03 {
    padding: 150px 0 65px;
  }
  main section.sec03 .l-content::before {
    background-image: url(../lp/images/ico_career_support_sp.svg);
    top: 23%;
    left: -8%;
    width: 30%;
    height: 100%;
  }
  main section.sec03 .sec3_inner {
    position: static;
    width: 100%;
  }
  main section.sec03 .inner-support .img-content {
    width: 100%;
    margin-left: 10%;
  }
  main section.sec03 .inner-support .img-content img {
    box-shadow: -27px 43px #fbdbc6;
  }
  main section.sec03 .inner-support .txt-content {
    position: relative;
    top: -80px;
    margin-bottom: -80px;
  }
  main section.sec03 .txt-support {
    margin-left: 24%;
  }
  main .l-btn {
    margin-top: 50px;
  }
  main .l-btn a {
    width: 60%;
    font-size: 2rem;
    padding: 20px 0;
  }
  main .l-btn a::before {
    width: 42px;
    height: 51px;
    left: 8%;
  }
  main .l-btn a::after {
    right: 5%;
  }
  main .l-btn.bg-under {
    padding-top: 0;
  }
  main .l-btn.bg-under::after {
    background: url(../lp/images/bg_under_sp.svg) no-repeat;
    background-size: 100%;
  }
  footer .privacy {
    font-size: 1.6rem;
  }
  footer .copyright {
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  header {
    background: url(../lp/images/top_img_sp.jpg) no-repeat;
    background-size: contain;
    width: 100%;
  }
  header .l-content {
    margin-top: 25%;
  }
  header .l-form-wrapper {
    width: 85%;
    margin: 50px auto 0 auto;
    padding: 20px;
  }
  header .l-form-wrapper::before {
    background: url(../lp/images/bg-l-formup.svg) no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
  }
  header .l-form-wrapper::after {
    content: "";
    background: url(../lp/images/bg-l-formbt.svg) no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    top: 80%;
  }
  header .l-form-wrapper .l-form .l-form-title p {
    font-size: 2.2rem;
  }
  header .l-form-wrapper .l-form form input,
  header .l-form-wrapper .l-form form select {
    padding: 8px 22px 8px 5px;
    font-size: 1.3rem;
  }
  header .l-form-wrapper .l-form form .l-form-flex p {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  header .l-form-wrapper .l-form form .l-form-btn {
    margin: 18px 0 0;
  }
  header .l-form-wrapper .l-form form .l-form-btn .l-submit-btn {
    font-size: 1.5rem;
    padding: 15px 0;
  }
  header .l-form-wrapper .l-form form .l-form-btn .l-entry span {
    width: 90% !important;
    font-size: 1.2rem;
    padding: 35px 0 70px 0;
  }
  header .l-form-wrapper .l-form form .l-form-btn .l-entry span::after {
    font-size: 1.2rem;
  }
  main .l-content {
    width: 85%;
    margin: 0 auto;
  }
  main section .ttl-support {
    background-size: 60%;
  }
  main section .ttl-support h2 {
    font-size: 2.7rem;
  }
  main section.sec01 {
    padding-top: 0;
  }
  main section.sec01 .l-content::before {
    top: 28%;
  }
  main section.sec02 .l-content::before {
    top: 20%;
  }
  main .l-btn a {
    width: 90%;
  }
}
/*# sourceMappingURL=lp.css.map */