@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", "Inter", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 2;
  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 {
  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: 400px;
  border-radius: 50px;
  padding: 20px 10px;
  color: #ffffff;
  text-align: center;
  font-weight: 500;
  line-height: 1;
}
.btn:hover {
  opacity: 0.7;
}
.btn_orange {
  background-color: #FEB333;
}
.btn_blue {
  background-color: #1D668D;
}
.btn_box {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn {
    max-width: 330px;
  }
}

.contact_area {
  width: 100%;
  padding: 80px 0;
  background-color: #FFD63E;
  text-align: center;
}
.contact_area h2 {
  margin-bottom: 20px;
  font-size: 2.4rem;
}
.contact_area p {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .contact_area {
    padding: 50px 10px;
  }
  .contact_area h2 {
    font-size: 2rem;
  }
}

.head_text {
  margin-bottom: 65px;
  font-size: 4.8rem;
  text-align: center;
}
.head_text_sub {
  margin-bottom: 50px;
  text-align: left;
  font-size: 4.8rem;
}
@media screen and (max-width: 767px) {
  .head_text {
    margin-bottom: 25px;
    font-size: 2.4rem;
  }
  .head_text_sub {
    margin-bottom: 30px;
    font-size: 3.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 80px 15px 25px;
  background-color: rgba(255, 255, 255, 0.7);
  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: #1D668D;
  font-weight: 500;
}
.header nav ul a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 949px) {
  .header {
    padding: 10px 15px;
  }
  .header nav {
    display: none;
  }
}

.burger_btn {
  display: none;
  color: #FEDE2F;
  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;
}
.footer .container {
  padding: 50px 0;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
.footer .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 a {
  color: #1D668D;
  font-size: 1.3rem;
  font-weight: 500;
}
.footer a:hover {
  opacity: 0.7;
}
.footer_area_left p {
  margin-bottom: 20px;
  font-size: 3.6rem;
  font-weight: 700;
}
.footer_area_left img {
  width: 240px;
  margin-bottom: 10px;
}
.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;
}
.footer .copyright {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .footer .container {
    padding: 40px 0;
    align-items: flex-start;
  }
  .footer .container + .flex_box {
    padding: 20px 10px 30px;
  }
  .footer_area_left p {
    font-size: 2.8rem;
  }
  .footer_area_left img {
    width: 150px;
  }
  .footer_area_right ul {
    justify-content: flex-start;
  }
  .footer_area_right img {
    height: 80px;
  }
  .footer .copyright {
    font-size: 1.2rem;
  }
}

.main_visual {
  width: 100%;
  height: 90vh;
  max-height: 850px;
  position: relative;
  overflow: hidden;
}
.main_visual_msg_area {
  width: 95%;
  max-width: 770px;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}
