.mainPopup .popup {
  position: relative;
}
.mainPopup .popup_inner .popup .pop_btn .checkbox input[type="checkbox"]+label:before {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../img/common/checkbox01.png) no-repeat center left;
  vertical-align: middle;
  margin-right: 7px;
  cursor: pointer;
  background-position: 0 0;
  overflow: hidden;
}
.mainPopup .popup_inner .popup .pop_btn .checkbox input {
  width: 18px;
  height: 18px;
  display: inline-block;
  position: absolute;
}
.mainPopup .popup_inner .popup .pop_btn .checkbox label {
  cursor: pointer;
}
.mainPopup .popup_inner .popup .pop_btn .checkbox input[type="checkbox"]:checked+label:before {
  background-position: 0 100%;
}
.mainPopup .popup_inner .popup .pop_btn {
  display: flex;
  justify-content: space-between;
  background: #000;
  color: #fff;
  padding: 6px 10px 7px;
  font-size: 14px;
  position: absolute;
  top: 100%;
  width: 100%;
}
.mainPopup .popup_inner .popup .pop_btn button {
	/* width: 20px;
	height: 20px; */
	background: url(../img/common/pop_btn.png) no-repeat center right;
}

/* 공통 */
.tab_title_wrap {
  display: flex;
  align-items: center;
  margin-bottom: 65px;
  position: relative;
}
.tab_title_wrap.wh :is(span, p, a, button) {
  color: #fff;
}
.tab_title_wrap .tab_box {
  display: flex;
  align-items: center;
  gap: 55px;
}
.tab_title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}
.tab_title > span {
  display: block;
  color: #1161b6;
}
.tab_btn_wrap {
  display: flex;
  gap: 10px;
}
.tab_btn_wrap .tab_btn,
.tab_btn_wrap .link_btn {
  font-size: 22px;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 20px;
  background-color: transparent;
  transition: 0.3s;
  display: block;
  font-family: 'SCoreDream', Arial, sans-serif;;
}
.tab_btn_wrap .tab_btn::after,
.tab_btn_wrap .link_btn::after {
  content: '';
  width: 100%;
  height: 3px;
  background-color: #00aee0;
  display: block;
  transition: all 0.3s ease-in-out;
  transform: scale(0);
}
.tab_btn_wrap .tab_btn.on {
  background-color: #00aee0;
  color: #fff;
}
.tab_btn_wrap .tab_btn:hover::after,
.tab_btn_wrap .link_btn:hover::after {
  transform: scale(1);
}
.btn_area {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto ;
  position: absolute;
  right: 0;
  top: 0;
}
.btn_area .arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn_area.none .arrows {
  display: none;
}
.btn_area :is(button, a) {
  width: 45px;
  height: 45px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #a1a1a1;
  background-position: center center;
  background-repeat: no-repeat;
}
.btn_area :is(button, a):hover {
  border: 1px solid #00aee0;
  transition: all 0.3s ease-in-out;
}
.btn_area .prev {
  background-image: url(../img/main/ico_prev.png);
}
.btn_area.ver01 { 
  position: static;
}
.btn_area.ver01 .prev {
  background-image: url(../img/main/ico_prev_on.png);
  background-size: contain;
}
.btn_area .prev:hover, 
.btn_area.ver01 .prev:hover {
  background-image: url(../img/main/ico_prev_ho.png);
}
.btn_area .next {
  background-image: url(../img/main/ico_next.png);
}
.btn_area.ver01 .next {
  background-image: url(../img/main/ico_next_on.png);
  background-size: contain;
}
.btn_area .next:hover, 
.btn_area.ver01 .next:hover {
  background-image: url(../img/main/ico_next_ho.png);
}
.btn_area .more_view {
  background-image: url(../img/main/ico_more.png);
}
.btn_area.ver01 .more_view {
  border: 1px solid #7da5d0;
  background-image: url(../img/main/ico_more_on.png);
}
.btn_area .more_view:hover {
  border-color: #00aee0;
}
.btn_area .more_view:hover, 
.btn_area.ver01 .more_view:hover {
  background-image: url(../img/main/ico_more_ho.png);
}
.more_view_wrap {
  display: flex;
  align-items: center;
}
.more_view_wrap .more_view:not(:first-child) {
  display: none;
}

