@charset "utf-8";
@import url('common.css');
@import url('layout.css');

main{
    width:100%;
    margin: 0 auto;
    margin-top: 90px;
}
main section{
    width:100%;
    margin: 0 auto;
    max-width:1448px;
    padding:0 24px;
    
}
.main-kv-area{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:50px;
}
.kv-wrap{
    width:100%;
    aspect-ratio: 1400 / 468;
    border-radius: var(--radius-default);
    position: relative;
    overflow: hidden;
}
.kvSwiper{
    width: 100%;
    height: 100%;
}
.kvSwiper .swiper-slide{
    width: 100%;
    height: 100%;
    padding: 80px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-default);
}
.kvSwiper .swiper-slide::before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	right:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.3);
	z-index:1;
}
.kv-list-text{
	position:relative;
	z-index:2;
}
.kv_pc{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.kv-link-title{
    font-weight: 900;
    font-size: var(--font-48);
    color: #fff;
    margin-bottom: 20px;
	
}
.kv-link-defail{
    font-weight: 500;
    font-size: var(--font-18);
    color: #fff;
    margin-bottom: 35px;
}
.kv-link-btn{
    width: 170px;
    height: 60px;
    border-radius: 999px;
    border: 2px solid #fff;
    color: #fff;
    transition: all 0.3s ease;
	position:relative;
	z-index:2;
}
.kv-link-btn a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    padding-left: 25px;
    width: 100%;
    height: 100%;
    color: #fff;
    border-radius: 999px;
    transition: all 0.3s ease;
    font-size: var(--font-16);
}
.kv-arrow-icon{
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-indent: -9999px;
    background: url('../images/btn_arrow_w.svg') no-repeat center / 13px 12px;
    transition: all 0.3s ease;
}
.info-cont-btn .kv-arrow-icon{
    background: url('../images/btn_arrow.svg') no-repeat center / 13px 12px;
	opacity:0.3;
}
.kv-slider-control{
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0 var(--radius-default) 0 var(--radius-default);
    width: 180px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.35);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-16);
    font-weight: 400;
    z-index: 1;
    font-size: var(--font-16);
}
.slide-counter{
    display: inline-block;
    margin: 0 20px;
}
.slide-counter .current{
    font-weight: 900;
}
.kv-slider-control .prev-btn, .kv-slider-control .next-btn{
    width: 8px;
    height: 13px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 8px 13px;
}
.kv-slider-control .prev-btn{
    background-image: url('../images/arrow_white_l.svg');
}
.kv-slider-control .next-btn{
    background-image: url('../images/arrow_white_r.svg');
}
.kv-slider-control .play-toggle{
    width: 13px;
    height: 15px;
    margin-left: 26px;
    background-image: url('../images/pause_w.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 13px auto;
}
.today-area{
    width:100%;
    height: 100px;
    border-radius: var(--radius-default);
    background-color: #fff;
    overflow: hidden;
    position: relative;
}
.today-area-m{
    display: none;
}
.today-fixed{
    width: 180px;
    height: 100%;
    background-color: #fff;
    padding: 30px;
    padding-top: 20px;
    border-radius: var(--radius-default) 0 0 var(--radius-default);
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.08);
}
.today-date{
    font-size: var(--font-18);
    font-weight: 700;
    color: #000000;
    margin-bottom: 2px;
}
.today-detail{
    font-size: var(--font-16);
    font-weight: 400;
    color: #000000;
}
.today-marquee{
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    align-items: center;
    color: #000000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left:180px;
}

