/* 메인 - 공통 */
.main{
  --point_color:#0653bc;
}
.wrap{
  overflow: hidden;
}
.section_inner{
  width: 100%;
  max-width: 1360px;
  padding: 0 20px;
  margin: 0 auto;
}
.content_frame{
  display: flex;
  gap: 44px;
}
.no_fix{
  min-width: 0;
  flex: 1;
  max-width: 100%;
}
.more_view,
.slick-prev,
.slick-next{
  width: 30px;
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}
.more_view{
  background-image: url(../img/main/ico_plus_black.png);
}
.slick-prev{
  background-image: url(../img/main/ico_prev.png);
}
.slick-next{
  background-image: url(../img/main/ico_next.png);
}
@media screen and (hover:hover) {
  .more_view:hover{
    background-image: url(../img/main/ico_plus_black_on.png);
  }
  .slick-prev:hover{
    background-image: url(../img/main/ico_prev_on.png);
  }
  .slick-next:hover{
    background-image: url(../img/main/ico_next_on.png);
  }
}
@media screen and (max-width:1024px) {
  .content_frame{
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }
  .content_cell{
  	width: 100%;
  }
}
/* 메인 - section01 */
.section01 .section_inner{
  padding: 80px 20px 140px;
}
.section01 .content_frame{
  background-color: #fff;
  gap: 0;
}
.section01 .content_frame .no_fix{
  padding: 0 45px;
}
.section01 .content_cell.slide{
  width: 100%;
  aspect-ratio: 1320 / 655;
  position: relative;
}
.section01 .content_cell.slide .slick-slider .slick-list{
  aspect-ratio: 1320 / 655;
}
.section01 .slide_item{
  position: relative;
  height: 100%;
}
.section01 .slide_item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
}
.slide_btn_wrap > button{
  width: 15px;
  aspect-ratio: 1 / 1;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
}
.slide_btn_wrap .slide_pause{
  display: none;
}
.slide_btn_wrap.play .slide_play{
  display: none;
}
.slide_btn_wrap.play .slide_pause{
  display: block;
}
.slide_btn_wrap > button.slide_play{
  background-image: url(../img/main/ico_play.png);
}
.slide_btn_wrap > button.slide_pause{
  background-image: url(../img/main/ico_pause.png);
}
.section01 .slide_btn_wrap > button.slide_play{
  background-image: url(../img/main/ico_play2.png);
}
.section01 .slide_btn_wrap > button.slide_pause{
  background-image: url(../img/main/ico_pause2.png);
}
.section01 .control_wrap{
  position: absolute;
  bottom: -40px;
  left: 0;
}
.slide_dot .slick-dots,
.control_wrap{
  display: flex;
  gap: 15px;
  align-items: center;
}
.slick-dots{
  padding-bottom: 4px;
}
.slide_dot .slick-dots button{
  width: 10px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  font-size: 0;
  background-color: #767676;
}
.slide_dot .slick-dots .slick-active button{
  background-color: #0061e4;
}
.section01{
  overflow: hidden;
  position: relative;
  background: url(../img/main/sec01_bg01.jpg) no-repeat bottom -280px center #e6eeff;
}
.section02{
  overflow: hidden;
  position: relative;
}
.section01 > .section_inner,
.section02 > .slide_section{
  position: relative;
  z-index: 2;
}
.section_deco_wrap{
  width: 100%;
  max-width: 1360px;
  height: 100%;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.section_deco_wrap .sc01_01{
  position: absolute;
  left: -650px;
  top: -400px;
  animation: float01 7s alternate infinite linear;
}
.section_deco_wrap .sc01_02{
  position: absolute;
  right: -200px;
  top: 120px;
  animation: float01 5s alternate infinite linear;
}

@keyframes scale_small{
  0%{
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
  }
  100%{
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}
@keyframes float01{
  0%{
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
  100%{
    transform: translateY(-40px);
    -webkit-transform:translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
  }
}
@keyframes float02{
  0%{
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
  100%{
    transform: translateY(20px);
    -webkit-transform:translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
  }
}
.section_deco_wrap .sc02_01{
  position: absolute;
  left: -230px;
  top: 370px;
  animation: float02 3s alternate infinite linear;
}
.section_deco_wrap .sc02_02{
  position: absolute;
  left: -190px;
  bottom: -70px;
  animation: float01 6s alternate infinite linear;
}
.section_deco_wrap .sc02_03{
  position: absolute;
  right: -580px;
  bottom: -350px;
  animation: float02 4s alternate infinite linear;
}
.section_deco_wrap .sc02_04{
  position: absolute;
  right: -150px;
  top: 120px;
  animation: float01 7s alternate infinite linear;
}
.section01 .product_box .img_box > img{
  transition: 0.3s;
}
@media screen and (hover:hover) {
  .section01 .box_menu:hover .plus_ico{
    border: 1px solid rgba(129, 251, 255, 0.5);
    background: url(../img/main/ico_plus_white_on.png) no-repeat center;
  }
  .section01 .box_menu:hover .box_menu_title{
    color: #81fbff;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .section01 .bot .menu_item:hover .menu_item_title{
    color: var(--point_color);
  }
  .section01 .bot .menu_item:hover .menu_item_title::before{
    border: 1px solid var(--point_color);
  }
  .section01 .product_box .product_item:hover .img_box{
    border: 1px solid var(--point_color);
  }
  .section01 .product_box .product_item:hover .text_box{
    color: var(--point_color);
  }
  .section01 .product_box .img_box:hover > img{
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
  }
  .section01 .bot .menu_item_title:hover::before{
    background-position: top calc(50% - 6px) center;
  }
}
@media screen and (max-width:1024px) {
  .section01 .content_cell.slide{
    width: 100%;
    max-width: 100%;
  }
  .section01 .content_cell{
    width: 100%;
  }
  .section01 .content_frame .no_fix{
    padding: 0 25px;
  }
  .section01 {
    background: url(../img/main/sec01_bg.jpg) no-repeat bottom -280px center #e6eeff;
  }
  .obj_area{
    display: none;
  }
}
@media screen and (max-width:768px) {
  .section01 .main_title{
    font-size: 24px;
  }
  .section01 .sub_title{
    font-size: 18px;
    margin: 4px 0 4px;
  }
  .section01 .sub_text{
    font-size: 16px;
    line-height: 24px;
  }
  .section01 .box_menu_title{
    font-size: 24px;
  }
  .section01 .mid .title{
    font-size: 22px;
  }
  .section01 .product_item {
    width: calc((100% - 25px) /2);
  }
  .section01 .product_item:nth-of-type(n + 3){
    display: none;
  }
  .section01 .box_menu{
    aspect-ratio: 320 / 177;
  }
  .section01 .mid .title_box{
    margin-bottom: 13px;
  }
  .section01 .main_title_box{
    margin-bottom: 25px;
  }
  .section01 .section_inner {
  	padding: 40px 15px 60px;
  }
  .section_deco_wrap .sc01_01{
    position: absolute;
    left: -190px;
    top: 20px;
    width: 342px;
    aspect-ratio: 1 / 1;
  }
  .section_deco_wrap .sc01_02{
    position: absolute;
    right: -140px;
    top: 600px;
    width: 287px;
    aspect-ratio: 1 / 1;
  }
  .section_deco_wrap .sc02_01,
  .section_deco_wrap .sc02_02,
  .section_deco_wrap .sc02_04{
    display: none;
  }
  .section_deco_wrap .sc02_03{
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 272px;
    aspect-ratio: 1 /1;
  }
  .section01 .bot .menu_item{
    max-width: 110px;
  }
  .section01 .bot:first-of-type{
    margin-top: 33px;
  }
  .section01 .bot .menu_item_title{
    font-size: 14px;
  }
}
@media screen and (max-width:640px){
  .section01 .bot{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .section01 .bot .menu_item_title::before{
    min-width: 110px;
  }
  .section01 .bot .menu_item{
    margin: 0 auto;
  }
  .section01 {
    background-position: bottom -245px center;
  }
}
@media screen and (max-width:450px){
  .section01 .top{
    flex-direction: column;
    margin-bottom: 25px;
  }
  .section01 .product_item {
    width: 100%;
  }
  .section01 .product_item:nth-of-type(n + 2){
    display: none;
  }
  .section01 .bot .menu_item{
    width: 100%;
    display: block;
    margin: 0 auto;
  }
}

/* 섹션02 */
.section02 .section_inner{
  padding: 75px 20px 70px;
}
.tab_area{
  border-top: 2px solid #000;
  position: relative;
}
.tab_cont .more_view{
  position: absolute;
  top: 15px;
  right: 0;
}
.tab_area .tab_btn_wrap{
  border-bottom: 2px solid #000;
  display: flex;
  gap: 40px;
}
.tab_area .tab_btn{
  line-height: 62px;
  font-size: 20px;
}
.tab_area .tab_btn.on{
  color: #3581ff;
}
.tab_area .notice_list{
  padding-top: 30px;
}
.tab_area .notice_title{
  font-size: 18px;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  overflow: hidden;
}
.tab_area .notice_list > li:first-of-type{
  padding-bottom: 12px;
}
.tab_area .notice_list > li:first-of-type .notice_title{
  font-size: 22px;
  margin-bottom: 15px;
}
.tab_area .notice_list > li + li{
  margin-top: 18px;
}
.tab_area .notice_text{
  font-size: 18px;
  color: #626262;
  font-weight: 300;
  line-height: 25px;
  min-height: 50px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
}
.tab_area .tab_cont:not(:first-of-type){
  display: none;
}
.tab_area .table_list thead tr{
  height: 60px;
  font-size: 20px;
  border-bottom: 1px solid #a8a8a8;
}
.tab_area .table_list td{
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  padding: 16px 0 0;
}
.tab_area .table_list tbody tr:first-of-type td{
  padding-top: 30px;
}
.tab_area .table_list .tag{
  font-size: 16px;
}
.tab_area .table_list .notice_title{
  display: block;
  width: 100%;
  text-align: left;
  padding: 0 15px;
}
@media screen and (hover:hover) {
  .tab_area .notice_list > li:hover .notice_title{
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .tab_area .table_list .notice_title:hover{
    text-decoration: underline;
    text-underline-offset: 2px;
  }
}
@media screen and (max-width:768px) {
  .section02 .section_inner {
    padding: 50px 20px;
  }
  .tab_area .tab_btn_wrap{
    gap: 25px;
  }
  .tab_area .tab_btn{
    font-size: 18px;
    line-height: 56px;
  }
  .tab_area .notice_list{
    padding-top: 22px;
    padding-bottom: 13px;
  }
  .tab_area .notice_list > li:first-of-type .notice_title,
  .tab_area .notice_title{
    font-size: 20px;
  }
  .tab_area .notice_list > li:first-of-type .notice_title{
    margin-bottom: 8px;
  }
  .tab_area .notice_list > li:first-of-type{
    padding-bottom: 3px;
  }
  .tab_area .notice_list > li + li{
    margin-top: 12px;
  }
  .tab_area .notice_text{
    font-size: 16px;
    line-height: 24px;
    min-height: 48px;
  }
  .tab_area .table_list thead{
    display: none;
  }
  .tab_area .table_list table,
  .tab_area .table_list tbody{
    display: block;
  }
  .tab_area .table_list tbody tr:first-of-type td{
    padding: 0;
  }
  .tab_area .table_list tbody tr{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 22px;
    align-items: center;
  }
  .tab_area .table_list tbody tr td:nth-of-type(2){
    order: 3;
    max-width: 100%;
    padding-top: 6px;
    width: 100%;
  }
  .tab_area .table_list tbody tr td:nth-of-type(3){
    order: 2;
  }
  .tab_area .table_list .notice_title,
  .tab_area .table_list td{
    padding: 0;
    font-size: 18px;
  }
  .section04 {
    padding-bottom: 50px;
}
.tab_cont .more_view {
  top: 13px;
}
}

/* section01 애니메이션*/
.obj_area{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  inset: 0;
}
.obj_wrap{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  min-width: 1920px;
  left: 50%;
  transform: translateX(-50%);
}
.obj_wrap > div{
  position: absolute;
  width: 100%;
  height: 100%;
  animation-name: move_obj;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.obj_wrap .back_img01{
  padding-top: 103px;
  padding-left: 106px;
  animation-duration: 80s;
  animation-delay: -20s;
}
.obj_wrap .back_img02{
  padding-top: 280px;
  padding-left: 80px;
  animation-duration: 100s;
  animation-delay: -40s;
}
.obj_wrap .back_img03{
  padding-top: 135px;
  padding-left: 60px;
  animation-duration: 120s;
  animation-delay: -30s;
}
.obj_wrap .drone01{
  left: calc(calc(100% - 1320px) / 2 - 158px);
  bottom: 240px;
  position: absolute;
  animation: float02 3s infinite alternate ease-in-out;
}
.obj_wrap .drone02{
  right: calc(calc(100% - 1320px) / 2 - 125px);
  bottom: 160px;
  position: absolute;
  animation: float02 2s infinite alternate ease-in-out;
}
@keyframes move_obj {
  0%{
    transform: translateX(100%);
  }
  100%{
    transform: translateX(-100%);
  }
}

/* 메인 애니메이션 */
.notice_list > li{
  opacity: 0;
  animation-name: fade_in_left;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}
.notice_list > li:first-of-type{
  animation-name: fade_in_left;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
  animation-delay: 0s;
}
.notice_list > li:first-of-type .notice_text{
  animation-name: fade_in_left;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
  animation-delay: 0.1s;
}
.notice_list > li:nth-of-type(2){
  animation-delay: 0.3s;
}
.notice_list > li:nth-of-type(3){
  animation-delay: 0.4s;
}
.notice_list > li:nth-of-type(4){
  animation-delay: 0.5s;
}
@keyframes fade_in_left{
  0%{
    opacity: 0;
    transform: translateX(-15px);
    -webkit-transform: translateX(-15px);
    -moz-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    -o-transform: translateX(-15px);
  }
  100%{
    opacity: 1;
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
  }
}
.ing_tag{
  position: relative;
  animation: bright 3s infinite alternate;
}

@keyframes bright{
  0%{
    box-shadow: 0px 0px 0px rgba(213, 115, 115, 0.1);
  }
  100%{
    box-shadow: 0px 0px 10px rgba(213, 115, 115, 0.6);
  }
}


.mainPopup{
  position: fixed;
  top: 0;
  left: 0;
  height: 0;
  z-index: 5001;
  width: 100%;
}
.mainPopup .popup{
  max-width: 360px;
  margin: 20px;
}
.mainPopup .popup_inner{
  display: flex;
  flex-wrap: wrap;
}
.mainPopup .popup_inner .popup .pop_con img{
  width: 100%;
}
.mainPopup .popup_inner .popup .pop_btn{
  display: flex;
  justify-content: space-between;
  background: #000;
  color: #fff;
  padding: 6px 10px 7px;
  font-size: 14px;
}
.mainPopup .popup_inner .popup .pop_btn button{
  color: #fff;
  font-size: 14px;
  background: url(../img/module/pop_btn.png) no-repeat center right;
  padding-right: 18px;
}
.mainPopup .popup_inner .popup .pop_btn .checkbox input[type="checkbox"] + label:before{
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/module/pop_checkbox.png) no-repeat center left;
  vertical-align: middle;
  margin-right: 7px;
  cursor: pointer;
  background-position: 0 0;
  margin-bottom: 3px;
}
.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%;
}

@media screen and (max-width: 768px){
  .mainPopup .popup_inner{
    justify-content: center;
  }
}