@media screen and (max-width: 1500px) {
  .tab_title_wrap .tab_box {
    gap: 55px;
  }
  .tab_title {
    font-size: 35px;
    white-space: nowrap;
  }
  .tab_btn_wrap .tab_btn,
  .tab_btn_wrap .link_btn {
    font-size: 22px;
  }
}

@media screen and (max-width: 1300px) {
  .tab_title_wrap .tab_box {
    gap: 35px;
  }
  .tab_title {
    font-size: 30px;
  }
  .tab_btn_wrap {
    gap: 10px;
  }
  .tab_btn_wrap .tab_btn,
  .tab_btn_wrap .link_btn {
    font-size: 20px;
    padding: 4px 15px;
  }
  .btn_area :is(button, a) {
    width: 35px;
    height: 35px;
  }
}

@media screen and (max-width: 1024px) {
  .tab_title_wrap {
    align-items: flex-start;
    margin-bottom: 30px;
  }
  .tab_title_wrap .tab_box {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .tab_title {
    font-size: 25px;
  }
  .tab_btn_wrap .tab_btn,
  .tab_btn_wrap .link_btn {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .tab_title_wrap {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
  }
  .tab_title_wrap .tab_box {
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 25px;
  }
  .tab_title {
    font-size: 22px;
    align-self: flex-start;
  }
  .tab_btn_wrap {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    padding-bottom: 10px;
  }
  .tab_btn_wrap > li{
    display: inline-block;
  }
  .tab_btn_wrap .tab_btn,
  .tab_btn_wrap .link_btn {
    font-size: 15px;
    padding: 4px 10px;
    border-radius: 15px;
    white-space: nowrap;
  }
  .btn_area :is(button, a) {
    width: 25px;
    height: 25px;
    background-size: 12px;
  }
  .more_view_wrap {
    position: absolute;
    right: 0;
    top: 0;
  }
  .section02 .btn_area .arrows,
  .section03 .btn_area .arrows{
    padding-right: 35px;
    gap: 10px;
  }
  .section02 .btn_area .arrows button,
  .section03 .btn_area .arrows button{
    background-size: 8px auto;
  }
}
/* 메인 */
.main_section {
  min-height: 1080px;
  position: relative;
  color: #fff;
  padding-top: 127px;
}
.main_section .slide_box {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}
.main_section .slide_box div {
  height: 100%;
}
.main_section .slide_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_section .slide_inner {
  width: 100%;
  max-width: 1630px;
  margin: 0 auto;
  padding: 0 50px;
  z-index: 1;
}
.main_section .txt_wrap {
  padding-top: 160px;
}
.main_section .txt_wrap .main_tit {
  font-size: 60px;
  font-weight: 200;
  line-height: 1.2;
  margin-bottom: 30px;
}
.main_section .txt_wrap .main_tit .bold {
  font-weight: 700;
}
.main_section .txt_wrap .main_txt {
  font-weight: 200;
  font-size: 16px;
  letter-spacing: 10px;
}
.main_section .slide_control {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-top: 40px;
}
.main_section .slide_control .dots > ul {
  display: flex;
  align-items: center;
  gap: 25px;
}
.main_section .slide_control .dots .slick-active button {
  background: #00aee0;
}
.main_section .slide_control .dots button {
  font-size: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
}
.main_section .arrows button {
  width: 15px;
  height: 15px;
}
.main_section .arrows .pause {
  background: url(../img/main/ico_pause.png)no-repeat center center;
}
.main_section .arrows .play {
  background: url(../img/main/ico_play.png)no-repeat center center;
  display: none;
}
.main_section .arrows.stop .pause {
  display: none;
}
.main_section .arrows.stop .play {
  display: block;
}
.main_section .slide_control .count > span {
  font-size: 18px;
  color: #fff;
}
.main_section .slide_control .count > span.current {
  min-width: 15px;
  display: inline-block;
}

@media screen and (max-width: 1024px) {
  .main_section {
    min-height: 800px;
  }
  .main_section .slide_inner {
    padding: 0 20px;
  }
  .main_section .txt_wrap {
    padding-top: 100px;
  }
  .main_section .txt_wrap .main_tit {
    font-size: 30px;
  }
  .main_section .txt_wrap .main_txt {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .main_section {
    min-height: 600px;
  }
  .main_section .txt_wrap {
    padding-top: 60px;
  }
  .main_section .txt_wrap .main_tit {
    font-size: 25px;
  }
  .main_section .txt_wrap .main_txt {
    font-size: 10px;
    letter-spacing: 5px;
  }
  .main_section .slide_control {
    gap: 15px;
  }
  .main_section .slide_control .dots button {
    width: 8px;
    height: 8px;
  }
  .main_section .slide_control .dots > ul {
    gap: 15px;
  }
  .main_section .arrows {
    height: 100%;
  }
  .main_section .arrows button {
    width: 8px;
    height: 8px;
  }
  .main_section .slide_control .count > span {
    font-size: 12px;
  }
  .main_section .slide_control .count > span.current {
    min-width: 10px;
  }
}

/* 섹션01 */
.section01 {
  width: 100%;
  position: relative;
  z-index: 20;
  padding: 0 20px;
}
.section01 .section_inner {
  padding: 60px 50px 80px;
  margin-top: -300px;
  background: #004EA2;
  background: linear-gradient(0deg,rgba(0, 78, 162, 1) 0%, rgba(47, 129, 219, 1) 100%);
}
.section01 .tab_cont_list .tab_inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}
.section01 .tab_cont_list .btn_area {
  position: absolute;
  right: 0;
}
.section01 .tab_cont_list .btn_area.top {
  position: static;
}
.section01 .tab_cont_list .arrows {
  position: static;
}
.section01 .tab_cont_list .tab_left {
  flex: 1;
  min-width: 0;
}
.section01 .tab_cont_list .tab_left .tab_contents {
  display: flex;
}
.tab_contents .tab_con {
  width: 100%;
  display: none;
}
.tab_contents .tab_con.on {
  display: block;
}
.tab_contents .tab_con .tab_all {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.tab_con .tab_all .img_box {
  width: 435px;
  aspect-ratio: 435 / 295;
  border-radius: 10px;
  overflow: hidden;
}
.tab_con .tab_all .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tab_con .tab_all .tab_info {
  flex: 1;
  min-width: 0;
  height: 100%;
}
.tab_con .tab_all .tab_info.wh {
  color: #fff;
}
.tab_info .tab_info_tit {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tab_info .tab_info_txt {
  min-height: 104px;
  font-size: 20px;
  display: -webkit-box; 
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: wrap;
}
.tab_info_bt .tab_date {
  font-size: 20px;
  margin-top: 60px;
  margin-bottom: 25px;
}
.section01 .btn_area .arrows {
  display: flex;
  gap: 30px;
}
.section01 .btn_area button {
  width: 10px;
  height: 15px;
  border: 0;
  border-radius: 0;
}
.section01 .tab_right {
  width: 35%;
  height: 100%;
  background-color: #fff;
  padding: 10px 40px;
  height: 295px;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
}
.section01 .tab_right > li {
  width: 100%;
  padding: 10px;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
}
.section01 .tab_right > li:not(:last-of-type){
  border-bottom: 1px solid #d2d2d2;
}
.section01 .tab_right > li > button {
  width: 100%;
  min-height: 50px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: left;
  word-break: break-all;
}
.section01 .tab_right > li.on > button {
  font-weight: 700;
}
.section01 .tab_wrap {
  position: relative;
}
.section01 .tab_cont_list > li {
  position: static;
} 

@media screen and (max-width: 1500px) {
  .section01 .tab_cont_list .tab_inner {
    gap: 25px;
  }
  .tab_contents .tab_con .tab_all {
    gap: 25px;
  }
  .tab_con .tab_all .img_box {
    width: 380px;
  }
  .section01 .tab_right {
    width: 30%;
    height: 257px;
    padding: 10px 20px;
  }
  .tab_info .tab_info_tit {
    font-size: 20px;
  }
  .tab_info .tab_info_txt {
    font-size: 16px;
  }
  .tab_info .tab_date {
    font-size: 16px;
    margin-top: 40px;
  }
  .section01 .tab_right > li > a {
    font-size: 20px;
    line-height: 60px;
  }
}
@media screen and (max-width: 1300px) {
  .section01 .section_inner {
    padding: 40px 30px 60px;
  }
  .section01 .tab_right {
    width: 25%;
  }
}
@media screen and (max-width: 1024px) {
  .section01 {
    padding: 0 10px;
  }
  .section01 .section_inner {
    padding: 30px 20px;
    margin-top: -150px;
  }
  .section01 .tab_cont_list .tab_inner {
    flex-direction: column;
  }
  .tab_info .tab_info_tit {
    font-size: 18px;
  }
  .tab_info .tab_info_txt {
    font-size: 16px;
    min-height: 104px;
  }
  .section01 .tab_right {
    width: 100%;
  }
  .section01 .tab_right > li > button {
    font-size: 18px;
  }
  .section01 .tab_right > li > a {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .tab_contents .tab_con .tab_all {
    flex-direction: column;
    gap: 20px;
  }
  .tab_con .tab_all .img_box {
    width: 100%;
  }
  .tab_con .tab_all .tab_info {
    width: 100%;
  }
  .tab_info_bt {
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
  .tab_info .tab_date {
    font-size: 14px;
    margin: 0;
  }
  .tab_info .tab_info_tit {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .tab_info .tab_info_txt {
    min-height: 80px;
    line-height: 20px;
    font-size: 12px;
    overflow: hidden;
  }
  .section01 .tab_right > li {
    padding: 10px 5px;
  }
  .section01 .tab_right > li > a {
    font-size: 16px;
    line-height: 38px;
  }
  .section01 .tab_right > li > button {
    min-height: 40px;
    font-size: 16px;
    line-height: 20px;
  }
  .section01 .tab_right {
    min-height: 160px;
    height: auto;
    padding: 10px 20px;
  }
}

/* 섹션02 */
.section02 .slide_box {
  margin: 0 -55px;
}
.section02 .slide_box .slide_item {
  width: 100%;
  height: 100%;
  display: inline-block;
  /* aspect-ratio: 437 / 400; */
}
.section02 .slick-initialized .slick-slide {
  padding: 0 55px;
  transform: scale(1);
}
.section02 .slide_item .img_box {
  width: 100%;
  display: block;
  aspect-ratio: 435 / 295;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #c3c3c3;
  
}
.section02 .slide_item .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.section02 .slide_item:hover .img_box img {
  transform: scale(1.1);
}
.section02 .slide_item .text_box {
  margin-top: 20px;
}
.section02 .slide_box.cont .slide_item {
  height: 100%;
  border: 1px solid #c8c8c8;
  border-radius: 10px;
}
.section02 .slide_box.cont .slide_item .box_inner {
  padding: 40px 25px;
}
.section02 .slide_box.cont .slide_item .text_box {
  padding: 0 5px 25px;
  border-bottom: 1px solid #c3c3c3;
  margin: 0;
}
.section02 .slide_box.cont .text_box .title {
  min-height: 70px;
  font-size: 24px;
  font-weight: 500;
  line-height: 35px;
  display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  overflow: hidden;
}
.section02 .slide_box.cont .text_box .title span {
  display: inline;
  --bg_line: 10px;
  background-image: linear-gradient(transparent calc(100% - var(--bg_line)), rgba(0, 174, 224, 0.4) 10px);
  background-repeat: no-repeat;
  background-size: 0 100%;
  background-position: left bottom;
  transition: background-size 0.3s ease;
}
.section02 .slide_box.cont .slide_item:hover .text_box .title span {
  background-size: 100% 100%;
}
.section02 .slide_box.cont .txt_wrap {
  padding: 25px 5px 0;
}
.section02 .slide_box.cont .txt_wrap .txt {
  min-height: 75px;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  overflow: hidden;
}
.section02 .slide_box.cont .txt_wrap .date {
  font-size: 16px;
  line-height: 1;
  font-weight: 300;
  padding: 35px 0 25px;
}
.section02 .slide_box.cont .txt_wrap .btn_more {
  min-width: 85px;
  height: 35px;
  padding: 5px 15px;
  border: 1px solid #c3c3c3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}
.section02 .slide_box.cont .txt_wrap .btn_more:hover {
  border: 1px solid #00aee0;
  background-color: #00aee0;
}
.section02 .slide_box.cont .txt_wrap .btn_more::after {
  content: '';
  display: inline-block;
  width: 6px;
  aspect-ratio: 6 / 9;
  background: url(../img/main/ico_next.png)no-repeat center / contain;
}
.section02 .text_box .slide_title {
  max-width: 100%;
  line-height: 30px;
  display: inline-block;
}
.text_box .slide_title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  position: relative;
}
.text_box .slide_title::before {
  content: '';
  display: block;
  position: absolute;
  opacity: 0.4;
  height: 11px;
  border-radius: 6px;
  bottom: 3px;
  z-index: -1;
  left: 0;
  transition: 0.3s;
  width: 0%;
  background-color: #00aee0;
}
.section02 .slide_item:hover .text_box .slide_title::before {
  width: 100%;
}
.text_box .slide_text {
  width: 100%;
  display: block;
  font-size: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.section02 .tab_wrap {
  position: relative;
}
.section02 .tab_cont_list > li {
  position: static;
}
.tab_cont_list > li:not(:first-of-type) {
  display: none;
}
.tab_cont_list > li.on {
  display: block !important;
}
@media screen and (max-width: 1300px) {
  .section02 .slick-initialized .slick-slide {
    padding: 0 30px;
  }
}

@media screen and (max-width: 1024px) {
  .section02 .slick-initialized .slick-slide {
    padding: 0 10px;
  }
  .section02 .slide_box {
    margin: 0 -10px;
  }
  .text_box .slide_title {
    font-size: 18px;
  }
  .text_box .slide_text {
    font-size: 16px;
  }
  .section02 .slide_box.cont .slide_item .box_inner {
    padding: 20px 15px;
  }
  .section02 .slide_box.cont .text_box .title {
    min-height: 50px;
    font-size: 18px;
    line-height: 25px;
  }
  .section02 .slide_box.cont .text_box .title span {
    --bg_line: 8px;
  }
  .section02 .slide_box.cont .slide_item .text_box {
    padding-bottom: 15px;
  }
  .section02 .slide_box.cont .txt_wrap {
    padding-top: 15px;
  }
  .section02 .slide_box.cont .txt_wrap .date {
    padding: 20px 0 15px;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .section02 .slide_box {
    width: 100%;
    margin: 0;
  }
  .section02 .slide_box .slide_item {
    width: 100%;
  }
  .section02 .slide_box .slide_item:nth-child(n+4) {
    display: none;
  }
  .section02 .slide_item .text_box {
    margin-top: 15px;
  }
  .text_box .slide_title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .text_box .slide_text {
    font-size: 12px;
    margin-bottom: 25px;
  }
  .section02 .slide_box.cont .text_box .title {
    min-height: 44px;
    font-size: 16px;
    line-height: 22px;
  }
  .section02 .slide_box.cont .txt_wrap .txt {
    font-size: 12px;
    line-height: 18px;
  }
  .section02 .slide_box.cont .txt_wrap .date {
    font-size: 12px;
  }
  .section02 .slide_box.cont .txt_wrap .btn_more {
    min-width: 75px;
    height: 28px;
    font-size: 14px;
  }
}

/* 섹션03 */
.section03 {
  background: url(../img/main/img_section03_bg.jpg) no-repeat center / cover;
}
.section03 .slide_box {
  margin: 0 -30px;
}
.section03 .slide_box .slide_item {
  width: 435px;
  height: 100%;
  display: inline-block;
}
.section03 .slick-initialized .slick-slide {
  padding: 0 30px;
}
.section03 .slide_item .img_box {
  width: 100%;
  display: block;
  aspect-ratio: 435 / 250;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.section03 .slide_item .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.section03 .slide_box .slide_item:hover .img_box img {
  transform: scale(1.1);
}
.section03 .slide_item .text_box {
  padding: 30px;
  background: #fff;
  border-radius: 0 0 10px 10px;
}
.section03 .text_box .slide_title  {
  max-width: 100%;
  display: inline-block;
}
.section03 .slide_item:hover .text_box .slide_title::before {
  width: 100%;
  z-index: 1;
  opacity: 0.4;
}
.section03 .slide_item:hover .text_box .slide_title span {
  position: relative;
  z-index: 3;
}
.section03 .tab_wrap {
  position: relative;
}
.section03 .tab_cont_list > li {
  position: static;
}
.text_box .date {
  font-size: 20px;
  font-weight: 400;
  color: #717171;
  display: block;
}
.sns_click_wrap li{
  border: 1px solid #cacaca;
  transition: all 0.3s;
  background-color: #fff;
  border-radius: 10px;
}
.sns_click_wrap li:hover .top_ck p{
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sns_click_wrap li .top_ck{
  padding: 45px 30px;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: -0.02em;
}
.sns_click_wrap li .top_ck p{
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  height: 136px;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  font-size: 22px;
  line-height: 34px;
}
.sns_click_wrap li .bt_ck{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #cacaca;
}
.sns_click_wrap li .bt_ck .date{
  padding: 20px 30px;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.sns_click_wrap li .bt_ck .icon{
  width: 50px;
  height: 50px;
  border-left: 1px solid #cacaca;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sns_click_wrap .btn_wrap {
  margin: 55px auto 0;
}
.sns_click_wrap .btn_wrap button{
  min-width: 205px;
  line-height: 75px;
  border: 1px solid #41b549;
  border-radius: 45px;
  font-size: 21px;
  font-weight: 500;
  transition: all 0.3s;
}
.sns_click_wrap .btn_wrap button::after{
  content: '';
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url(../img/sub/ico_more_gr.png) no-repeat;
  transition: all 0.3s;
  margin-bottom: -4px;
  margin-left: 25px;
}
.sns_click_wrap .btn_wrap button:hover{
  color: #41b549;
}
.sns_click_wrap .btn_wrap button:hover:after{
  background-image: url(../img/sub/ico_more_gr_on.png);
}

@media screen and (max-width: 1300px) {
  .section03 .slick-initialized .slick-slide {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1024px) {
  .section03 .slick-initialized .slick-slide {
    padding: 0 10px;
  }
  .section03 .slide_box {
    margin: 0 -10px;
  }
  .text_box .date {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .section03 .slide_box {
    width: 100%;
    margin: 0;
  }
  .section03 .slide_box {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .section03 .slide_box .slide_item {
    width: 100%;
  }
  .section03 .slide_box .slide_item:nth-child(n+4) {
    display: none;
  }
  .section03 .slide_item .text_box {
    padding: 15px 18px;
  }
  .section03 .text_box .slide_title {
    margin-bottom: 5px;
  }
  .text_box .date {
    font-size: 12px;
  }
  .sns_click_wrap li .top_ck{
    padding: 30px 20px;
  }
  .sns_click_wrap li .top_ck p{
    -webkit-line-clamp: 4;
    height: 104px;
    font-size: 18px;
    line-height: 26px;
  }
  .sns_click_wrap li .bt_ck .date{
    padding: 10px 20px;
    font-size: 16px;
  }
}
@media screen and (max-width: 520px) {
  .sns_click_wrap li .top_ck{
    padding: 20px 15px;
  }
  .sns_click_wrap li .top_ck p {
    font-size: 16px;
    line-height: 24px;
    -webkit-line-clamp: 3;
    height: 72px;
  }
  .sns_click_wrap li .bt_ck .date {
    padding: 10px 15px;
  }
}

/* 섹션04 */
.section04 {
  padding: 75px 0;
}
.section04 .section_inner {
  padding: 35px 50px;
}
.section04 .pop_sns-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section04 .pop_tit {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.section04 .pop_tit::before {
  content: '';
  width: 57px;
  aspect-ratio: 57 / 71;
  display: inline-block;
  background: url(../img/main/ico_sns.png) no-repeat center / contain;;
  margin-right: 20px;
}
.section04 .pop_sns-top .top_sns-list {
  display: flex;
  gap: 50px;
}
.section04 .pop_sns-top .top_sns-list a {
  font-size: 28px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.2s ease-in-out;
}
.section04 .pop_sns-top .top_sns-list li:hover a.blog {
  color: #67B963;
}
.section04 .pop_sns-top .top_sns-list li:hover a.insta {
  color: #AE39BB;
}
.section04 .pop_sns-top .top_sns-list li:hover a.youtube {
  color: #FD3731;
}

@media screen and (max-width: 1300px) {
  .section04 .pop_tit {
    font-size: 25px;
  }
  .section04 .pop_sns-top .top_sns-list a {
    font-size: 22px;
  }
  .section04 .pop_sns-top .top_sns-list a > img {
    width: 45px;
  }
}

@media screen and (max-width: 1024px) {
  .section04 .section_inner {
    padding: 30px 20px;
  }
  .section04 .pop_tit {
    font-size: 22px;
  }
  .section04 .pop_tit::before {
    width: 40px;
    margin-right: 10px;
  }
  .section04 .pop_sns-top .top_sns-list {
    gap: 20px;
  }
  .section04 .pop_sns-top .top_sns-list a {
    gap: 10px;
    font-size: 18px;
  }
  .section04 .pop_sns-top .top_sns-list a > img {
    width: 40px;
  }
}

@media screen and (max-width: 768px) {
  section.section04 {
    padding: 40px 20px 50px;
  }
  .section04 .pop_tit {
    margin-left: -22px;
  }
  .section04 .pop_sns-top {
    flex-direction: column;
    gap: 15px;
  }
  .section04 .pop_sns-top .top_sns-list {
    flex-direction: column;
    gap: 10px;
  }
}
