/* section1 */
.hp_title {
  text-align: center;
}
.hp_title .txt_h1 {
  padding: 10px;
  font-size: 5vw;
  font-family: "Montserrat", sans-serif;
}
.hp_title .hp_title_logo img {
  width: 150px;
  padding: 5px;
  mix-blend-mode: multiply;
}

/*section2*/
.greet {
  padding: 0 28px;
}
.greet img {
  width: 100%;
}
.greet .greeting_txt {
  line-height: 1.5;
  padding: 20px 0 80px;
}

/* section3 */
.reason {
  background: linear-gradient(135deg, #F19000 25%, transparent 25%) -20px 0/40px 40px, linear-gradient(225deg, #F19000 25%, transparent 25%) -20px 0/40px 40px, linear-gradient(315deg, rgba(255, 193, 7, 0.3333333333) 25%, transparent 25%) 0px 0/40px 40px, linear-gradient(45deg, #F19000 25%, #F19000 25%) 0px 0/40px 40px;
  padding: 30px 0;
}
.reason .reason_img img {
  width: 100%;
}
.reason .reason_box {
  background-color: #FFF;
  margin: 30px 28px;
}
.reason .reason_box .txt_design {
  font-size: 1.5rem;
  text-align: center;
  padding: 50px 0;
  font-weight: bolder;
}
.reason .reason_box .txt_design span {
  font-size: 2rem;
  color: black;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #F19000));
  background: linear-gradient(transparent 50%, #F19000 50%);
  padding: 0 0.1em;
}
.reason .reason_box p {
  padding: 0 30px 30px 30px;
}

/* section4 */
.servece .service_btn {
  margin: 0 auto;
  max-width: 800px;
  position: relative;
  padding: 20px;
}
.servece .service_btn a {
  display: block;
  position: relative;
  overflow: hidden;
}
.servece .service_btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.servece .service_btn a:hover::before {
  opacity: 1;
}
.servece .service_btn img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 180px;
}
.servece .service_btn .service_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  width: 80%;
  text-align: center;
  z-index: 1;
}

/* case */
.case {
  padding: 50px 20px;
  background-color: #FFF;
}
.case .case_wrap {
  max-width: 800px;
  margin: 0 auto;
}
.case .case_wrap .before-after-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto;
}
.case .case_wrap .image-wrapper {
  position: relative;
  max-width: 45%;
}
.case .case_wrap .before-image,
.case .case_wrap .after-image {
  width: 100%;
  height: auto;
  display: block;
}
.case .case_wrap .image-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  font-size: 14px;
}
.case .case_wrap .arrow {
  font-size: 5vw;
  color: #F19000;
}
.case .case_wrap .case_p {
  padding: 30px 0;
}
.case .case_wrap .case_btn {
  width: 250px;
  margin: 0 auto;
  background-color: #F19000;
  text-align: center;
  border-radius: 10px;
  margin-top: 30px;
  padding: 10px;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}
.case .case_wrap .case_bn {
  color: #FFF;
  text-decoration: none;
}

/* section5 */
.flow {
  padding: 50px 0;
  background-color: #f6f6f6;
}
.flow .flowchart {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  counter-reset: step;
}
.flow .flowchart li {
  counter-increment: step;
  position: relative;
  margin-bottom: 60px;
}
.flow .flowchart li::before {
  content: counter(step);
  display: block;
  width: 40px;
  height: 40px;
  background-color: #F19000;
  color: #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 5%;
  margin-left: 30px;
}
@media not all and (min-width: 568px) {
  .flow .flowchart li::before {
    left: 0;
  }
}
.flow .flowchart .flowchart-content {
  padding: 0 10%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.flow .flowchart .flowchart-content .flowchart-title {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 5px 10% 5%;
}
@media not all and (min-width: 568px) {
  .flow .flowchart .flowchart-content .flowchart-title {
    padding: 5px 13% 5%;
  }
}
.flow .flowchart .flowchart-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

/* section6 */
.contact .form_txt {
  text-align: center;
  padding: 0 30px 30px;
}
.contact .form_txt span {
  font-weight: bold;
}
.contact .contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 50px;
  border-radius: 8px;
}
.contact .contact-form h2 {
  text-align: center;
  margin-bottom: 24px;
}
.contact .contact-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact .contact-form .form-group {
  margin-bottom: 16px;
}
.contact .contact-form .form-group label {
  display: block;
  margin-bottom: 4px;
  font-weight: bold;
}
.contact .contact-form .form-group input,
.contact .contact-form .form-group select,
.contact .contact-form .form-group textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.contact .contact-form button {
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding: 8px 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.contact .contact-form button:hover {
  background-color: #0056b3;
}/*# sourceMappingURL=style.css.map */