@charset "utf-8";

/*common*/
.two_column_wrap {
  display: flex;
  position: relative;
  align-items: flex-start;
}

.two_column_wrap.border {
  border-bottom: 1px solid var(--border-gray);
}

.two_column_wrap aside {
  width: 500px;
  padding: 70px 60px 60px;
  position: sticky;
  top: 120px;
  left: 0;
}

.two_column_wrap .main_column {
  flex: 1;
  border-left: 1px solid var(--border-gray);
  width: calc(100% - 500px);
}



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


  .two_column_wrap aside {
    width: 400px;
    padding: 70px 30px 60px;
  }

  .two_column_wrap .main_column {
    width: calc(100% - 400px);
  }

}

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

  .two_column_wrap {
    flex-direction: column;
    gap: 0;
  }

  .two_column_wrap aside {
    width: 100%;
    padding: 20px 20px 20px;
    position: relative;
    top: 0;
  }

  .two_column_wrap .main_column {
    width: 100%;
  }
}

/***FV***/

.subpage_fv_sec {
  position: relative;
  padding-top: 30px;
}

.subpage_fv_sec::before {
  content: '';
  width: calc(50% + 50px);
  height: calc(100% - 30px);
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--navy);
  z-index: -1;
}

.subpage_fv_sec .wrapper {
  min-height: 330px;
  display: flex;
  align-items: center;
}

.subpage_fv_sec .fv_title {
  color: white;
  position: relative;
  z-index: 2;
}

.subpage_fv_sec .fv_title .jp {
  font-size: 4rem;
}

.subpage_fv_sec .fv_title .en {
  font-size: 2rem;
  font-family: korolev, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.subpage_fv_sec .ex {
  margin-top: 10px;
}

.subpage_fv_sec .image {
  width: calc(50% + 150px);
  position: absolute;
  top: 0;
  right: 0;
  height: calc(100% - 30px);
  overflow: hidden;
}

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

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

  .subpage_fv_sec::before {
    width: 80%;
    height: calc(100% - 30px);
  }

  .subpage_fv_sec .wrapper {
    min-height: 240px;
  }

  .subpage_fv_sec .fv_title .jp {
    font-size: 3rem;
  }

  .subpage_fv_sec .fv_title .en {
    font-size: 1.6rem;
  }

  .subpage_fv_sec .image {
    width: 80%;
  }


}


/***panlist***/
.panlist_box {
  padding: 10px 0;
}

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

.panlist_box .aioseo-breadcrumbs * {
  font-size: 1.4rem
}

/***campaign***/
.campaign_sec {
  padding: 70px 0;
  border-bottom: 1px solid var(--border-gray);
}

@media screen and (max-width: 800px) {
  .campaign_sec {
    padding: 50px 0;
  }

}


/*****sidebar*****/
.two_column_wrap .side_box h2 {
  font-size: 3.6rem;
  margin-bottom: 30px;
}

.two_column_wrap .side_box .ex {
  font-size: 1.8rem;
  font-weight: 500;
}

.two_column_wrap .side_box .side_anchor_menu {
  margin-top: 40px;
}

.two_column_wrap .side_box .side_anchor_menu li {
  color: #929BA8;
}

.two_column_wrap .side_box .side_anchor_menu li.now {
  color: var(--navy);
}

.two_column_wrap .side_box .side_anchor_menu li:not(:last-of-type) {
  margin-bottom: 10px;
}

.two_column_wrap .side_box .en_title {
  font-size: 9rem;
  font-weight: bold;
  color: #ECEEF0;
  font-family: korolev, sans-serif;
  font-style: normal;
  line-height: 1;
  margin-top: 70px;
}

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

  .two_column_wrap .side_box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .two_column_wrap .side_box .ex {
    font-size: 1.6rem;
  }

  .two_column_wrap .side_box .side_anchor_menu {
    margin-top: 30px;
  }


  .two_column_wrap .side_box .en_title {
    font-size: 5rem;
    margin-top: 20px;
  }

}


/***maintenance***/
.maintenance_strength {
  padding: 70px 60px;
}

.maintenance_strength h3 {
  margin-bottom: 35px;
  color: var(--navy);
  font-size: 2.4rem;
  display: flex;
  align-items: center;
}

.maintenance_strength h3 span {
  font-size: 3rem;
  font-family: korolev, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-right: 20px;
}

.maintenance_strength_list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 25px;
}

.maintenance_strength_list li {
  background-color: var(--navy);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  font-size: 1.8rem;
  font-weight: bold;
  width: calc(100% / 4 - 36px / 4);
  text-align: center;
}


.maintenance_strength .ex {
  margin-bottom: 30px;
}

.maintenance_strength .back_gray_big_text {
  background-color: var(--back-gray);
  color: var(--navy);
  text-align: center;
  padding: 25px;
  font-size: 2rem;
  margin-bottom: 30px;
}

.maintenance_strength .two_column {
  display: flex;

}

.maintenance_strength .two_column.row_reverse {
  flex-direction: row-reverse;
}

.maintenance_strength .two_column.image_text {
  gap: 30px;
}

.maintenance_strength .two_column .image {
  width: 40%;
}

.maintenance_strength .two_column .text {
  flex: 1;
}

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

  .maintenance_strength {
    padding: 40px 20px;
  }

  .maintenance_strength h3 {
    margin-bottom: 20px;
    font-size: 2.2rem;
  }

  .maintenance_strength h3 span {
    font-size: 2.6rem;
    margin-right: 15px;
  }

  .maintenance_strength_list {
    gap: 10px;
    margin-bottom: 20px;
  }

  .maintenance_strength_list li {
    font-size: 1.6rem;
    width: calc(100% / 2 - 10px / 2);
    min-height: 80px;
  }

  .maintenance_strength .two_column,
  .maintenance_strength .two_column.row_reverse {
    flex-direction: column;
  }

  .maintenance_strength .two_column .image {
    width: 100%;
  }

  .maintenance_strength .back_gray_big_text {
    padding: 25px 5px;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }




}

/*cta*/
.maintenance_cta_sec {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--navy);
  color: white;
}

.maintenance_cta_sec h3 {
  font-size: 2.4rem;
  margin-bottom: 30px;
}

.maintenance_cta_sec .list_box {
  background-color: white;
  color: var(--font-color);
  padding: 25px 30px;
  max-width: 615px;
  margin: 0 auto 30px;
  position: relative;
}

.maintenance_cta_sec .list_box ul {
  text-align: left;
  padding-right: 32px;
}

.maintenance_cta_sec .list_box ul li {
  padding-left: 37px;
  position: relative;

}

.maintenance_cta_sec .list_box ul li::before {
  content: '';
  width: 22px;
  height: 18px;
  background: url(../img/checkbox_icon.svg) left center / contain no-repeat;
  position: absolute;
  top: 4px;
  left: 0;
}

.maintenance_cta_sec .list_box p {
  text-align: right;
  position: absolute;
  bottom: 30px;
  right: 30px;
  line-height: 1;
}

.maintenance_cta_sec .ex {
  margin-bottom: 35px;
}

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

  .maintenance_cta_sec {
    padding: 40px 20px;
  }

  .maintenance_cta_sec h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .maintenance_cta_sec .list_box ul li {
    padding-left: 20px;

  }

  .maintenance_cta_sec .list_box ul li::before {
    width: 16px;
    height: 16px;
    top: 1px;
  }


}

/*case*/
.case_report_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

.case_report_list article {
  width: calc(100% / 2 - 20px / 2);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--back-gray);
}

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

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

.case_report_list article .case_content {
  flex: 1;
  padding: 30px 20px 20px;
  width: 100%;
}

.case_report_list article .case_content h4 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.case_report_list article .case_content p {
  font-size: 1.4rem;
}

.case_report_list article .case_btn {
  padding: 0 20px 30px;
  width: 100%;
}

.case_report_list article .case_btn a {
  background-color: var(--navy);
  color: white;
  display: block;
  width: 100%;
  max-width: 200px;
  padding: 10px;
  border-radius: 100px;
  font-size: 1.4rem;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .case_report_list article {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--back-gray);
  }

  .case_report_list article .case_content {
    padding: 20px 15px 20px;
  }

}

/*ex*/
.maintenance_ex_sec {
  padding: 60px;
}

.maintenance_ex_sec h3 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 30px;
  color: var(--navy);
}

.maintenance_ex_sec .two_column {
  display: flex;
  gap: 24px;
  margin-bottom: 30px;
}

