@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
  --clr-black: #000;
  --clr-white: #fff;
  --clr-blue: #242d92;
  --clr-bg-blue: #e9edf8;
  --clr-gray: #ececec;
  --clr-orange: #fe7a0e;
  --clr-lite-orange: #fb983b;
  --clr-pnk: #f8336a;
}

html {
  scroll-behavior: smooth;
  font-family: "Noto Sans JP", sans-serif;
}

.tablet {
  display: none;
}
@media screen and (max-width: 768px) {
  .tablet {
    display: block;
  }
}

.pc {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

.cta_br {
  display: block;
}
@media screen and (max-width: 1060px) {
  .cta_br {
    display: none;
  }
}

main header {
  position: absolute;
  padding: 25px 2%;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  main header {
    padding: 15px 4%;
  }
}
main header .logo {
  max-width: 130px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  main header .logo {
    max-width: 110px;
  }
}
main section.KV {
  height: 440px;
  background: url(../img/KV.jpg) center center no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  main section.KV {
    height: auto;
    justify-content: flex-start;
    padding-top: 70px;
    gap: 20px;
    background: url(../img/KV_sp.jpg) center top no-repeat;
    background-size: cover;
  }
}
main section.KV .kv_box {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 4% 0 5%;
}
main section.KV .kv_box .h1_box {
  position: relative;
  display: inline-block;
}
main section.KV .kv_box .h1_box .circle {
  position: absolute;
  max-width: 160px;
  width: 100%;
  top: -60px;
  right: -85px;
}
@media screen and (max-width: 768px) {
  main section.KV .kv_box .h1_box .circle {
    width: 50%;
    top: -40px;
    right: -74px;
  }
}
main section.KV .kv_box .h1_box h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  main section.KV .kv_box .h1_box h1 {
    gap: 5px;
  }
}
main section.KV .kv_box .h1_box h1 p {
  color: var(--clr-white);
  background: var(--clr-blue);
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  display: inline;
  box-decoration-break: clone;
  padding: 0 15px;
  line-height: 50px;
  font-size: 40px;
  letter-spacing:5px;
}
@media screen and (max-width: 768px) {
  main section.KV .kv_box .h1_box h1 p {
    line-height: 35px;
    font-size: 30px;
    letter-spacing: 3px;
  }
}
main section.KV .kv_box .h1_box h1 p.t_p {
  padding: 10px 40px 0 15px;
}
main section.KV .kv_box .h1_box h1 p .small {
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  main section.KV .kv_box .h1_box h1 p .small {
    font-size: 20px;
  }
}
main section.KV .kv_box .h1_box h1 span.number {
  font-size: 55px;
}
@media screen and (max-width: 768px) {
  main section.KV .kv_box .h1_box h1 span.number {
    font-size: 40px;
  }
}
main section.KV .logo_txt {
  max-width: 900px;
  width: 100%;
  padding: 0 4% 0 6%;
  margin: 0 auto 20px;
}
main section.KV .logo_txt .logo_txt_img {
  max-width: 680px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  main section.KV .logo_txt .logo_txt_img {
    max-width: 190px;
  }
}
main section.KV .logo_txt .note {
  color: var(--clr-black);
  font-size: 14px;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  main section.KV .logo_txt .note {
    font-size: 11px;
  }
}
main section.cta_area {
  background: var(--clr-blue);
  padding: 20px 0;
}
main section.cta_area .cta_box {
  max-width: 1200px;
  width: 100%;
  padding: 0 4%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1060px) {
  main section.cta_area .cta_box {
    flex-direction: column;
    gap: 20px;
  }
}
main section.cta_area .cta_box .cta_l {
  display: flex;
  align-items: center;
  width: 50%;
}
@media screen and (max-width: 1060px) {
  main section.cta_area .cta_box .cta_l {
    width: 100%;
    flex-direction: column;
    justify-content: center;
  }
}
main section.cta_area .cta_box .cta_l .cta_txt {
  color: var(--clr-white);
  font-size: 24px;
  margin-right: 15px;
}
@media screen and (max-width: 1060px) {
  main section.cta_area .cta_box .cta_l .cta_txt {
    margin-right: 0px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  main section.cta_area .cta_box .cta_l .cta_txt {
    font-size: 18px;
  }
}
main section.cta_area .cta_box .cta_l .cta_icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 360px;
  width: 100%;
  gap: 10px;
}
@media screen and (max-width: 1060px) {
  main section.cta_area .cta_box .cta_l .cta_icon {
    max-width: 600px;
    justify-content: center;
  }
}
main section.cta_area .cta_box .cta_l .cta_icon li {
  max-width: 110px;
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--clr-white);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px 0;
}
@media screen and (max-width: 1060px) {
  main section.cta_area .cta_box .cta_l .cta_icon li {
    max-width: 200px;
    flex-direction: row;
    aspect-ratio: auto;
    height: 60px;
  }
}
@media screen and (max-width: 500px) {
  main section.cta_area .cta_box .cta_l .cta_icon li {
    height: 50px;
  }
}
main section.cta_area .cta_box .cta_l .cta_icon li:nth-child(1) img {
  width: 50px;
}
@media screen and (max-width: 1060px) {
  main section.cta_area .cta_box .cta_l .cta_icon li:nth-child(1) img {
    width: 35px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 500px) {
  main section.cta_area .cta_box .cta_l .cta_icon li:nth-child(1) img {
    width: 25px;
    margin-right: 5px;
  }
}
main section.cta_area .cta_box .cta_l .cta_icon li:nth-child(2) img {
  width: 30px;
}
@media screen and (max-width: 1060px) {
  main section.cta_area .cta_box .cta_l .cta_icon li:nth-child(2) img {
    width: 20px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 500px) {
  main section.cta_area .cta_box .cta_l .cta_icon li:nth-child(2) img {
    width: 15px;
    margin-right: 5px;
  }
}
main section.cta_area .cta_box .cta_l .cta_icon li:nth-child(3) img {
  width: 52px;
}
@media screen and (max-width: 1060px) {
  main section.cta_area .cta_box .cta_l .cta_icon li:nth-child(3) img {
    width: 35px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 500px) {
  main section.cta_area .cta_box .cta_l .cta_icon li:nth-child(3) img {
    width: 25px;
    margin-right: 5px;
  }
}
main section.cta_area .cta_box .cta_l .cta_icon li .icon_name {
  color: var(--clr-blue);
  font-size: 22px;
}
@media screen and (max-width: 1060px) {
  main section.cta_area .cta_box .cta_l .cta_icon li .icon_name {
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  main section.cta_area .cta_box .cta_l .cta_icon li .icon_name {
    font-size: 16px;
  }
}
main section.cta_area .cta_box .cta_r {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1060px) {
  main section.cta_area .cta_box .cta_r {
    max-width: 600px;
    width: 100%;
  }
}
main section.cta_area .cta_box .cta_r .cta_txt_m {
  position: relative;
  color: var(--clr-white);
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 500px) {
  main section.cta_area .cta_box .cta_r .cta_txt_m {
    font-size: 14px;
  }
}
main section.cta_area .cta_box .cta_r .cta_txt_m span.big {
  font-size: 24px;
}
@media screen and (max-width: 500px) {
  main section.cta_area .cta_box .cta_r .cta_txt_m span.big {
    font-size: 20px;
  }
}
main section.cta_area .cta_box .cta_r .cta_txt_m span.megaphone_l {
  width: 1px;
  height: 25px;
  background: var(--clr-white);
  position: absolute;
  transform: rotate(-30deg);
  left: -20px;
  top: 5px;
}
main section.cta_area .cta_box .cta_r .cta_txt_m span.megaphone_r {
  width: 1px;
  height: 25px;
  background: var(--clr-white);
  position: absolute;
  transform: rotate(30deg);
  right: -20px;
  top: 5px;
}
main section.cta_area .cta_box .cta_r .cta_txt_m span.block {
  color: var(--clr-black);
  background: var(--clr-white);
  font-size: 22px;
  margin-left: 8px;
  padding-left: 8px;
}
@media screen and (max-width: 500px) {
  main section.cta_area .cta_box .cta_r .cta_txt_m span.block {
    font-size: 20px;
  }
}
main section.cta_area .cta_box .cta_r .shindan_btn {
  position: relative;
  background: linear-gradient(90deg, var(--clr-orange) 0%, var(--clr-lite-orange) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 475px;
  width: 100%;
  height: 90px;
  border-radius: 8px;
  color: var(--clr-white);
  cursor: pointer;
  transition: 0.4s;
}
@media screen and (max-width: 1060px) {
  main section.cta_area .cta_box .cta_r .shindan_btn {
    max-width: 800px;
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  main section.cta_area .cta_box .cta_r .shindan_btn {
    height: 70px;
  }
}
main section.cta_area .cta_box .cta_r .shindan_btn:hover {
  opacity: 0.5;
}
main section.cta_area .cta_box .cta_r .shindan_btn .arrow {
  position: absolute;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 10px;
  border-top: 1px solid var(--clr-white);
  border-right: 1px solid var(--clr-white);
  transform: rotate(45deg);
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
@media screen and (max-width: 500px) {
  main section.cta_area .cta_box .cta_r .shindan_btn .arrow {
    width: 10px;
    height: 10px;
  }
}
main section.cta_area .cta_box .cta_r .shindan_btn p {
  font-size: 32px;
  letter-spacing:3px;
}
@media screen and (max-width: 500px) {
  main section.cta_area .cta_box .cta_r .shindan_btn p {
    font-size: 24px;
    padding-bottom: 5px;
  }
}
main section.cta_area .cta_box .cta_r .shindan_btn p span {
  font-weight: bold;
}
main section.cta_area .cta_box .cta_r .shindan_btn p span.number {
  font-size: 50px;
}
@media screen and (max-width: 500px) {
  main section.cta_area .cta_box .cta_r .shindan_btn p span.number {
    font-size: 38px;
  }
}
main section.cta_area .cta_box .cta_r .shindan_btn p span.small {
  font-weight: bold;
}
main section.cta_area .cta_box .cta_r .shindan_btn p span.big {
  font-size: 44px;
}
@media screen and (max-width: 500px) {
  main section.cta_area .cta_box .cta_r .shindan_btn p span.big {
    font-size: 30px;
  }
}
main section.trouble_area {
  background: url(../img/bg.jpg) repeat;
  padding: 70px 4% 110px;
}
@media screen and (max-width: 768px) {
  main section.trouble_area {
    padding: 50px 4% 80px;
  }
}
main section.trouble_area .lifespan_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  main section.trouble_area .lifespan_box {
    margin-bottom: 50px;
  }
}
main section.trouble_area .lifespan_box h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main section.trouble_area .lifespan_box h2 .circle_txt {
  background: var(--clr-blue);
  color: var(--clr-white);
  font-size: 24px;
  border-radius: 60px;
  max-width: 280px;
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  main section.trouble_area .lifespan_box h2 .circle_txt {
    font-size: 20px;
    height: 40px;
    margin-bottom: 10px;
  }
}
main section.trouble_area .lifespan_box h2 .lifespan_txtarea {
  color: var(--clr-blue);
  font-size: 35px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main section.trouble_area .lifespan_box h2 .lifespan_txtarea {
    font-size: 28px;
    line-height: 45px;
  }
}
main section.trouble_area .lifespan_box h2 .lifespan_txtarea span {
  font-weight: bold;
}
main section.trouble_area .lifespan_box h2 .lifespan_txtarea span.small {
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  main section.trouble_area .lifespan_box h2 .lifespan_txtarea span.small {
    font-size: 18px;
  }
}
main section.trouble_area .lifespan_box h2 .lifespan_txtarea span.pink {
  color: var(--clr-pnk);
}
main section.trouble_area .lifespan_box h2 .lifespan_txtarea span.number {
  font-size: 45px;
}
@media screen and (max-width: 768px) {
  main section.trouble_area .lifespan_box h2 .lifespan_txtarea span.number {
    font-size: 35px;
  }
}
main section.trouble_area .lifespan_box h2 .lifespan_txtarea span.under_line {
  border-bottom: 4px solid var(--clr-blue);
  padding-bottom: 3px;
}
main section.trouble_area .lifespan_box .lifespan {
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  main section.trouble_area .lifespan_box .lifespan {
    margin-top: 18px;
  }
}
main section.trouble_area .lifespan_box .lifespan ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 15px auto;
}
@media screen and (max-width: 768px) {
  main section.trouble_area .lifespan_box .lifespan ul {
    gap: 10px;
  }
}
main section.trouble_area .lifespan_box .lifespan ul li {
  max-width: 280px;
  width: 100%;
}
main section.trouble_area .lifespan_box .lifespan .note {
  text-align: center;
}
@media screen and (max-width: 768px) {
  main section.trouble_area .lifespan_box .lifespan .note {
    font-size: 14px;
  }
}
main section.trouble_area .trouble_box .box_area {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  border: 4px solid var(--clr-blue);
  background: var(--clr-white);
  display: flex;
  flex-direction: column;
  align-items: center;
}
main section.trouble_area .trouble_box .box_area h3 {
  background: var(--clr-blue);
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
main section.trouble_area .trouble_box .box_area h3 .trouble_lead {
  color: var(--clr-white);
  font-size: 24px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main section.trouble_area .trouble_box .box_area h3 .trouble_lead {
    font-size: 18px;
  }
}
main section.trouble_area .trouble_box .box_area h3 .trouble_lead::before {
  content: "";
  position: absolute;
  width: 75px;
  height: 72px;
  background: url(../img/danger_icon.png) no-repeat;
  background-size: contain;
  right: -80px;
  top: -60px;
}
@media screen and (max-width: 768px) {
  main section.trouble_area .trouble_box .box_area h3 .trouble_lead::before {
    right: -80px;
    top: -40px;
    width: 60px;
  }
}
main section.trouble_area .trouble_box .box_area .trouble_img {
  max-width: 880px;
  width: 80%;
  margin: 30px 60px;
}
@media screen and (max-width: 768px) {
  main section.trouble_area .trouble_box .box_area .trouble_img {
    width: 90%;
    margin: 15px 40px;
  }
}
main section.trouble_area .triangle_txt {
  position: absolute;
  z-index: 10;
  max-width: 310px;
  width: 90%;
  left: 0;
  right: 0;
  margin: 35px auto 0;
}
@media screen and (max-width: 768px) {
  main section.trouble_area .triangle_txt {
    width: 50%;
    margin: 15px auto 0;
  }
}
main section.trouble_area .triangle {
  position: relative;
  background-color: var(--clr-blue);
  height: 100px;
  max-width: 460px;
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  main section.trouble_area .triangle {
    height: 60px;
    width: 50%;
    margin: 0 auto 20px;
  }
}
main section.trouble_area .trouble_txt {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
main section.solution_area {
  background: var(--clr-blue);
  padding: 80px 4% 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  main section.solution_area {
    padding: 50px 4% 30px;
  }
}
main section.solution_area .circle_txt_w {
  position: absolute;
  background: var(--clr-white);
  color: var(--clr-blue);
  border: 4px solid var(--clr-blue);
  font-size: 24px;
  font-weight: bold;
  border-radius: 60px;
  max-width: 360px;
  width: 100%;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main section.solution_area .circle_txt_w {
    font-size: 20px;
    height: 50px;
    width: 80%;
  }
}
main section.solution_area .solution_box {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 50px;
}
@media screen and (max-width: 768px) {
  main section.solution_area .solution_box {
    gap: 0 20px;
  }
}
main section.solution_area .solution_box p {
  font-size: 30px;
  color: var(--clr-white);
  line-height: 60px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  main section.solution_area .solution_box p {
    font-size: 20px;
    line-height: 40px;
  }
}
main section.solution_area .solution_box p span.small {
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  main section.solution_area .solution_box p span.small {
    font-size: 16px;
  }
}
main section.solution_area .solution_box p span.border {
  font-size: 45px;
  border-bottom: 4px solid var(--clr-white);
}
@media screen and (max-width: 768px) {
  main section.solution_area .solution_box p span.border {
    font-size: 30px;
  }
}
main section.solution_area .solution_box .people_img {
  max-width: 180px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  main section.solution_area .solution_box .people_img {
    width: 30%;
  }
}
main section.reason_area {
  background: var(--clr-bg-blue);
  padding: 80px 4% 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  main section.reason_area {
    padding: 50px 4% 60px;
  }
}
main section.reason_area h2 {
  position: relative;
  color: var(--clr-blue);
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  main section.reason_area h2 {
    font-size: 24px;
    margin-bottom: 80px;
  }
}
main section.reason_area h2 .megaphone_l {
  width: 3px;
  height: 48px;
  background: var(--clr-blue);
  position: absolute;
  transform: rotate(-25deg);
  left: -40px;
  top: 10px;
}
@media screen and (max-width: 768px) {
  main section.reason_area h2 .megaphone_l {
    height: 40px;
    top: 0;
  }
}
main section.reason_area h2 .megaphone_r {
  width: 3px;
  height: 48px;
  background: var(--clr-blue);
  position: absolute;
  transform: rotate(25deg);
  right: -40px;
  top: 10px;
}
@media screen and (max-width: 768px) {
  main section.reason_area h2 .megaphone_r {
    height: 40px;
    top: 0;
  }
}
main section.reason_area .point_box {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
main section.reason_area .point_box .point_flex {
  display: flex;
  align-items: stretch;
  gap: 0 5%;
}
@media screen and (max-width: 768px) {
  main section.reason_area .point_box .point_flex {
    flex-direction: column;
    gap: 70px;
  }
}
main section.reason_area .point_box .point_flex li {
  position: relative;
  background: var(--clr-white);
  width: 50%;
  padding: 70px 20px 40px;
}
@media screen and (max-width: 768px) {
  main section.reason_area .point_box .point_flex li {
    width: 100%;
    padding: 50px 20px 30px;
  }
}
main section.reason_area .point_box .point_flex li .number {
  position: absolute;
  width: 70px;
  top: -45px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
main section.reason_area .point_box .point_flex li .point_txt {
  font-size: 24px;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  main section.reason_area .point_box .point_flex li .point_txt {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
main section.reason_area .point_box .point_flex li .point_txt .small {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  main section.reason_area .point_box .point_flex li .point_txt .small {
    font-size: 16px;
  }
}
main section.reason_area .point_box .point_flex li .txt {
  font-size: 16px;
  margin-top: 30px;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  main section.reason_area .point_box .point_flex li .txt {
    font-size: 14px;
    margin-top: 15px;
    line-height: 25px;
  }
}
main section.reason_area .point_box .point_flex li .txt.point_txt02 {
  font-size: 15px;
  font-weight: bold;
  display: inline-block;
  border: 2px solid var(--clr-blue);
  color: var(--clr-blue);
  padding: 10px 25px;
  text-align: center;
  line-height: 20px;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
main section.reason_area .point_box .point_flex li .note {
  text-indent: -10px;
  padding-left: 10px;
  font-size: 14px;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  main section.reason_area .point_box .point_flex li .note {
    font-size: 12px;
    margin-top: 20px;
  }
}
main section.reason_area .point_box .point_full {
  position: relative;
  background: var(--clr-white);
  display: flex;
  align-items: flex-start;
  gap: 0 6%;
  padding: 50px 30px 30px 30px;
  margin-top: 80px;
}
main section.reason_area .point_box .point_full .number {
  position: absolute;
  width: 70px;
  top: -45px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
main section.reason_area .point_box .point_full .full_txt {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}
main section.reason_area .point_box .point_full .full_txt .point_txt {
  font-size: 24px;
  text-align: center;
  margin-bottom: 35px;
}
main section.reason_area .point_box .point_full .full_txt .txt {
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  display: inline-block;
  border: 2px solid var(--clr-blue);
  color: var(--clr-blue);
  padding: 10px 25px;
  text-align: center;
  width: 90%;
}
main section.reason_area .point_box .point_full .point_img {
  max-width: 410px;
  width: 100%;
}
main section.customer_area {
  background: url(../img/customer_bg.png) no-repeat center top, var(--clr-bg-blue);
  background-size: contain, auto;
  padding: 80px 4%;
}
@media screen and (max-width: 768px) {
  main section.customer_area {
    padding: 50px 4%;
    background: url(../img/customer_bg_sp.png) no-repeat center top, var(--clr-bg-blue);
    background-size: contain, auto;
  }
}
main section.customer_area .graph_ttl {
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  main section.customer_area .graph_ttl {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }
}
main section.customer_area .graph_ttl .graph {
  max-width: 350px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  main section.customer_area .graph_ttl .graph {
    width: 60%;
  }
}
main section.customer_area .graph_ttl h2 {
  max-width: 570px;
  width: 100%;
}
main section.customer_area .graph_ttl h2 .block {
  text-align: center;
  padding: 5px 50px;
  display: inline-block;
  background: var(--clr-white);
  -webkit-clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
  clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
  font-size: 36px;
  color: var(--clr-black);
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  main section.customer_area .graph_ttl h2 .block {
    font-size: 20px;
    letter-spacing: 0;
    padding: 5px 30px;
  }
}
main section.customer_area .graph_ttl h2 .block.second {
  margin-top: 15px;
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  main section.customer_area .graph_ttl h2 .block.second {
    margin-left: 20px;
    margin-top: 10px;
  }
}
main section.customer_area .graph_ttl h2 .block span.small {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  main section.customer_area .graph_ttl h2 .block span.small {
    font-size: 18px;
  }
}
main section.customer_area .graph_ttl h2 .block span.blue {
  font-size: 48px;
  color: var(--clr-blue);
  font-weight: bold;
  font-style: italic;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  main section.customer_area .graph_ttl h2 .block span.blue {
    font-size: 33px;
  }
}
main section.customer_area .graph_ttl h2 .block span.blue_small {
  font-size: 40px;
  font-weight: bold;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  main section.customer_area .graph_ttl h2 .block span.blue_small {
    font-size: 20px;
  }
}
main section.customer_area .customer_voice {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
main section.customer_area .customer_voice li {
  background: var(--clr-white);
  padding: 60px;
  display: flex;
  align-items: flex-start;
  gap: 0 30px;
}
@media screen and (max-width: 768px) {
  main section.customer_area .customer_voice li {
    flex-direction: column;
    padding: 40px 30px;
  }
}
main section.customer_area .customer_voice li:first-child {
  margin-bottom: 25px;
}
main section.customer_area .customer_voice li .customer_icon_box {
  max-width: 230px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  main section.customer_area .customer_voice li .customer_icon_box {
    gap: 20px;
    max-width: 400px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
  }
}
main section.customer_area .customer_voice li .customer_icon_box .customer_icon {
  width: 115px;
}
@media screen and (max-width: 768px) {
  main section.customer_area .customer_voice li .customer_icon_box .customer_icon {
    width: 80px;
  }
}
main section.customer_area .customer_voice li .customer_icon_box p {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  main section.customer_area .customer_voice li .customer_icon_box p {
    margin-top: 5px;
  }
}
main section.customer_area .customer_voice li .customer_icon_box p.history {
  display: inline-block;
  background: var(--clr-gray);
  font-size: 16px;
  width: 100%;
  margin-top: 10px;
  padding: 2px 10px;
}
@media screen and (max-width: 768px) {
  main section.customer_area .customer_voice li .customer_icon_box p.history {
    margin-top: 5px;
    line-height: 25px;
    padding: 5px 10px;
  }
}
main section.customer_area .customer_voice li .customer_icon_box p.history .number {
  font-size: 20px;
}
main section.customer_area .customer_voice li .customer_txt_box .line {
  background: var(--clr-blue);
  font-size: 28px;
  color: var(--clr-white);
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 65px;
  padding: 8px 15px;
}
@media screen and (max-width: 768px) {
  main section.customer_area .customer_voice li .customer_txt_box .line {
    font-size: 18px;
    line-height: 42px;
    padding: 4px 15px;
    margin-top: 20px;
  }
}
main section.customer_area .customer_voice li .customer_txt_box .txt {
  line-height: 30px;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  main section.customer_area .customer_voice li .customer_txt_box .txt {
    line-height: 25px;
    margin-top: 15px;
    font-size: 14px;
  }
}
main section.lineup_area {
  background: url(../img/bg02.jpg) repeat;
  padding: 80px 4%;
}
@media screen and (max-width: 768px) {
  main section.lineup_area {
    padding: 50px 4%;
  }
}
main section.lineup_area .lineup_lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 165px;
}
@media screen and (max-width: 768px) {
  main section.lineup_area .lineup_lead {
    gap: 5px;
    margin-bottom: 150px;
  }
}
main section.lineup_area .lineup_lead .title_img {
  max-width: 370px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main section.lineup_area .lineup_lead .title_img {
    width: 70%;
  }
}
main section.lineup_area .lineup_lead .line_ttl {
  font-size: 42px;
  color: var(--clr-blue);
  text-align: center;
  display: inline-block;
  line-height: 70px;
}
@media screen and (max-width: 768px) {
  main section.lineup_area .lineup_lead .line_ttl {
    font-size: 30px;
    line-height: 60px;
  }
}
main section.lineup_area .lineup_lead .line_ttl .line {
  border-bottom: 4px solid var(--clr-blue);
  padding-bottom: 5px;
  font-weight: bold;
}
main section.lineup_area .lineup_list {
  display: flex;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  gap: 0 3%;
}
@media screen and (max-width: 768px) {
  main section.lineup_area .lineup_list {
    flex-direction: column;
    gap: 140px 3%;
  }
}
main section.lineup_area .lineup_list li {
  width: 50%;
  position: relative;
  background: var(--clr-white);
  border: 4px solid var(--clr-blue);
}
@media screen and (max-width: 768px) {
  main section.lineup_area .lineup_list li {
    width: 100%;
  }
}
main section.lineup_area .lineup_list li .bubble {
  position: absolute;
  max-width: 310px;
  width: 100%;
  margin: 0 auto;
  top: -130px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main section.lineup_area .lineup_list li .bubble {
    width: 70%;
    top: -110px;
  }
}
main section.lineup_area .lineup_list li .lineup_numder {
  background: var(--clr-blue);
  width: 100%;
  height: 90px;
  color: var(--clr-white);
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  padding: 22px 4%;
}
@media screen and (max-width: 768px) {
  main section.lineup_area .lineup_list li .lineup_numder {
    height: 60px;
    font-size: 28px;
    padding: 8px 4%;
  }
}
main section.lineup_area .lineup_list li .lineup_numder .number {
  color: #b1b1b1;
  font-size: 18px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  main section.lineup_area .lineup_list li .lineup_numder .number {
    font-size: 14px;
  }
}
main section.lineup_area .lineup_list li .lineup_box .detail {
  padding: 20px 30px 0 30px;
}
@media screen and (max-width: 768px) {
  main section.lineup_area .lineup_list li .lineup_box .detail {
    padding: 20px 20px 0 20px;
  }
}
main section.lineup_area .lineup_list li .lineup_box .detail .lineup_img {
  margin: 0 auto;
  border: 1px solid var(--clr-gray);
}
main section.lineup_area .lineup_list li .lineup_box .detail .detail_txt {
  padding: 25px 0;
}
@media screen and (max-width: 768px) {
  main section.lineup_area .lineup_list li .lineup_box .detail .detail_txt {
    padding: 15px 0;
  }
}
main section.lineup_area .lineup_list li .lineup_box .detail .detail_txt li {
  border: none;
  width: 100%;
  font-size: 18px;
  line-height: 35px;
}
@media screen and (max-width: 768px) {
  main section.lineup_area .lineup_list li .lineup_box .detail .detail_txt li {
    font-size: 16px;
    text-indent: -15px;
    padding-left: 15px;
  }
}
main section.lineup_area .lineup_list li .recommend_area {
  border-top: 1px dashed #b1b1b1;
  margin: 0 10px;
}
main section.lineup_area .lineup_list li .recommend_area .recommend_box {
  padding: 60px 20px 40px 20px;
}
@media screen and (max-width: 768px) {
  main section.lineup_area .lineup_list li .recommend_area .recommend_box {
    padding: 120px 20px 40px 20px;
  }
}
main section.lineup_area .lineup_list li .recommend_area .recommend_box .recommend_list {
  position: relative;
  padding: 20px 30px 20px 110px;
  background: #f8f8f8;
  width: 100%;
  min-height: 180px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  main section.lineup_area .lineup_list li .recommend_area .recommend_box .recommend_list {
    padding: 20px;
    min-height: 120px;
  }
}
main section.lineup_area .lineup_list li .recommend_area .recommend_box .recommend_list::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 220px;
  background: url(../img/recommend.png) no-repeat;
  background-size: contain;
  bottom: -5px;
  left: 15px;
}
@media screen and (max-width: 768px) {
  main section.lineup_area .lineup_list li .recommend_area .recommend_box .recommend_list::before {
    width: 220px;
    height: 100px;
    background: url(../img/recommend_sp.png) no-repeat;
    background-size: contain;
    bottom: 0;
    top: -95px;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
}
main section.lineup_area .lineup_list li .recommend_area .recommend_box .recommend_list li {
  border: none;
  font-size: 16px;
  background: #f8f8f8;
  width: 100%;
  text-indent: -10px;
  padding-left: 10px;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  main section.lineup_area .lineup_list li .recommend_area .recommend_box .recommend_list li {
    font-size: 14px;
    line-height: 25px;
  }
}
main section.lineup_area .note {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  text-align: right;
  font-weight: bold;
  font-size: 14px;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  main section.lineup_area .note {
    font-size: 10px;
    margin-top: 15px;
  }
}
main section.diagnosis_area {
  padding: 80px 4%;
  background: var(--clr-blue);
}
@media screen and (max-width: 768px) {
  main section.diagnosis_area {
    padding: 50px 4%;
  }
}
main section.diagnosis_area h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px 0;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  main section.diagnosis_area h2 {
    margin-bottom: 35px;
  }
}
main section.diagnosis_area h2 .circle_txt {
  position: relative;
  background: var(--clr-white);
  color: var(--clr-black);
  font-size: 20px;
  max-width: 400px;
  width: 100%;
  height: 60px;
  border-radius: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  main section.diagnosis_area h2 .circle_txt {
    font-size: 18px;
    height: 55px;
  }
}
main section.diagnosis_area h2 .circle_txt::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 90px;
  background: url(../img/people_img04.png) no-repeat;
  background-size: contain;
  right: 25px;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  main section.diagnosis_area h2 .circle_txt::before {
    width: 45px;
    height: 70px;
  }
}
main section.diagnosis_area h2 .circle_txt .blue {
  font-size: 24px;
  font-weight: bold;
  color: var(--clr-blue);
}
@media screen and (max-width: 768px) {
  main section.diagnosis_area h2 .circle_txt .blue {
    font-size: 20px;
  }
}
main section.diagnosis_area h2 .diagnosis_ttl {
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main section.diagnosis_area h2 .diagnosis_ttl {
    width: 80%;
  }
}
main section.diagnosis_area .form_area {
  background: var(--clr-white);
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 40px 40px;
}
@media screen and (max-width: 768px) {
  main section.diagnosis_area .form_area {
    padding: 10px 20px 40px;
  }
}
main section.diagnosis_area .form_area table tbody tr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 0;
  border-bottom: 1px solid var(--clr-gray);
}
@media screen and (max-width: 768px) {
  main section.diagnosis_area .form_area table tbody tr {
    padding: 25px 0;
  }
}
main section.diagnosis_area .form_area table tbody tr:last-child {
  border-bottom: none;
}
main section.diagnosis_area .form_area table tbody tr th {
  width: 100%;
  margin-bottom: 20px;
}
main section.diagnosis_area .form_area table tbody tr th .ttl {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
}
@media screen and (max-width: 768px) {
  main section.diagnosis_area .form_area table tbody tr th .ttl {
    font-size: 18px;
    text-indent: -80px;
    padding-left: 80px;
  }
}
main section.diagnosis_area .form_area table tbody tr th .ttl .step {
  background: #3fa6af;
  font-size: 16px;
  color: var(--clr-white);
  display: inline;
  padding: 5px 10px 3px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  main section.diagnosis_area .form_area table tbody tr th .ttl .step {
    font-size: 14px;
  }
}
main section.diagnosis_area .form_area table tbody tr th .ttl .step .number {
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  main section.diagnosis_area .form_area table tbody tr th .ttl .step .number {
    font-size: 20px;
  }
}
main section.diagnosis_area .form_area table tbody tr td {
  width: 100%;
}
main section.diagnosis_area .form_area table tbody tr td.bg {
  background: #f8f8f8;
  padding: 20px 35px;
}
@media screen and (max-width: 768px) {
  main section.diagnosis_area .form_area table tbody tr td.bg {
    padding: 15px;
  }
}
main section.diagnosis_area .form_area table tbody tr td .radio_flex label,
main section.diagnosis_area .form_area table tbody tr td .radio_full label {
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  main section.diagnosis_area .form_area table tbody tr td .radio_flex label,
  main section.diagnosis_area .form_area table tbody tr td .radio_full label {
    margin-bottom: 10px;
    display: inline-block;
  }
}
main section.diagnosis_area .form_area table tbody tr td .radio_flex label input[type=radio],
main section.diagnosis_area .form_area table tbody tr td .radio_full label input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 16px;
  height: 16px;
  color: var(--clr-black);
  border: 1px solid #b1b1b1;
  border-radius: 50%;
  vertical-align: -2px;
  margin-right: 8px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  main section.diagnosis_area .form_area table tbody tr td .radio_flex label input[type=radio],
  main section.diagnosis_area .form_area table tbody tr td .radio_full label input[type=radio] {
    width: 14px;
    height: 14px;
    margin-right: 5px;
  }
}
main section.diagnosis_area .form_area table tbody tr td .radio_flex label input[type=radio]:checked:before,
main section.diagnosis_area .form_area table tbody tr td .radio_full label input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--clr-blue);
  content: "";
}
@media screen and (max-width: 768px) {
  main section.diagnosis_area .form_area table tbody tr td .radio_flex label input[type=radio]:checked:before,
  main section.diagnosis_area .form_area table tbody tr td .radio_full label input[type=radio]:checked:before {
    width: 7px;
    height: 7px;
  }
}
main section.diagnosis_area .form_area table tbody tr td .radio_flex input[type=text],
main section.diagnosis_area .form_area table tbody tr td .radio_full input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--clr-white);
  border: 1px solid #b1b1b1;
  border-radius: 0px;
  max-width: 600px;
  width: 100%;
  padding: 15px;
  font-size: 16px;
  color: var(--clr-black);
}
@media screen and (max-width: 768px) {
  main section.diagnosis_area .form_area table tbody tr td .radio_flex input[type=text],
  main section.diagnosis_area .form_area table tbody tr td .radio_full input[type=text] {
    padding: 10px 15px;
  }
}
main section.diagnosis_area .form_area table tbody tr td .radio_flex {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  main section.diagnosis_area .form_area table tbody tr td .radio_flex {
    margin-bottom: 10px;
  }
}
main section.diagnosis_area .form_area table tbody tr td .radio_full {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  main section.diagnosis_area .form_area table tbody tr td .radio_full {
    align-items: flex-start;
    flex-direction: column;
  }
}
main section.diagnosis_area .form_area table tbody tr td .select_box {
  display: flex;
  align-items: center;
  max-width: 225px;
  width: 100%;
  position: relative;
}
main section.diagnosis_area .form_area table tbody tr td .select_box::after {
  content: "▼";
  position: absolute;
  font-size: 10px;
  color: #b1b1b1;
  top: 18px;
  right: 35px;
}
@media screen and (max-width: 768px) {
  main section.diagnosis_area .form_area table tbody tr td .select_box::after {
    top: 13px;
  }
}
main section.diagnosis_area .form_area table tbody tr td .select_box select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--clr-white);
  border: 1px solid #b1b1b1;
  border-radius: 0px;
  max-width: 200px;
  width: 100%;
  padding: 15px 30px 15px 15px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  main section.diagnosis_area .form_area table tbody tr td .select_box select {
    padding: 10px 30px 10px 15px;
  }
}
main section.diagnosis_area .form_area table tbody tr td .select_box .year_txt {
  margin-left: 10px;
}
main section.diagnosis_area .form_area table tbody tr td input[type=text],
main section.diagnosis_area .form_area table tbody tr td [type=email] {
  background-color: #fff !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--clr-white);
  border: 1px solid #b1b1b1;
  color: var(--clr-gray);
  border-radius: 0px;
  max-width: 600px;
  width: 100%;
  padding: 15px;
  font-size: 16px;
  color: var(--clr-black);
}
@media screen and (max-width: 768px) {
  main section.diagnosis_area .form_area table tbody tr td input[type=text],
  main section.diagnosis_area .form_area table tbody tr td [type=email] {
    padding: 10px;
  }
}
main section.diagnosis_area .form_area .form_btn {
  position: relative;
  background: linear-gradient(90deg, var(--clr-orange) 0%, var(--clr-lite-orange) 100%);
  border: none;
  color: var(--clr-white);
  max-width: 310px;
  width: 100%;
  height: 70px;
  border-radius: 80px;
  font-size: 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  main section.diagnosis_area .form_area .form_btn {
    height: 60px;
    width: 90%;
    border-radius: 80px;
    font-size: 18px;
  }
}
main section.diagnosis_area .form_area .form_btn:hover {
  opacity: 0.5;
}
main section.diagnosis_area .form_area .form_btn .arrow {
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 10px;
  border-top: 1px solid var(--clr-white);
  border-right: 1px solid var(--clr-white);
  transform: rotate(45deg);
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

footer {
  background: #d8d8d8;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
footer .footer_logo {
  max-width: 125px;
  width: 100%;
}
footer .copyright {
  font-size: 12px;
}

#mfp_hidden,
#mfp_loading,
#mfp_loading_screen,
#mfp_overlay_background {
  display: none;
}

#errormsg_mfp_トラブルの種類_checkobj {
  display: none;
}

.mfp_err {
  color: #ff0000;
  margin-top: 5px;
}

section.thanks {
  background-color: #f1f2f9;
  text-align: center;
  padding: 150px 0 100px;
}
@media screen and (max-width: 768px) {
  section.thanks {
    padding: 80px 5% 60px;
  }
}
section.thanks h1 {
  font-size: 35px;
  color: #232d91;
  border-bottom: 5px solid #232d91;
  display: inline-block;
  font-weight: bold;
  padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
  section.thanks h1 {
    font-size: 24px;
    border-bottom: 3px solid #232d91;
    padding-bottom: 3px;
  }
}
section.thanks h1 br {
  display: none;
}
@media screen and (max-width: 768px) {
  section.thanks h1 br {
    display: block;
  }
}
section.thanks p {
  font-size: 18px;
  margin-top: 50px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  section.thanks p {
    margin-top: 30px;
    font-size: 15px;
  }
}
section.thanks .btn {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  section.thanks .btn {
    margin-top: 30px;
  }
}
section.thanks .btn a {
  padding-left: 10px;
  position: relative;
  background: linear-gradient(90deg, var(--clr-orange) 0%, var(--clr-lite-orange) 100%);
  border: none;
  color: var(--clr-white);
  max-width: 310px;
  width: 100%;
  height: 70px;
  border-radius: 80px;
  font-size: 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  section.thanks .btn a {
    height: 60px;
    width: 90%;
    border-radius: 80px;
    font-size: 18px;
  }
}

main section.diagnosis_area .form_area .form_btn .arrow.btn_back,
section.thanks .btn a span {
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--clr-white);
  border-right: 1px solid var(--clr-white);
  transform: rotate(-135deg);
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.form_btn button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


main section.diagnosis_area .form_area .mw_wp_form_confirm table tbody tr td .select_box::after,
.mw_wp_form_input .confirm-page,
.mw_wp_form_confirm .input-page {
    display: none !important;
}

.mw_wp_form_confirm .confirm-page,
.mw_wp_form_input .input-page {
    display: block !important;
}

.confirm_btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
