@charset "UTF-8";
/* --------------------- sec 1 start--------------------- */
.sec_1 .container .wrapper .tit_area {
  border-bottom: 1px solid #ddd;
}
.sec_1 .container .wrapper .tit_area h2 {
  font-size: clamp(34px, 2.22vw, 40px);
  line-height: 1.45; /* 58px */
}
.sec_1 .container .wrapper .cont_area {
  border-bottom: 1px solid #ddd;
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: 1.67; /* 30px */
  padding-left: clamp(40px, 5.21vw, 100px);
  padding-right: clamp(40px, 5.21vw, 100px);
}
.sec_1 .container .wrapper .cont_area img {
  padding: 10px 0;
  max-width:650px;
  margin-left:auto;
  margin-right:auto;
  width:auto;
  display:block;
}
.sec_1 .container .wrapper .cont_area a {
  text-decoration: underline;
}

/* --------------------- RWD --------------------- */
@media (max-width: 750px) {
  .sec_1 .container .wrapper .tit_area {
    border-bottom-width: 2px;
  }
  .sec_1 .container .wrapper .tit_area h2 {
    font-size: clamp(20px, 5.87vw, 44px);
    line-height: 1.36; /* 60px */
    word-break: break-all;
    letter-spacing: -0.035em;
  }
  .sec_1 .container .wrapper .cont_area {
	position:relative; 
    border-bottom-width: 2px;
    padding-right: 0;
    padding-left: 0;
    font-size: clamp(15px, 4vw, 30px);
    line-height: 1.67; /* 50px */
    word-break: break-all;
    text-align: justify;
  }
  .sec_1 .container .wrapper .cont_area img { 
    max-width:100% !important;
  }
}
/* 버튼 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;
  }
}