.maintenance_ex_sec .two_column .image {
  width: calc(100% / 2 - 24px / 2);
}

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

  .maintenance_ex_sec {
    padding: 40px;
  }

  .maintenance_ex_sec .two_column {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .maintenance_ex_sec .two_column .image {
    width: 100%;
  }
}

/*price*/
.maintenance_strength.price_sec {
  padding-bottom: 0;
}

.maintenance_strength .price_ex {
  margin-bottom: 30px;
}

.maintenance_strength .price_before_text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  gap: 23px;
  margin-bottom: 20px;
}

.maintenance_strength .price_before_text::before,
.maintenance_strength .price_before_text::after {
  width: 26px;
  height: 34px;
  content: '';
}

.maintenance_strength .price_before_text::before {
  background: url(../img/price_left.png) left top / contain no-repeat;
}

.maintenance_strength .price_before_text::after {
  background: url(../img/price_right.png) right top / contain no-repeat;
}

.price_table {
  overflow-x: auto;
  width: 100%;
}

.price_table table {
  width: 740px;
}

.price_table table th,
.price_table table td {
  vertical-align: middle;
  text-align: center;
  font-size: 1.2rem;
}

.price_table table thead tr:nth-of-type(1) th {
  background-color: var(--navy);
  color: white;
  padding: 10px;
}

.price_table table thead tr:nth-of-type(1) th:nth-of-type(1),
.price_table table tbody th {
  width: 124px;
}


.price_table table tbody tr:not(:last-of-type) {
  border-bottom: 1px solid var(--border-gray);
}

.price_table table tbody td,
.price_table table tbody th {
  background-color: var(--back-gray);
}

.price_table table tbody th {
  border-right: 1px solid var(--border-gray);
}

.price_table table td {
  padding: 22px 0;
}

.price_table table tbody tr:last-of-type th,
.price_table table tbody tr:last-of-type td {
  background-color: var(--navy);
  color: white;
}

.maintenance_strength .price_after_text {
  margin-top: 20px;

}

.maintenance_strength .price_after_text p {
  font-size: 1.4rem;
}

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

  .maintenance_strength .price_before_text::before,
  .maintenance_strength .price_before_text::after {
    display: none;
  }

}

/*report*/

.maintenance_strength .report_image {
  margin-bottom: 30px;
}

.maintenance_strength .report_image img {
  width: 100%;
}

.maintenance_strength .maintenance_report_text {
  margin-bottom: 35px;
}

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


/*maintenance*/
.maintenance_strength .normal_text {
  gap: 20px;
}

.maintenance_strength .normal_text .box {
  width: calc(100% / 2 - 20px / 2);
}

.maintenance_strength .normal_text .box p {
  margin-top: 20px;
}

@media screen and (max-width: 800px) {
  .maintenance_strength .normal_text .box {
    width: 100%;
  }

}

/*testeer*/
.maintenance_strength.general {
  padding-bottom: 0;
}

.maintenance_strength .tester_box {
  background-color: var(--back-gray);
  padding: 40px 30px;
  text-align: center;
  margin-top: 30px;
}

.maintenance_strength .tester_box h3 {
  font-size: 2.4rem;
  color: var(--navy);
  margin-bottom: 30px;
  justify-content: center;
}

.maintenance_strength .tester_box ul {
  display: flex;
  gap: 25px;
}

.maintenance_strength .tester_box ul li {
  width: calc(100% / 3 - 50px / 3);
}

.maintenance_strength .tester_box ul li p {
  margin-top: 12px;
  font-size: 1.8rem;
  font-weight: 500;
}

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

  .maintenance_strength .tester_box {
    padding: 40px 15px;
    margin-top: 20px;
  }

  .maintenance_strength .tester_box h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .maintenance_strength .tester_box ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .maintenance_strength .tester_box ul li {
    width: 100%;
    max-width: 500px;
  }



}


/***service feature***/
.service_feature_sec {
  padding: 70px 0;
}

/*top*/
.service_feature_sec .feature_top {
  text-align: center;
  margin-bottom: 50px;
}

.service_feature_sec .feature_top h3 {
  font-size: 3rem;
  margin-bottom: 15px;
}

@media screen and (max-width: 800px) {
  .service_feature_sec {
    padding: 40px 0;
  }

  .service_feature_sec .feature_top h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

}

/*common*/
.service_feature_sec .feature_commmon {
  padding: 60px 50px;
}

.service_feature_sec .feature_commmon h3 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 40px;

}

.service_feature_sec .feature_commmon .three_column {
  display: flex;
  gap: 25px;
}

.service_feature_sec .feature_commmon .three_column .box {
  position: relative;
  width: calc(100% / 3 - 50px / 3);
}

.service_feature_sec .feature_commmon .box figure {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 62.5%;
  overflow: hidden;
  margin-bottom: 25px;
}

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

.service_feature_sec .feature_commmon .box .num {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  line-height: 1;
  padding: 5px 10px;
  font-family: korolev, sans-serif;
  font-weight: 700;
  font-style: normal;
}


.service_feature_sec .feature_commmon .box h4 {
  font-size: 2rem;
  margin-bottom: 20px;
  min-height: 60px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 800px) {
  .service_feature_sec .feature_commmon {
    padding: 40px 20px;
  }

  .service_feature_sec .feature_commmon .three_column {
    flex-wrap: wrap;
    gap: 30px;
  }

  .service_feature_sec .feature_commmon .three_column .box {
    width: 100%;
  }

  .service_feature_sec .feature_commmon h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .service_feature_sec .feature_commmon .box figure {
    margin-bottom: 15px;
  }

  .service_feature_sec .feature_commmon .box h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    min-height: inherit;
  }
}

/*promise*/
.service_feature_sec .feature_promise {
  margin-bottom: 30px;
  background-color: var(--navy);
  color: white;

}

.service_feature_sec .feature_promise h3 {
  color: white;
}

.service_feature_sec .feature_promise .num {
  background-color: var(--navy);
}

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

/*support*/
.service_feature_sec .feature_support {
  margin-bottom: 60px;
  background-color: white;

}

.service_feature_sec .feature_support h3 {
  color: var(--navy);
}

.service_feature_sec .feature_support .num {
  background-color: white;
  color: var(--navy);
}

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

  .service_feature_sec .feature_support {
    margin-bottom: 40px;
  }

}

/*bottom*/
.feature_bottom p {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

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

  .feature_bottom p {
    font-size: 2rem;
  }

}




/*****protouch*****/

/*about*/
.protouch_about_sec {
  padding: 70px 0;
}

.protouch_about_sec .about_top {
  display: flex;
  gap: 80px;
  margin-bottom: 40px;
}


.protouch_about_sec .about_top .image {
  position: relative;
  margin-left: calc(50% - 50vw);
  flex: 1;
  padding-bottom: 69%;
}


.protouch_about_sec .about_top .text {
  width: 42%;
  padding-top: 60px;
  padding-right: 3%;
}


.protouch_about_sec .about_top .image figure {
  position: absolute;
}

.protouch_about_sec .about_top .image figure.image_1 {
  top: 0;
  right: 0;
  width: 80%;
}

.protouch_about_sec .about_top .image figure.image_2 {
  bottom: 0;
  left: 0;
  width: 45.5%;
}


.protouch_about_sec .about_top .text h3 {
  font-size: 3rem;
  margin-bottom: 30px;
}


.protouch_about_sec .recommend_box {
  padding: 50px 40px;
}

.protouch_about_sec .recommend_box h3 {
  color: var(--navy);
  text-align: center;
  font-size: 3rem;
  margin-bottom: 30px;
}

.protouch_about_sec .recommend_box .reccomend_list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}


.protouch_about_sec .recommend_box .reccomend_list li {
  display: flex;
  gap: 15px;
  padding: 20px;
  width: 100%;
  max-width: 360px;
  min-height: 140px;
  background-color: white;
  align-items: center;
}

.protouch_about_sec .recommend_box .reccomend_list li figure {
  width: 80px;
}

.protouch_about_sec .recommend_box .reccomend_list li p {
  flex: 1;
}

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

  .protouch_about_sec {
    padding: 40px 0;
  }

  .protouch_about_sec .about_top {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }

  .protouch_about_sec .about_top .image {
    margin: 0 auto;
    max-width: 500px;
    width: 80%;
    padding-bottom: 0;
  }

  .protouch_about_sec .about_top .text {
    width: 100%;
    padding: 0;
  }

  .protouch_about_sec .about_top .image figure.image_1 {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
  }


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

  .protouch_about_sec .about_top .image figure.image_2 {
    display: none;
  }

  .protouch_about_sec .about_top .text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .protouch_about_sec .recommend_box {
    padding: 20px 20px;
  }


  .protouch_about_sec .recommend_box h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }


  .protouch_about_sec .recommend_box .reccomend_list {
    gap: 15px;
  }

  .protouch_about_sec .recommend_box .reccomend_list li {
    gap: 15px;
    padding: 15px;
    width: 100%;
    max-width: 500x;
    min-height: inherit;
  }

  .protouch_about_sec .recommend_box .reccomend_list li figure {
    width: 55px;
  }

}



