@charset "UTF-8";
/* --------------------- sec 1 start--------------------- */
.sec_1 .container .wrapper .inner1 .txt_area {
  margin-top: clamp(-70px, -3.65vw, -30px);
  position: relative;
  z-index: 1;
  background: #ffffff;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: clamp(50px, 4.17vw, 80px) 7.81vw; /*180px*/
}
.sec_1 .container .wrapper .inner1 .txt_area h4 {
  font-size: clamp(20px, 1.35vw, 26px);
  line-height: 1.38; /* 36px */
  font-weight: 700;
  word-break: break-all;
}
.sec_1 .container .wrapper .inner1 .txt_area p {
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: 1.6; /* 32px */
  color: #444444;
}
.sec_1 .container .wrapper .inner2 {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/company_bg2.jpg);
}
.sec_1 .container .wrapper .inner2 .txt_area {
  color: #fff;
}
.sec_1 .container .wrapper .inner2 .txt_area h4 {
  color: inherit;
  font-size: clamp(36px, 2.4vw, 46px);
  line-height: 1.3; /* 60px */
  font-weight: 700;
}
.sec_1 .container .wrapper .inner2 .txt_area p {
  font-size: clamp(16px, 0.94vw, 18px);
}

/* --------------------- sec 2 start--------------------- */
.sec_2 .container .wrapper ul {
  border-top: 1px solid #ddd;
}
.sec_2 .container .wrapper ul li {
  border-bottom: 1px dashed #dddddd;
  padding-left: 83px;
  padding-right: 83px;
}
.sec_2 .container .wrapper ul li:last-child {
  border-bottom: 1px solid #ddd;
}
.sec_2 .container .wrapper ul li h5 {
  position: relative;
  font-size: clamp(20px, 1.56vw, 30px);
  line-height: 1.2; /* 36px */
  font-weight: 700;
}
.sec_2 .container .wrapper ul li h5 span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -83px;
  width: 83px;
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 700;
  font-size: clamp(20px, 1.56vw, 30px);
  color: #4380d6;
}
.sec_2 .container .wrapper ul li p {
  font-size: clamp(15px, 0.94vw, 18px);
  line-height: 1.17; /* 21px */
  color: #999;
}

/* --------------------- RWD --------------------- */
@media (max-width: 750px) {
  .sec_1 .container .wrapper .inner1 .txt_area {
    margin-top: clamp(-30px, -12vw, -90px);
    padding: 8vw 6.67vw; /*60px 50px*/
    letter-spacing: -0.1em;
    word-break: break-all;
  }
  .sec_1 .container .wrapper .inner1 .txt_area h4 {
    font-size: clamp(18px, 4.8vw, 36px);
    line-height: 1.44; /* 52px */
  }
  .sec_1 .container .wrapper .inner1 .txt_area p {
    font-size: clamp(16px, 4vw, 30px);
  }
  .sec_1 .container .wrapper .inner2 {
    background-image: url(../img/company_mo_bg2.jpg);
  }
  .sec_1 .container .wrapper .inner2 .txt_area h4 {
    font-size: clamp(20px, 6.67vw, 50px);
    line-height: 1.4; /* 70px */
  }
  .sec_1 .container .wrapper .inner2 .txt_area p {
    font-size: clamp(14px, 4vw, 30px);
    line-height: 1.67; /* 50px */
  }
  .sec_2 .container .wrapper ul {
    border-top-width: 2px;
  }
  .sec_2 .container .wrapper ul li {
    border-bottom-width: 2px;
    padding-left: 11.6vw; /*87px*/
    padding-right: 4vw; /*30px*/
  }
  .sec_2 .container .wrapper ul li h5 {
    font-size: clamp(17px, 4.8vw, 36px);
    line-height: 1.44; /* 52px */
    word-break: break-all;
  }
  .sec_2 .container .wrapper ul li h5 span {
    font-size: clamp(24px, 6.67vw, 50px);
    width: 11.6vw; /*87px*/
    left: -11.6vw; /*87px*/
    line-height: 1;
    top: -7%;
    transform: translateY(0);
  }
  .sec_2 .container .wrapper ul li p {
    word-break: break-all;
    font-size: clamp(14px, 4vw, 30px);
    line-height: 1.67; /* 50px */
  }
}
/* 버튼 hover용 */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #1e3960;
  }
}
@keyframes pulse_green {
  0% {
    box-shadow: 0 0 0 0 #82a006;
  }
}
@keyframes pulse_red {
  0% {
    box-shadow: 0 0 0 0 #d65047;
  }
}
@keyframes pulse_yellow {
  0% {
    box-shadow: 0 0 0 0 #eeab00;
  }
}
@keyframes pulse_white {
  0% {
    box-shadow: 0 0 0 0 #fff;
  }
}
@keyframes pulse_sky_blue {
  0% {
    box-shadow: 0 0 0 0 #4380d6;
  }
}