@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #2E2E2E;
}

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

img {
  object-fit: cover;
}

h1 {
  line-height: 1;
}

h2,
h3 {
  line-height: 1.5;
}

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

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

.btn {
  width: 100%;
  max-width: 380px;
  border-radius: 50px;
  padding: 20px 10px;
  color: #ffffff;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}
.btn:hover {
  opacity: 0.7;
}
.btn_orange {
  background-color: #FF9900;
}
.btn_green {
  width: 250px;
  padding: 15px 10px;
  border: 3px solid #40B134;
  background-color: #ffffff;
  color: #40B134;
  font-size: 1.6rem;
}
.btn_box {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 1.8rem;
  }
}

.contact_area {
  width: 90%;
  padding: 100px 0;
  margin: 0 auto;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-image: url(../img/contact_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.contact_area:before {
  content: "";
  width: 100%;
  height: 100%;
  border: 20px solid #ffffff;
  position: absolute;
  top: 0;
  left: 0;
}
.contact_area h2,
.contact_area a {
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact_area {
    padding: 40px 20px;
  }
  .contact_area:before {
    border: 10px solid #ffffff;
  }
  .contact_area .head_text {
    font-size: 2.4rem;
  }
}

.head_text {
  margin-bottom: 50px;
  font-size: 3.2rem;
  text-align: center;
}
.head_text_white {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .head_text {
    margin-bottom: 35px;
    font-size: 2.8rem;
  }
}

.scroll_top {
  width: 50px;
  aspect-ratio: 1/1;
  border: 1px solid #ffffff;
  border-radius: 4px;
  padding-top: 8px;
  background-color: #EF6C00;
  color: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  text-align: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
}
.scroll_top i {
  font-size: 3.2rem;
}
.scroll_top:hover {
  opacity: 0.7;
}

@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 25px;
  background-color: #EF6C00;
  color: #ffffff;
}
.header .container {
  width: 100%;
  max-width: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.header_logo a {
  width: 225px;
}
.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;
}
.header nav ul a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1099px) {
  .header_logo a {
    width: 150px;
  }
  .header .btn {
    width: 180px;
  }
}
@media screen and (max-width: 949px) {
  .header {
    padding: 10px 15px;
  }
  .header nav {
    display: none;
  }
}

.burger_btn {
  display: none;
  color: #ffffff;
  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 50px;
  background-color: rgba(46, 46, 46, 0.9);
  color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}
.overlay .close_btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.overlay .close_btn:hover {
  opacity: 0.7;
}
.overlay ul {
  flex-direction: column;
  gap: 15px;
}
.overlay a:hover {
  opacity: 0.7;
}
.overlay .btn {
  margin-top: 20px;
}