/*cta*/
.protouch_cta_sec {
  text-align: center;
  padding: 120px 0;
  background: url(../img/protouch_cta_back.png) center / cover no-repeat;
}

.protouch_cta_sec h2 {
  color: white;
  font-size: 2.4rem;
  margin-bottom: 30px;
}

@media screen and (max-width: 800px) {
  .protouch_cta_sec {
    padding: 40px 0;
  }

  .protouch_cta_sec h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

}

/*compair*/
.protouch_compair_sec {
  padding: 80px 0;
}

.compair_table {
  width: 100%;
  overflow-x: auto;
}

.compair_table table {
  width: 1200px;
}

.compair_table table th,
.compair_table table td {
  text-align: center;
  vertical-align: middle;
  border: 1px solid var(--border-gray);
}

.compair_table table thead th {
  background-color: var(--navy);
  color: white;
  padding: 20px;
  font-size: 1.8rem;

}

.compair_table table thead th.main {
  color: #FFF724;
}

.compair_table table tbody th,
.compair_table table tbody td {
  padding: 10px;
  background-color: var(--back-gray);

}

.compair_table table tbody td {
  color: #929BA8;
}

.compair_table table tbody td.main {
  background-color: var(--navy);
  color: white;
}

.compair_table table tbody td figure {
  margin-bottom: 5px;
}

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

  .protouch_compair_sec {
    padding: 40px 0;
  }

  .compair_table table {
    width: 550px;
  }

  .compair_table table thead th {
    padding: 15px;
    font-size: 1.5rem;
  }

  .compair_table table tbody td p {
    font-size: 1.4rem;
  }

  .compair_table table tbody td figure {
    width: 30px;
    margin: 0 auto 5px;
  }


}


/*craftsmanship*/
.protouch_craftsmanship_sec {
  padding: 100px 0;
}

.protouch_craftsmanship_sec .two_column {
  display: flex;
  flex-wrap: wrap;
}

.protouch_craftsmanship_sec .two_column .normal_sec_title {
  width: 100%;
  max-width: 360px;
}

.protouch_craftsmanship_sec .two_column .main_column {
  flex: 1;
}


.protouch_craftsmanship_sec .craftsmanship_list li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid white;
  padding: 30px 0;
  gap: 11%;
}

.protouch_craftsmanship_sec .craftsmanship_list li .image {
  width: 38%;
}

.protouch_craftsmanship_sec .craftsmanship_list li .text {
  flex: 1;
}

.protouch_craftsmanship_sec .craftsmanship_list li .text h3 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.protouch_craftsmanship_sec .craftsmanship_list li .text h3 span {
  font-family: korolev, sans-serif;
  font-style: normal;
  font-size: 3rem;
  margin-right: 20px;
  list-style: 1;
}

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

  .protouch_craftsmanship_sec {
    padding: 40px 0;
  }

  .protouch_craftsmanship_sec .two_column .normal_sec_title {
    margin-bottom: 20px;
  }

  .protouch_craftsmanship_sec .two_column .main_column {
    width: 100%;
  }

  .protouch_craftsmanship_sec .craftsmanship_list li {
    display: block;
    padding: 15px 0;
  }

  .protouch_craftsmanship_sec .craftsmanship_list li .image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .protouch_craftsmanship_sec .craftsmanship_list li .text {
    margin-bottom: 20px;
  }

  .protouch_craftsmanship_sec .craftsmanship_list li .text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .protouch_craftsmanship_sec .craftsmanship_list li .text h3 span {
    font-size: 2.4rem;
    margin-right: 10px;
  }

}

/*works*/
.protouch_works_sec {
  padding: 80px 0;
}

.protouch_works_sec .protouch_works_list {
  margin-bottom: 70px;
}

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

.protouch_works_list article h3 {
  border-bottom: 1px solid #929BA7;
  font-size: 2.4rem;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.protouch_works_list article .two_column {
  display: flex;
  gap: 60px;
  margin-bottom: 20px;
}

.protouch_works_list article .two_column .box {
  width: calc(100% / 2 - 60px / 2);
  position: relative;
}

.protouch_works_list article .two_column .box:nth-of-type(1)::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 27px solid #929ba8;
  border-right: 0;
  position: absolute;
  top: 50%;
  right: calc(-30px - 15px);
  transform: translateY(-50%);
}

.protouch_works_list article .two_column .box figure {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 55%;
  overflow: hidden;
}

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

.protouch_works_list article .two_column .box p {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 36px;
  font-family: korolev, sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 1.9rem;
  color: white;
}

.protouch_works_list article .two_column .box.before p {
  background-color: var(--border-gray);
}

.protouch_works_list article .two_column .box.after p {
  background-color: var(--navy);
}


.protouch_works_sec .point_box {
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.protouch_works_sec .point_box .text {
  width: 58%;
}

.protouch_works_sec .point_box .image {
  flex: 1;
}

.protouch_works_sec .point_box .text h3 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.protouch_works_sec .point_box .text .ex {
  padding-bottom: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid white;
}

.protouch_works_sec .point_box .text .point_list h4 {
  font-family: korolev, sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 1.9rem;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 5px;
}

.protouch_works_sec .point_box .text .point_list h4::before {
  content: '';
  width: 16px;
  height: 18px;
  background: url(../img/point_icon.svg) left center / contain no-repeat;
}

.protouch_works_sec .point_box .text .point_list ul li::before {
  content: '・';
}

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

  .protouch_works_sec {
    padding: 40px 0;
  }

  .protouch_works_sec .protouch_works_list {
    margin-bottom: 30px;
  }

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

  .protouch_works_list article h3 {
    font-size: 2rem;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }

  .protouch_works_list article .two_column {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .protouch_works_list article .two_column .box {
    width: 100%;
    max-width: 500px;
  }

  .protouch_works_list article .two_column .box:nth-of-type(1)::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 27px solid #929ba8;
    border-right: 0;
    position: absolute;
    top: calc(100% + 10px);
    right: inherit;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .protouch_works_list article .two_column .box p {
    width: 80px;
    height: 26px;
    font-size: 1.6rem;
  }

  .protouch_works_sec .point_box {
    padding: 30px 20px;
    display: block;
  }

  .protouch_works_sec .point_box .text {
    width: 100%;
    margin-bottom: 20px;
  }

  .protouch_works_sec .point_box .text h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .protouch_works_sec .point_box .image {
    max-width: 400px;
    margin: 0 auto;
  }







}


/*faq*/
.common_faq_sec {
  padding: 80px 0;
}

.common_faq_sec .faq_list dl {
  background-color: white;
  padding: 30px 65px;
}

.common_faq_sec .faq_list dl:not(:last-of-type) {
  margin-bottom: 20px;
}

.common_faq_sec .faq_list dl dt {
  cursor: pointer;
}

.common_faq_sec .faq_list dl dd {
  margin-top: 25px;
  display: none;
}

.common_faq_sec .faq_list dl dt,
.common_faq_sec .faq_list dl dd {
  position: relative;
}

.common_faq_sec .faq_list dl dt::before,
.common_faq_sec .faq_list dl dd::before {
  position: absolute;
  left: -37px;
  top: -2px;
  color: var(--navy);
  font-size: 3rem;
  font-family: korolev, sans-serif;
  font-weight: bold;
  font-style: normal;
  line-height: 1;
}

.common_faq_sec .faq_list dl dt::before {
  content: 'Q';
}

.common_faq_sec .faq_list dl dd::before {
  content: 'A';
}

.common_faq_sec .faq_list dl dt::after {
  content: '+';
  position: absolute;
  right: -37px;
  top: -2px;
  color: var(--navy);
  font-size: 3rem;
  line-height: 1;
}


.common_faq_sec .faq_list dl.open dt::after {
  content: '-';
}

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

  .common_faq_sec {
    padding: 40px 0;
  }

  .common_faq_sec .faq_list dl {
    padding: 20px 40px;
  }


  .common_faq_sec .faq_list dl dt::before,
  .common_faq_sec .faq_list dl dd::before {
    left: -22px;
    top: -2px;
    font-size: 2.5rem;
  }

  .common_faq_sec .faq_list dl dt::after {
    right: -22px;
    top: -2px;
    font-size: 2.5rem;
  }


}



