@charset "utf-8";

/***common***/
.subpage_sec {
  padding: 60px 0;
}

.sec_title,
.caution_sec h2,
.single_content h2,
.model_caution_sec h2,
.single_page_content h2 {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  position: relative;
}

.sec_title::after,
.caution_sec h2::after,
.single_content h2::after,
.model_caution_sec h2::after,
.single_page_content h2::after {
  content: '';
  width: 172px;
  height: 8px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--g-blue) 100%);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.sec_title.left {
  text-align: left;
}

.sec_title.left::after {
  left: 0;
  transform: inherit;
}

.sub_section_ex {
  text-align: center;
  margin-bottom: 30px;
}


.single_content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.original_page_sec h4,
.single_page_content h4,
.single_content h4 {
  text-align: center;
  background-color: var(--back-blue);
  border-radius: 50px;
  margin-bottom: 20px;
  padding: 10px 0;
  color: var(--blue);
}

.single_content h4 {
  margin-top: 20px;
}
.subpage_sec table {
  width: 100%;
}


.subpage_sec table th,
.subpage_sec table td {
  padding: 22px 10px;
  text-align: center;

  border: 1px solid #99abb6;
  vertical-align: middle;
  word-break: break-all;
}

.subpage_sec table th {
  background-color: var(--blue);
  color: white;
  font-size: 1.8rem;
}

.subpage_sec table td {
  background-color: white;
  font-size: 1.6rem;
}

.subpage_sec table td span {
  font-size: 2rem;
  font-weight: bold;
}

.subpage_sec table td a.btn {
  background-color: var(--back-yellow);
  font-size: 1.6rem;
  padding: 10px;
  width: 100%;
  max-width: 300px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 50px;
}

.subpage_sec table td a.btn::before {
  width: 20px;
  height: 20px;
  content: '';
  background-color: var(--yellow);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
}


.subpage_sec table td a.btn::after {
  content: '';
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  position: absolute;
  top: 50%;
  right: 19.5px;
  transform: translateY(-50%) rotate(45deg);
}

.original_table {
  width: 100%;
}




@media screen and (max-width: 900px) {

  .subpage_sec {
    padding: 40px 0;
  }

  .sec_title,
  .caution_sec h2,
  .single_content h2,
  .model_caution_sec h2,
  .single_page_content h2 {
    margin-bottom: 30px;
  }

  
  .sec_title::after,
  .caution_sec h2::after,
  .single_content h2::after,
  .model_caution_sec h2::after,
  .single_page_content h2::after {
    width: 80px;
    height: 3px;
  }

  .subpage_sec table th,
  .subpage_sec table td {
    padding: 10px 5px;
  }


  .subpage_sec table th {
    font-size: 1.6rem;
  }
  
  .subpage_sec table td {
    font-size: 1.4rem;
  }


  .subpage_sec table td a.btn {
    font-size: 1.2rem;
    padding: 7px 10px;
  }
  
  .subpage_sec table td a.btn::before {
    width: 15px;
    height: 15px;
    right: 5px;
  }
  
  
  .subpage_sec table td a.btn::after {
    width: 6px;
    height: 6px;
    right: 9.5px;
  }

}

/***fv**/

.sub_fv_sec {
  padding: 50px 0;
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 100px);
  margin-left: auto;
  align-items: stretch
}

.sub_fv_sec .text {
  width: 100%;
  max-width: 490px;
  padding: 50px 0;
  padding-right: 30px;
  padding-left: 100px;
  border-radius: 20px 0 0 20px;
  background-color: var(--blue);
  color: white;
}

.sub_fv_sec .image {
  flex: 1;
  width: 100%;
  height: auto;
  min-height: 390px;
  position: relative;
}

.sub_fv_sec .image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

.sub_fv_sec .pan_list {
  background-color: white;
  color: var(--blue);
  padding: 20px;
  border-radius: 10px;
  width: max-content;
  max-width: 200px;
  margin-bottom: 40px;
}

.sub_fv_sec .pan_list .aioseo-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sub_fv_sec .pan_list .aioseo-breadcrumbs span,
.sub_fv_sec .pan_list .aioseo-breadcrumbs a {
  font-size: 1.6rem;
}

.sub_fv_sec .title .jp {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.4;
}

.sub_fv_sec .title .en {
  margin-top: 30px;
  padding-top: 20px;
  color: var(--yellow);
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
}

.sub_fv_sec .title .en::before {
  content: '';
  width: 60px;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--yellow);
}

@media screen and (max-width: 900px) {

  .sub_fv_sec {
    padding: 30px 0;
    width: calc(100% - 10px);
  }
  .sub_fv_sec .text {
    width: 100%;
    max-width: 200px;
    padding: 20px 10px;
    border-radius: 10px 0 0 10px;
  }
  .sub_fv_sec .image {
    min-height: 180px;
  }
  .sub_fv_sec .pan_list {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    max-width: 180px;
  }
  .sub_fv_sec .pan_list .aioseo-breadcrumbs {
    gap: 5px;
  }
  .sub_fv_sec .pan_list .aioseo-breadcrumbs span,
  .sub_fv_sec .pan_list .aioseo-breadcrumbs a {
    font-size: 1.2rem;
  }
  .sub_fv_sec .title .jp {
    font-size: 2rem;
  }
  .sub_fv_sec .title .en {
    margin-top: 10px;
    padding-top: 10px;
    font-size: 1.6rem;
  }

  .sub_fv_sec .title .en::before {
    width: 40px;
    height: 2px;
  }
  


}