.footer {
  width: 100%;
  left: 0;
  top: 100vh;
  position: sticky;
  border-radius: 30px 30px 0 0;
  background-color: #2E2E2E;
  color: #ffffff;
}
.footer .container {
  padding: 70px 0;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.footer a:hover {
  opacity: 0.7;
}
.footer_area_left img {
  width: 220px;
  margin-bottom: 30px;
}
.footer_area_left dt a {
  margin-bottom: 10px;
  text-decoration: underline;
  font-size: 1.8rem;
}
.footer_area_left dt a i {
  display: inline-block;
  margin-left: 5px;
}
.footer_area_right ul:nth-of-type(1) {
  margin-bottom: 30px;
  flex-direction: column;
  gap: 15px;
}
.footer_area_right ul:nth-of-type(2) {
  flex-direction: row;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.3rem;
  gap: 15px 40px;
}
.footer .copyright {
  border-top: 1px solid #fff;
  padding: 25px;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .footer .container {
    padding: 40px 0;
  }
  .footer_area_left img {
    width: 150px;
    margin-bottom: 15px;
  }
  .footer_area_left a {
    text-decoration: underline;
  }
  .footer .copyright {
    padding: 18px;
    font-size: 1.2rem;
  }
}

.main_visual {
  width: 100%;
  height: 90vh;
  max-height: 780px;
  background-image: url(../img/main_visual.webp);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.main_visual:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}
.main_visual_content {
  color: #ffffff;
  line-height: 1.5;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}
.main_visual_content p:nth-of-type(1) {
  margin-bottom: 30px;
  font-size: 6.4rem;
}
.main_visual_content p:nth-of-type(2) {
  font-size: 3.2rem;
}
.main_visual_msg_area {
  display: none;
  width: 100%;
  padding: 15px 20px;
  background-color: #2E2E2E;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.8rem;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
}
.main_visual_msg_area p {
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .main_visual {
    background-position: center;
  }
  .main_visual_content {
    left: 3%;
  }
  .main_visual_content p:nth-of-type(1) {
    font-size: 3.8rem;
  }
  .main_visual_content p:nth-of-type(2) {
    font-size: 2.4rem;
  }
  .main_visual_msg_area {
    padding: 10px;
    font-size: 1.4rem;
  }
}

.trouble {
  border-bottom: 1px solid #40B134;
  background-color: #40B134;
  position: relative;
}
.trouble:after {
  content: "";
  position: absolute;
  height: 105px;
  width: 100%;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #40B134;
  left: 0;
  top: 100%;
  z-index: 1;
}
.trouble ul {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.trouble ul + img {
  position: absolute;
  bottom: -10%;
  right: 10%;
  z-index: 2;
}
.trouble li {
  width: 100%;
  max-width: 480px;
  height: 150px;
  padding: 20px 20px 20px 40px;
  background-color: #ffffff;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  position: relative;
}
.trouble li h3 {
  font-size: 2rem;
  font-weight: 500;
}
.trouble li:before {
  content: "";
  width: 0;
  height: 0;
  border-right: 40px solid #F1F1F1;
  border-bottom: 40px solid transparent;
  transform: scale(-1, 1);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .trouble:after {
    height: 50px;
  }
  .trouble li {
    height: auto;
    min-height: 77px;
    padding: 10px 25px;
    gap: 15px;
  }
  .trouble li h3 {
    font-size: 1.6rem;
  }
  .trouble li img {
    width: 30px;
  }
  .trouble ul + img {
    width: 100px;
    bottom: -8%;
    right: 3%;
  }
}

.resolve {
  position: relative;
}
.resolve:before {
  content: "";
  width: 60%;
  max-width: 670px;
  aspect-ratio: 3/5;
  background-image: url(../img/resolve_bg.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.resolve .container {
  padding-top: 200px;
  position: relative;
}
.resolve .container + img {
  position: absolute;
  bottom: 0;
  right: 5%;
}
.resolve img:has(+ h2) {
  position: absolute;
  top: 7%;
  left: 0;
}
.resolve .head_text span {
  display: block;
  margin-bottom: 10px;
  font-size: 4.8rem;
}
.resolve ul {
  flex-direction: column;
  gap: 120px;
}
.resolve li {
  justify-content: center;
  align-items: flex-start;
  gap: 30px 80px;
}
.resolve li:nth-of-type(2n + 2) {
  flex-direction: row-reverse;
}
.resolve li .text_area {
  flex: 1;
}
.resolve li .title_area {
  margin-bottom: 25px;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.resolve li .title_area span {
  display: inline-block;
  width: 60px;
  aspect-ratio: 1/1;
  padding-top: 3px;
  background-color: #FF9900;
  color: #ffffff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.resolve li .title_area h3 {
  font-size: 2rem;
  flex: 1;
}
.resolve li img {
  width: 40%;
  max-width: 400px;
  aspect-ratio: 4/3;
  box-shadow: 8px 8px 0 #FF9900;
}
@media screen and (max-width: 767px) {
  .resolve .container {
    padding: 80px 0 120px;
  }
  .resolve .container + img {
    width: 80px;
  }
  .resolve img:has(+ h2) {
    width: 100px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
  }
  .resolve .head_text {
    margin-bottom: 150px;
  }
  .resolve .head_text span {
    margin-bottom: 0;
    font-size: 3.8rem;
  }
  .resolve ul {
    gap: 80px;
  }
  .resolve li {
    align-items: center;
  }
  .resolve li:nth-of-type(2n + 2) {
    flex-direction: column;
  }
  .resolve li .title_area {
    margin-bottom: 15px;
  }
  .resolve li .title_area span {
    width: 45px;
    padding-top: 8px;
    font-size: 3rem;
    line-height: 1;
  }
  .resolve li .title_area h3 {
    font-size: 1.8rem;
  }
  .resolve li img {
    width: 100%;
  }
}

.feature {
  background-color: #40B134;
  padding-bottom: 120px;
}
.feature .head_text:has(+ ul) {
  margin-bottom: 120px;
}
.feature ul {
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px 8%;
}
.feature li {
  width: 45%;
  max-width: 450px;
  border-radius: 10px;
  padding: 100px 45px 50px;
  background-color: #FFFFFF;
  flex-direction: column;
  gap: 30px;
  position: relative;
}
.feature li h3 {
  margin-bottom: 15px;
  text-align: center;
  font-size: 2rem;
}
.feature_num {
  width: 150px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 5px solid #ffffff;
  padding-top: 20px;
  background-color: #40B134;
  color: #ffffff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
}
.feature_num span {
  display: block;
  font-size: 4.8rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .feature {
    padding-bottom: 80px;
  }
  .feature .head_text:has(+ ul) {
    margin-bottom: 80px;
  }
  .feature ul {
    align-items: center;
  }
  .feature li {
    width: 100%;
    padding: 70px 20px 40px;
  }
  .feature li h3 {
    font-size: 1.8rem;
  }
  .feature li p {
    padding: 0 10px;
  }
  .feature_num {
    width: 100px;
    border: 3px solid #ffffff;
    padding-top: 12px;
    font-size: 2rem;
    top: -50px;
  }
  .feature_num span {
    font-size: 3.2rem;
  }
}

.flow {
  position: relative;
}
.flow:before {
  content: "";
  width: 60%;
  max-width: 670px;
  aspect-ratio: 3/5;
  background-image: url(../img/flow_bg.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 10%;
  left: 10%;
}
.flow ul {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  flex-direction: column;
  gap: 90px;
  position: relative;
}
.flow li {
  align-items: flex-start;
  gap: 20px 50px;
}
.flow li:not(:last-child) {
  position: relative;
}
.flow li:not(:last-child):before {
  content: "";
  width: 1px;
  height: calc(100% + 90px);
  border-left: 1px dashed #FF9900;
  position: absolute;
  top: 0;
  left: 30px;
}
.flow .text_area {
  flex-direction: row;
  flex: 1;
  gap: 20px;
  align-items: flex-start;
}
.flow_num {
  display: inline-block;
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #FF9900;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
.flow_num:before {
  content: "";
  width: 0;
  height: 0;
  border-right: 60px solid #F1F1F1;
  border-bottom: 60px solid transparent;
  transform: scale(-1, 1);
  position: absolute;
  top: 0;
  left: 0;
}
.flow_num span {
  position: relative;
}
.flow_detail {
  flex: 1;
}
.flow_detail h3 {
  margin-bottom: 20px;
  font-size: 2.4rem;
}
.flow .btn_orange {
  width: 250px;
  margin-top: 30px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .flow ul {
    gap: 50px;
  }
  .flow li:not(:last-child) {
    position: relative;
  }
  .flow li:not(:last-child):before {
    height: calc(100% + 50px);
    left: 22px;
  }
  .flow .text_area {
    gap: 10px;
  }
  .flow img {
    margin: 0 auto;
  }
  .flow_num {
    width: 45px;
    font-size: 2.4rem;
  }
  .flow_num:before {
    border-right: 45px solid #F1F1F1;
    border-bottom: 45px solid transparent;
  }
  .flow h3 {
    font-size: 2rem;
  }
  .flow .btn_orange {
    margin-top: 20px;
  }
}

.plan {
  padding-bottom: 120px;
  background: linear-gradient(to bottom, #F1F1F1, #ffffff);
}
.plan_area {
  padding: 80px 70px;
  border-radius: 10px;
  background-color: #ffffff;
  position: relative;
}
.plan_area img {
  position: absolute;
  bottom: 100%;
  right: 0;
}
.plan .flex_box {
  justify-content: space-between;
}
.plan h3 {
  color: #40B134;
  font-size: 3rem;
  font-weight: 500;
}
.plan_price {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
}
.plan_price span {
  font-size: 3.6rem;
}
.plan_basic {
  border-bottom: 1px solid #2E2E2E;
  padding-bottom: 50px;
}
.plan_basic .flex_box {
  margin-bottom: 15px;
  flex-direction: row;
  align-items: center;
}
.plan_basic .plan_price {
  font-size: 3.2rem;
}
.plan_basic .plan_price span {
  font-size: 4rem;
}
.plan_other {
  padding-top: 50px;
}
.plan_other dl {
  flex-wrap: wrap;
}
.plan_other dt,
.plan_other dd {
  padding: 20px 0;
  border-bottom: 1px solid #D3D3D3;
}
.plan_other dt {
  width: 30%;
  font-size: 2.4rem;
  font-weight: 500;
}
.plan_other dd {
  width: 70%;
  text-align: right;
}
.plan .cta_area {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .plan {
    padding-bottom: 60px;
  }
  .plan .container {
    padding-bottom: 30px;
  }
  .plan_area {
    padding: 40px 25px;
  }
  .plan_area img {
    width: 80px;
  }
  .plan h3 {
    font-size: 2.2rem;
  }
  .plan_price {
    font-size: 2rem;
  }
  .plan_price span {
    font-size: 2.6rem;
  }
  .plan_basic {
    padding-bottom: 30px;
  }
  .plan_basic .plan_price {
    font-size: 2.4rem;
  }
  .plan_basic .plan_price span {
    font-size: 3rem;
  }
  .plan_basic p {
    font-size: 1.4rem;
  }
  .plan_other {
    padding-top: 30px;
  }
  .plan_other dl {
    flex-wrap: wrap;
  }
  .plan_other dt,
  .plan_other dd {
    width: 100%;
  }
  .plan_other dt {
    padding: 10px 0 10px;
    border-bottom: none;
    font-size: 1.8rem;
  }
  .plan_other dd {
    padding: 0 0 10px;
  }
  .plan .cta_area {
    margin-top: 40px;
  }
}

.achievement {
  padding: 100px 0;
  background-color: rgba(255, 153, 0, 0.1);
  overflow: hidden;
}
.achievement ul {
  justify-content: center;
  gap: 50px;
}
.achievement li {
  width: 230px;
  text-align: center;
  font-size: 1.4rem;
}
.achievement li:nth-of-type(2n + 2) {
  margin-top: 60px;
}
.achievement a {
  display: block;
  width: 100%;
  position: relative;
}
.achievement a:before {
  content: "";
  width: 100%;
  aspect-ratio: 1/1;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s ease;
}
.achievement a p {
  color: #ffffff;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.3s ease;
}
.achievement a:hover:before {
  opacity: 1;
}
.achievement a:hover p {
  opacity: 1;
}
.achievement img {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 10px;
}

.faq {
  background-color: #F5F5F5;
  position: relative;
}
.faq:before, .faq:after {
  content: "";
  width: 100%;
  height: 60px;
  background-image: url(../img/wave_white.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
}
.faq:before {
  top: 0;
}
.faq:after {
  bottom: 0;
  transform: scale(1, -1);
}
.faq .container {
  padding: 160px 0;
}
.faq dt {
  font-size: 1.8rem;
}
.faq dd:not(:last-child) {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .faq dd:not(:last-child) {
    margin-bottom: 30px;
  }
}

form a {
  text-decoration: underline;
}
form a:hover {
  color: #EF6C00;
}
form dl {
  display: flex;
  flex-wrap: wrap;
  border-top: none;
  border-radius: 20px;
  border: 3px solid #EF6C00;
  padding: 40px 30px;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 60px;
  background-color: #ffffff;
}
form dt {
  width: 25%;
  padding: 25px 15px;
  box-sizing: border-box;
  border-bottom: solid 1px #D3D3D3;
}
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 #CCC;
  padding: 3px 10px;
  background-color: #F5F5F5;
}
form textarea {
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #CCC;
  padding: 3px 10px;
  width: 100%;
  background-color: #F5F5F5;
  color: #000;
}
form input, form select {
  vertical-align: middle;
  border-radius: 5px;
}
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: red;
  font-size: 10px;
  line-height: 1.5em;
  color: #F5F5F5;
  margin: 0 0 0 10px;
  padding: 2px 5px;
}
form #image-btn {
  margin-top: 10px;
  text-align: center;
}
form .dateSelect span {
  display: block;
}
form .radioArea {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
form .formBtn {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  margin-top: 20px;
}
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 .btn,
#page .btn {
  width: 280px;
  padding: 25px 10px;
  font-size: 1.8rem;
}

.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 */