/*message*/
.protouch_message_sec {
  padding: 80px 0;
  text-align: center;
}

.protouch_message_sec h2,
.protouch_message_sec h3 {
  font-size: 2.4rem;
}

.protouch_message_sec h2 strong,
.protouch_message_sec h3 strong {
  color: var(--yellow);
}

.protouch_message_sec h2 {
  margin-bottom: 30px;
}

.protouch_message_sec .worry_list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.protouch_message_sec .worry_list li {
  width: calc(100% / 3 - 40px / 3);
  border: 1px solid white;
  padding: 45px 10px;
  font-size: 2rem;
  font-weight: bold;
}

.protouch_message_sec h3 {
  padding: 40px 0;
}

.protouch_message_sec .message_box {
  padding: 30px 20px;
  background-color: white;
}

.protouch_message_sec .message_box p {
  color: var(--navy);
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 800px) {
  .protouch_message_sec {
    padding: 40px 0;
  }

  .protouch_message_sec h2,
  .protouch_message_sec h3 {
    font-size: 2rem;
  }

  .protouch_message_sec .worry_list {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }

  .protouch_message_sec .worry_list li {
    width: 100%;
    max-width: 300px;
    padding: 25px 10px;
    font-size: 1.8rem;
  }

  .protouch_message_sec h3 {
    padding: 30px 0;
  }

  .protouch_message_sec .message_box {
    padding: 20px 15px;
  }

  .protouch_message_sec .message_box p {
    font-size: 1.8rem;
  }

}


/*****about us*****/

/*top*/
.aboutus_top_sec {
  padding-top: 70px;
}

.aboutus_top_sec .two_column {
  display: flex;
  align-items: center;
  gap: 60px;
}

.aboutus_top_sec .two_column .image {
  flex: 1;
  margin-left: calc(50% - 50vw);
}

.aboutus_top_sec .two_column .text {
  width: 100%;
  max-width: 450px;
  padding-bottom: 50px;
}

.aboutus_top_sec .two_column .text .en {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--navy);
}

.aboutus_top_sec .two_column .text h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.aboutus_top_sec .two_column .text .ex {
  font-size: 1.8rem;
  font-weight: 500;
}


.aboutus_top_sec .aboutus_promise_box {
  margin-top: -50px;
  position: relative;
  z-index: 2;
  padding: 60px 50px;
  gap: 50px;
  display: flex;
}

.aboutus_top_sec .aboutus_promise_box .left {
  width: 100%;
  max-width: 350px;
  text-align: center;
}

.aboutus_top_sec .aboutus_promise_box .left h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.aboutus_top_sec .aboutus_promise_box .left figure {
  background-color: white;
  padding: 75px 36px;
}

.aboutus_top_sec .aboutus_promise_box .right {
  flex: 1;
}

.aboutus_top_sec .aboutus_promise_box .right ol li {
  border-bottom: 1px solid white;
  padding-bottom: 20px;
  font-weight: 500;
  padding-left: 20px;
  line-height: 1.2;
}

.aboutus_top_sec .aboutus_promise_box .right ol li:not(:last-of-type) {
  margin-bottom: 20px;
}

.aboutus_top_sec .aboutus_promise_box .right ol li span {
  font-family: korolev, sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 2rem;
  margin-right: 20px;
}

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


  .aboutus_top_sec {
    padding-top: 40px;
  }

  .aboutus_top_sec .two_column {
    gap: 30px;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .aboutus_top_sec .two_column .image {
    margin: 0 auto;
    max-width: 600px;
  }

  .aboutus_top_sec .two_column .text {
    max-width: inherit;
    padding: 0;
  }

  .aboutus_top_sec .two_column .text .en {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .aboutus_top_sec .two_column .text h2 {
    font-size: 2.4rem;
  }

  .aboutus_top_sec .two_column .text .ex {
    font-size: 1.6rem;
  }

  .aboutus_top_sec .aboutus_promise_box {
    margin: 0;
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
  }

  .aboutus_top_sec .aboutus_promise_box .left {
    margin: 0 auto;
  }

  .aboutus_top_sec .aboutus_promise_box .left h3 {
    font-size: 2.2rem;
  }

  .aboutus_top_sec .aboutus_promise_box .left figure {
    padding: 55px 25px;
  }

  .aboutus_top_sec .aboutus_promise_box .right ol li {
    padding-bottom: 20px;
    padding-left: 10px;
  }

  .aboutus_top_sec .aboutus_promise_box .right ol li span {
    font-size: 1.8rem;
    margin-right: 10px;
  }

}

/*appeal*/
.aboutus_appeal_sec {
  padding-top: 80px;
}

.aboutus_appeal_sec h2,
.aboutus_appeal_sec .ex {
  text-align: center;
}

.aboutus_appeal_sec h2 {
  font-size: 3rem;
}

.aboutus_appeal_sec .ex {
  margin-bottom: 50px;
}

.aboutus_appeal_sec .holdings_list {
  display: flex;
  flex-wrap: wrap;
  /* max-width: 1920px; */
  margin: 0 calc(50% - 50vw);
  align-items: stretch;

}

.aboutus_appeal_sec .holdings_list li {
  width: calc(100% / 4);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-gray);
}

.aboutus_appeal_sec .holdings_list li .image {
  height: 142px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aboutus_appeal_sec .holdings_list li .text {
  flex: 1;
  background-color: #07162B;
  padding: 30px 40px;
  color: white;
}

.aboutus_appeal_sec .holdings_list li .text .address {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

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


  .aboutus_appeal_sec {
    padding-top: 40px;
  }

  .aboutus_appeal_sec h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }

  .aboutus_appeal_sec .ex {
    margin-bottom: 30px;
  }

  .aboutus_appeal_sec .holdings_list {
    align-items: stretch;
    gap: 20px;
  }

  .aboutus_appeal_sec .holdings_list li {
    width: 100%;
    max-width: 600px;
  }

  .aboutus_appeal_sec .holdings_list li .image {
    height: 120px;
  }

  .aboutus_appeal_sec .holdings_list li .text {
    padding: 30px 20px;
  }



}


/*mind*/
.aboutus_mind_sec {
  padding-top: 80px;
  padding-bottom: 100px;
}

.aboutus_mind_sec .mind_list li {
  border-bottom: 1px solid var(--border-gray);
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
}

.aboutus_mind_sec .mind_list li:first-of-type {
  border-top: 1px solid var(--border-gray);
}

.aboutus_mind_sec .mind_list li .text {
  width: 47.5%;
}

.aboutus_mind_sec .mind_list li .image {
  width: 45%;
}

.aboutus_mind_sec .mind_list li .text h3 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.aboutus_mind_sec .mind_list li .text h3 span {
  font-size: 3.6rem;
  font-family: korolev, sans-serif;
  font-style: normal;
  margin-right: 20px;
}

.aboutus_mind_sec .mind_list li .image figure {
  border: 10px solid var(--back-gray);
}

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


  .aboutus_mind_sec {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .aboutus_mind_sec .mind_list li {
    flex-direction: column;
    padding: 20px 0;
    gap: 20px;
    align-items: center;
  }

  .aboutus_mind_sec .mind_list li .text,
  .aboutus_mind_sec .mind_list li .image {
    width: 100%;
  }

  .aboutus_mind_sec .mind_list li .image {
    max-width: 500px;
  }


  .aboutus_mind_sec .mind_list li .text h3 {
    font-size: 2.4rem;
    margin-bottom: 5px;
  }

  .aboutus_mind_sec .mind_list li .text h3 span {
    font-size: 3rem;
    margin-right: 10px;
  }




}





/*facilities*/
.aboutus_facilities_sec {
  padding: 80px 0;
}

.aboutus_facilities_sec .facilities_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 55px;
}

.aboutus_facilities_sec .facilities_list li {
  width: calc(100% / 4 - 60px / 4);
  background-color: white;
}

.aboutus_facilities_sec .facilities_list li figure {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  overflow: hidden;
}

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

.aboutus_facilities_sec .facilities_list li .text {
  padding: 25px 20px;
}