.today-marquee span.marquee-span {
  display: inline-block;
  padding-left: 50px;
  font-size: var(--font-18);
  animation: marquee 25s linear infinite;
}
.today-marquee span.marquee-span span.marquee-text > *{
    display: inline-block;
}
.today-marquee span.marquee-label{
    font-weight: 400;
    margin-right: 40px;
}
.today-marquee span.marquee-value{
    font-weight: 700;
    margin: 0 20px;
}
.today-marquee span.marquee-change.up{
    color: #2cb67a;
    font-weight: 700;
}
.today-marquee span.marquee-change.down{
    color: #fa6b03;
    font-weight: 700;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.main-news-area{
    margin-top: 130px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
}
.sec-title-wrap{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    /* margin-bottom: 60px; */
}
.sec-title{
    font-size: var(--font-40);
    font-weight: 700;
    color: #000000;
}
.sec-more-btn{
    font-size: var(--font-16);
    font-weight: 400;
    color: #000000;
}
.sec-more-btn-m{
    display: none;
}
.sec-more-btn a{
    display: flex;
    align-items: center;
    gap: 12px;
}
.more-btn-icon{
    width: 12px;
    height: 12px;
    text-indent: -9999px;
    background: url('../images/add_icon.svg') no-repeat center / 12px 12px;
}
.news-cont{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.news-menu-wrap{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 20px;
}
.news-menu-list{
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-size: var(--font-18);
    font-weight: 700;
}
.news-menu-list li a{
    display: block;
    color: rgba(0, 0, 0, 0.4);
}
.news-menu-list li.focus a{
    color: rgba(0, 0, 0, 1);
    position: relative;
}
.news-menu-list li.focus a::after{
    content: '';
    width: 17px;
    height: 17px;
    border-radius: var(--radius-default);
    background-color: var(--orange-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 80px;
}
.news-slider-control{
    display: flex;
    gap: 10px;
    align-items: center;
}
.news-slider-control button{
    width: 60px;
    height: 60px;
    border-radius: 999px;
    border:1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.news-slider-control button img{
    width: 8px;
    height: 13px;
}
/* .news-slider-control .prev-btn.on, .news-slider-control .next-btn.on{
    opacity: 1;
} */

.news-slider-control .prev-btn:not(.swiper-button-disabled),
.news-slider-control .next-btn:not(.swiper-button-disabled) {
    /* 활성 상태 스타일 */
    opacity: 1;
}

.news-slider-control .prev-btn.swiper-button-disabled,
.news-slider-control .next-btn.swiper-button-disabled {
    /* 비활성 상태 스타일 */
    opacity: 0.3;
    pointer-events: none;
}

.news-slider-wrap{
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    overflow: hidden;
    max-width: 1090px;
    padding-top: 20px;
}
.news-slider-wrap .swiper-wrapper{
    display: flex;
    align-items: center;
    width: 100%;
}
.news-slider-wrap .swiper-wrapper .swiper-slide{
    width: 350px;
    min-height: 280px;
    border-radius: var(--radius-default);
    background-color: #fff;
    transition: all 0.3s ease;
}
.news-slider-wrap .swiper-wrapper .swiper-slide a{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 20px 20px 40px 40px;
}
.swiper-notification{
    display: none!important;
}
.news-slider-wrap .swiper-wrapper .swiper-slide a .slide-date-wrap{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.slide-date{
    margin-top: 5px;
    opacity: 0.3;
    transition: all 0.3s ease;
}
.date-year{
    font-size: var(--font-16);
    font-weight: 400;
    margin-bottom: 5px;
}
.date-day{
    font-size: var(--font-30);
    font-weight: 900;
}
.news-title{
    font-size: var(--font-20);
    font-weight: 400;
	display: -webkit-box;
    -webkit-line-clamp: 3;    /* 최대 줄 수 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.slide-badge{
    font-size: var(--font-12);
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}
.slide-badge > div{
    line-height: 1;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slide-badge .badge-new{
    border-radius: 999px;
    background-color: var(--green-color);
    width: 25px;
    height: 25px;
}
 .news-slider-scrollbar {
	background: #ebecee!important;
    height: 5px!important;
    border-radius: 5px!important;
    width: 100%!important;
	position: relative!important;
}

.swiper-scrollbar-drag {
	background: var(--black-color)!important;
    border-radius: 999px;
	  position: absolute;
	  left: 0;
	  top: 0;
	  width:20%;
	  cursor: pointer;
	  transition: all 0.3s ease;
}
.main-info-area{
    width: 100%;
    margin-bottom: 50px;
    /* height: 100vh;
    overflow: hidden; */
}
.info-area-wrap{
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: sticky;
    top: 0;
    padding-top: 120px;
    
}
.sec-title-detail{
    font-size: var(--font-18);
    font-weight: 400;
    color: #000000;
    margin-top: 70px;
}
.sec-title-left{
    padding-top: 40px;
}
.sec-scrolling-right{
    width: 850px;
    /* overflow:hidden; */
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 150px;
    padding-top: 100px;
}
.sec-scrolling-right::-webkit-scrollbar {
    display: none;
}
.sec-scrolling-right .cont-scrolling{
    width: 850px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px 50px;
    /* align-items: center; */
    justify-items: flex-start;
}
.sec-scrolling-right .cont-scrolling li{
    width: 400px;
    max-height: fit-content;
    border-radius: var(--radius-default);
    background-color: #fff;
    transition: all 0.3s ease;
}
.sec-scrolling-right .cont-scrolling li a{
    width: 100%;
    height: 500px;
    border-radius: var(--radius-default);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
    padding: 40px;
    padding-top: 50px;
    justify-content: space-between;
}
.sec-scrolling-right .cont-scrolling li:nth-child(1){
    margin-top: 150px;
    justify-self: flex-end;
}
.sec-scrolling-right .cont-scrolling li:nth-child(4){
    margin-top: -130px;
}
.sec-scrolling-right .cont-scrolling li:nth-child(3){
    justify-self: flex-end;
}
.info-title-wrap strong{
    font-size: var(--font-30);
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}
.info-title-wrap p{
    font-size: var(--font-18);
    font-weight: 400;
}
.info-image-wrap{
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec-scrolling-right .cont-scrolling li:nth-child(1) .info-image-wrap {
    width: 67.19%;
    aspect-ratio: 215 / 186;
}

.sec-scrolling-right .cont-scrolling li:nth-child(2) .info-image-wrap {
    width: 68.13%;
    aspect-ratio: 218 / 176;
}

.sec-scrolling-right .cont-scrolling li:nth-child(3) .info-image-wrap {
    width: 78.75%;
    aspect-ratio: 252 / 183;
}

.sec-scrolling-right .cont-scrolling li:nth-child(4) .info-image-wrap {
    width: 88.44%;
    aspect-ratio: 283 / 187;
}
.info-image-wrap img{
    width: 130px;
    height: auto;
}
.info-image-wrap img.info-image-icon-m{
    display: none;
}
.sec-scrolling-right .cont-scrolling li:nth-child(2) .info-image-wrap img{
    width: 120px;
    height: auto;
    margin-right: 10%;
}
.info-cont-btn{
    width: 100%;
    border-radius: 999px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: flex-end;
}
.info-cont-btn a{
    width: 170px;
    height: 60px;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    padding-left: 32px;
    background-color: var(--light-gray); 
    border-radius: 999px;
}
.info-cont-btn .link{
    width: 170px;
    height: 60px;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    padding-left: 25px;
    background-color: var(--light-gray); 
    border-radius: 999px;
    font-size: var(--font-16);
}
.main-banner{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}
.main-banner > div{
    width: 50%;
    padding: 50px;
}
.banner-left{
    background-color: var(--light-orange); 
}
.banner-right{
    background-color: var(--light-green); 
}
.banner-left a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    
}
.banner-right a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    
}
.banner-inner-wrap{
    width: 100%;
    max-width: 650px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.banner-image{
    width: 150px;
    height: 150px;
    border-radius: var(--radius-default);
}
.banner-left .banner-image{
    background-color: #fdc49a;
}
.banner-right .banner-image{
    background-color: #99e2e0;
}
.banner-text-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 200px);
}
.banner-title{
    font-size: var(--font-24);
    font-weight: 700;
    margin-bottom: 10px;
}
.banner-detail{
    font-size: var(--font-16);
    font-weight: 400;
}
.banner-detail br{
    display: none;
}
.banner-link{
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background-color: #fff;
    transition: all 0.3s ease;
}
.banner-link .banner-link-inner{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/btn_arrow.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 11px auto;
    transition: background-image 0.3s ease;
	transform: rotate(-45deg);
}

@media (hover: hover) {
    .sec-scrolling-right .cont-scrolling li:nth-child(1):hover .info-image-wrap{
        background-image: url('../images/main_icon1_hover.png');
    }
    .sec-scrolling-right .cont-scrolling li:nth-child(2):hover .info-image-wrap{
        background-image: url('../images/main_icon2_hover.png');
    }
    .sec-scrolling-right .cont-scrolling li:nth-child(3):hover .info-image-wrap{
        background-image: url('../images/main_icon3_hover.png');
    }
    .sec-scrolling-right .cont-scrolling li:nth-child(4):hover .info-image-wrap{
        background-image: url('../images/main_icon4_hover.png');
    }
    .info-cont-btn:hover .kv-arrow-icon{
        background: url('../images/btn_arrow_w.svg') no-repeat center / 13px 12px;
        background-color: var(--black-color);
        opacity: 1;
    }
    .info-cont-btn:hover a, .info-cont-btn:hover .link{
        background-color: #fff;
    }
    .kv-link-btn a:hover{
        background-color: #fff;
        color: #000000;
    }
    .kv-link-btn a:hover .kv-arrow-icon{
        background: url('../images/btn_arrow_w.svg') no-repeat center / 13px 12px;
        background-color: var(--black-color);
        opacity: 1;
    }
    .sec-scrolling-right .cont-scrolling li:hover .info-cont-btn a, .sec-scrolling-right .cont-scrolling li:hover .info-cont-btn .link{
        background-color: #fff;
    }
    .sec-scrolling-right .cont-scrolling li:hover .kv-arrow-icon{
        background: url('../images/btn_arrow_w.svg') no-repeat center / 13px 12px;
        background-color: var(--black-color);
        opacity: 1;
    }
    .sec-scrolling-right .cont-scrolling li:nth-child(1):hover{
        background-color: #d4f4f3;
    }
    .sec-scrolling-right .cont-scrolling li:nth-child(2):hover{
        background-color: #fee8d6;
    }
    .sec-scrolling-right .cont-scrolling li:nth-child(3):hover{
        background-color: #efe6f3;
    }
    .sec-scrolling-right .cont-scrolling li:nth-child(4):hover{
        background-color: #dee6f8;
    }
    .banner-right a:hover .banner-link, .banner-left a:hover .banner-link{
        background-color: var(--black-color);

    }
    .banner-right a:hover .banner-link .banner-link-inner, .banner-left a:hover .banner-link .banner-link-inner{
        background-image: url('../images/btn_arrow_w.svg');
        transform: rotate(-45deg);
    }
    .news-slider-wrap .swiper-wrapper .swiper-slide:hover{
        transform: translateY(-20px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
    }
    .news-slider-wrap .swiper-wrapper .swiper-slide:hover .slide-date{
        opacity: 1;
    }
    .news-slider-wrap .swiper-wrapper .swiper-slide:hover .news-title{
        font-weight: 700;
    }
}
@media (hover:hover) and (max-width:1280px) {
    .news-slider-wrap .swiper-wrapper .swiper-slide:hover{
        transform: translateY(-10px);
    }
}

@media screen and (max-width: 1280px) {
    .info-image-wrap img{
        width: 43.85%;
    }
    .sec-scrolling-right .cont-scrolling li:nth-child(2) .info-image-wrap img{
        width: 40%;
    }
    .kv-link-title{
        margin-bottom: 10px;
    }
    .kv-link-defail{
        margin-bottom: 18px;
    }
    .kv-slider-control{
        width: 150px;
        height: 45px;
    }
    .today-date{
        margin-bottom: 3px;
    }

    .news-menu-list{
        gap: 15px;
    }
    .date-year{
        margin-bottom: 3px;
    }

    .slide-badge{
        gap: 3px;
    }
    .sec-title-detail{
        margin-top: 35px;
    }
    .sec-title-detail br{
        display: none;
    }
    .info-title-wrap strong{
        margin-bottom: 10px;
    }
    .info-title-wrap p{
    }
    .banner-title{
        margin-bottom: 5px;
    }

    main{
        margin-top: 80px;
    }
    main section{
        padding:0 20px;
        
    }
    .main-kv-area{
        gap:25px;
    }
    .kvSwiper .swiper-slide{
        padding: 40px;
    }
    .kv-link-btn{
        width: 140px;
        height: 45px;
    }
    .kv-link-btn a{
        padding: 5px;
        padding-left: 20px;
    }
    .kv-arrow-icon{
        width: 35px;
        height: 35px;
        background: url('../images/btn_arrow_w.svg') no-repeat center / 9px 8px;
    }
    .info-cont-btn .kv-arrow-icon{
        background: url('../images/btn_arrow.svg') no-repeat center / 9px 8px;
    }
    .slide-counter{
        margin: 0 10px;
    }
    .kv-slider-control .prev-btn, .kv-slider-control .next-btn{
        width: 8px;
        height: 8px;
        background-size: auto 8px;
    }
    .kv-slider-control .play-toggle{
        width: 8px;
        height: 10px;
        margin-left: 13px;
        background-size: 8px auto;
    }
    .today-area{
        height: 80px;
    }
    .today-fixed{
        width: 140px;
        height: 100%;
        background-color: #fff;
        padding: 20px;
        padding-top: 17px;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.08);
    }
    .today-marquee{
        left:150px;
    }

    .today-marquee span {
        padding-left: 25px;
    }
    .main-news-area{
        margin-top: 60px;
        gap: 30px;
    }
    .sec-title-wrap{
        gap: 10px;
        margin-bottom: 30px;
    }
    .sec-more-btn a{
        gap: 6px;
    }
    .more-btn-icon{
        width: 8px;
        height: 8px;
        background: url('../images/add_icon.svg') no-repeat center / 8px 8px;
    }
    .news-cont{
        gap: 10px;
    }
    .news-menu-wrap{
        padding-top: 10px;
    }
    .news-menu-list li.focus a::after{
        content: '';
        width: 10px;
        height: 10px;
        border-radius: 10px;
        left: 60px;
    }
    .news-slider-control{
        gap: 5px;
    }
    .news-slider-control button{
        width: 40px;
        height: 40px;
    }
    .news-slider-control button img{
        width: 5px;
        height: 8px;
    }
    .news-slider-wrap{
        gap: 50px;
        padding-top: 10px;
    }
    .news-slider-wrap .swiper-wrapper .swiper-slide{
        width: 320px;
        min-height: 220px;
    }
    .news-slider-wrap .swiper-wrapper .swiper-slide a{
        padding: 10px 10px 20px 20px;
        gap: 15px;
    }
    .slide-date{
        margin-top: 3px;
    }
    .slide-badge > div{
        height: 18px;
    }
    .slide-badge .badge-new{
        width: 18px;
        height: 18px;
    }
    .news-slider-scrollbar {
        height: 3px!important;
        border-radius: 3px!important;
    }

    .info-area-wrap{
        padding-top: 60px;
    }
    .sec-title-left{
        padding-top: 20px;
        width: 30%;
    }
    .sec-scrolling-right{
        width: 70%;
        padding-bottom: 70px;
        padding-top: 50px;
    }
    .sec-scrolling-right .cont-scrolling{
        width: 100%;
        gap: 50px 25px;
    }
    .sec-scrolling-right .cont-scrolling li{
        width: 300px;
    }
    .sec-scrolling-right .cont-scrolling li a{
        min-height: 346px;
        height: auto;
        gap: 10px;
        padding: 20px;
        padding-top: 25px;
    }
    .sec-scrolling-right .cont-scrolling li:nth-child(1){
        margin-top: 62px;
    }
    .sec-scrolling-right .cont-scrolling li:nth-child(4){
        margin-top: -62px;
    }

    .info-cont-btn a{
        width: 140px;
        height: 45px;
        padding: 5px;
        padding-left: 20px;
    }
    .info-cont-btn .link{
        width: 140px;
        height: 45px;
        padding: 5px;
        padding-left: 20px;
    }
    .main-banner > div{
        width: 50%;
        padding: 25px;
    }
    .banner-inner-wrap{
        max-width: 430px;
        gap: 25px;
    }
    .banner-image{
        width: 80px;
        height: 80px;
    }
    .banner-text-wrap{
        width: calc(100% - 105px);
    }
    .banner-link{
        width: 30px;
        height: 30px;
    }
    .quick-menu li::after{
        display: none;
    }
}

@media screen and (max-width:940px) {
    .sec-scrolling-right .cont-scrolling li{
        width: 200px;
    }
}

@media screen and (max-width:850px) {
    .kv-wrap{
        aspect-ratio: 1400 / 520;
    }
    .news-title br{
        display: none;
    }

}

@media screen and (max-width:768px) {
	.banner-title-wrap{
		width:calc(100% - 43px);
	}
	.sec-title{
		font-size:24px;
	}
	.kv-link-title{
		font-size:28px;
		overflow: hidden;
		display: -webkit-box;
		text-overflow: ellipsis;
		-webkit-line-clamp:2;
		-webkit-box-orient:vertical;
	}
	main{
		margin-top: 60px;
	}
    .sec-scrolling-right .cont-scrolling li:nth-child(1):hover .info-image-wrap{
        background-image: none;
    }
    .sec-scrolling-right .cont-scrolling li:nth-child(2):hover .info-image-wrap{
        background-image: none;
    }
    .sec-scrolling-right .cont-scrolling li:nth-child(3):hover .info-image-wrap{
        background-image: none;
    }
    .sec-scrolling-right .cont-scrolling li:nth-child(4):hover .info-image-wrap{
        background-image: none;
    }
    .info-image-wrap img.info-image-icon-m{
        display: block;
    }
    .info-image-wrap img.info-image-icon-pc{
        display: none;
    }
    .sec-scrolling-right .cont-scrolling li:nth-child(1) .info-image-wrap {
        width: 95%;
    }

    .sec-scrolling-right .cont-scrolling li:nth-child(2) .info-image-wrap {
        width: 100%;
    }

    .sec-scrolling-right .cont-scrolling li:nth-child(3) .info-image-wrap {
        width: 100%;
    }

    .sec-scrolling-right .cont-scrolling li:nth-child(4) .info-image-wrap {
        width: 100%;
    }
    .info-image-wrap img{
        width: 100%;
    }
    .sec-scrolling-right .cont-scrolling li:nth-child(2) .info-image-wrap img{
        width: 95%;
        margin-right: 0;
        margin-left: 10%;
    }
    .kv-wrap{
        aspect-ratio: 1.167;
    }
    .today-area{
        display: none;
    }
    .today-area-m{
        display: block;
        width: 100%;
    }
    .committee-btn-wrap{
        width: 100%;
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
    }
    .committee-btn{
        width: calc(50% - 5px);
        height: 55px;
    }
    .committee-btn a{
        width: 100%;
        height: 100%;
        display: flex;
        gap: 10px;
        align-items: center;
        padding: 10px;
        border-radius: var(--radius-default);
        background-color: #fff;
        font-size: var(--font-16);
        font-weight: 500;
    }
    .committee-icon{
        width: 35px;
        height: 35px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .committee-icon svg{
        height: auto;
        
    }
    .committee-btn:nth-child(1) a .committee-icon{
        background-color: #eaeffc;
    }
    .committee-btn:nth-child(1) a .committee-icon svg{
        width: 35px;
    }
    .committee-btn:nth-child(2) a .committee-icon{
        background-color: #f5eff7;
    }
    .committee-btn:nth-child(2) a .committee-icon svg{
        width: 18px;
    }
    .kv-link-btn a{
        padding-left: 15px;
    }
    .today-percent-wrap{
        display: flex;
        flex-direction: column;
        width: 100%;
        border-radius: var(--radius-default);
        background-color: #fff;
        padding: 20px;
		padding-bottom:10px;
    }
    .info-icon{
        text-indent: -9999px;
        width: 13px;
        height: 13px;
        background: url('/assets/images/info_icon.svg') no-repeat center / 13px 13px;
        opacity: 0.3;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .today-top-text{
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: var(--font-12);
        font-weight: 400;
        color: rgba(0, 0, 0, 0.4);
        width: 100%;
        justify-content: flex-end;
        margin-bottom: 10px;
    }
    .stat-item{
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: var(--font-18);
        padding: 20px 0;
        border-bottom: var(--border-default);
    }

    .stat-item:last-child{
        border-bottom: none;
    }
    .stat-item .label{
        font-weight: 400;
        width: 35%;
    }
	.stat-item:nth-child(3) .label br{
		display:none;
	}
    .stat-item .value{
        font-weight: 700;
        width: 35%;
        display: flex;
        justify-content: flex-start;
		padding-left:7%;
    }
    .stat-item .change{
        font-weight: 700;
        width: 30%;
        display: flex;
        justify-content: flex-start;
		padding-left:7%;
    }
    .stat-item .change.up{
        color: #2cb67a;
    }
    .stat-item .change.down{
        color: #fa6b03;
    }
    .sec-more-btn{
        display: none;
    }
    .news-cont{
        flex-direction: column;
        gap: 30px;
    }
    .news-slider-control{
        display: none;
    }
    .news-menu-list{
        flex-direction: row;
        gap: 20px;
    }
    .news-menu-list li.focus a::after{
        left: 50%;
        transform:translate(-50%, 0);
        top:120%;
    }
    .info-area-wrap{
        flex-direction: column;
        justify-content: flex-start;
    }
    .main-info-area .sec-title-detail{
        display: none;
    }
    .sec-scrolling-right .cont-scrolling{
        gap: 50px 20px;
    }
    .sec-scrolling-right .cont-scrolling li{
        /* width: calc(50% - 10px); */
        width: 100%;
		height:fit-content;
    }
    .sec-title-left{
        width: 100%;
    }
    .sec-scrolling-right{
        width: 100%;
        padding: 0;
    }
    .sec-scrolling-right .cont-scrolling li:nth-child(1){
        margin-top: 80px;
    }
    .main-banner{
        flex-direction: column;
    }
    .main-banner > div{
        width: 100%;
        padding: 20px;
    }
    .banner-left a{
        justify-content: flex-start;
    }
    .banner-inner-wrap{
        width: 100%;
        max-width: 100%;
        gap: 20px;
    }
    .news-menu-wrap{
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-top: 0;
    }
    .news-slider-wrap{
        width: 100vw;
        margin-left: -20px;
        padding-right: 40px;
    }
    .news-slider-scrollbar{
        width: 100%!important;
        margin-left: 20px;
    }
    .news-slider-wrap .swiper-wrapper{
        width: calc(100% - 40px);
        margin-left: 20px;
        align-items: stretch;
    }
    .sec-more-btn-m{
        display: block;

    }
    .sec-more-btn-m a{
        display: flex;
        align-items: center;
        font-size: var(--font-18);
        font-weight: 400;
        gap: 8px;
    }
    .more-btn-icon{
        width: 10px;
        height: 10px;
        background: url('../images/add_icon.svg') no-repeat center / 10px 10px;
    }
    .news-title br{
        display: none;
    }
    .kvSwiper .swiper-slide{
        padding: 25px;
    }
    .kv-slider-control{
        width: 135px;
    }
    .slide-counter{
        margin: 0 15px;
    }
    .kv-slider-control .play-toggle{
        margin-left: 17px;
    }
    .kv-link-title{
        margin-bottom: 12px;
    }
    .kv-link-defail{
        margin-bottom: 22px;
		overflow: hidden;
		display: -webkit-box;
		text-overflow: ellipsis;
		-webkit-line-clamp:3;
		-webkit-box-orient:vertical;
    }
    .kv-link-btn a{
        background-color: #fff;
        color: #000000;
    }
    .kv-arrow-icon{
        background: url('../images/btn_arrow_w.svg') no-repeat center / 10px auto;
        background-color: var(--black-color);
        opacity: 1;

    }
    .info-cont-btn .kv-arrow-icon{
        background: url('../images/btn_arrow_w.svg') no-repeat center / 10px auto;
        background-color: var(--black-color);
        opacity: 1;
        width: 30px;
        height: 30px;
		flex:0 0 auto;
    }
    .main-kv-area{
        gap: 40px;
    }
    .main-news-area{
        margin-top: 75px;
        gap: 40px;
    }
    .sec-title-wrap{
        margin-bottom: 0;
    }
    .sec-title-left{
        padding-top: 0;
    }
    .info-area-wrap{
        padding-top: 75px;
    }
    .main-info-area{
        margin-bottom: 75px;
    }
    .banner-link .banner-link-inner{
        background-size: 7px auto;
        transform: rotate(-45deg);
    }
    .banner-detail br{
        display: block;
    }

    .sec-scrolling-right .cont-scrolling li a{
        height: auto;
        min-height: 1px;
        padding-top:20px;
        gap: 20px;
    }
    .info-cont-btn .link{
        padding: 7px 7px;
        padding-left: 15px;
        height: auto;
        width: 100%;
        gap: 2px;
        font-size: var(--font-16);
    }
    .info-title-wrap p br{
        display: none;
    }
    .news-slider-wrap .swiper-wrapper .swiper-slide{
        height: auto;
    }
    .news-slider-wrap .swiper-wrapper .swiper-slide a{
        gap: 10px;
		justify-content:space-between;
    }
    .news-slider-wrap .swiper-wrapper .swiper-slide{
        min-height: 180px;
    }
	.date-day{
		font-size:20px;
		line-height:1;
	}
	.date-year{
		line-height:1;
		font-size:13px;
	}
	.news-title{
		font-weight:700;
		font-size:16px;
	}
	.info-title-wrap strong{
		font-size:20px;
	}

}

@media screen and (max-width:500px){
    .sec-scrolling-right .cont-scrolling li:nth-child(4) .info-image-wrap {
        width: 110%;
    }
}

@media screen and (max-width:390px){
    .stat-item .label br{
		display:none;
	}
	.news-menu-list{
		gap:10px;
	}
}

@media screen and (max-width:344px){
	.kv-link-title{
		margin-bottom:5px;
		line-height:1.2;
	}
	.kv-link-defail{
		margin-bottom:10px;
		line-height:1.2;
	}
	.kv-link-btn{
		height:40px;
	}
	.kv-arrow-icon{
		width:30px;
		height:30px;
	}
	.kv-slider-control{
		height:40px;
	}
}