/*complain*/
.reason_complain_sec .ex {
  text-align: center;
  font-size: 2rem;
}

.reason_complain_sec .complain_list {
  margin: 30px auto;
}


.complain_list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 20px;
  background-color: var(--back-blue);
  padding: 50px;
  border-radius: 50px;
}

.complain_list li {
  width: calc(100% / 3 - 40px / 3);
  display: flex;
  align-items: center;
  min-height: 110px;
  padding: 10px;
  padding-left: 100px;
  position: relative;
  color: white;
  font-weight: 600;
  font-size: 2.2rem;
  background-color: var(--blue);
  line-height: 1.4;
  border-radius: 10px;
}

.complain_list li::before {
  content: '';
  width: 50px;
  height: 50px;
  background: url(../img/fukidashi.svg) center / contain no-repeat;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  position: absolute;
}

@media screen and (max-width: 900px) {
  .reason_complain_sec .ex {
    font-size: 1.6rem;
  }
  
  .reason_complain_sec .complain_list {
    margin: 20px auto;
  }
  .complain_list {
    gap: 10px;
    padding: 10px;
    border-radius: 20px;
  }
  .complain_list li {
    width: calc(100% / 2 - 10px / 2);
    min-height: 80px;
    padding: 5px;
    padding-left:35px;
    font-size: 1.3rem;
  }
  .complain_list li::before {
    width: 25px;
    height: 25px;
    left: 5px;
  }
  

}



/*worry*/
.reason_worry_sec {
  position: relative;
  background-color: var(--back-blue);
  border-top: 10px solid var(--blue);
  padding-top: 100px;
}

.reason_worry_sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 100px solid transparent;
  border-left: 100px solid transparent;
  border-top: 50px solid var(--blue);
  border-bottom: 0;
}

.reason_worry_sec .wrapper {
  background-color: white;
  border-radius: 50px;
  border: 1px solid var(--blue);
  overflow: hidden;
  position: relative;
}

.reason_worry_sec .worry_list {
  width: 60%;
  margin-left: auto;
  padding: 50px;
}

.worry_list li {
  position: relative;
  font-size: 2.4rem;
  padding-left: 60px;
  font-weight: 600;
}

.worry_list li:not(:last-of-type) {
  margin-bottom: 20px;
}

.worry_list li::before {
  content: '!';
  width: 40px;
  height: 40px;
  position: absolute;
  top: 2px;
  left: 0;
  background-color: var(--blue);
  border-radius: 50%;
  color: var(--yellow);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
}



.reason_worry_sec .content {
  background-color: var(--blue);
  color: white;
  padding: 40px 50px;
}

.reason_worry_sec .content p {
  width: 60%;
  margin-left: auto;
  font-size: 1.8rem;
  font-weight: 600;
}

.reason_worry_sec figure {
  position: absolute;
  top: 20px;
  width: 36%;
  left: 3%;
}

@media screen and (max-width: 900px) {

  .reason_worry_sec {
    border-top: 5px solid var(--blue);
    padding-top: 60px;
  }
  .reason_worry_sec::before {
    border-right: 50px solid transparent;
    border-left: 50px solid transparent;
    border-top: 25px solid var(--blue);
  }
  .reason_worry_sec .wrapper {
    border-radius: 20px;
  }
  .reason_worry_sec .worry_list {
    width: 100%;
    padding: 10px;
  }
  .worry_list li {
    font-size: 1.4rem;
    padding-left: 30px;
  }
  .worry_list li:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .worry_list li::before {
    width: 20px;
    height: 20px;
    top: 0px;
    left: 0;
    font-size: 1.6rem;
  }
  .reason_worry_sec .content {
    padding: 20px 10px;
    position: relative;
  }
  .reason_worry_sec .content p {
    width: 65%;
    font-size: 1.4rem;
  }
  
  .reason_worry_sec figure {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    width: 30%;
    left: 3%;
  }
  
  

}



/*solve*/
.reason_solve_sec {
  background-color: var(--back-blue);
}

.reason_solve_sec .box {
  display: flex;
  gap: 50px;
}

.reason_solve_sec .box .image {
  width: 50%;
}

.reason_solve_sec .box .text {
  flex: 1;
}

@media screen and (max-width: 900px) {
  .reason_solve_sec .box {
    flex-direction: column;
    align-items: center;
    gap: 20px
  }
  .reason_solve_sec .box .image {
    width: 100%;
    max-width: 400px;
  }
  .reason_solve_sec .box .text {
    width: 100%;
  }

}

/*message*/
.reason_list li {
  display: flex;
  gap: 50px;
}
.reason_list li:not(:last-of-type) {
  margin-bottom: 50px;
}
.reason_list li .image {
  width: 50%;
}

.reason_list li .text {
  flex: 1;
}

.reason_list .text h3 {
  font-size: 2.6rem;
  margin-bottom: 30px;
}

@media screen and (max-width: 900px) {

  .reason_list li {
    flex-direction: column-reverse;
    gap: 20px;
    align-items: center;
  }
  .reason_list li:not(:last-of-type) {
    margin-bottom: 40px;
  }

  .reason_list li .image {
    width: 100%;
    max-width: 400px;
  }
  .reason_list li .text {
    width: 100%;
  }

.reason_list .text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}



}


/*service*/

.reason_service_sec .service_list  {
  margin-bottom: 50px;
}
.service_list > li {
  display: flex;
  gap: 50px;
}
.service_list > li:not(:last-of-type) {
  margin-bottom: 50px;
}

.service_list > li:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.service_list .image {
  width: 50%;
}

.service_list .text {
  flex: 1;
}