.aboutus_facilities_sec .facilities_list li .text h3 {
  min-height: 48px;
  font-size: 1.6rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.aboutus_facilities_sec .facilities_list li .text p {
  font-size: 1.4rem;
}


/* 閉じているときだけ5件目以降を非表示 */
.aboutus_facilities_sec:not(.is-open) .facilities_list li:nth-of-type(n+5) {
  display: none;
}

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

  .aboutus_facilities_sec {
    padding: 40px 0;
  }

  .aboutus_facilities_sec .facilities_list {
    gap: 15px;
    margin-bottom: 30px;
    align-items: center;
  }

  .aboutus_facilities_sec .facilities_list li {
    width: 100%;
    max-width: 350px;
  }

  .aboutus_facilities_sec .facilities_list li .text {
    padding: 20px 20px;
  }

  .aboutus_facilities_sec .facilities_list li .text h3 {
    min-height: inherit;
    margin-bottom: 10px;
  }

}


/*message*/
.aboutus_message_sec {
  padding: 80px 0 160px;
  position: relative;
  overflow: hidden;
}

.aboutus_message_sec .wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
}

.aboutus_message_sec .wrapper .image {
  flex: 1;
  margin-left: calc(50% - 50vw);
}

.aboutus_message_sec .wrapper .text {
  width: 43.5%;
}

.aboutus_message_sec .big_text {
  text-align: center;
  font-family: korolev, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F5F5F5;
  font-size: min(14.4rem, 10vw);
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  line-height: 1;
}

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

  .aboutus_message_sec {
    padding: 40px 0 80px;
  }

  .aboutus_message_sec .wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .aboutus_message_sec .wrapper .image {
    width: 100%;
    margin: 0 auto;
    max-width: 500px;
  }

  .aboutus_message_sec .wrapper .text {
    width: 100%;
  }

  .aboutus_message_sec .big_text {
    bottom: 0;

  }

}

/*flow*/
.flow_list_sec {
  padding: 70px 0 80px;
}

.flow_list_sec ol li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 30px 40px;
  gap: 40px;
  background-color: var(--back-gray);
}

.flow_list_sec ol li:not(:last-of-type) {
  margin-bottom: 80px;
}

.flow_list_sec ol li:not(:last-of-type)::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 68px solid transparent;
  border-left: 68px solid transparent;
  border-top: 32px solid #929ba8;
  border-bottom: 0;
  position: absolute;
  top: calc(100% + 25px);
  left: 50%;
  transform: translateX(-50%);
}

.flow_list_sec ol li figure {
  width: 120px;
}

.flow_list_sec ol li .text {
  flex: 1;
}

.flow_list_sec ol li .text h3 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

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

  .flow_list_sec {
    padding: 40px 0;
  }

  .flow_list_sec ol li {
    flex-direction: column;
    padding: 20px 20px;
    gap: 20px;
  }

  .flow_list_sec ol li:not(:last-of-type) {
    margin-bottom: 30px;
  }

  .flow_list_sec ol li:not(:last-of-type)::after {
    border-right: 34px solid transparent;
    border-left: 34px solid transparent;
    border-top: 16px solid #929ba8;
    top: calc(100% + 9px);
  }

  .flow_list_sec ol li figure {
    width: 90px;
  }

  .flow_list_sec ol li .text {
    width: 100%;
  }

  .flow_list_sec ol li .text h3 {
    font-size: 2rem;
  }
}

/*payment*/
.flow_payment_sec {
  padding: 80px 0;
}

.flow_payment_sec .payment_table {
  margin-bottom: 40px;
}

.flow_payment_sec .payment_table table {
  width: 100%;
}

.flow_payment_sec .payment_table table tbody tr:not(:last-of-type) {
  border-bottom: 1px solid var(--border-gray);
}

.flow_payment_sec .payment_table table th,
.flow_payment_sec .payment_table table td {
  padding: 30px 35px;
  vertical-align: middle;
}

.flow_payment_sec .payment_table table th {
  background-color: var(--navy);
  color: white;
  text-align: center;
}

.flow_payment_sec .payment_table table td {
  background-color: white;
}

.flow_payment_sec dl dt {
  display: flex;
  align-items: center;
  color: var(--navy);
  font-size: 2rem;
  gap: 10px;
  margin-bottom: 10px;

}

.flow_payment_sec dl dt::before {
  content: '';
  width: 16px;
  height: 16px;
  background-color: var(--navy);
  border-radius: 50%;
}

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

  .flow_payment_sec {
    padding: 40px 0;
  }

  .flow_payment_sec .payment_table {
    margin-bottom: 20px;
  }

  .flow_payment_sec .payment_table table th,
  .flow_payment_sec .payment_table table td {
    padding: 20px 10px;
    font-size: 1.4rem;
  }

  .flow_payment_sec dl dt {
    font-size: 1.8rem;
  }


}



/*****single*****/
.single_page {
  padding: 80px 0;
}

.single_wrapper {
  max-width: 1000px;
}

.single_page .wrapper {
  background-color: var(--back-gray);
}

.single_page .single_title {
  font-size: 1.8rem;
  font-weight: 900;
  /* color: #fff; */
  /* background: #3b4f64; */
  background-color: var(--border-gray);
  background-color: var(--navy);
  color: white;
  letter-spacing: 0.2em;
  padding: 15px 20px;
}

.single_page .single_content {
  padding: 30px 20px;
}

.single_page .single_content>* {
  margin-bottom: 5px;
}

.single_page .single_content a {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.single_page .single_content h2 {
  background-color: var(--navy);
  color: white;
  padding: 15px 20px;
  font-size: 2rem;
}

.single_page .single_content h3 {
  border-left: 5px solid var(--navy);
  font-size: 1.8rem;
}


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

  .single_wrapper {
    width: calc(100% - 20px);
  }

  .single_page {
    padding: 40px 0;
  }

  .single_page .single_title {
    font-size: 1.6rem;
    padding: 10px;
  }

  .single_page .single_content {
    padding: 20px 10px;
  }

}


/*link*/
.single_links_sec .wrapper {
  max-width: 1000px;
}

.single_links_sec .box {
  padding: 40px;
}

.single_links_sec .box .ex {
  margin-bottom: 30px;
}

.single_links_sec .box h3 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 2.6rem;
}

.single_links_sec .box .contact_list_list {
  display: flex;
  gap: 20px;
}

.single_links_sec .box .contact_list_list a {
  width: calc(100% / 3 - 40px / 3);
  background-color: var(--navy);
  color: white;
  padding: 20px 15px;
  gap: 10px;
}

.single_links_sec .box .contact_list_list a:not(:last-of-type) {
  margin-bottom: 0;
}



.single_links_sec .box .contact_list_list a figure {
  width: 40px;
}


.single_links_sec .box .contact_list_list a p {
  font-size: 1.6rem;
  font-weight: bold;
}

.single_links_sec .box .contact_list_list a .box_text.tel_text .num {
  font-size: 2rem;
}

.single_links_sec .box .contact_list_list a .box_text.tel_text .add {
  font-size: 1.2rem;
}

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

  .single_links_sec .box {
    padding: 30px 20px;
  }

  .single_links_sec .box .ex {
    margin-bottom: 20px;
  }

  .single_links_sec .box h3 {
    margin-bottom: 20px;
    font-size: 2.2rem;
  }

  .single_links_sec .box .contact_list_list {
    flex-wrap: wrap;
    align-items: center;
  }

  .single_links_sec .box .contact_list_list a {
    width: 100%;
    max-width: 350px;
    padding: 20px 15px;
    gap: 10px;
  }




}

/*subyoutube*/
.top_pr_sec.sub_page {
  padding: 80px 0;
}

@media screen and (max-width: 800px) {
  .top_pr_sec.sub_page {
    padding: 40px 0;
  }

}


/***news list***/
.news_list_page_sec {
  padding: 80px 0;
}

@media screen and (max-width: 800px) {
  .news_list_page_sec {
    padding: 40px 0;
  }

}


/***固定ページ***/
.original_single_page {
  padding: 80px 0;
}


.original_single_page ul.wp-block-list {
  list-style-position: inside;
  list-style-type: disc;
  text-indent: -1.5em;
  padding-left: 2em;
  padding-top: 1em;
  word-break: break-all;
}

.original_single_page p a {
  color: blue;
  text-decoration: underline;
}

@media screen and (max-width: 800px) {
  .original_single_page {
    padding: 40px 0;
  }


}


/***company***/


/*table*/
.company_table table th,
.company_table table td {
  padding: 20px 20px;
  font-size: 1.8rem;
  border: 1px solid var(--border-gray);
}

.company_table table thead th {
  background-color: var(--navy);
  color: white;
  text-align: center;
}

.company_table table tbody th {
  background-color: #1651A3;
  color: white;
  text-align: center;
}

.company_table table tbody td {
  background-color: var(--back-gray);
}

