@charset "UTF-8";
/*変数設定用*/
.inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .inner {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

.inner2 {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .inner2 {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .inner2 {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10rem;
  height: 130px;
  position: fixed;
  padding-right: 10rem;
  background-color: white;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .header {
    gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .header {
    height: 75px;
  }
}
.header_left {
  flex: 0 0 56%;
  padding-left: 2%;
}
.header_right-tel {
  width: 75%;
}
.header_right-line {
  position: absolute;
  top: 0;
  right: 0;
  height: 130px;
}
@media screen and (max-width: 768px) {
  .header_right-line {
    height: 75px;
  }
}
@media screen and (max-width: 768px) {
  .header_right {
    display: inline-block;
    width: 105px;
  }
}

main {
  margin-top: 130px;
}
@media screen and (max-width: 768px) {
  main {
    margin-top: 75px;
  }
}

.mv img {
  width: 100%;
}

.slogan {
  background-color: #0040ab;
  padding: 6rem 0;
}
.slogan_ttl {
  font-family: "M PLUS 1p", sans-serif;
  text-align: center;
  color: white;
  margin-bottom: 4rem;
}
.slogan_ttl h4 {
  font-size: 4rem;
  font-weight: 700;
  border-bottom: 1px solid #fff;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .slogan_ttl h4 {
    font-size: 2.8rem;
    display: block;
    margin-left: 2rem;
    margin-right: 2rem;
  }
}
.slogan_ttl h4::after {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid white;
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
@media screen and (max-width: 768px) {
  .slogan_ttl h4::after {
    top: 100%;
    border-top: 8px solid white;
    border-bottom: 8px solid transparent;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
  }
}
.slogan_ttl h3 {
  font-size: 5rem;
  font-weight: 700;
  border-bottom: 3px dotted #fff;
}
@media screen and (max-width: 768px) {
  .slogan_ttl h3 {
    font-size: 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
    padding-bottom: 2rem;
  }
}
.slogan_ttl h3 .span-1 {
  font-size: 10rem;
  color: #ffde00;
}
@media screen and (max-width: 768px) {
  .slogan_ttl h3 .span-1 {
    font-size: 7rem;
  }
}
.slogan_ttl h3 .span-2 {
  font-size: 6rem;
  color: #ffde00;
}
@media screen and (max-width: 768px) {
  .slogan_ttl h3 .span-2 {
    font-size: 3rem;
  }
}
.slogan_contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .slogan_contact {
    flex-direction: column;
    margin-left: 2rem;
    margin-right: 2rem;
    gap: 2rem;
  }
}
.slogan_contact-txt {
  color: white;
  font-size: 2.6rem;
  font-weight: bold;
  position: relative;
  flex: 0 0 28%;
  text-align: start;
}
@media screen and (max-width: 768px) {
  .slogan_contact-txt {
    font-size: 1.6rem;
    text-align: center;
  }
}
.slogan_contact-txt::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(../img/arrow.png) no-repeat center center;
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  left: 310px;
}
@media screen and (max-width: 768px) {
  .slogan_contact-txt::after {
    top: 135%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 20px;
    height: 20px;
  }
}

.price {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  .price {
    margin-left: 2rem;
    margin-right: 2rem;
    padding: 6rem 0;
  }
}
.price_ttl {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .price_ttl {
    margin-bottom: 2rem;
  }
}
.price_ttl p {
  font-weight: 700;
  font-size: 5rem;
  color: #c90e0c;
  border-bottom: 1px solid #c90e0c;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .price_ttl p {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .price_table {
    overflow: auto;
  }
}
@media screen and (max-width: 768px) {
  .price_table img {
    max-width: 245%;
  }
}
.price_note2 {
  font-size: 14px;
  margin-bottom: 6rem;
  font-weight: bold;
}
.price_note {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  padding-top: 2rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .price_note {
    font-size: 1.4rem;
    text-align: start;
  }
}
.price_note span {
  color: #c90e0c;
}

.work_img {
  padding-top: 7rem;
}
.work_img-1 {
  padding-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .work_img-1 {
    max-width: 200%;
  }
}
.work_img-2 {
  padding-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .work_img-2 {
    max-width: 200%;
  }
}
.work .title img {
  width: 100%;
}

.worry {
  background: url(../img/bg_1.png) no-repeat center center;
  background-size: cover;
  padding-bottom: 10rem;
}
.worry img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .worry {
    padding-bottom: 6rem;
  }
}

