@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=LINE+Seed+JP:wght@100;400;700;800&family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  min-height: 100vh;
  position: relative;
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #1D1D1F;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.8rem;
    line-height: 1.8;
  }
}

a,
button {
  display: inline-block;
  transition: all 0.3s ease;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
}

h1 {
  line-height: 1;
}

h2,
h3 {
  line-height: 1.5;
}

main {
  margin-top: 70px;
}

.container {
  width: 90%;
  max-width: 1200px;
  padding: 60px 0;
  margin: 0 auto;
}
.container_long {
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 40px 0;
  }
}

.flex_box {
  display: flex;
}
.flex_box.wrap {
  flex-wrap: wrap;
  flex-direction: row;
}
.flex_box.column {
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .flex_box {
    flex-direction: column;
  }
}

.btn {
  width: 100%;
  max-width: 400px;
  border-radius: 50px;
  padding: 15px;
  text-align: center;
  font-weight: 500;
  line-height: 1;
  transition: all 0.3s ease;
}
.btn_orange {
  padding: 20px 40px;
  background-color: #FEB333;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 600;
  border: 1px solid #FEB333;
}
.btn_orange:hover {
  background-color: #fff;
  color: #FEB333;
  border: 1px solid #FEB333;
}
.btn_white {
  border: 1px solid #222222;
  background-color: #ffffff;
}
.btn_white:hover {
  background-color: #222222;
  color: #ffffff;
}
.btn_box {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn {
    max-width: 330px;
    font-size: 1.6rem;
  }
  .btn_orange {
    font-size: 1.8rem;
  }
}

.cta .container {
  padding: 140px 0 120px;
}
.cta .flex_box {
  justify-content: center;
  align-items: center;
  gap: 40px 90px;
}
.cta img {
  width: 40%;
  max-width: 345px;
}
.cta .text_area {
  flex: 1;
  max-width: 630px;
}
.cta .text_area .btn_box {
  margin-top: 40px;
}
.cta p {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .cta .container {
    padding: 70px 0 40px;
  }
  .cta img {
    width: 100%;
    max-width: 250px;
  }
  .cta h2 {
    font-size: 2.2rem;
  }
  .cta p {
    margin-bottom: 20px;
  }
}

.head_text {
  margin-bottom: 50px;
  font-size: 4rem;
}
.head_text_center {
  text-align: center;
}
@media screen and (max-width: 1210px) {
  .head_text {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .head_text {
    margin-bottom: 30px;
    font-size: 2.4rem;
  }
}

.scroll_top {
  width: 50px;
  aspect-ratio: 1/1;
  border: 1px solid #ffffff;
  border-radius: 50%;
  border: 2px solid #009DFF;
  padding-top: 8px;
  background-color: #ffffff;
  color: #009DFF;
  text-align: center;
  position: fixed;
  bottom: 30px;
  right: 20px;
  padding-top: 7px;
}
.scroll_top i {
  font-size: 3.2rem;
}
.scroll_top:hover {
  background-color: #009DFF;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .only_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .only_pc {
    display: none;
  }
}
.header {
  width: 100%;
  padding: 15px 80px 15px 25px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}
.header_logo a {
  width: 150px;
}
.header_logo a:hover {
  opacity: 0.7;
}
.header_logo img {
  width: 100%;
}
.header nav {
  flex: 1;
}
.header nav ul {
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  color: #1D1D1F;
  font-weight: 600;
  font-size: 1.8rem;
}
.header nav ul a:hover {
  color: #009DFF;
}
@media screen and (max-width: 949px) {
  .header {
    padding: 10px 15px;
  }
  .header nav {
    display: none;
  }
}

.burger_btn {
  display: none;
  color: #d6016f;
  font-size: 2.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.burger_btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 889px) {
  .burger_btn {
    display: block;
  }
}

.overlay {
  display: none;
  width: 100%;
  padding: 80px 20px 150px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}
.overlay .close_btn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #FEDE2F;
  font-size: 2.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.overlay .close_btn:hover {
  opacity: 0.7;
}
.overlay ul {
  flex-direction: column;
  gap: 20px;
}
.overlay a:hover {
  opacity: 0.7;
}