.company_table table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

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

  .company_table table th,
  .company_table table td {
    padding: 10px 10px;
    font-size: 1.5rem;
    vertical-align: middle;
  }

  .original_single_page .wp-block-spacer {
    height: 30px !important;
    margin-bottom: 0 !important;
  }

}


/*access*/
.aboutus_appeal_sec.sub_page .holdings_list {
  margin: 0;
}

.aboutus_appeal_sec.sub_page .holdings_list li {
  width: calc(100% / 3);
}

.aboutus_appeal_sec.sub_page .holdings_list .wide {
  width: 100%;
  margin-bottom: 30px;
  flex-direction: row;
  align-items: stretch;
}

.aboutus_appeal_sec.sub_page .holdings_list .wide .left,
.aboutus_appeal_sec.sub_page .holdings_list .wide .right {
  width: 50%;
}

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

.aboutus_appeal_sec.sub_page .holdings_list .wide .gmap {
  height: 100%;
  padding-bottom: 0;
}



.aboutus_appeal_sec.sub_page .holdings_list .gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.aboutus_appeal_sec.sub_page .holdings_list li:not(.wide) .text {
  padding: 30px 0 0;
}

.aboutus_appeal_sec.sub_page .holdings_list .wide .text .address {
  margin-bottom: 0;
}

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

  .aboutus_appeal_sec.sub_page .holdings_list li {
    width: 100%;
  }

  .aboutus_appeal_sec.sub_page .holdings_list .wide {
    display: block;
    margin-bottom: 0;
  }

  .aboutus_appeal_sec.sub_page .holdings_list .wide .left,
  .aboutus_appeal_sec.sub_page .holdings_list .wide .right {
    width: 100%;
  }
}


/***single系***/
.original_single_page .wrapper {
  max-width: 1000px;
}

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

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

.original_single_page .wrapper>* {
  margin-bottom: 20px;
}

.contact_list_list.contact_pages {
  max-width: 600px;
  margin: 30px auto;
}

.contact_flow_box {
  display: flex;
  max-width: 800px;
  margin: 30px auto;
  justify-content: center;
}

.contact_flow_box p {
  width: calc(100% / 3);
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  border: 1px solid var(--border-gray);
  position: relative;
}



.contact_flow_box p.on {
  background-color: var(--navy);
  color: white;
  border: 1px solid var(--navy);
}

.contact_flow_box p:not(:last-of-type)::before {
  content: '';
  width: 42px;
  height: 42px;
  border-top: 1px solid var(--border-gray);
  border-right: 1px solid var(--border-gray);
  background-color: white;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%) rotate(45deg);
  z-index: 2;
}

.contact_flow_box p.on::before {
  background-color: var(--navy);
}

.contact_flow_box p:last-of-type.on::before {
  display: none;
}

.mw_wp_form {
  max-width: 800px;
  margin: 0 auto;
}

#formTable {

  width: 100%;

}

#formTable th,
#formTable td {
  padding: 15px 0;
}

#formTable th {
  width: 240px;
}

#formTable td {
  padding-left: 30px;
}

#formTable input,
#formTable textarea,
#formTable select {
  width: 100%;
  padding: 10px;
  font-size: 1.6rem;
}

#formTable textarea {
  min-height: 200px;
}

#formTable th label {
  display: block;
  position: relative;

}

#formTable th label b {
  background-color: red;
  color: white;
  padding: 2px 10px;
  position: absolute;
  top: 0;
  right: 0;
}

.mw_wp_form .privacy {
  margin: 40px 100px;
  height: 200px;
  padding: 20px;
  border: 1px solid var(--border-gray);
  background: var(--back-gray);
  overflow-y: scroll;
}

.mw_wp_form .privacy h4 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.mw_wp_form .privacy p:not(:last-of-type) {
  margin-bottom: 30px;
}

.mw_wp_form .agree {
  margin-bottom: 40px;
  display: flex;
  justify-content: center
}

.mw_wp_form .confirm_send {
  width: 250px;
  height: 54px;
  display: flex;
  align-items: center;
  padding: 17px 30px;
  color: white;
  background-color: var(--navy);
  margin: 0 auto;
}

.mw_wp_form_confirm .privacy,
.mw_wp_form_confirm .agree {
  display: none;
}

.mw_wp_form_confirm #formTable {
  margin-bottom: 30px;
}

.mw_wp_form .back_btn {
  width: 200px;
  height: 54px;
  display: flex;
  align-items: center;
  padding: 5px 30px;
  background-color: var(--back-gray);
  margin: 0 auto;
  margin-top: 20px;
}

#formTable select,
#formTable option {
  font-size: 1.6rem;
}


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

  .contact_flow_box p {
    width: calc(100% / 3);
    height: 32px;
    font-size: 1rem;
  }

  .contact_flow_box p:not(:last-of-type)::before {
    width: 23px;
    height: 23px;
    background: linear-gradient(45deg, transparent 0%, transparent 50%, white 50%);
  }

  .contact_flow_box p.on::before {
    background: linear-gradient(45deg, transparent 0%, transparent 50%, var(--navy) 50%);
  }

  #formTable th,
  #formTable td {
    display: block;
    width: 100%;
    padding: 0px 0;
  }

  #formTable th label b {
    position: relative;
    margin-left: 20px;
  }

  #formTable td {
    padding: 10px 0 20px;
  }


  .mw_wp_form .privacy {
    margin: 20px 0px;
  }

  .mw_wp_form .privacy h4 {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }


}




/***sheetmetal***/
/*top*/
.sheetmetal_top_sec {
  padding: 80px 0;
}

.sheetmetal_top_sec .banner {
  position: relative;
  padding: 70px 0;
  background-image:
    url("../img/sheetmetal_top_back.jpg");
  background-color: #939292; /* オーバーレイ用の色 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  color: #fff;
  text-align: center;
}

.sheetmetal_top_sec .banner .before_text {
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  gap: 10px;
  z-index: 1;
}

.sheetmetal_top_sec .banner .before_text::before,
.sheetmetal_top_sec .banner .before_text::after {
  content: '';
  width: 1px;
  height: 25px;
  background-color: white;
}

.sheetmetal_top_sec .banner .before_text::before {
  transform: rotate(-45deg);
}
.sheetmetal_top_sec .banner .before_text::after {
  transform: rotate(45deg);
}

.sheetmetal_top_sec .banner h2 {
  font-size: 6rem;
  font-weight: 900;
  margin-bottom: 30px;
  z-index: 1;
}

.sheetmetal_top_sec .banner .label_text {
  background-color: white;
  font-size: 2rem;
  color: var(--font-color);
  padding: 2px 10px;
  display: inline-block;
  font-weight: 500;
  z-index: 1;
}

.sheetmetal_top_sec .banner figure {
  position: absolute;
  right: 40px;
  top: -40px;
  max-width: 174px;
  width: 20%;
}
@media screen and (max-width: 800px) {

  .sheetmetal_top_sec {
    padding: 60px 0;
  }

  .sheetmetal_top_sec .banner {
  padding: 50px 0 30px;
}
.sheetmetal_top_sec .banner .before_text {
  font-size: 1.6rem;
  margin-bottom: 10px;
  gap: 10px;
  z-index: 1;
}
.sheetmetal_top_sec .banner .before_text::before,
.sheetmetal_top_sec .banner .before_text::after {
  display: none;
}

.sheetmetal_top_sec .banner h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.sheetmetal_top_sec .banner .label_text {
  font-size: 1.6rem;
  padding: 2px 8px;
}

.sheetmetal_top_sec .banner figure {
  right: 20px;
  top: -50px;
  width: 88px;
}

}


/*promise*/
.sheetmetal_promise_sec {
  padding: 80px 0;
}

.sheetmetal_promise_sec .promise_list .promise_box {
  padding: 0px 70px 80px;
  background-color: white;
  position: relative;
}

.sheetmetal_promise_sec .promise_list .promise_box:not(:last-of-type) {
  margin-bottom: 100px;
}

.promise_list .promise_box .box_num {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, transparent 50%, var(--navy) 50%);
  padding: 14px 30px;
  font-size: 7rem;
  font-family: korolev, sans-serif;
  font-weight: 500;
  font-style: normal;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  color: white;
  position: absolute;
  top: 0;
  right: 0;
  line-height: 1;
}


.promise_list .promise_box .promise_top {
  padding: 80px 20px 30px;
  background: url(../img/promise_top_back.png) left center / contain no-repeat;
  border-bottom: 1px solid var(--border-gray);
  margin: 0 -20px 50px;
  position: relative;
}

.promise_list .promise_box .promise_top .text .num {
  font-size: 2rem;
  font-family: korolev, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: var(--navy);
  margin-bottom: 15px;
}