.solution img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .solution {
    margin-left: 2rem;
    margin-right: 2rem;
    margin-top: 2rem;
  }
}

.section-reason {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  .section-reason {
    padding-top: 4rem;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .reason .mr-20 {
    margin-right: 20px;
  }
}
.reason .line-1 {
  border-bottom: 2px solid #0068b0;
}
.reason .line-2 {
  border-bottom: 2px solid white;
}
.reason .clr-1 {
  color: white;
  text-shadow: 1px 1px 5px black;
}
.reason_num {
  font-size: 3.6rem;
  font-weight: bold;
  font-family: "M PLUS 1p", sans-serif;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .reason_num {
    font-size: 1.6rem;
  }
}
.reason_ttl {
  font-size: 3.6rem;
  font-weight: bold;
  padding: 3rem 0;
}
@media screen and (max-width: 768px) {
  .reason_ttl {
    font-size: 1.8rem;
    padding: 2rem 0;
  }
}
.reason_txt {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .reason_txt {
    font-size: 1.2rem;
  }
}
.reason_1 {
  background: url(../img/bg_2.png) no-repeat center center;
  background-size: cover;
  height: 420px;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .reason_1 {
    height: 238px;
    background: url(../img/bg_2_sp.png) no-repeat center center;
    background-size: cover;
  }
}
.reason_1-ct {
  padding-top: 6rem;
}
@media screen and (max-width: 768px) {
  .reason_1-ct {
    margin-left: 2rem;
    margin-right: 2rem;
    padding-top: 3rem;
  }
}
.reason_2 {
  background: url(../img/bg_3.png) no-repeat center center;
  background-size: cover;
  height: 420px;
}
@media screen and (max-width: 768px) {
  .reason_2 {
    height: 238px;
    background: url(../img/bg_3_sp.png) no-repeat center center;
    background-size: cover;
  }
}
.reason_2-box {
  position: relative;
  height: 100%;
}
.reason_2-ct {
  position: absolute;
  transform: translateY(-50%);
  right: 0;
  top: 50%;
}
@media screen and (max-width: 768px) {
  .reason_2-ct {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}
.reason_3 {
  background: url(../img/bg_4.png) no-repeat center center;
  background-size: cover;
  height: 420px;
}
@media screen and (max-width: 768px) {
  .reason_3 {
    height: 238px;
    background: url(../img/bg_4_sp.png) no-repeat center center;
    background-size: cover;
  }
}
.reason_3-ct {
  padding-top: 6rem;
}
@media screen and (max-width: 768px) {
  .reason_3-ct {
    margin-left: 2rem;
    margin-right: 2rem;
    padding-top: 3rem;
  }
}
.reason_4 {
  background: url(../img/bg_5.png) no-repeat center center;
  background-size: cover;
  height: 420px;
}
@media screen and (max-width: 768px) {
  .reason_4 {
    height: 238px;
    background: url(../img/bg_5_sp.png) no-repeat center center;
    background-size: cover;
  }
}
.reason_4-box {
  position: relative;
  height: 100%;
}
.reason_4-ct {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .reason_4-ct {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}
.reason_5 {
  background: url(../img/bg_6.png) no-repeat center center;
  background-size: cover;
  height: 420px;
}
@media screen and (max-width: 768px) {
  .reason_5 {
    height: 238px;
    background: url(../img/bg_6_sp.png) no-repeat center center;
    background-size: cover;
  }
}
.reason_5-ct {
  padding-top: 8rem;
}
@media screen and (max-width: 768px) {
  .reason_5-ct {
    margin-left: 2rem;
    margin-right: 2rem;
    padding-top: 3rem;
  }
}

.section-payment {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  .section-payment {
    margin-left: 2rem;
    margin-right: 2rem;
    padding: 6rem 0;
  }
}

.section-enquiry {
  background-color: #0040ab;
}

.enquiry {
  text-align: center;
  padding: 6rem 0;
}
.enquiry_sub {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 3rem;
  color: white;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .enquiry_sub {
    font-size: 2rem;
  }
}
.enquiry_sub::before {
  content: "";
  width: 2px;
  height: 44px;
  background-color: white;
  position: absolute;
  top: 12px;
  left: -33px;
  transform: rotate(-30deg);
}
.enquiry_sub::after {
  content: "";
  width: 2px;
  height: 44px;
  background-color: white;
  position: absolute;
  top: 12px;
  right: -33px;
  transform: rotate(30deg);
}
.enquiry_ttl {
  text-align: center;
  font-size: 5rem;
  color: white;
  font-weight: 700;
  padding-bottom: 2rem;
  margin-bottom: 4rem;
  border-bottom: 3px dotted #fff;
}
@media screen and (max-width: 768px) {
  .enquiry_ttl {
    font-size: 2.2rem;
    padding-top: 1rem;
    display: inline-block;
  }
}

.section-case {
  padding: 6rem 0;
}
@media screen and (max-width: 768px) {
  .section-case {
    padding: 6rem 0 4rem 0;
  }
}

.section-tiger img {
  width: 100%;
}

.section-corona img {
  width: 100%;
}

.section-plan img {
  width: 100%;
}

.case_box {
  margin: 3rem 0;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .case_box {
    margin: 3rem 2rem;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    padding-bottom: 2rem;
  }
}
.case_ttl {
  font-size: 2.8rem;
  background-color: #0068b0;
  color: white;
  font-weight: bold;
  padding: 3rem 6rem;
}
@media screen and (max-width: 768px) {
  .case_ttl {
    padding: 2rem;
    font-size: 1.2rem;
  }
}
.case_ttl span {
  padding-left: 2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .case_ttl span {
    display: block;
    font-size: 1.6rem;
    padding-left: 0;
  }
}
.case_ttl span::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 8px;
  width: 1px;
  height: 30px;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .case_ttl span::before {
    display: none;
  }
}
.case_ct {
  padding: 4rem 6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .case_ct {
    flex-direction: column;
    padding: 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
    gap: 0;
  }
}
.case_ct-1 {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .case_ct-1 {
    font-size: 1.6rem;
  }
}
.case_ct-1 li {
  background-color: #0068b0;
  font-weight: bold;
  width: 320px;
  padding: 2.2rem 10px;
  color: white;
  position: relative;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .case_ct-1 li {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.case_ct-1 li span {
  text-align: center;
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: white;
  color: black;
  width: 154px;
  padding: 1.7rem 0;
}
.case_ct-1 li:first-child {
  padding-left: 5.5rem;
}
.case_ct-1 li:last-child {
  padding-left: 4.3rem;
}
.case_ct-2 {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .case_ct-2 {
    font-size: 1.6rem;
  }
}
.case_ct-2 li {
  background-color: #0068b0;
  font-weight: bold;
  width: 320px;
  padding: 2.2rem 10px;
  color: white;
  position: relative;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .case_ct-2 li {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.case_ct-2 li span {
  text-align: center;
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: white;
  color: black;
  width: 154px;
  padding: 1.7rem 0;
}
.case_ct-2 li:first-child {
  padding-left: 6.1rem;
}
.case_ct-2 li:last-child {
  padding-left: 4.3rem;
}
.case_ct-3 {
  font-size: 2.8rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .case_ct-3 {
    font-size: 1.6rem;
  }
}
.case_ct-3 li {
  background-color: #ff8400;
  font-weight: bold;
  width: 420px;
  padding: 5.5rem 10px;
  color: white;
  position: relative;
  margin-bottom: 1rem;
  padding-left: 5.5rem;
}
@media screen and (max-width: 768px) {
  .case_ct-3 li {
    max-width: 300px;
    padding: 2.2rem 10px;
    padding-left: 5.8rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.case_ct-3 li span {
  text-align: center;
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: white;
  color: black;
  width: 250px;
  padding: 5rem 0;
}
@media screen and (max-width: 768px) {
  .case_ct-3 li span {
    width: 154px;
    padding: 1.7rem 0;
  }
}
.case_img {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0 6rem;
}
@media screen and (max-width: 768px) {
  .case_img {
    flex-direction: column;
    padding: 0;
    margin-left: 2rem;
    margin-right: 2rem;
  }
}
.case_img-1 {
  width: 49.6%;
}
@media screen and (max-width: 768px) {
  .case_img-1 {
    width: 100%;
  }
}

.section-evaluation {
  background: url(../img/bg_7.png) no-repeat center center;
  background-size: cover;
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  .section-evaluation {
    padding: 6rem 0;
  }
}

.evaluation {
  text-align: center;
}
.evaluation_ttl {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .evaluation_ttl {
    width: 90%;
  }
}
.evaluation_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 3rem;
}
@media screen and (max-width: 768px) {
  .evaluation_box {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.evaluation_box li {
  width: 590px;
}
.evaluation_box li img {
  width: 100%;
}

.section-flow {
  background: url(../img/bg_8.png) no-repeat center center;
  background-size: cover;
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  .section-flow {
    padding: 6rem 0;
  }
}

.flow {
  background-color: white;
  padding: 7rem 6rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .flow {
    padding: 3rem 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
  }
}
.flow_sub {
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .flow_sub {
    font-size: 1.4rem;
    padding-top: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .flow .step_sp {
    position: relative;
    left: -40px;
    max-width: 115%;
  }
}

.question {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  .question {
    padding: 6rem 0;
    margin-left: 2rem;
    margin-right: 2rem;
  }
}
.question_ttl {
  font-size: 2.4rem;
  border-bottom: 1px solid #ccc;
  padding: 3rem 4rem 3rem 4rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .question_ttl {
    padding: 2rem 0;
    font-size: 1.6rem;
    padding-right: 2rem;
  }
}
.question_ttl h3 {
  font-weight: bold;
}
.question_ttl::before, .question_ttl::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  width: 20px;
  height: 2px;
  background-color: black;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .question_ttl::before, .question_ttl::after {
    right: 0;
    width: 16px;
  }
}
.question_ttl::after {
  transform: translateY(-50%) rotate(90deg);
}
.question_ttl.close::after {
  transform: translateY(-50%) rotate(0);
}
.question_ttl::before {
  transform: translateY(-50%) rotate(0deg);
}
.question_ttl span {
  font-family: "M PLUS 1p", sans-serif;
  color: white;
  background-color: #0040ab;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 1.1rem 1.9rem;
  border-radius: 50%;
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  .question_ttl span {
    font-size: 1.4rem;
    padding: 0.8rem 1.2rem;
    margin-right: 1rem;
  }
}
.question .answer {
  display: none;
  padding: 3rem 4rem 3rem 8rem;
}
@media screen and (max-width: 768px) {
  .question .answer {
    padding: 0;
  }
}
.question .answer_box {
  font-size: 1.6rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .question .answer_box {
    font-size: 1.2rem;
    padding: 1rem 0;
  }
}
.question .answer_box span {
  background-color: #ff8400;
  font-family: "M PLUS 1p", sans-serif;
  color: white;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 1.1rem 2rem;
  border-radius: 50%;
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  .question .answer_box span {
    font-size: 1.4rem;
    padding: 0.7rem 1.2rem;
    margin-right: 1rem;
  }
}

.section-contact {
  background-color: #e3e6eb;
  padding: 10rem 0;
}

.contact {
  background-color: white;
  padding-bottom: 10rem;
  position: relative;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .contact {
    margin-left: 2rem;
    margin-right: 2rem;
    padding-bottom: 6rem;
  }
}
.contact_icon {
  width: 14.5%;
  position: absolute;
  top: -41px;
  left: 68px;
}
@media screen and (max-width: 768px) {
  .contact_icon {
    width: 24.5%;
    top: -14px;
    left: -19px;
  }
}
.contact_sub {
  font-size: 1.6rem;
  padding: 2rem 10rem;
}
@media screen and (max-width: 768px) {
  .contact_sub {
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
  }
}
.contact_sub:nth-child(3) {
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .contact_sub:nth-child(3) {
    padding-bottom: 0rem;
  }
}

.form {
  max-width: 950px;
  margin: 0 auto;
}
.form_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid #aaaaaa;
  position: relative;
}
@media screen and (max-width: 768px) {
  .form_box br {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .form_box {
    padding: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .form_box {
    flex-wrap: wrap;
    padding: 2rem;
    justify-content: space-between;
  }
}
.form_box .error {
  position: absolute;
  top: 82px;
  left: 275px;
  font-size: 14px !important;
}
@media screen and (max-width: 768px) {
  .form_box .error {
    top: 43px;
    left: 20px;
  }
}
.form .label {
  font-size: 2rem;
  font-weight: bold;
  min-width: 185px;
}
@media screen and (max-width: 768px) {
  .form .label {
    font-size: 1.6rem;
  }
}
.form .label-1 {
  min-width: 254px;
}
@media screen and (max-width: 768px) {
  .form .label-1 {
    min-width: 275px;
  }
}
.form .note {
  color: white;
  padding: 5px 10px;
  background-color: #ca0000;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .form .note {
    font-size: 1.2rem;
    text-align: center;
  }
}
.form .input {
  padding: 1rem;
  font-size: 2rem;
  flex: 1;
  width: 100% !important;
}
@media screen and (max-width: 768px) {
  .form .input {
    min-width: 294px;
    width: 100% !important;
    font-size: 1.6rem;
  }
}
.form .input-sub {
  margin-left: 2rem;
}
@media screen and (max-width: 768px) {
  .form .input-sub {
    margin-left: 0rem;
  }
}
.form .input-2 {
  padding: 1rem;
  font-size: 2rem;
}
.form .warn {
  display: block;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .form .warn {
    font-size: 1.2rem;
  }
}
.form .flex {
  flex: 1;
}
.form .flex .error {
  top: 100px;
}
@media screen and (max-width: 768px) {
  .form .flex .error {
    top: 45px;
  }
}
@media screen and (max-width: 768px) {
  .form .flex br {
    display: none;
  }
}
.form_box-2 {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.form .consent {
  border: 1px solid #000;
  height: 150px;
  display: block;
  font-size: 1.6rem;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .form .consent {
    margin-left: 2rem;
    margin-right: 2rem;
    font-size: 1.2rem;
  }
}
.form .checkbox_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
}
@media screen and (max-width: 768px) {
  .form .checkbox_box {
    margin-left: 2rem;
    margin-right: 2rem;
    justify-content: space-between;
    padding-top: 0rem;
    margin-top: 1rem;
    padding-bottom: 2rem;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .form .checkbox_box .note {
    flex: 0 0 50px;
  }
}
.form .checkbox_box .error {
  font-size: 14px !important;
}
@media screen and (max-width: 768px) {
  .form .checkbox_box .error {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.form .mwform-checkbox-field-text {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .form .mwform-checkbox-field-text {
    font-size: 1.4rem;
  }
}
.form .mwform-zip-field {
  font-size: 2rem;
}
.form .textarea {
  font-size: 2rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form .textarea {
    width: 100%;
    font-size: 1.6rem;
  }
}
.form .submit_box {
  width: 500px;
  margin: 0 auto;
  margin-top: 2rem;
  position: relative;
  border: 2px solid #ff8711;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .form .submit_box {
    width: 300px;
  }
}
.form .submit_box::before {
  content: "";
  position: absolute;
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  right: 25px;
  border-top: solid 4px white;
  border-right: solid 4px white;
  width: 15px;
  height: 15px;
}
@media screen and (max-width: 768px) {
  .form .submit_box::before {
    width: 10px;
    height: 10px;
    top: 50%;
  }
}
.form .submit {
  width: 100%;
  padding: 2.2rem;
  background-image: linear-gradient(to bottom, #ffc382, #ff8400);
  font-size: 3rem;
  color: white;
  font-weight: bold;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .form .submit {
    font-size: 1.6rem;
    padding: 2rem;
  }
}
.form .label-mg {
  margin: 2rem 0;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .form .label-mg {
    margin: 2rem;
  }
}
.form .label-mg2 {
  padding-bottom: 2rem;
}

.footer {
  background-color: #120707;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 120px;
  }
}
.footer p {
  font-size: 1.2rem;
  color: white;
  text-align: center;
}

.fixed-tel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0040ab;
  height: 10rem;
  padding: 1rem 2rem;
}

.mw_wp_form_confirm .form_box {
  font-size: 1.8rem;
}
.mw_wp_form_confirm .warn {
  display: none;
}
.mw_wp_form_confirm .checkbox_box {
  font-size: 1.8rem;
}

.checkbox {
  width: 18px;
  height: 18px;
}

.finish {
  height: 95vh;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .finish {
    text-align: start;
  }
}
.finish-ttl {
  font-size: 3rem;
  margin-bottom: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .finish-ttl {
    font-size: 2.4rem;
    text-align: center;
  }
}
.finish-txt {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  line-height: 2;
}

.back-box {
  text-align: center;
  margin-bottom: 3rem;
}

.back-top {
  font-size: 1.4rem;
  width: 250px;
  padding: 10px 0;
  display: inline-block;
  background-color: white;
  color: black;
}
.back-top.bg-black {
  background-color: black;
  color: white;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .pdTab {
    padding: 0 2rem;
  }
}/*# sourceMappingURL=style.css.map */