.footer {
  width: 100%;
  left: 0;
  top: 100vh;
  position: sticky;
}
.footer a {
  color: #009DFF;
  font-size: 1.3rem;
  font-weight: 500;
}
.footer a:hover {
  opacity: 0.7;
}
.footer_area_top {
  border-bottom: 1px solid #EBF1F1;
}
.footer_area_top .container {
  padding: 50px 0;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
.footer_area_top .container + .flex_box {
  width: 100%;
  max-width: 1200px;
  border-top: 1px solid #EBF1F1;
  padding: 30px 10px 40px;
  margin: 0 auto;
  font-size: 1.3rem;
  justify-content: flex-end;
  align-items: center;
  gap: 10px 50px;
}
.footer_area_bottom .container {
  padding: 30px 0 50px;
}
.footer_area_bottom ul {
  align-items: center;
  justify-content: flex-end;
  gap: 10px 50px;
}
.footer_area_bottom .copyright {
  font-size: 1.2rem;
}
.footer_area_left p {
  margin-bottom: 30px;
  font-size: 3.6rem;
  font-weight: 900;
}
.footer_area_left img {
  width: 240px;
  margin-bottom: 30px;
}
.footer_area_right {
  font-size: 1.6rem;
  text-align: right;
}
.footer_area_right ul {
  margin-top: 20px;
  flex-direction: row;
  justify-content: flex-end;
  gap: 10px 25px;
}
.footer_area_right img {
  height: 100px;
}
@media screen and (max-width: 767px) {
  .footer_area_top .container {
    padding: 40px 0;
    align-items: flex-start;
  }
  .footer_area_top .container + .flex_box {
    padding: 20px 10px 30px;
  }
  .footer_area_bottom .container {
    padding: 20px 0 40px;
  }
  .footer_area_bottom ul {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .footer_area_left p {
    margin-bottom: 20px;
    font-size: 2.8rem;
  }
  .footer_area_left img {
    width: 150px;
    margin-bottom: 10px;
  }
  .footer_area_right p {
    text-align: left;
  }
  .footer_area_right ul {
    justify-content: flex-start;
  }
  .footer_area_right img {
    height: 80px;
  }
}

.main_visual {
  width: 100%;
  height: 852vh;
  max-height: 850px;
  position: relative;
  margin-bottom: 100px;
}
.main_visual .main_visual_slider {
  min-height: 200px;
}
.main_visual .main_visual_slider li img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_visual_msg_area {
  text-align: center;
}
.main_visual_msg_area h2 {
  font-size: 4rem;
  font-weight: 700;
}
.main_visual_msg_area h3 {
  font-family: "LINE Seed JP", sans-serif;
  font-size: 12.8rem;
  font-weight: 800;
}
@media screen and (max-width: 1210px) {
  .main_visual_msg_area h2 {
    font-size: 3rem;
    font-weight: 700;
  }
  .main_visual_msg_area h3 {
    font-family: "LINE Seed JP", sans-serif;
    font-size: 8rem;
    font-weight: 800;
  }
}
@media screen and (max-width: 767px) {
  .main_visual {
    max-height: none;
    margin: 100px 0 50px;
    overflow: visible;
    height: auto;
  }
  .main_visual .main_visual_slider {
    min-height: 100px;
    height: 100%;
  }
  .main_visual .main_visual_slider li img {
    height: 30vw;
    width: auto;
  }
  .main_visual_msg_area {
    margin: 30px 0;
  }
  .main_visual_msg_area h2 {
    font-size: 2.2rem;
    font-weight: 700;
  }
  .main_visual_msg_area h3 {
    font-family: "LINE Seed JP", sans-serif;
    font-size: 6rem;
    font-weight: 800;
    line-height: 1.2;
  }
}

.intro .container {
  padding: 120px 0;
}
.intro .head_text {
  font-size: 4.8rem;
}
.intro p {
  line-height: 2;
}
@media screen and (max-width: 1210px) {
  .intro .head_text {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .intro .container {
    padding: 40px 0;
  }
  .intro .head_text {
    font-size: 2.8rem;
  }
  .intro .head_text {
    font-size: 2.4rem;
  }
}

.point .head_text {
  margin-bottom: 80px;
}
.point ul {
  justify-content: center;
  gap: 45px;
}
.point li {
  width: 370px;
  text-align: center;
  font-size: 2rem;
  display: flex;
  flex-direction: column;
}
.point li img {
  width: 100%;
}
.point_image {
  margin: 0 auto 30px;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .point .head_text {
    margin-bottom: 50px;
  }
  .point ul {
    align-items: center;
  }
  .point li {
    max-width: 300px;
    font-size: 1.8rem;
  }
  .point li img {
    margin: 0 auto 10px;
  }
}

.problem {
  background-color: #F5F5F5;
  position: relative;
}
.problem:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-left: -15px;
  border: 40px solid transparent;
  border-top: 40px solid #F5F5F5;
}
.problem .head_text + p {
  margin-bottom: 35px;
}
.problem ul {
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.problem li {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1/1;
  padding: 30px 10px;
}
.problem li:not(:last-child) {
  border-radius: 10px;
  background-color: #ffffff;
}
.problem li h3 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
}
.problem li h3 span {
  background: linear-gradient(transparent 60%, #8BCDFF 40%);
}
.problem li img {
  margin: 0 auto 30px;
}
.problem li p {
  padding: 0 10px;
  font-size: 1.6rem;
  font-weight: 400;
}

.solution {
  background-color: #FFF7F4;
}
.solution ul {
  gap: 120px;
}
.solution li {
  justify-content: center;
  align-items: flex-end;
  gap: 40px 70px;
}
.solution li:nth-of-type(2n + 2) {
  flex-direction: row-reverse;
}
.solution li:nth-of-type(1) .text_area span {
  color: #FF7F60;
}
.solution li:nth-of-type(2) .text_area span {
  color: #FFE558;
}
.solution li:nth-of-type(3) .text_area span {
  color: #73CEFF;
}
.solution li:nth-of-type(4) .text_area span {
  color: #BDFF8B;
}
.solution img {
  width: 40%;
  max-width: 500px;
}
.solution .text_area {
  flex: 1;
  max-width: 620px;
}
.solution .text_area .flex_box {
  margin-bottom: 30px;
  align-items: center;
  gap: 20px;
}
.solution .text_area .flex_box span {
  font-family: "LINE Seed JP", sans-serif;
  font-size: 9.6rem;
  font-weight: 700;
}
.solution h3 {
  font-size: 3.2rem;
}
@media screen and (max-width: 1210px) {
  .solution li {
    gap: 40px;
  }
  .solution .text_area {
    flex: 1;
    max-width: auto;
  }
  .solution .text_area .flex_box span {
    font-size: 7rem;
    line-height: 1;
  }
  .solution h3 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .solution ul {
    gap: 80px;
  }
  .solution li:nth-of-type(2n + 2) {
    flex-direction: column;
  }
  .solution img {
    width: 100%;
    max-width: 350px;
  }
  .solution .text_area {
    flex: 1;
  }
  .solution .text_area .flex_box {
    margin-bottom: 30px;
    align-items: center;
    gap: 20px;
  }
  .solution .text_area .flex_box span {
    font-size: 5rem;
  }
  .solution h3 {
    font-size: 2.2rem;
  }
}

.feature {
  overflow-x: hidden;
}
.feature .head_text br {
  display: none;
}
.feature ul {
  border-radius: 10px;
  padding: 50px 20px;
  background-color: #F5F5F5;
  justify-content: center;
  gap: 20px;
  position: relative;
}
.feature li {
  width: 200px;
  height: 170px;
  border-radius: 10px;
  padding: 35px 0;
  background-color: #FFFFFF;
  text-align: center;
  font-size: 1.8rem;
}
.feature li img {
  margin: 0 auto 10px;
}
.feature_img {
  position: absolute;
}
.feature_img.top {
  top: -50px;
  left: -120px;
}
.feature_img.btm {
  bottom: -50px;
  right: -80px;
}
@media screen and (max-width: 1210px) {
  .feature .head_text br {
    display: block;
  }
  .feature_img.top {
    top: -120px;
    left: -70px;
  }
  .feature_img.btm {
    right: -40px;
  }
}
@media screen and (max-width: 767px) {
  .feature {
    overflow-x: visible;
  }
  .feature li {
    width: 160px;
    height: 160px;
    padding-top: 30px;
  }
  .feature_img {
    width: 120px;
  }
  .feature_img.top {
    top: -40px;
    left: -30px;
  }
  .feature_img.btm {
    bottom: -70px;
    right: -20px;
  }
}

.case {
  padding: 60px 0 200px;
  overflow-x: hidden;
}
.case ul {
  margin-bottom: 60px;
}
.case li {
  width: 520px;
  border-radius: 30px;
  padding: 35px 30px;
  margin: 0 15px;
  background-color: #F6F6F6;
  display: flex;
  flex-direction: column;
  min-height: 650px;
}
.case img {
  width: 100%;
}
.case h3 {
  margin: 15px 0;
  font-size: 2rem;
  letter-spacing: 0.08rem;
  font-weight: 600;
}
.case dl dt {
  display: inline-block;
  border-radius: 5px;
  padding: 3px 10px;
  margin-bottom: 5px;
  font-size: 1.4rem;
  font-weight: 500;
}
.case dl dt:nth-of-type(1) {
  background-color: #24DA00;
  color: #FFFFFF;
}
.case dl dt:nth-of-type(2) {
  background-color: #FFEA00;
}
.case dl dd {
  font-size: 1.6rem;
}
.case dl dd:nth-of-type(1) {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .case {
    padding: 40px 0 100px;
  }
  .case li {
    width: 330px;
    padding: 30px 15px;
    min-height: 565px;
  }
}

.flow {
  background-color: #F6F6F6;
}
.flow .container {
  max-width: 1080px;
}
.flow ul {
  gap: 50px;
  position: relative;
}
.flow li {
  padding-left: 50px;
  position: relative;
}
.flow li:before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #009DFF;
  position: absolute;
  top: 20px;
  left: 0;
}
.flow li:after {
  content: "";
  width: 1px;
  height: calc(100% + 50px);
  background-color: #009DFF;
  position: absolute;
  top: 20px;
  left: 9px;
}
.flow li:last-of-type:after {
  height: 100%;
}
.flow h3 {
  margin-bottom: 30px;
  font-size: 2rem;
  color: #24DA00;
}
.flow h3 span {
  display: inline-block;
  margin-right: 20px;
  color: #222222;
  font-family: "LINE Seed JP", sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
}
.flow h3 + p {
  font-size: 1.6rem;
}
.flow_img {
  position: absolute;
  right: 0;
}
.flow_img.top {
  top: 0;
}
.flow_img.btm {
  bottom: 60px;
}
@media screen and (max-width: 976px) {
  .flow li {
    padding-left: 30px;
  }
  .flow li:before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #009DFF;
    position: absolute;
    top: 20px;
    left: 0;
  }
  .flow li:after {
    content: "";
    width: 1px;
    height: calc(100% + 50px);
    background-color: #009DFF;
    position: absolute;
    top: 20px;
    left: 9px;
  }
  .flow li:last-of-type:after {
    height: 100%;
  }
  .flow h3 {
    margin-bottom: 20px;
  }
  .flow h3 span {
    display: block;
    margin-right: 10px;
    font-size: 2.8rem;
  }
  .flow h3 + p {
    font-size: 1.6rem;
  }
  .flow_img {
    width: 120px;
  }
  .flow_img.top {
    top: 170px;
  }
}
@media screen and (max-width: 400px) {
  .flow_img.top {
    bottom: 0;
  }
  .flow_img.btm {
    bottom: 120px;
  }
}

.plan .container {
  max-width: 1080px;
  padding: 120px 0 100px;
}
.plan dl {
  font-size: 2.4rem;
}
.plan dl span {
  font-size: 1.8rem;
}
.plan dl span a {
  border-bottom: 2px solid #d6016f;
  color: #d6016f;
}
.plan dl span a:hover {
  opacity: 0.7;
}
.plan dt,
.plan dd {
  border-bottom: 1px solid #D3D3D3;
  padding: 20px 30px;
}
.plan dt {
  width: 60%;
  font-weight: 600;
  line-height: 1.3;
}
.plan dd {
  width: 40%;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .plan .container {
    padding: 60px 0 40px;
  }
  .plan dl {
    font-size: 2rem;
    flex-direction: column;
  }
  .plan dt,
  .plan dd {
    width: 100%;
  }
  .plan dt {
    border-bottom: none;
    padding: 10px 0 10px;
    font-weight: 700;
  }
  .plan dd {
    padding: 0 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .plan dl {
    font-size: 1.8rem;
  }
  .plan dl span {
    font-size: 1.6rem;
  }
}

.faq {
  background-color: #F6F6F6;
}
.faq ul {
  gap: 40px;
}
.faq li {
  border-radius: 10px;
  padding: 30px 60px;
  background-color: #ffffff;
}
.faq li .flex_box {
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
}
.faq li .flex_box span {
  display: inline-block;
  font-size: 2.4rem;
}
.faq li .flex_box p {
  flex: 1;
}
.faq_question {
  color: #009DFF;
  font-size: 2.4rem;
  line-height: 1.5;
}
.faq_answer {
  margin-top: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 1210px) {
  .faq li {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .faq li {
    padding: 30px 15px;
  }
  .faq li .flex_box span {
    font-size: 2rem;
  }
  .faq_question {
    font-size: 2rem;
  }
  .faq_answer {
    font-size: 1.8rem;
  }
}

form a {
  text-decoration: underline;
}
form a:hover {
  color: #1D668D;
}
form dl {
  display: flex;
  flex-wrap: wrap;
  border-top: none;
  border-radius: 20px;
  padding: 50px 60px;
  margin-bottom: 60px;
  text-align: left;
  background-color: #F5F5F5;
  font-size: 1.6rem;
}
form dt {
  width: 25%;
  padding: 25px 15px;
  box-sizing: border-box;
  border-bottom: solid 1px #D3D3D3;
  font-weight: 500;
}
form dd {
  padding: 25px 15px;
  margin: 0;
  width: 75%;
  box-sizing: border-box;
  border-bottom: solid 1px #D3D3D3;
}
form input[type=tel],
form input[type=text],
form input[type=email],
form input[type=date],
form select {
  height: 45px;
  font-size: 16px;
  border: 1px solid #D3D3D3;
  padding: 3px 10px;
  background-color: #fff;
}
form textarea {
  font-size: 16px;
  border: 1px solid #D3D3D3;
  padding: 3px 10px;
  width: 100%;
  color: #000;
  background-color: #fff;
}
form input,
form select {
  vertical-align: middle;
  background-color: #fff;
}
form .boxW100 input,
form .boxW100 textarea {
  width: 100%;
  box-sizing: border-box;
}
form .boxW49 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
form .boxW49 input {
  width: 49%;
  box-sizing: border-box;
}
form .boxW50 input {
  width: 49%;
  box-sizing: border-box;
}
form .boxW20 input {
  width: 20%;
  box-sizing: border-box;
}
form .boxW20 span {
  padding-left: 10px;
}
form .radio input {
  height: auto;
  transform: scale(1.7);
  vertical-align: inherit;
}
form .must {
  display: inline-block;
  background-color: #009DFF;
  font-size: 1.2rem;
  line-height: 1.5em;
  color: #F5F5F5;
  margin: 0 0 0 10px;
  padding: 2px 10px;
  border-radius: 30px;
}
form #image-btn {
  margin: 40px auto 0;
  text-align: center;
}
form .dateSelect span {
  display: block;
}
form .radioArea {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
}
form .radioArea label {
  border: 1px solid #D3D3D3;
  padding: 5px 40px;
  border-radius: 30px;
  background-color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  form .radioArea label {
    padding: 3px 40px 3px 20px;
  }
}
form .radioArea input {
  display: inline-block;
  margin: 0 5px 3px 0;
}
form .formBtn {
  display: flex;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 20px;
}
form .formBtn .btn {
  width: 250px;
  max-width: none;
}
form #image-btn.topBtn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  form dl {
    display: block;
    padding: 30px 20px;
    margin: 0 auto 25px;
  }
  form dt {
    width: 100%;
    padding: 15px 0 10px;
    border-bottom: none;
  }
  form dd {
    padding: 0 0 15px;
    width: 100%;
  }
  form dd img {
    width: 250px;
    margin: 0 0 10px 10px;
  }
  form .formBtn {
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
  }
}