.promise_list .promise_box .promise_top .text h3 {
  font-size: 3.6rem;
  position: relative;
  z-index: 1;
}

.promise_list .promise_box .promise_top .english {
  position: absolute;
  bottom: 10px;
  right: 0;
}

.promise_list .promise_box .promise_top .english p {
  font-size: 10rem;
  font-size: min(10rem, 9vw);
  font-family: korolev, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  color: rgba(209, 213, 217, 0.23);
}

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

  .sheetmetal_promise_sec {
    padding: 30px 0;
  }
  .sheetmetal_promise_sec .promise_list .promise_box {
    padding: 0px 20px 30px;
  }
  .sheetmetal_promise_sec .promise_list .promise_box:not(:last-of-type) {
  margin-bottom: 40px;
}

.promise_list .promise_box .box_num {
  width: 100px;
  height: 100px;
  padding: 7px 15px;
  font-size: 3.5rem;
}

.promise_list .promise_box .promise_top {
  padding: 30px 20px 10px;
  margin: 0 -20px 30px;
}

.promise_list .promise_box .promise_top .text .num {
  font-size: 1.6rem;
  margin-bottom: 5px;
}
.promise_list .promise_box .promise_top .text h3 {
  font-size: 2.6rem;
  margin-bottom: 5px;
}
.promise_list .promise_box .promise_top .english {
  position: relative;
  bottom: inherit;
}

.promise_list .promise_box .promise_top .english p br {
  display: none;
}



}

/*01 two colums*/
.promise_01_twocolumn {
  display: flex;
  gap: 50px;
  margin-bottom: 55px;
}

.promise_01_twocolumn .text {
  width: calc(50% - 50px);
}

.promise_01_twocolumn .image {
  width: 50%;
}

.promise_01_twocolumn .text h4 {
  font-size: 2.6rem;
  margin-bottom: 30px;
}

.promise_01_twocolumn .text .ex {
  margin-bottom: 35px;
}

.promise_01_twocolumn .text ul li {
  display: flex;
  background-color: var(--back-gray);
  padding: 20px 25px;
  gap: 20px;
  align-items: center;
}

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

.promise_01_twocolumn .text ul li figure {
  width: 66px;
}

.promise_01_twocolumn .text ul li > div {
  flex: 1;
}

.promise_01_twocolumn .text ul li h5 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.promise_01_twocolumn .text ul li p {
  font-size: 1.4rem;
}


@media screen and (max-width: 800px) {
.promise_01_twocolumn {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.promise_01_twocolumn .text {
  width: 100%;
}
.promise_01_twocolumn .image {
  width: 100%;
  max-width: 600px;
}
.promise_01_twocolumn .text h4 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.promise_01_twocolumn .text .ex {
  margin-bottom: 20px;
}
.promise_01_twocolumn .text ul li {
  padding: 20px 15px;
  gap: 10px;
}
.promise_01_twocolumn .text ul li:not(:last-of-type) {
  margin-bottom: 10px;
}
.promise_01_twocolumn .text ul li figure {
  width: 55px;
}
.promise_01_twocolumn .text ul li h5 {
  margin-bottom: 5px;
}

}

/*logo slider*/
.promise_slider {
  padding: 40px 0;
  text-align: center;
  margin: 0 -70px 55px;
}

.promise_slider h4 {
  margin-bottom: 30px;
}

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

.promise_slider {
  padding: 30px 0;
  margin: 0 -20px 30px;
}
.promise_slider h4 {
  margin-bottom: 20px;
}
}

/*会社一覧*/

.promise_01_companies {
  margin-bottom: 70px;
}

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


.promise_01_companies {
  margin-bottom: 30px;
}
}

/*特徴一覧*/
.promise_feature_list {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}

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

.promise_feature_list li .num {
  font-size: 2rem;
  font-family: korolev, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: var(--navy);
  margin-bottom: 15px;
}

.promise_feature_list li figure {
  background-color: var(--back-gray);
  margin-bottom: 30px;
  width: 100%;
  height: 0;
  padding-bottom: 67%;
  position: relative;
}

.promise_feature_list li figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 79%;
  height: 85%;
  object-fit: contain;
  object-position: center;
}