.service_list .text h3 {
  margin-bottom: 30px;
}

.service_list .text .normal_btn {
  margin-top: 30px;
}


@media screen and (max-width: 900px) {

  .reason_service_sec .service_list  {
    margin-bottom: 30px;
  }
  .service_list > li,
  .service_list > li:nth-of-type(2n) {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .service_list > li:not(:last-of-type) {
    margin-bottom: 40px;
  }

  .service_list .image {
    width: 100%;
    max-width: 400px;
  }
  .service_list .text {
    width: 100%;
  }
  .service_list .text h3 {
    margin-bottom: 20px;
  }
  
  .service_list .text .normal_btn {
    margin-top: 20px;
  }

}


/***flow***/
.flow_other_sec {
  padding-top: 0;
}

.flow_other_sec .normal_btn {
  margin-top: 50px;
}


@media screen and (max-width: 900px) {
  .flow_other_sec .normal_btn {
    margin-top: 20px;
  }
  

}




/***faq***/
.faq_link_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}


.faq_link_box a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% / 3 - 40px / 3);
  border: 1px solid var(--blue);
  padding: 10px 40px;
  border-radius: 50px;
  min-height: 60px;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;

}





.faq_link_box a::after {
  content: '›';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--blue);
  color: var(--yellow);
  border-radius: 50%;
  font-weight: bold;
  font-size: 3rem;
  line-height: 1;
  padding-bottom: 8px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: all 0.2s ease;
}
.faq_page_sec .faq_main_box .box {
  padding-top: 100px;
}


@media screen and (max-width: 900px) {
  .faq_link_box {
    gap: 10px;
  }
  
  
  .faq_link_box a {
    width: calc(100% / 2 - 20px / 2);
    max-width: 150px;
    padding: 10px;
    padding-left: 30px;
    min-height: 50px;
    font-size: 1.4rem;
  }

  .faq_link_box a::after {
    width: 25px;
    height: 25px;
    font-size: 2rem;
    line-height: 1;
    padding-bottom: 4px;
    left: 5px;
  }
  .faq_page_sec .faq_main_box .box {
    padding-top: 50px;
  }

}



/***service-price***/
.faq_link_box.price_ver a {
  width: calc(100% / 4 - 60px / 4);
  padding: 0 60px;
  text-align: center;
}

.service_page_sec .price_main_box .box {
  padding-top: 80px;
}


@media screen and (max-width: 900px) {

  .faq_link_box.price_ver a {
    width: calc(100% / 2 - 20px / 2);
    padding: 0 10px;
    text-align: left;
    padding-left: 30px;
    max-width: 200px;
  }

}


/*point*/
.service_point_box {
  padding: 50px;
  border-radius: 50px;
  background-color: var(--back-blue);
}

.service_point_list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.service_point_list li {
  width: calc(100% / 3 - 60px / 3);
  text-align: center;
}

.service_point_list li .circle_wrap {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  z-index: 1;
}

.service_point_list li .circle_wrap::before {
  content: '';
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.service_point_list li .circle_wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  z-index: -1;
  border: 1px solid var(--blue);
}

.service_point_list .point_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.point_content .num {
  font-size: 7rem;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  /* font-style: italic; */
  font-variation-settings:
    "wdth" 100;
  line-height: 1;
  font-weight: bolder;
  -webkit-text-stroke: 3px var(--blue);
  color: transparent;
  margin-bottom: 5px;
}

.point_content .tag {
  background-color: var(--blue);
  border-radius: 50px;
  padding: 5px 10px;
  color: white;
  font-size: 2rem;
  width: 100%;
  max-width: 200px;
  font-weight: 600;
  margin-bottom: 5px;
}

.point_content .text {
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.4;
}
.point_content .text span {
  color: var(--blue);

}