/*チェックボックス*/
.checkBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inputGroup {
  width: 49.5%;
  display: inline-block;
  margin: 0 0 5px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .inputGroup {
    width: 100%;
  }
}

.inputGroup label {
  padding: 12px 15px;
  width: 100%;
  box-sizing: border-box;
  display: block;
  text-align: left;
  color: #3C454C;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
  background-color: #F5F5F5;
}

.inputGroup label:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background-color: #F5F5F5;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}

.inputGroup label:after {
  width: 26px;
  height: 26px;
  content: "";
  border: 2px solid #D1D7DC;
  background-color: #F5F5F5;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: -1px 0px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}

.inputGroup input:checked ~ label:before {
  transform: translate(-50%, -50%) scale3d(56, 56, 1);
  opacity: 1;
}

.inputGroup input:checked ~ label:after {
  background-color: #333;
  border-color: #333;
}

.inputGroup input {
  width: 26px;
  height: 26px;
  order: 1;
  z-index: 2;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

.contact .container {
  max-width: 1080px;
}

.err_page h2 {
  margin-bottom: 50px;
  font-size: 6rem;
  line-height: 1.5;
}
.err_page h2 span {
  display: inline-block;
  padding-left: 20px;
  font-size: 3rem;
}
.err_page h2 p {
  font-size: 2rem;
}
.err_page .btn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .err_page h2 {
    margin-bottom: 20px;
    font-size: 4.5rem;
    line-height: 1.5;
  }
  .err_page h2 span {
    display: block;
    padding-left: 0;
    font-size: 2rem;
  }
  .err_page h2 p {
    font-size: 1.6rem;
  }
  .err_page .btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .err_page.notFound h2 span {
    display: inline-block;
    padding-left: 10px;
    font-size: 2.5rem;
  }
}
.thanks {
  background-color: #53A75E;
}
.thanks .head_text {
  margin-bottom: 50px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .thanks .head_text {
    margin-bottom: 40px;
    font-size: 2.3rem;
  }
}/*# sourceMappingURL=style.css.map */