.main_visual_msg_area:before {
  content: "";
  width: 520px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #FFF799;
  position: absolute;
  top: 50%;
  left: -30%;
  transform: translateY(-50%);
  z-index: -1;
}
.main_visual_msg_area p {
  font-weight: 700;
}
.main_visual_msg_area p:nth-of-type(1) {
  font-size: 2.4rem;
  line-height: 1.5;
}
.main_visual_msg_area p:nth-of-type(2) {
  font-size: 4.8rem;
}
.main_visual_msg_area img {
  width: 100%;
  max-width: 430px;
  margin-bottom: 30px;
}
.main_visual_msg_area img + p {
  margin-bottom: 40px;
  font-weight: 400;
}
.main_visual_msg_area + img {
  width: 50%;
  max-width: 890px;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .main_visual_msg_area p:nth-of-type(2) {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 767px) {
  .main_visual_msg_area {
    left: 5%;
  }
  .main_visual_msg_area:before {
    content: "";
    width: 250px;
    top: -50px;
    left: -200px;
    transform: translateY(0);
  }
  .main_visual_msg_area p:nth-of-type(1) {
    margin-bottom: 10px;
    font-size: 2rem;
  }
  .main_visual_msg_area p:nth-of-type(2) {
    margin-bottom: 40px;
    font-size: 3rem;
    line-height: 1.5;
  }
  .main_visual_msg_area img {
    width: 280px;
    margin-bottom: 20px;
  }
}

.point {
  text-align: center;
}
.point .container_long {
  max-width: 1300px;
}
.point .head_text {
  position: relative;
}
.point .head_text:before {
  content: "";
  width: 240px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #FFF799;
  position: absolute;
  top: 50%;
  left: -120px;
  transform: translateY(-50%);
  z-index: -1;
}
.point ul {
  margin-top: 80px;
  justify-content: center;
  gap: 80px 15%;
}
.point li {
  width: 100%;
  max-width: 260px;
  letter-spacing: 0;
}
.point h3 {
  font-size: 2rem;
}
.point img {
  margin: 40px auto 10px;
}
.point p span {
  background: linear-gradient(transparent 60%, #FEDE2F 40%);
}
@media screen and (max-width: 767px) {
  .point .head_text + p br {
    display: none;
  }
  .point ul {
    margin-top: 50px;
    align-items: center;
  }
  .point img {
    margin: 20px auto 5px;
  }
}

.trouble {
  background-color: #EDEDED;
  position: relative;
}
.trouble:before {
  content: "";
  width: 85%;
  height: 85%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../img/trouble_bg.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.trouble:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-left: -15px;
  border: 80px solid transparent;
  border-top: 80px solid #EDEDED;
}
.trouble .container {
  position: relative;
  z-index: 1;
}
.trouble ul {
  width: 100%;
  max-width: 960px;
  border-radius: 40px;
  margin: 0 auto;
  background-color: #ffffff;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}
.trouble li {
  width: 50%;
  padding: 80px 70px;
  font-weight: 500;
  text-align: center;
}
.trouble li:nth-of-type(2), .trouble li:nth-of-type(3) {
  position: relative;
}
.trouble li:nth-of-type(2) img, .trouble li:nth-of-type(3) img {
  position: absolute;
  top: 40px;
}
.trouble li:nth-of-type(2) p, .trouble li:nth-of-type(3) p {
  position: relative;
}
.trouble li:nth-of-type(2) img {
  right: 30px;
}
.trouble li:nth-of-type(3) img {
  left: 30px;
}
@media screen and (max-width: 767px) {
  .trouble:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-left: -15px;
    border: 40px solid transparent;
    border-top: 40px solid #EDEDED;
  }
  .trouble li {
    width: 100%;
    padding: 30px 40px;
  }
  .trouble li:nth-of-type(2) img, .trouble li:nth-of-type(3) img {
    width: 35px;
    top: 20px;
  }
  .trouble li:nth-of-type(2) img {
    right: 15px;
  }
  .trouble li:nth-of-type(3) img {
    left: 15px;
  }
}

.about {
  position: relative;
}
.about .head_text {
  margin-bottom: 150px;
}
.about ul {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  flex-direction: column;
  gap: 100px;
}
.about li {
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px 100px;
}
.about li:nth-of-type(1) .text_area span {
  color: #FF7F60;
}
.about li:nth-of-type(2) .text_area span {
  color: #FFE558;
}
.about li:nth-of-type(3) .text_area span {
  color: #73CEFF;
}
.about li:nth-of-type(2n + 2) {
  flex-direction: row-reverse;
}
.about li .text_area {
  flex: 1;
}
.about li .text_area span {
  display: block;
  font-size: 128px;
  font-weight: 600;
  line-height: 1.2;
}
.about li h4 {
  margin-bottom: 20px;
  font-size: 4rem;
}
.about li img {
  width: 40%;
  max-width: 420px;
}
@media screen and (max-width: 767px) {
  .about .head_text {
    margin-bottom: 40px;
  }
  .about .head_text_sub {
    text-align: center;
  }
  .about ul {
    gap: 60px;
  }
  .about li {
    align-items: center;
  }
  .about li:nth-of-type(2n + 2) {
    flex-direction: column;
  }
  .about li .text_area {
    flex: 1;
  }
  .about li .text_area span {
    font-size: 50px;
  }
  .about li h4 {
    margin-bottom: 20px;
    font-size: 3rem;
  }
  .about li img {
    width: 100%;
    max-width: 180px;
  }
}

.feature {
  overflow-x: hidden;
}
.feature_area {
  border-radius: 54px;
  padding: 50px 60px;
  box-shadow: 0 7px 30px #EDEDED;
  position: relative;
}
.feature .head_text_sub {
  margin-bottom: 35px;
  font-size: 3.6rem;
}
.feature ul {
  margin-bottom: 40px;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}
.feature ul + p {
  color: #AFAFAF;
  font-size: 1.4rem;
  font-weight: 500;
}
.feature li {
  display: inline-block;
  padding: 15px 25px;
  background-color: #F2F2F2;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}
.feature img {
  position: absolute;
  top: 60%;
  right: -10%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1292px) {
  .feature img {
    top: -70px;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .feature_area {
    border-radius: 30px;
    padding: 40px 20px;
    box-shadow: 0 7px 30px #EDEDED;
    position: relative;
  }
  .feature .head_text_sub {
    font-size: 3rem;
  }
  .feature img {
    width: 200px;
    top: -10px;
  }
}

.compare h2 + p {
  margin-bottom: 40px;
  text-align: center;
}
.compare_table_area {
  width: 100%;
  overflow-x: scroll;
}
.compare_table_area + p {
  text-align: right;
  font-weight: 500;
}
.compare table {
  width: 100%;
  min-width: 800px;
  border-collapse: separate;
  border-spacing: 5px;
}
.compare table img {
  margin: 0 auto;
}
.compare table th,
.compare table td {
  width: 25%;
}
.compare table thead th {
  padding: 10px;
  text-align: center;
}
.compare table thead th img {
  width: 155px;
}
.compare table tbody th,
.compare table tbody td {
  padding: 20px;
  line-height: 1.5;
}
.compare table tbody th span {
  display: inline-block;
  text-align: right;
  font-weight: 400;
}
.compare table tbody td {
  border-radius: 6px;
  background-color: #E5F4FF;
  text-align: center;
}
.compare table tbody td:nth-of-type(1) {
  background-color: #FFEDE9;
}
.compare table tbody td span {
  font-family: "Inter", sans-serif;
  font-size: 4.8rem;
  font-weight: 600;
}
.compare table tbody img {
  height: 50px;
}
@media screen and (max-width: 767px) {
  .compare h2 + p {
    margin-bottom: 25px;
  }
  .compare table thead th img {
    width: 120px;
  }
  .compare table tbody td span {
    font-size: 3.2rem;
  }
  .compare table tbody img {
    height: 30px;
  }
}

.flow .container {
  max-width: none;
}
.flow ul {
  justify-content: center;
  gap: 40px;
}
.flow li {
  width: 275px;
  border-radius: 138px;
  padding: 90px 20px 150px;
  box-shadow: 0 0 40px #EDEDED;
  text-align: center;
}
.flow li:not(:last-child) {
  position: relative;
}
.flow li:not(:last-child):before {
  content: "";
  width: 70px;
  aspect-ratio: 1/1;
  background-image: url(../img/flow_arrow.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: -55px;
  transform: translateY(-50%);
  z-index: 1;
}
.flow h3 {
  font-size: 3.6rem;
}
.flow h3 span {
  display: block;
  font-size: 2rem;
}
.flow img {
  margin: 70px auto 0;
}
@media screen and (max-width: 1159px) {
  .flow ul {
    flex-direction: column;
  }
  .flow li {
    width: 100%;
    padding: 30px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px 40px;
  }
  .flow img {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .flow li {
    border-radius: 30px;
    padding: 30px 20px;
    flex-direction: column;
  }
  .flow li:not(:last-child):before {
    width: 45px;
    top: auto;
    bottom: -35px;
    right: auto;
    left: 50%;
    transform: translate(-50%, 0) rotate(90deg);
  }
  .flow li h3 {
    font-size: 2.4rem;
  }
  .flow li h3 span {
    font-size: 1.6rem;
  }
}

.plan {
  background-image: url(../img/plan_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.plan .container {
  padding: 200px 0;
}
.plan_area {
  width: 100%;
  max-width: 560px;
  border-radius: 20px;
  padding: 50px 40px;
  margin: 0 auto;
  background-color: #ffffff;
  box-shadow: 0 0 50px #EDEDED;
  text-align: center;
}
.plan h3 {
  margin-bottom: 40px;
  font-size: 3.2rem;
}
.plan dl dt {
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 500;
}
.plan dl dd {
  margin-bottom: 50px;
  font-size: 3.6rem;
  line-height: 1;
}
.plan dl dd span {
  font-size: 8rem;
  font-weight: 600;
}
.plan dl.flex_box {
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 0;
}
.plan dl.flex_box dt {
  width: 45%;
  margin-bottom: 0;
  text-align: left;
  font-size: 2rem;
}
.plan dl.flex_box dd {
  width: 55%;
  margin-bottom: 0;
  text-align: right;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
.plan dl.flex_box dd span {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .plan .container {
    padding: 60px 0;
  }
  .plan_area {
    border-radius: 10px;
    padding: 50px 20px 30px;
  }
  .plan h3 {
    margin-bottom: 25px;
    font-size: 2.4rem;
  }
  .plan dl dt {
    margin-bottom: 10px;
    font-size: 2rem;
  }
  .plan dl dd {
    margin-bottom: 30px;
    font-size: 2.4rem;
  }
  .plan dl dd span {
    font-size: 5rem;
  }
  .plan dl.flex_box {
    margin-top: 20px;
    gap: 0;
  }
  .plan dl.flex_box dt,
  .plan dl.flex_box dd {
    width: 100%;
  }
  .plan dl.flex_box dt {
    margin-bottom: 5px;
    font-size: 1.8rem;
  }
  .plan dl.flex_box dd {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  .plan dl.flex_box dd span {
    font-size: 2.8rem;
  }
}

.achievement {
  padding: 100px 0;
  overflow: hidden;
}
.achievement ul {
  justify-content: center;
  gap: 60px;
}
.achievement li {
  width: 400px;
  border-radius: 20px;
  padding: 30px 40px;
  box-shadow: 0 0 50px #EDEDED;
}
.achievement a {
  display: block;
  width: 100%;
}
.achievement .no_image {
  width: 100%;
  aspect-ratio: 3/2;
  margin-bottom: 25px;
  background-color: #D9D9D9;
}
.achievement h3 {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 500;
}
.achievement img {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 10px;
}

.faq {
  background-color: #F6F6F6;
}
.faq ul {
  flex-direction: column;
  gap: 40px;
}
.faq li {
  border-radius: 30px;
  padding: 30px 60px;
  background-color: #ffffff;
}
.faq_question span, .faq_answer span {
  font-size: 2.4rem;
  font-weight: 700;
}
.faq_question {
  color: #1D668D;
  font-size: 2.4rem;
  font-weight: 700;
}
.faq_question span {
  display: inline-block;
  margin-right: 10px;
}
.faq_answer {
  display: flex;
  gap: 0 10px;
  align-items: flex-start;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .faq li {
    border-radius: 10px;
    padding: 30px 20px;
  }
  .faq_question span, .faq_answer span {
    font-size: 1.8rem;
  }
  .faq_question {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
  .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: 40px 30px;
  text-align: left;
  box-shadow: 0 0 50px #EDEDED;
  margin-top: 30px;
  margin-bottom: 60px;
  background-color: #ffffff;
  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;
}
form textarea {
  font-size: 16px;
  border: 1px solid #D3D3D3;
  padding: 3px 10px;
  width: 100%;
  color: #000;
}
form input, form select {
  vertical-align: middle;
}
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: #1D668D;
  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 40px;
}
form .radioArea label {
  border: 1px solid #D3D3D3;
  padding: 3px 40px;
  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;
  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 .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 */