@charset "utf-8";
/*------------ about-editor ------------*/
.a_layout {
  max-width: 1035px;
  margin: 0 auto;
  color: #4c4c4c;
  font-size: 16px;
}
.a_layout p {
  margin: 0;
  line-height: 1.8;
}
.a_layout .row {
  display: flex;
}
.a_layout .a-1 {
  padding: 0 35px 35px;
  position: relative;
  margin-bottom: 70px;
  margin-top: 50px;
}
.a_layout .a-1::before {
  content: "";
  display: block;
  background: #f2f2f2;
  width: 100%;
  height: calc(100% - 106px);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.a_layout .a-1 .col:nth-child(1) {
  width: 50%;
  box-sizing: border-box;
}
.a_layout .a-1 .col:nth-child(2) {
  width: 50%;
  box-sizing: border-box;
  padding-left: 45px;
  padding-right: 15px;
}
.a_layout .a-1 .col:nth-child(2) .tit {
  position: relative;
  position: relative;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 120px;
  font-weight: bold;
  font-style: italic;
  display: block;
  line-height: 1;
  margin-bottom: 18px;
}
.a_layout .a-1 .col:nth-child(2) .tit::first-letter {
  color: #ea5213;
}
.a_layout .a-1 .col:nth-child(2) h3 {
  margin: 0;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 2px;
}
.a_layout .a-2 .col:nth-child(2) .highlight {
  color: #ea5413;
}
.a_layout .a-2 .row {
  display: flex;
  flex-direction: row-reverse;
}
.a_layout .a-2 .col:nth-child(1) {
  width: 48%;
  box-sizing: border-box;
  padding-right: 0;
}
.a_layout .a-2 .col:nth-child(2) {
  width: 52%;
  box-sizing: border-box;
  padding-right: 38px;
  padding-top: 0;
}
.a_layout .a-2 .col:nth-child(2) .highlight {
  color: #ea5413;
}
@media screen and (max-width: 1200px) {
  .a_layout .a-1 {
    margin-top: 0;
    margin-bottom: 30px;
  }
  .a_layout .a-1 .row {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
  }
  .a_layout .a-1 .col:nth-child(1) {
    width: 100%;
    text-align: center;
  }
  .a_layout .a-1 .col:nth-child(2) {
    padding: 0;
    margin-bottom: 20px;
    width: 100%;
  }
  .a_layout .a-1 .col:nth-child(2) .tit {
    text-align: center;
  }
  .a_layout .a-2 .row {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .a_layout .a-2 .col:nth-child(1) {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  .a_layout .a-2 .col:nth-child(2) {
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
  }
}
@media screen and (max-width: 484px) {
  .a_layout .a-1::before {
    height: calc(100% - 72px);
  }
  .a_layout .a-1 .col:nth-child(2) .tit {
    font-size: 80px;
  }
  .a_layout .a-1 .col:nth-child(2) h3 {
    font-size: 25px;
    letter-spacing: 1px;
  }
}
/*------------ service-editor ------------*/
.s_layout {
  display: flex;
  gap: 0;
  margin: 0;
  justify-content: center;
}
.s_layout .s_item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  clip-path: polygon(35% 0%, 100% 0, 65% 100%, 0% 100%);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  margin: 0 -70px;
}
.s_layout .s_item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}
.s_layout .s_item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  opacity: 0.9;
  z-index: 1;
}
.s_layout .s_item .txt {
  position: absolute;
  bottom: 20px;
  left: 65px;
  color: #fff;
  z-index: 2;
  letter-spacing: 1.5px;
  line-height: 1.6;
}
.s_layout .s_item .txt::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: -35px;
  width: 70px;
  height: 80px;
  background: #ea5413;
  opacity: 0.7;
  clip-path: polygon(45% 0%, 100% 0, 55% 100%, 0% 100%);
  z-index: -1;
}
.s_layout .s_item .txt h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 500;
}
.s_layout .s_item .txt span {
  font-size: 15px;
  letter-spacing: 2px;
  font-weight: normal;
  opacity: 0.8;
}
.s_layout .box .cover {
  font-size: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 30;
}
@media screen and (max-width: 1600px) {
  .s_layout {
    max-width: 1400px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1380px) {
  .s_layout {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
  }
  .s_layout .s_item {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .s_layout {
    max-width: 800px;
  }
  .s_layout .s_item {
    margin: 0;
    margin: 0 -75px;
    margin-bottom: 10px;
    max-width: 450px;
  }
  .s_layout .s_item .txt {
    left: 40px;
  }
  .s_layout .s_item .txt span {
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 767px) {
  .s_layout {
    max-width: unset;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
  .s_layout .s_item {
    clip-path: unset;
    width: 100%;
    margin: 0 -1px;
  }
  .s_layout .s_item .box img {
    min-height: 400px;
    object-fit: cover;
  }
}
/*------------ contact-editor ------------*/
.contact-editor {
  text-align: center;
}
.contact-editor .row {
  display: table;
  width: 100%;
  table-layout: fixed;
  border: 0;
}
.contact-editor .col {
  display: table-cell;
  vertical-align: top;
  padding: 0 15px;
  position: relative;
}
.contact-editor .col + .col:before {
  content: "";
  height: 100%;
  width: 1px;
  position: absolute;
  left: 0;
  top: 0;
  background: #4e547b;
}
.contact-info-txt {
  max-width: 250px;
  margin: 0 auto;
}
.contact-info-txt .img-ic {
  display: inline-block;
  margin-bottom: 20px;
}
.contact-info-txt a:hover {
  color: #74a1fe;
  text-decoration: underline;
}
.info-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 10px;
}
.contact-info-txt .info-icon-box [class^="ic-"] {
  font-size: 20px;
}
/*------------ video-editor ------------*/
.video-editor .pic {
  float: left;
  margin-right: 25px;
}
/*------------ terms-editor ------------*/
.terms-editor {
  font-size: 15px;
  line-height: 2;
}
.terms-editor .title {
  font-size: 17px;
  color: #ea5413;
  margin: 0;
}
.terms-editor p {
  text-indent: 0em;
  margin: 0 0 50px;
}
.terms-editor .row {
  margin: 0 -27px;
}
.terms-editor .col {
  padding: 0 27px;
  width: 50%;
  float: left;
  box-sizing: border-box;
}
/*------------ index-editor ------------*/
/*------------ rwd ------------*/
@media screen and (max-width: 960px) {
  .contact-editor .col {
    float: none;
    padding: 15px 0;
  }
  .contact-editor .row,
  .contact-editor .col {
    display: block;
    width: auto;
  }
  .contact-info-txt .img-ic {
    max-width: 100px;
  }
  .contact-editor .col + .col:before {
    height: 1px;
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  .contact-editor i {
    text-indent: 0px;
    line-height: 35px;
  }
}
@media screen and (max-width: 767px) {
  .terms-editor .row {
    margin: 0;
  }
  .terms-editor .col {
    padding: 0;
    width: 100%;
  }
}