.promise_feature_list li h4 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.promise_feature_list li .ex {
  font-size: 1.4rem;
}
@media screen and (max-width: 800px) {

  .promise_feature_list {
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 20px;
}
.promise_feature_list li {
  width: 100%;
  max-width: 400px;
}
.promise_feature_list li .num {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.promise_feature_list li figure {
  margin-bottom:15px;
}
.promise_feature_list li h4 {
  margin-bottom: 10px;
}

}

/*01 bottom*/
.promise_01_bottom {
  padding: 120px 70px 50px;
  margin: 0 -70px 0;
  position: relative; 

  position: relative;
  background-image:
    url(../img/promise_01_bottom.png);
  background-color: var(--navy); /* オーバーレイ用の色 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: hard-light;
  color: #fff;
  text-align: center;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.promise_01_bottom::before,
.promise_01_bottom::after {
  position: absolute;
  content: '';
  width: 50%;
  height: 70px;
  top: 0;
}

.promise_01_bottom::before {
  left: 0;
  background: linear-gradient(6deg, transparent 50%, white 50%);
}

.promise_01_bottom::after {
  right: 0;
  background: linear-gradient(-6deg, transparent 50%, white 50%);
}

.promise_01_bottom .box {
  border: 1px solid white;
  padding: 60px 10px;
  text-align: center;
  width: calc(100% / 2 - 20px / 2);
  color: white;
}

.promise_01_bottom .box h4 {
  background-color: white;
  color: var(--navy);
  max-width: 200px;
  margin: 0 auto 20px;
  font-size: 2rem;
}



@media screen and (max-width: 800px) {
.promise_01_bottom {
  padding: 60px 20px 30px;
  margin: 0 -20px 0;

  gap: 20px;
}

.promise_01_bottom .box  {
  width: 100%;
  max-width: 400px;
  
}

}



/*system*/
.primise_system_list li {
  display: flex;
  align-items: center;
  gap: 50px;
}

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

.primise_system_list li .image {
  width: 40%;
}

.primise_system_list li .text {
  flex: 1;
}


.primise_system_list li .text h4 {
  font-size: 2.4rem;
  margin-bottom: 25px;
}

.primise_system_list li .text h5 {
  display: inline-block;
  background-color: var(--navy);
  color: white;
  font-size: 1.8rem;
  margin-top: 25px;
  padding: 2px 5px;
}

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


  .primise_system_list li {
    flex-direction: column;
    gap: 15px;
  }

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

.primise_system_list li .image {
  width: 100%;
  max-width: 600px;
}
.primise_system_list li .text h4 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.primise_system_list li .text h5 {
  font-size: 1.5rem;
  margin-top: 10px;
}

}

/*report slider */
.report_slider_box .ex {
  font-size: 1.8rem;
  margin-bottom: 50px;
}

.report_slider_box .report_slider {
  margin-right: -70px;
}

.report_slider_box .report_slider .image_box figure {
  width: 300px;
  margin-right: 30px;
}



.report_slider .slick-prev,
.report_slider .slick-next {
    width: 50px;
    height: 50px;
    border: 1px solid #083172;
    border-radius: 50%;
    top: inherit;
    bottom: calc(-50px - 40px);
}

.report_slider .slick-prev {
    left: 0;
}

.report_slider .slick-next {
    left:  calc(20px + 50px);
    right: inherit;
}

.report_slider .slick-prev:before,
.report_slider .slick-next:before {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    border-top: 1px solid #083172;
    content: '';
}

.report_slider .slick-prev:before {
    border-left: 1px solid #083172;
    transform: translate(-50%, -50%) rotate(-45deg);
    left: calc(50% + 5px);

}

.report_slider .slick-next:before {
    border-right: 1px solid #083172;
    transform: translate(-50%, -50%) rotate(45deg);
    left: calc(50% - 2px);
}

.report_slider .slick-dots {
  display: flex;
  justify-content: flex-end;
  padding-right: 70px;
}

.report_slider .slick-dots li {
  width: 10px;
  height: 10px;
}
.report_slider .slick-dots li button {
  border: 1px solid var(--navy);
  width: 10px;
  height: 10px;
  border-radius: 10px;
}

.report_slider .slick-dots li button {
  border: 1px solid var(--navy);
}
.report_slider .slick-dots li.slick-active button {
  background-color: var(--navy);
}
@media screen and (max-width: 800px) {
.report_slider_box {
  padding-bottom: 30px;
}
  .report_slider_box .ex {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.report_slider_box .report_slider {
  margin-right: -20px;
}

.report_slider_box .report_slider .image_box figure {
  width: 150px;
  margin-right: 20px;
}
.report_slider .slick-prev,
.report_slider .slick-next {
    width: 30px;
    height: 30px;
    bottom: calc(-60px);
}

.report_slider .slick-next {
    left:  calc(20px + 20px);
}
.report_slider .slick-prev:before,
.report_slider .slick-next:before {
    width: 6px;
    height: 6px;
}

.report_slider .slick-prev:before {
    left: calc(50% + 1px);
}
.report_slider .slick-next:before {
    left: calc(50% - 0px);
}
.report_slider .slick-dots {
  padding-right: 20px;
}

.report_slider .slick-dots li {
  width: 5px;
  height: 5px;
}
.report_slider .slick-dots li button {
  width: 5px;
  height: 5px;
}


}


/*compair*/
.promise_compair {
  margin-bottom: 60px;
}

.promise_compair .compair_box {
  padding: 50px;
  position: relative;
  text-align: center;
}

.promise_compair .compair_box h4 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.promise_compair .compair_box .three_columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 840px;
  margin: 0 auto;
}


.promise_compair .compair_box .three_columns .box {
  width: 25%;
  position: relative;
}
.promise_compair .compair_dealer .three_columns .box:not(:last-of-type)::before,
.promise_compair .compair_dealer .three_columns .box:not(:last-of-type)::after {
  content: '';
  position: absolute;
  top: calc(50% - 25px);
  transform: translateY(-50%);
}
.promise_compair .compair_dealer .three_columns .box:not(:last-of-type)::before {
    width: 22%;
    height: 25px;
    background-color: #929BA8;
    left: calc(100% + 8%);
}

.promise_compair .compair_dealer .three_columns .box:not(:last-of-type)::after {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, transparent 50%, #929BA8 50%);
  transform: translateY(-50%) rotate(45deg);
  left: calc(100% + 20%);
}

.promise_compair .compair_box .three_columns .box figure {
  margin-bottom: 20px;
}

.promise_compair .compair_box .three_columns .box p {
  font-size: 1.8rem;
  font-weight: 500;
}


.promise_compair .compair_stepmotors {
  padding-top: 120px;
}
.promise_compair .compair_dealer {
  padding-bottom: 20px;
}
.promise_compair .compair_dealer::before,
.promise_compair .compair_dealer::after {
  position: absolute;
  content: '';
  width: 50%;
  height: 70px;
  top: 100%;
  z-index: 1;
}

.promise_compair .compair_dealer::before {
  left: 0;
  background: linear-gradient(6deg, transparent 50%, var(--back-gray) 50%);
}

.promise_compair .compair_dealer::after {
  right: 0;
  background: linear-gradient(-6deg, transparent 50%, var(--back-gray) 50%);
}


.promise_compair .compair_stepmotors::before,
.promise_compair .compair_stepmotors::after {
  content: 'STEP MOTORS';
  font-size: 7.3rem;
  font-family: korolev, sans-serif;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  top: 50%;
  color: rgba(209, 213, 217, 0.23);
}

.promise_compair .compair_stepmotors::before {
  left: 40px;
  transform: translate(-50%, -50%) rotate(-90deg);
}
.promise_compair .compair_stepmotors::after {
  right: 40px;
  transform: translate(50%, -50%) rotate(90deg);
}



.promise_compair .compair_stepmotors .arrow_box {
  width: 35%;
}

.promise_compair .compair_stepmotors .arrow_box p {
  color: #FFF724;
  font-size: 1.8rem;
  font-weight: bold;
  padding-top: 72px;
  position: relative;
}
.promise_compair .compair_stepmotors .arrow_box p::before,
.promise_compair .compair_stepmotors .arrow_box p::after {
  content: '';
  position: absolute;
}
.promise_compair .compair_stepmotors .arrow_box p::before {
    width: calc(100% - 30px);
    height: 28px;
    background-color: #FFF724;
    left: 0;
    top: 17px;
}

.promise_compair .compair_stepmotors .arrow_box p::after {
  width: 43px;
  height: 43px;
  background: linear-gradient(45deg, transparent 50%, #FFF724 50%);
  right: 0;
  top: 0px;
  transform: rotate(45deg);
  right: -10px;
  transform-origin: top left;
}

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

.promise_compair {
  margin-bottom: 30px;
}
.promise_compair .compair_box {
  padding: 30px 20px;
}
.promise_compair .compair_box h4 {
  font-size: 2.2rem;
}
.promise_compair .compair_box .three_columns {
  flex-direction: column;
  gap: 60px;
}
.promise_compair .compair_box .three_columns .box {
  width: 70%;
  max-width: 400px;
}
.promise_compair .compair_dealer .three_columns .box:not(:last-of-type)::before,
.promise_compair .compair_dealer .three_columns .box:not(:last-of-type)::after {
  top: inherit;
  transform: translateX(-50%);
}

.promise_compair .compair_dealer .three_columns .box:not(:last-of-type)::before {
  left: 50%;
  top: calc(100% + 5px);
    width: 30px;
    height: 20px;
}
.promise_compair .compair_dealer .three_columns .box:not(:last-of-type)::after {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, transparent 50%, #929BA8 50%);
  transform: translateX(-50%) rotate(135deg);
  left: 50%;
  top: calc(100%);
}
.promise_compair .compair_box .three_columns .box figure {
  margin-bottom: 10px;
}
.promise_compair .compair_box .three_columns .box p {
  font-size: 1.6rem;
  padding-bottom: 10px;
}

.promise_compair .compair_stepmotors {
  padding-top: 60px;
}
.promise_compair .compair_dealer {
  padding-bottom: 10px;
}
.promise_compair .compair_stepmotors::before,
.promise_compair .compair_stepmotors::after {
  /* display: none; */
  font-size: 3rem;
}
.promise_compair .compair_stepmotors::before {
  left: 20px;
}
.promise_compair .compair_stepmotors::after {
  right: 20px;
}

.promise_compair .compair_stepmotors .arrow_box {
  width: 100%;
}

.promise_compair .compair_stepmotors .arrow_box p {
  padding-top: 0;
  padding-bottom: 70px;
}
.promise_compair .compair_stepmotors .arrow_box p::before {
    width: 40px;
    height: 30px;
    top: inherit;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);  
  }

  .promise_compair .compair_stepmotors .arrow_box p::after {
  width: 43px;
  height: 43px;
  background: linear-gradient(45deg, transparent 50%, #FFF724 50%);
  right: inherit;
  top: inherit;
  bottom: -0px;
  left: 50%;
  transform: rotate(135deg) translateX(-50%);
  transform-origin: 0% 50%;
}

}

/*strength*/
.promise_strongth .box {
  display: flex;
  gap: 50px;
  align-items: center;
}

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

.promise_strongth .box:nth-of-type(2n + 1) {
  flex-direction: row-reverse;
}

.promise_strongth .box .image {
  width: calc(53% - 50px);
}

.promise_strongth .box .text {
  width: 60%;
}

.promise_strongth .box .text .campaign {
  background-color: #FFF724;
  padding: 2px 5px;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 10px;
  display: inline-block;
}

.promise_strongth .box .text h4 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {

  .promise_strongth .box,
  .promise_strongth .box:nth-of-type(2n + 1) {
  flex-direction: column-reverse;
  gap: 20px;
}
.promise_strongth .box:not(:last-of-type) {
  margin-bottom: 40px;
}
.promise_strongth .box .image {
  width: 100%;
  max-width: 600px;
}
.promise_strongth .box .text {
  width: 100%;
}

.promise_strongth .box .text .campaign {
  font-size: 2rem;
}
.promise_strongth .box .text h4 {
  font-size: 2rem;
  margin-bottom: 10px;
}

}

/*flow*/
.promise_flow_sec ol h3,
.promise_flow_sec ol li p{
  color: var(--font-color);
}

.promise_flow_sec ol li p span {
  font-weight: bold;
  color: var(--navy);
  background: linear-gradient(180deg, transparent 50%, #FFF724 50%);
}

.promise_flow_sec .flow_cta {
  margin-top: 70px;
  text-align: center;
}

.promise_flow_sec .flow_cta h4 {
  font-size: 2.4rem;
  margin-bottom: 30px;
}

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



.promise_flow_sec .flow_cta {
  margin-top: 30px;
  text-align: center;
}
.promise_flow_sec .flow_cta h4 {
  font-size: 2rem;
  margin-bottom: 20px;
}

}