@media screen and (max-width: 900px) {

  .service_point_box {
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .service_point_list {
    flex-direction: column;
    align-items: center;
  }
  
  .service_point_list li {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .point_content .text {
    font-size: 2.6rem;
  }

}



/*price*/
.price_content_box {
  margin-top: 50px;
}

.price_content_box h3 {
  margin-bottom: 30px;
}

.price_content_box h4 {
  text-align: center;
  background-color: var(--back-blue);
  border-radius: 50px;
  margin-bottom: 20px;
  padding: 10px 0;
  color: var(--blue);
}

.price_content_box .common_price {
  margin-top: 40px;
}

.common_price .common_select {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.common_select .select_box {
  width: calc(100% / 2 - 40px / 2);
}
.common_select h5 {
  background-color: var(--blue);
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 2.6rem;
  border-radius: 30px 30px 0 0;
}

.common_select .select_content {
  padding: 40px 10px;
  background-color: var(--back-yellow);
  display: flex;
  justify-content: center;
}
.common_select .select_content select {
  background-color: white;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  font-size: 1.8rem;
  padding: 10px;
}
@media screen and (max-width: 900px) {

  .common_select .select_box {
    width: 100%;
    max-width: 400px;
  }
  .common_select h5 {
    font-size: 2rem;
    


  }

  .price_result tr th:nth-of-type(2),
  .price_result tr td:nth-of-type(2) {
    min-width: 88px;
  }

  .price_result tr th:nth-of-type(3),
  .price_result tr td:nth-of-type(3) {
    min-width: 118px;
  }

}



/*price table*/
.price_table_box h4 {
  background-color: var(--blue);
  text-align: left;
  padding: 20px;
  padding-left: 50px;
  position: relative;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 10px;
}

.price_table_box h4::before {
  content: '';
  width: 30px;
  height: 30px;
  background: url(../img/map_pin.svg) center left / contain no-repeat;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.price_table_wrap {
  background-color: var(--back-blue);
  padding: 50px;
  border-radius: 10px;
  display: none;
}

.price_table_wrap .price_table {
  display: flex;
  align-items: stretch;
}

.price_table_wrap .price_table h5 {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: var(--blue);
  width: 260px;
  color: white;
  font-size: 2rem;
  border: 2px solid var(--blue);
  border-right: none;

}

.price_table_wrap .price_table:not(:last-of-type) h5 {
  border-bottom: 2px solid white;
  border-top: 0;
}


.price_table_wrap .price_table h5 span {
  font-size: 2.4rem;
  color: var(--yellow);
}

.price_table_wrap .price_table ul {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  border: 2px solid var(--blue);
  border-left: 0;
  background-color: white;

}

.price_table_wrap .price_table:not(:first-of-type) ul {
  border-top: none;
}

.price_table_wrap .price_table ul li {
  padding: 20px;
  width: calc(100% / 4);
  display: flex;
  align-items: center;
  border: 1px solid var(--blue);
  border-left: none;
  border-top: none;

}
.price_table_wrap .price_table ul li:nth-of-type(4n) {
  border-right: none;
}
.price_table_wrap .price_table ul li:nth-of-type(n + 5) {
  /* border-top: none; */
}
@media screen and (max-width: 900px) {

  .price_table_wrap {
    padding: 30px 20px;
  }
  
  .price_table_wrap .price_table {
    display: block;
  }
  
  .price_table_wrap .price_table h5,
  .price_table_wrap .price_table:not(:last-of-type) h5 {
    width: 100%;
    padding: 20px;
    font-size: 1.6rem;
    border: none;
  }

.price_table_wrap .price_table h5 span {
  font-size: 2rem;
}

.price_table_wrap .price_table ul li {
  padding: 10px;
  font-size: 1.3rem;
  text-align: left;

}
}


/*time*/
.price_content_box .time_ex {
  text-align: center;
  margin-bottom: 30px;
}

.time_price_outline {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: stretch;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.service_page_sec .time_price_outline .box {
  width: calc(100% / 2 - 50px / 2);
  border-top: 5px solid var(--blue);
  background-color: var(--back-blue);
  display: flex;
  align-items: center;
  padding: 40px 30px;
}

.time_price_outline .box figure {
  width: 140px;
  text-align: center;
}


.time_price_outline .box figure img {
  width: 100px;
}

.time_price_outline .box dl {
  flex: 1;
}

.time_price_outline .box dl dt {
  font-size: 2.6rem;
  margin-bottom: 5px;
}

.time_price_outline .box dl dd {
  font-size: 2rem;
}

.time_price_add {
  font-size: 1.4rem;
  margin-top: 20px;
}

@media screen and (max-width: 900px) {

  .time_price_outline {
    
    margin-bottom: 40px;
  }
  
  .service_page_sec .time_price_outline .box {
    width: 100%;
    max-width: 400px;
    padding: 30px 10px;
  }

  .time_price_outline .box figure {
    width: 100px;
  }
  
  
  .time_price_outline .box figure img {
    width: 80px;
  }

  .time_price_outline .box dl dt {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  
  .time_price_outline .box dl dd {
    font-size: 1.5rem;
  }
  
  

}


/***symptom***/
.symptom_page_sec h3 {
  margin-bottom: 30px;
}

.symptom_page_sec .common_price {
  margin-top: 30px;
}

@media screen and (max-width: 900px) {


}



/***works***/
.page_two_column > .wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
}

.page_two_column > .wrapper > aside {
  width: 100%;
  max-width: 300px;
}

.page_two_column > .wrapper > .main_column {
  flex: 1;
  width: calc(100% - 400px);
}

.sidebar .side_box:not(:last-of-type) {
  margin-bottom: 50px;
}

.sidebar .side_box h2 {
  font-size: 2.4rem;
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
  margin-bottom: 10px;
}

.side_shop_list,
.side_model_list,
.side_area_list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.side_shop_list li {
  width: calc(100% / 3 - 10px / 3);
}

.side_model_list li,
.side_area_list li {
  width: calc(100% / 2 - 5px / 2);
}

@media screen and (max-width: 900px) {

  .page_two_column > .wrapper {
    gap: 50px;
  }

  .page_two_column > .wrapper > .main_column {
    width: 100%;

  }
  
  .page_two_column > .wrapper > aside {
    width: 100%;
    max-width: 500px;
  }
  
  .sidebar .side_box:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .sidebar .side_box h2 {
    font-size: 2.2rem;
  }

}



/*content*/

.single_meta_box {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.single_meta_box .cat_box {
  display: flex;
  gap: 10px 10px;
  flex-wrap: wrap;
}
.single_meta_box .cat_box a {
  display: block;
  padding: 5px 10px;
  font-size: 1.6rem;
  border-radius: 5px;
}

.single_meta_box .cat_box a.cat_shop {
  background-color: var(--dark-blue);
  color: white;
}
.single_meta_box .cat_box a.cat_area,
.single_meta_box .cat_box a.cat_model {
  border: 1.5px solid var(--blue);
  color: var(--blue);
}

.single_meta_box .cat_box a.cat_category {
  background-color: var(--blue);
  color: white;
}

.single_meta_box time {
  font-size: 1.6rem;
  color: var(--gray);
}

.single_title {
  font-size: 3rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {

  .single_meta_box {
    gap: 20px;
  }
  .single_meta_box .cat_box a {
    font-size: 1.4rem;
  }
  .single_meta_box time {
    font-size: 1.4rem;
  }
  
  .single_title {
    text-align: left;
    font-size: 2.6rem;
  }


}



/*works slide*/
.single_content_sec .works_slider {
  margin-bottom: 30px;
}
.works_slider .main_slider {
  margin-bottom: 20px;
}
.works_slider .main_slider .slider_box .image figure {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}

.works_slider .main_slider .slider_box .image figure img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
  object-position: center;
}
.works_slider .sub_slider .slider_box .image {
  width: 200px;
}

.works_slider .sub_slider .slider_box .image figure {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}

.works_slider .sub_slider .slider_box .image figure img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 900px) {
  .works_slider .main_slider {
    margin-bottom: 10px;
  }
  .works_slider .sub_slider .slider_box .image {
    width: 80px;
  }




}



/*works only*/
.single_content_sec .compair_box  {
  margin-bottom: 40px;
}
.compair_box {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  position: relative;
}

.compair_box::before {
  content: '';
  width: 50px;
  height: 5px;
  background-color: var(--blue);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.compair_box::after {
  content: '';
  width: 30px;
  height: 5px;
  background-color: var(--blue);
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% + 15px);
  transform: translate(-50%, -50%) rotate(45deg);
}


.compair_box .box {
  width: calc(100% / 2 - 80px / 2);
}


.compair_box .box .text {
  text-align: center;
  padding: 10px 20px;
  color: white;
}

.compair_box .box.before .text {
  background-color: var(--dark-blue);
}

.compair_box .box.after .text {
  background-color: var(--blue);
}

.compair_box .box .text h3 {
  font-size: 2rem;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px solid white;
}

.compair_box .box .text p {
  font-size: 1.6rem;
  font-weight: 600;
}

.works_content  p {
  line-height: 1.6;
}

.works_pr_box {
  margin-bottom: 50px;
  padding-top: 100px;
}

.works_pr_box h3 {
  text-align: center;
}

.works_pr_box h3 span {
  color: var(--blue);
  margin-bottom: 30px;
}

.works_shop_data {
  padding-bottom: 100px;
}

.works_shop_data table {
  margin-bottom: 30px;
}

.shop_contact_link {
  display: flex;
  gap: 40px;
}

.shop_contact_link a {
  width: calc(100% / 2 - 40px / 2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  font-weight: 600;
  border-radius: 10px;
  gap: 20px;
  padding: 10px;
}
.shop_contact_link a.line {
  border: 2px solid var(--line-color);
  color: var(--line-color);
}
.shop_contact_link a.mail {
  border: 2px solid var(--mail-color);
  color: var(--mail-color);
}

.shop_contact_link a figure {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 11px;
}

.shop_contact_link a.line figure {
  background-color: var(--line-color);
}
.shop_contact_link a.mail figure {
  background-color: var(--mail-color);
}


.shop_gmap {
  margin-bottom: 50px;
}

.shop_gmap .gmap {
  height: 500px;
  padding-bottom: 0;
}


@media screen and (max-width: 900px) {
  .single_content_sec .compair_box  {
    margin-bottom: 30px;
  }
  .compair_box {
    gap: 40px;
  }
  .compair_box::before {
    width: 30px;
    height: 3px;
  }
  
  .compair_box::after {
    width: 14px;
    height: 3px;
    top: calc(50% - 6px);
    left: calc(50% + 7px);
  }
  .compair_box .box {
    width: calc(100% / 2 - 40px / 2);
  }
  .compair_box .box .text {
    padding: 5px 10px;
  }
  .compair_box .box .text h3 {
    font-size: 1.6rem;
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  
  .compair_box .box .text p {
    font-size: 1.4rem;
  }
  .works_pr_box {
    margin-bottom: 30px;
    padding-top: 20px;
  }

  .works_shop_data {
    padding-bottom: 0px;
  }
  .shop_contact_link {
    gap: 10px;
  }
  
  .shop_contact_link a {
    width: calc(100% / 2 - 10px / 2);
    font-size: 1.6rem;
    border-radius: 5px;
    gap: 10px;
    padding: 10px;
  }
  .shop_contact_link a figure {
    width: 30px;
    height: 30px;
    padding: 6px;
  }
  

  .shop_gmap {
    margin-bottom: 30px;
  }
  
  .shop_gmap .gmap {
    height: 0;
    padding-bottom: 62.5%;
  }

}



/***works archive***/
.works_archive_list article {
  display: flex;
  padding-bottom: 30px;
  gap: 30px;
  border-bottom: 2px solid var(--blue);
}

.works_archive_list article:not(:last-of-type) {
  margin-bottom: 30px;
}

.works_archive_list article .image {
  width: 40%;
  position: relative;
}

.works_archive_list article .content {
  width: calc(60% - 30px);
}


.works_archive_list article .image figure {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 62.5%;
}

.works_archive_list article .image figure img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

.works_archive_list article .image .shop_tag {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--dark-blue);
  z-index: 2;
  padding: 5px 15px;
  color: white;
  font-size: 1.6rem;
  display: inline-block;
}

.works_archive_list article .content ul {
  margin-bottom: 10px;
}

.works_archive_list article .content h3 {
  font-size: 2.2rem;
  text-align: left;
  margin-bottom: 5px;
}

.works_archive_list article .bottom_meta {
  display: flex;
  align-items: center;
  margin-top: 10px;
  justify-content: space-between;
}

.works_archive_list article .bottom_meta time {
  font-size: 1.6rem;
  color: var(--gray);
}

.works_archive_list article .bottom_meta a {
  font-size: 1.6rem;
  position: relative;
  padding-right: 35px;
}
.works_archive_list article .bottom_meta a::before {
  width: 20px;
  height: 20px;
  content: '';
  background-color: var(--yellow);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
}


.works_archive_list article .bottom_meta a::after {
  content: '';
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  position: absolute;
  top: 50%;
  right: 7.5px;
  transform: translateY(-50%) rotate(45deg);
}


@media screen and (max-width: 900px) {

  .works_archive_list article {
    flex-direction: column;
    align-items: center;
  }
  .works_archive_list article .image {
    width: 100%;
    max-width: 400px;
  }

  .works_archive_list article .content {
    width: 100%;
  }
    

}





/***店舗一覧***/
.symptom_page_sec .top_achievement_list {
  margin-bottom: 50px;
}


@media screen and (max-width: 900px) {


}


/***固定ページ***/
.original_page_sec .wp-block-image img {
  border-radius: 20px;
  overflow: hidden;
}


.gmap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 62.5%;
}

.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 900px) {

  body .wp-block-columns.is-layout-flex {
    flex-direction: column;
  }

  body .wp-block-columns.is-layout-flex .wp-block-column {
    width: 100%;
  }

}



/*model archive*/
.model_archive_sec .service_category_list {
  margin-bottom: 50px;
}
.series_model_result .service_category_list {
  margin-top: 50px;
}

.series_model_select.common_select .select_box {
  margin: 0 auto;
}

.series_model_result .service_category_list li .area_image figure img {
  opacity: 1;
}
@media screen and (max-width: 900px) {


}


/*model_cat*/
.related_shop_sec .normal_btn {
  margin-top: 50px;
}

@media screen and (max-width: 900px) {


}



/***商品など個別ページ***/

/*complain*/
.single_complain_sec {

  position: relative;
  padding-top: 60px;
}


.single_complain_sec .wrapper {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  padding: 60px 0;
  gap: 50px;
  background-color: var(--back-yellow);
  border-radius: 0 30px 30px 0;
}

.single_complain_sec .wrapper::before {
  content: '';
  width: calc(50vw - 50%);
  height: 100%;
  position: absolute;
  top: 0;
  right: 100%;
  background-color: var(--back-yellow);
  z-index: -1;
}

.single_complain_sec .image {
  width: 40%;
  position: relative;
}
.single_complain_sec .content {
  width: calc(60% - 50px);
}

.single_complain_sec .image .image_wrap {
  position: absolute;
  top: -120px;
  left: 0;
  width: min(150%, 30vw);
  width: 38vw;

}

.single_complain_sec .image figure {
  position: relative;
  padding-bottom: 62.5%;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.single_complain_sec .image  figure img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}
.single_complain_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  background-color: white;
  border-radius: 20px;
  padding: 30px;
}

.single_complain_list li {
  width: calc(100% / 2 - 30px / 2);
  font-size: 2rem;
  font-weight: 600;
  padding-left: 40px;
  position: relative;
  line-height: 1.4;
  text-align: left;
}

.single_complain_list.straight li {
  width: 100%;
}
.single_complain_list li::before {
  content: '';
  width: 35px;
  height: 33px;
  background-color: var(--blue);
  position: absolute;
  top: -2px;
  left: 0;
  border-radius: 5px;
}
.single_complain_list li::after {
  content: '';
  background: url(../img/check_box.svg) center / contain no-repeat;
  width: 25px;
  height: 25px;
  left: 6.5px;
  top: 1px;
  position: absolute;
}

.single_complain_sec .content .ex {
  margin-top: 30px;
  font-size: 1.8rem;
}

@media screen and (max-width: 900px) {


  .single_complain_sec .wrapper {
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    border-radius: 0 10px 10px 0;
  }

  .single_complain_sec .image {
    width: 100%;
    margin-top: -30px;
  }

  .single_complain_sec .content {
    width: 100%;
  }
  .single_complain_sec .image .image_wrap {
    position: relative;
    top: 0px;
    left: 0;
    width: 90%;
    margin: 0 auto;
  
  }

  .single_complain_sec .content .sec_title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .single_complain_list {
    gap: 10px 20px;
    border-radius: 10px;
    padding: 20px;
  }
  
  .single_complain_list li {
    width: calc(100% / 2 - 20px / 2);
    font-size: 1.4rem;
    padding-left: 20px;
  }
  .single_complain_list.straight li {
    width: 100%;
  }
  .single_complain_list li::before {
    width: 17px;
    height: 16px;
    top: 1px;
    border-radius: 2px;
  }
  .single_complain_list li::after {
    width: 12px;
    height: 12px;
    left: 3.5px;
    top: 2.5px;
  }

  .single_complain_sec .content .ex {
    margin-top: 20px;
    font-size: 1.6rem;
  }

}



/*list*/
.single_model_list .service_category_list li .area_image figure img {
  opacity: 1;
}

.single_model_list .wrapper .service_search_box:not(:last-of-type) {
  margin-bottom: 50px;
}

.single_model_list .select_box {
  margin: 0 auto;
}



@media screen and (max-width: 900px) {


}


/*faq*/
.subpage_faq_sec .normal_btn {
  margin-top: 50px;
}

@media screen and (max-width: 900px) {


}

/*model about*/
.model_about_sec .two_column {
  display: flex;
  gap: 50px;
  justify-content: space-between;
}

.model_about_sec .two_column .image,
.model_about_sec .two_column  .content {
  width: calc(100% / 2 - 50px / 2);
}

.model_about_sec .image figure {
  border-radius: 50px;
  overflow: hidden;
}


@media screen and (max-width: 900px) {


  .model_about_sec .two_column {
    flex-direction: column;
    gap: 20px;
  }
  
  .model_about_sec .two_column .image,
  .model_about_sec .two_column  .content {
    width: 100%;
  }
  
}



/***case single***/
.single_complain_sec.case_ver .sec_title {
  font-size:3rem;
}




.single_content .wp-block-media-text {
  display: flex;
  gap: 50px;
}

.single_content .wp-block-media-text > * {
  width: calc(100% / 2 - 50px / 2);
}

.single_content .wp-block-media-text figure {
  border-radius: 20px;
  overflow: hidden;
}

.single_content .wp-block-column {
  text-align: center;
}

.single_content .wp-block-column p {
  margin-bottom: 10px;
}

.single_content .wp-block-column figure {
  border-radius: 10px;
  border: 2px solid var(--blue);
  overflow: hidden;
}
.single_case_content .level_column {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.single_case_content .level_column .box {
  width: calc(100% / 3 - 100px / 3);
  text-align: center;
  position: relative;
}

.level_column .box .level_icon {
  position: relative;
  margin-bottom: 20px;
}
.level_column .box .level_icon::before,
.level_column .box .level_icon::after {
  content: '';
  height: 8px;
  background-color: var(--yellow);
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.level_column .box:not(:first-of-type) .level_icon::before {
  width: calc(50% - 140px / 2);
  left: 0;

}

.level_column .box:not(:last-of-type) .level_icon::after {
  width: calc(50% - 140px / 2 + 50px);
  right: 30px;
  transform: translate(50%, -50%);
}

.level_column .box .level_icon img {
  max-width: 120px;
  width: 100%;
}

.level_column .box .ex {
  font-weight: 600;
  margin-bottom: 20px;
}

.level_column .box .image_box {
  overflow: hidden;
  border-radius: 20px;
  border: 2px solid var(--blue);
}

.level_column .box .image_box figure img {
  width: 100%;
}

.level_column .box .image_box p {
  padding: 15px 0;
  background-color: var(--blue);
  color: white;
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 900px) {


}



/***single_model***/
.single_model_info .sec_title span {
  font-size: 0.6em;
}

.model_info_list .box:not(:last-of-type) {
  margin-bottom: 80px;
}


.model_info_list .box h3 {
  margin-bottom: 30px;
}

.model_info_list .box table th,
.model_info_list .box table td {
  width: 50%;
}

.model_info_list .box .model_price_ex {
  text-align: right;
}

.model_info_list .box h4 {
  margin-top: 30px;
}

@media screen and (max-width: 900px) {


}


/***single_page_content***/
.single_page_content > * {
  margin-bottom: 30px;
}

.single_page_content ul,
.single_page_content ol {
  padding-left: 20px;
}

.single_page_content ul {
  list-style: disc;
}

.single_page_content ol {
  list-style: decimal;
}

.single_page_content .has-text-align-center {
  text-align: center;
}

.single_page_content .has-text-align-right {
  text-align: right;
}

@media screen and (max-width: 900px) {


}

/***個別記事***/
.news_single_sec .single_page_content {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--gray);
}


.single_page_content h2 {
  margin-top: 50px;
}

.single_page_content h3 {
  margin-top: 40px;
}

.single_page_content h4,
.single_page_content h5,
.single_page_content h6 {
  margin-top: 30px;
}

@media screen and (max-width: 900px) {


}


/*記事一覧*/
.news_list_sec .topics_list article:first-of-type {
  border-bottom-color: var(--gray);
}
.news_list_sec .topics_list article:first-of-type {
  border-top-color: var(--gray);
}


.news_list_sec .topics_list article time {
  padding: 0;
  color: var(--blue);
  background-color: transparent;
  font-size: 1.6rem;
  text-align: left;
}

.news_list_sec .topics_list article h3 {
  font-size: 1.8rem;
}

@media screen and (max-width: 900px) {

  .news_list_sec .topics_list article time {
    font-size: 1.4rem;
  }
  
  .news_list_sec .topics_list article h3 {
    font-size: 1.6rem;
  }
}


/*column*/

.single_tag_list,
.side_column_tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.single_tag_list {
  margin-bottom: 30px;
}
.single_tag_list a,
.side_column_tag_list a {
  display: block;
  padding: 5px 10px;
  font-size: 1.6rem;
  border-radius: 5px;
  background-color: var(--back-blue);
  color: var(--dark-blue);
}

.column_faq  {
  margin-bottom: 40px;
}
.column_faq h3 {
  margin-bottom: 20px;
}

.author_box {
  margin-bottom: 80px;
}

.author_box h4 {
  margin-bottom: 20px;
}

.author_column {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.author_column .image {
  width: 200px;
}

.author_column .image figure {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
  border-radius: 50%;
}

.author_column .image figure img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

.author_column .text {
  width: 100%;
  flex: 1;
}

.author_column .text .name {
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.author_column .text .name::after {
  content: '';
  width: 80px;
  height: 1px;
  background-color: var(--blue);
  position: absolute;
  left: 0;
  bottom: 0;
}

.recommend_article h3 {
  text-align: center;
  border-bottom: 1px solid var(--blue);
  padding: 10px;
  margin-bottom: 30px;
}

.recommend_article_list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
}

.recommend_article_list article {
  width: calc(100% / 4 - 45px / 4);
}

.recommend_article_list article figure {
  width: 100%;
  height: 0;
  padding-bottom: 62.5%;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.recommend_article_list article figure img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

.popular_article_list article:not(:last-of-type) {
  margin-bottom: 10px;
  padding-top: 10px;
  border-bottom: 1px solid var(--g-blue);
}
.popular_article_list article a {
  display: flex;
  gap: 10px;
}

.popular_article_list article a figure {
  width: 80px;
  height: 80px;
  position: relative;
}

.popular_article_list article a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.popular_article_list article a .title {
  flex: 1;
  line-height: 1.4;
}


@media screen and (max-width: 900px) {
  .single_tag_list a {
    font-size: 1.4rem;
  }

.recommend_article_list article {
  width: calc(100% / 2 - 15px / 2);
}
div#ez-toc-container ul li, div#ez-toc-container ul li a {
  font-size: 1.4rem;
}
.author_column {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

}



/***column list***/

.column_pge_list article {
  padding: 20px 0;
  border-bottom: 2px solid var(--gray);
  display: flex;
  gap: 30px;
}

.column_pge_list article .image {
  width: 30%;
}

.column_pge_list article .text {
  width: calc(70% - 30px);
}

.column_pge_list article .image figure {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 62.5%;
  overflow: hidden;
}

.column_pge_list article .image figure img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

.column_pge_list article .text .article_title {
  font-size: 2.2rem;
  margin-bottom: 5px;
}

.column_pge_list article .text .article_content {
  margin-bottom: 5px;
}

.column_pge_list article .text .single_tag_list {
  margin-bottom: 10px;
}

.column_pge_list article .text .post_date {
  color: var(--gray);
}

@media screen and (max-width: 900px) {

  .column_pge_list article {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .column_pge_list article .image {
    width: 100%;
    max-width: 500px;
  }
  
  .column_pge_list article .text {
    width: 100%;
  }
  

}



/***contact***/
.contact_top_message {
  margin-bottom: 40px;
}

.contact_top_message p a {
  color: var(--blue);
  text-decoration: underline;
}

.contact_level_box {
  margin: 0 auto;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-around;
  max-width: 640px;
  gap: 40px;
  position: relative;
}

.contact_level_box::before {
  content: '';
  width: calc(100% - 260px);
  height: 10px;
  background-color: var(--yellow);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.contact_level_box .box {
  width: 130px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 50%;
  background-color: white;
  border: 3px solid var(--blue);
}

.contact_level_box .box.current {
  background-color: var(--blue);
  color: white;
}

.contact_level_box .box .num {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  /* font-style: italic; */
  font-variation-settings:
    "wdth" 100;
  line-height: 1;
  font-weight: bolder;
  -webkit-text-stroke: 2px var(--blue);
  color: transparent;
  font-size: 3.2rem;
}

.contact_level_box .box.current .num {
  -webkit-text-stroke: 2px white;
}

.contact_level_box .box .title {
  font-weight: 600;
  font-size: 2.8rem;
}


.original_form_box {
  margin-bottom: 50px;
}

.original_form_box .req_ex {
  margin-bottom: 30px;
}

.original_form_box .req_ex span,
.original_form_box dl dt span {
  color: red;
}

.original_form_box dl {
  display: flex;
  padding: 20px 0;
}

.original_form_box dl dt {
  width: 300px;
  padding: 10px 0;
}

.original_form_box dl dd {
  flex: 1;
}

.original_form_box dl dd input[type="text"],
.original_form_box dl dd input[type="email"],
.original_form_box dl dd input[type="tel"],
.original_form_box dl dd input[type="date"],
.original_form_box dl dd textarea,
.original_form_box dl dd select {
  background-color: #f6f6f6;
  padding: 10px;
  font-size: 1.6rem;
  border-radius: 5px;
  width: 100%;
}

.original_form_box dl dd .top {
  margin-top: 20px;
}

.come_date > p{
  display: flex;
  gap: 20px;
}
.come_date > p span {
  width: 50%;
}
.come_date label {
  display: flex;
  align-items: flex-end;
  width: 50%;
}
.original_form_box dl dd .file {
  margin-top: 10px;
}
.original_form_box dl dd .file p {
  display: flex;
}

.contact_term_column {
  margin-bottom: 40px;
  display: flex;
  gap: 30px;
}

.contact_term_column .box {
  width: calc(100% / 2 - 30px / 2);
}

.contact_term_column .box .policy {
  width: 100%;
  height: 300px;
  border: 1px solid #9EA0A2;
  padding: 10px;
  overflow: scroll;
}

.contact_term_column .box .policy h5 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 2rem;
  text-align: center;
}

.contact_term_column .box .policy h6 {
  margin-top: 10px;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.contact_term_column .box .policy p {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.contact_term_column .box .agree {
  text-align: center;
  margin-top: 10px;
}

.submit_box {
  display: flex;
  justify-content: center;
  text-align: center;
}

.submit_box input[type="submit"] {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 310px;
  height: 60px;
  position: relative;
  background-color: var(--blue);
  color: white;
  font-size: 1.8rem;
  border-radius: 50px;
  box-shadow: 0px 2px 0px var(--normal-bloe);
  padding: 20px;
  text-align: center;
}

.submit_box input[type="submit"][disabled] {
  background-color: darkgrey;
}

.submit_box .wpcf7-previous {
  font-size: 1.4rem;
  color: var(--blue);
  text-decoration: underline;
  background-color: transparent;
}
@media screen and (max-width: 900px) {


}



@media screen and (max-width: 900px) {


}



@media screen and (max-width: 900px) {


}



@media screen and (max-width: 900px) {


}


@media screen and (max-width: 900px) {


}



@media screen and (max-width: 900px) {


}



@media screen and (max-width: 900px) {


}