@charset "utf-8"; :root {
    --point-color: #1D3D87;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.cs-scroll::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: #CBCBCB;
    border-radius: 45px;
}

::-webkit-scrollbar-thumb {
    height: 30%;
    background: #00243E;
    border-radius: 45px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.main-container {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.main-container .section {
    padding: 0 30px;
    overflow: hidden;
    font-size: 18px;
}

.main-container .btn-more {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0;
    color: #505050;
    display: inline-block;
    border-bottom: 1px solid #505050;
}

.main-tit {
    position: relative;
}

.main-tit h2 {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -2px;
    color: var(--point-color);
    line-height: 1;
    width: fit-content;
    position: relative;
}

.main-tit h2:before {
    content: '';
    position: absolute;
    left: 3px;
    right: 0;
    bottom: 2px;
    height: 15px;
    background: #D6B059;
    mix-blend-mode: multiply;
}

.main-tit .en {
    font-size: 60px;
    font-weight: 900;
    letter-spacing: -3px;
}

.main-tit .en:before {
    bottom: 8px;
}

.main-tit .btn-more {
    position: absolute;
    right: 0;
    bottom: 5px;
}

.main-tit span {
    display: block;
    font-size: 24px;
    color: #111;
    font-weight: 500;
    padding-top: 20px;
}

.scrolling-text-wrap {
    position: fixed;
    mix-blend-mode: color-dodge;
    left: 0;
    top: 40%;
    width: 100%;
    letter-spacing: -10px;
    font-size: 180px;
    font-weight: 900;
    overflow: hidden;
    color: #EFEFEF;
}

.scrolling-text {
    white-space: nowrap;
    display: flex;
    transform: translateX(0);
    animation: marquee 40s linear infinite;
}

.scrolling-text .line-txt {
    color: transparent;
    -webkit-text-stroke: 2px #EFEFEF;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-4582px);
    }
}

.main-visual.mob {
    display: none;
}

.main-visual.web {
    padding-top: 80px;
    max-width: 1655px;
    margin: 0 auto;
    overflow: hidden;
}

.main-visual .swiper-wrapper {
    height: 480px;
}

.main-visual .swiper-slide {
    height: auto;
}

.main-visual .swiper-slide .item-wrap {
    background: #fff;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    height: 100%;
}

.main-visual .swiper-slide .item-wrap.list .items {
    border-radius: 20px 20px 0 35px;
}

.main-visual .swiper-slide .items {
    transform: translateX(100%);
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    background-color: #fff;
    transition: 0.5s;
    transition-delay: 0.1s;
}

.main-visual .swiper-slide .items:nth-child(2) {
    transition-delay: 0.2s;
}

.main-visual .swiper-slide .items:nth-child(3) {
    transition-delay: 0.3s;
}

.main-visual .swiper-slide .items:nth-child(4) {
    transition-delay: 0.4s;
}

.main-visual .swiper-slide-active .items {
    transform: translateX(0);
}

.main-visual .swiper-slide .items.span2 {
    grid-column: span 2;
}

.video-area iframe {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}
.video-area video {position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #82878d; object-fit: cover;}

.main-visual .swiper-slide .items.video-area {
    padding: 0;
    height: 100%;
    position: relative;
}

.main-visual .swiper-slide .items.video-area:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.05);
}

.main-visual .pos-box {
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
    bottom: 0;
}

.main-visual .pos-box>a {
    display: block;
    padding: 15px;
    font-size: 28px;
    letter-spacing: 0;
    font-weight: bold;
    background: rgba(0,0,0,0.3);
    color: #fff;
}

.main-visual .pos-box em {
    color: #fbb938;
}

.main-visual .pos-box .label {
    position: relative;
    background: rgba(251,185,56,0.7);
    border: 1px solid rgba(255,255,255,0.5);
    margin-left: 10px;
    color: #fff;
    display: inline-block;
    font-size: 25px;
    padding: 0 20px;
}

.main-visual .pos-box .label img {
    width: 26px;
    vertical-align: middle;
}

.main-visual .pos-box .label>em {
    position: absolute;
    left: -5px;
    top: -5px;
    width: 10px;
    height: 10px;
    background: #fff;
    box-sizing: border-box;
    border: 1px solid #111;
}

.main-visual .pos-box .label>em:nth-child(2) {
    left: auto;
    right: -5px;
}

.main-visual .pos-box .label>em:nth-child(3) {
    left: auto;
    right: -5px;
    top: auto;
    bottom: -5px;
}

.main-visual .pos-box .label>em:nth-child(4) {
    top: auto;
    bottom: -5px;
}

.main-visual .swiper-slide .items.bg-yellow {
    background-color: #fbb938;
}

.main-visual .swiper-slide .items.bg-red {
    background-color: #d96868;
}

.main-visual .swiper-slide .items.bg-remon {
    background-color: #f2df86;
}

.main-visual .swiper-slide .items.bg-purple {
    background-color: #8a86cc;
}

.main-visual .swiper-slide .items.bg-sky {
    background-color: #6dcded;
}

.main-visual .swiper-slide .items.bg-green {
    background-color: #87c790;
}



.main-visual .items .inner {
    display: block;
    height: 100%;
    box-sizing: border-box;
    padding-bottom: 40px;
    position: relative;
    transform: translateX(20%);
    transition: 0.3s;
    transition-delay: 0.3s;
}

.main-visual .swiper-slide-active .items .inner {
    transform: translateX(0);
}

.main-visual .items .txt {
    color: #111;
    font-size: 20px;
    text-align: left;
    padding: 40px;
    transform: translateX(20%);
    transition: 0.3s ease-out;
}

.main-visual .items .txt>p {
    font-weight: 500;
}

.main-visual .items .txt strong {
    font-size: 35px;
    display: block;
    padding: 10px 0;
    line-height: 1.2;
}

.main-visual .items .bg-area {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    z-index: -1;
    transition: 0.2s ease-out;
}

.main-visual .items .bg-area img {
    transform: translateX(20%);
}

.main-visual .swiper-slide-active .items .txt {
    transform: translateX(0);
}

.main-visual .swiper-slide-active .items .bg-area img {
    transform: translateX(0);
}

.main-visual .items:hover .txt {
    transform: scale(1.1);
}


/* 241122 추가 s */
.main-visual .swiper-slide .items.bg-job {background-color: #80b4d1;}
.main-visual .swiper-slide .items.bg-red02 {background-color: #FF6363;}
.main-visual .swiper-slide .items.bg_blue {background-color: #80b4d1;}
.main-visual .swiper-slide .items.bg-blue {background-color: #80b4d1;}
.main-visual .swiper-slide-active .items .txt > span {display: block; font-size: 18px;}
.main-visual .swiper-slide-active .items .txt > .impact {max-width: fit-content; color: #fff; padding: 2px 15px; background: #4B1300; border-radius: 50px; margin-bottom: 5px;}
.main-visual .swiper-slide-active .items .txt > .link {display: flex; align-items: center; font-size: 18px; color: #111;}
.main-visual .items .bg-area {bottom: 0;}
.main-visual .items.item02 .bg-area {bottom: -10px; left: 9%;}
.main-visual .items.item04 .bg-area {bottom: -10px;}
.main-visual .items.item07 .bg-area {bottom: -10px; left: 0 !important;}
/* 241122 추가 e */



.main-visual .items:hover .bg-area {
    transform: scale(1.1);
}

.main-visual .items.bg-yellow .bg-area img {
    width: 370px;
}

.main-visual .items.bg-sky .bg-area img {
    width: 343px;
}

.main-visual .items.bg-red .bg-area img {
    width: 293px;
}

.main-visual .items.bg-purple .bg-area img {
    width: 295px;
}

.main-visual .items.bg-green .bg-area {
    left: auto;
    right: 30px;
}

.main-visual .items.bg-green .bg-area img {
    width: 395px;
}

.video-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px 20px;
}

.video-controls button {
    text-indent: -9999px;
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-position: center;
}

.play .video-controls .play-btn {
    background-image: url('/type/KOR_2024/img/main/ico-play.png');
}

.video-controls .play-btn {
    background-image: url('/type/KOR_2024/img/main/ico-stop.png');
}

.video-controls .full-screen {
    background-image: url('/type/KOR_2024/img/main/ico-full.png');
}

.video-controls .volume-btn {
    width: 29px;
    background-image: url('/type/KOR_2024/img/main/ico-mute.png');
}

.video-controls .volume-btn.on {
    background-image: url('/type/KOR_2024/img/main/ico-volume.png');
}

.video-popup {
    position: absolute;
    z-index: 20;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100px;
    height: 100px;
    text-indent: -9999px;
    background: url('/type/KOR_2024/img/main/ico-play-btn.png') 50% no-repeat;
}

.main-slide-control {
    position: relative;
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-slide-control .swiper-button-next, .main-slide-control .swiper-button-prev {
    position: relative;
    margin-top: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background-size: 15px;
}

.main-slide-control .swiper-button-next {
    background-image: url('/type/KOR_2024/img/main/icon-arrow-right.svg');
}

.main-slide-control .swiper-button-prev {
    background-image: url('/type/KOR_2024/img/main/icon-arrow-left.svg');
}

.main-slide-control .btn-play {
    position: relative;
    width: 50px;
    height: 30px;
}

.main-slide-control .btn-play:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 10px;
    height: 15px;
    border-left: 3px solid #000;
    border-right: 3px solid #000;
    box-sizing: border-box;
}

.main-slide-control .btn-play.on:before {
    width: 0;
    height: 0;
    border-left: 12px solid #000;
    border-right: none;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    box-sizing: border-box;
}

.main-slide-control .swiper-pagination {
    position: relative;
    display: flex;
    gap: 10px;
    padding-left: 15px;
}

.main-slide-control .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}

.main-slide-control .swiper-pagination-bullet-active {
    background-color: #000;
}

.video-popup-wrap {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
}

.video-popup-wrap .content {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 1200px;
}

.video-popup-wrap .content video {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.video-popup-wrap .video-pop-close {
    position: absolute;
    z-index: -1;
    top: 0;
    right: -50px;
    text-indent: -9999px;
    width: 65px;
    height: 60px;
    background: #000;
    border-radius: 0 30px 30px 0;
}

.video-popup-wrap .video-pop-close:before {
    content: '';
    position: absolute;
    left: 25px;
    top: 27px;
    width: 25px;
    height: 3px;
    background: #fff;
    transform: rotate(45deg);
}

.video-popup-wrap .video-pop-close:after {
    content: '';
    position: absolute;
    left: 25px;
    top: 27px;
    width: 25px;
    height: 3px;
    background: #fff;
    transform: rotate(-45deg);
}

.video-popup-wrap .subtitle-btn {
    position: absolute;
    z-index: -1;
    top: 70px;
    right: -50px;
    width: 65px;
    height: 60px;
    background: #0223a3;
    color: #fff;
    line-height: 1;
    font-weight: 500;
    padding-left: 10px;
    border-radius: 0 30px 30px 0;
}

@media screen and (min-width: 1400px) {
    .main-visual .pos-box .label {
        padding: 0 2vw;
    }
}

.section.new-wrap {
    padding: 80px 30px 100px;
    position: relative;
}

.section.new-wrap:before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 60%;
    top: 0;
    width: 200%;
    height: 100%;
    transform: skewX(-45deg);
    background: #F1F2F7;
}

.media-wrap {
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    border-top-left-radius: 50px;
}

.media-wrap .main-tit em {
    color: #fff;
    font-style: normal;
}

.media-wrap .post-list {
    width: 55%;
    mix-blend-mode: multiply;
    position: relative;
    padding: 70px 90px;
    box-sizing: border-box;
    display: grid;
}

.media-wrap .post-list:before {
    content: '';
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% + 308px);
    height: 100%;
    background: var(--point-color);
}

.media-wrap .post-list:after {
    content: '';
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% + 308px);
    height: 100%;
    background: url('/type/KOR_2024/img/main/sdu-txt.svg') 0 0 no-repeat;
    background-size: 100%;
}

.media-wrap .post-list>ul {
    overflow: hidden;
}

.media-wrap .post-list>ul>li + li {
    padding-top: 20px;
}

.media-wrap .post-list a {
    color: #fff;
    display: block;
}

.media-wrap .post-list .btn-more {
    display: inline-block;
    border-color: #fff;
    width: fit-content;
    margin-top: 40px;
}

.media-wrap .post-list p {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}

.media-wrap .post-list p, .media-wrap .post-list span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.media-wrap .post-list span {
    opacity: 0.8;
    font-weight: 300;
    padding-top: 10px;
    font-size: 18px;
}

.media-wrap .post-slide {
    width: 45%;
    min-width: 560px;
    position: relative;
    padding-top: 70px;
}

.post-slide-control {
    position: absolute;
    right: 0;
    top: 65px;
    display: flex;
    gap: 10px;
}

.post-slide-control .swiper-button-next, .post-slide-control .swiper-button-prev {
    position: static;
    width: 60px;
    height: 60px;
    margin-top: 0;
    background-size: 60px;
}

.post-slide-control .swiper-button-next {
    background-image: url('/type/KOR_2024/img/main/ico-slide-next.png');
}

.post-slide-control .swiper-button-prev {
    background-image: url('/type/KOR_2024/img/main/ico-slide-prev.png');
}

.post-slide .swiper {
    padding-top: 30px;
}

.post-slide .swiper-slide {
    display: block;
    height: 497px;
    opacity: 0 !important;
    color: #fff;
    position: relative;
    border-top-right-radius: 170px;
    border-bottom-right-radius: 170px;
    overflow: hidden;
}

.post-slide .swiper-slide-active {
    opacity: 1 !important;
}

.post-slide .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-slide .swiper-slide .txt {
    line-height: 1.4;
    font-size: 18px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    box-sizing: border-box;
    padding: 40px 60px 40px 40px;
}

.post-slide .swiper-slide .txt:before {
    position: absolute;
    z-index: -1;
    content: '';
    left: 0;
    right: 0;
    bottom: -100%;
    height: 150%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(185,132,15,0.8) 90%);
    transition: bottom 0.2s;
}

.post-slide .swiper-slide .txt>p {
    font-size: 30px;
    padding-bottom: 10px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-slide .swiper-slide .txt>span {
    word-break: break-all;
    padding-right: 30px;
}

.post-slide .swiper-slide:hover .txt:before {
    bottom: 0;
}

.new-wrap .info-wrap {
    display: flex;
    gap: 80px;
    padding-top: 55px;
    max-width: 1420px;
    margin: 0 auto;
    overflow: hidden;
}

.info-wrap .notice-wrap {
    width: 65%;
    position: relative;
}

.notice-wrap .tab-btn {
    display: flex;
    gap: 5px;
    padding-top: 30px;
}

.main-container .notice-slide .btn-more {
    position: absolute;
    right: 0;
    top: 30px;
}

.notice-wrap .tab-btn button {
    border: 1px solid #c3c3c3;
    font-weight: 500;
    font-size: 18px;
    color: #00243E;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: 45px;
    min-width: 114px;
    padding: 0 20px;
}

.notice-wrap .tab-btn button.active {
    color: #fff;
    background-color: #1D3D87;
    border-color: #1D3D87;
}

.notice-wrap .notice-slide {
    overflow: hidden;
}

.notice-slide .tab-con {
    display: none;
}

.notice-slide .tab-con.active {
    display: block;
}

.notice-slide .swiper-slide {
    width: 100% !important;
}

.notice-slide .swiper-slide>ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
}

.notice-slide .swiper-slide>ul>li {
    display: flex;
    font-size: 18px;
    gap: 33px;
    height: 84px;
    align-items: center;
    border-bottom: 1px solid #ccc;
    font-weight: 500;
    transition: all 0.3s;
}

.notice-slide .swiper-slide>ul>li:hover {
    border-color: #1D3D87;
}

.notice-slide .swiper-slide>ul>li:hover a {
    color: #1D3D87;
}

.notice-slide .swiper-slide .item {
    white-space: nowrap;
    color: #1D3D87;
}

.notice-slide .swiper-slide a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #111;
}

.notice-slide .slide-info {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    padding-top: 30px;
}

.notice-slide .swiper-pagination {
    position: static;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: auto;
    color: #505050;
    font-weight: 200;
}

.notice-slide .swiper-pagination-current {
    color: #111;
    font-weight: bold;
}

.notice-slide .swiper-pagination .bar {
    width: 20px;
    height: 1px;
    background: #CBCBCB;
}

.notice-slide .swiper-button-prev, .notice-slide .swiper-button-next {
    position: static;
    margin-top: 0;
    width: 60px;
    height: 60px;
    background-size: 60px;
}

.notice-slide .swiper-button-next {
    background-image: url('/type/KOR_2024/img/main/ico-slide-next.png');
}

.notice-slide .swiper-button-prev {
    background-image: url('/type/KOR_2024/img/main/ico-slide-prev.png');
}

.info-wrap .schedule-wrap {
    width: 35%;
    padding-bottom: 20px;
}

.schedule-wrap .schedule {
    position: relative;
    margin-top: 45px;
    margin-right: 20px;
    color: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 40px 40px 60px;
    background: linear-gradient(180deg, rgba(3,33,101,1) 45%, rgba(3,33,101,0.6) 100%), url('/type/KOR_2024/img/main/img-schedule-bg.jpg');
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 100%;
}

.schedule-wrap .schedule:before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 20px;
    top: 20px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: #ccc;
}

.schedule-wrap .schedule .year {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    padding-bottom: 20px;
    color: #fff;
}

.schedule-wrap .scroll-box {
    max-height: 290px;
    overflow: auto;
}

.schedule-wrap .scroll-box>li {
    height: 98px;
    font-size: 18px;
    width: 85%;
    display: flex;
    gap: 5px;
    flex-direction: column;
    justify-content: center;
    color: #D6B059;
    font-weight: 300;
    line-height: 1.2;
}

.schedule-wrap .scroll-box>li + li {
    border-top: 1px solid rgba(255,255,255,0.3);
}

.schedule-wrap .scroll-box>li>p {
    font-size: 30px;
    font-weight: 500;
    color: #fff;
}

@media screen and (min-width: 1500px) {
    .media-wrap .post-list {
        padding-bottom: 95px;
    }

    .media-wrap .post-list>ul>li + li {
        padding-top: 30px;
    }

    .media-wrap .post-list .btn-more {
        margin-top: 70px;
    }

    .post-slide .swiper-slide {
        border-top-right-radius: 200px;
        border-bottom-right-radius: 200px;
    }
}

.section.explore {
    overflow: hidden;
    position: relative;
}

.section.explore:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 800px;
    height: 100%;
    border-left: 1px solid #EFEFEF;
    border-right: 1px solid #EFEFEF;
}

.section.explore:after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    border-right: 1px solid #EFEFEF;
}

.explore-wrap {
    max-width: 1420px;
    margin: 0 auto;
    padding: 110px 0 190px;
}

.explore-wrap .main-tit h2 {
    margin: 0 auto;
}

.explore-wrap .mob-ex {
    display: none;
}

.explore-wrap .grid-box {
    padding-top: 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 110px;
    align-items: center;
}

.grid-box .box-wrap {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.explore-box {
    position: relative;
    border-radius: 15px;
    background-repeat: no-repeat;
    background-position: center;
    padding: 50px 40px 90px;
    transition: border-radius 0.3s;
}

.explore-box.bg01 {
    background-image: url('/type/KOR_2024/img/main/img-explore-manage.jpg');
}

.explore-box.bg02 {
    background-image: url('/type/KOR_2024/img/main/img-explore-wefare.jpg');
}

.explore-box.bg03 {
    background-image: url('/type/KOR_2024/img/main/img-explore-machine.jpg');
}

.explore-box.bg04 {
    background-image: url('/type/KOR_2024/img/main/img-explore-law.jpg');
}

.explore-box.bg05 {
    background-image: url('/type/KOR_2024/img/main/img-explore-international.jpg');
}

.explore-box.bg06 {
    background-image: url('/type/KOR_2024/img/main/img-explore-fire.jpg');
}

.explore-box.bg07 {
    background-image: url('/type/KOR_2024/img/main/img-explore-art.jpg');
}

.explore-box.bg08 {
    background-image: url('/type/KOR_2024/img/main/img-explore-counsel.jpg');
}

.explore-box.bg09 {
    background-image: url('/type/KOR_2024/img/main/img-explore-it.jpg');
}

.explore-box.bg10 {
    background-image: url('/type/KOR_2024/img/main/img-explore-literature.jpg');
}

.explore-box:after {
    position: absolute;
    content: '';
    background: url('/type/KOR_2024/img/main/explore sdu.svg') 50% no-repeat;
    width: 40px;
    height: 155px;
    background-size: 25px;
    opacity: 0;
    right: -6%;
    top: 23%;
    transform: rotate(9deg);
}

.explore-box:hover {
    border-bottom-right-radius: 300px;
}

.explore-box:hover:after {
    right: 2%;
    top: 45%;
    transform: rotate(32deg);
    opacity: 1;
    transition: all 0.4s 0.2s;
}

.line01 .explore-box:nth-child(2):hover:after {
    right: 8%;
    transform: rotate(38deg);
}

.line01 .explore-box:nth-child(3):hover:after, .line02 .explore-box:nth-child(2):hover:after, .line02 .explore-box:nth-child(3):hover:after {
    right: 10%;
    transform: rotate(43deg);
}

.line02 .explore-box:nth-child(4):hover:after, .line03 .explore-box:nth-child(2):hover:after {
    right: 4%;
    transform: rotate(35deg);
}

.line02 .explore-box:nth-child(1):hover:after, .line03 .explore-box:nth-child(1):hover:after {
    right: 9%;
    transform: rotate(40deg);
}

.explore-box a {
    font-size: 18px;
    color: #fff;
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-top: 8px;
    padding: 0 3px;
    background-color: #111;
    /* transition: color 0.3s; */
}

/* .explore-box a:after {
    position: absolute;
    z-index: -1;
    content: '';
    left: -8px;
    bottom: 8px;
    width: 0;
    height: 16px;
    background: #B9840F;
    transition: width 0.25s;
} */

/* .explore-box a:hover:after {
    width: calc(100% + 10px);
} */

.explore-box a:hover {
    color: #111;
    font-weight: bold;
    background-color: #efb921;
}

.explore-box>p {
    font-size: 34px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 20px black;
}

.explore-box ul {
    padding-top: 10px;
}

.section.interview {
    mix-blend-mode: multiply;
    background: #1D3D87;
    color: #fff;
    position: relative;
    height: 1280px;
}

.section.interview:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 800px;
    height: 100%;
    border-left: 1px solid #335092;
    border-right: 1px solid #335092;
}

.section.interview:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    border-right: 1px solid #335092;
}

.interview-wrap {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    height: 100%;
}

.interview-wrap .main-tit.center {
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    font-size: 130px;
    letter-spacing: -1px;
    font-weight: 900;
    line-height: 1.1;
}

.interview-wrap .main-tit span {
    padding-top: 0;
    white-space: nowrap;
    padding-left: 100px;
    color: #fff;
    font-size: 30px;
    text-align: left;
    font-weight: 300;
    line-height: 1.5;
    width: fit-content;
}

.interview-wrap .interview-box {
    position: absolute;
    overflow: hidden;
    display: block;
    color: #fff;
    margin-top: 0;
    transition: all 0.4s ease-in-out;
}

.interview-wrap .interview-box:focus:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 5;
    box-shadow: 0 0 5px red inset;
}

.interview-wrap .interview-box:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20%;
    opacity: 0;
    background: linear-gradient(180deg, rgba(231,185,33,0) 0%, #efb921 100%);
    transition: all 0.4s ease-in-out;
}

.interview-wrap .interview-box:hover:after, .interview-wrap .interview-box:focus:after {
    height: 50%;
    opacity: 1;
}

.interview-wrap .interview-box img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interview-box .info-area {
    position: absolute;
    color: #fff;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: -55px;
    box-sizing: border-box;
    padding: 10px 30px 0;
    font-size: 18px;
    font-weight: 200;
    background: rgba(0,0,0,0.7);
    transition: bottom 0.4s, background 0.4s;
}

.interview-box .info-area>p {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
}

.interview-box .info-area .hide {
    font-weight: 400;
    padding-top: 10px;
    display: inline-block;
    text-decoration: underline;
    text-underline-position: under;
}

.interview-box:hover .info-area, .interview-box:focus .info-area {
    bottom: 25px;
    background: none;
    color: #111;
    font-weight: bold;
}

.interview-box:hover .info-area>p {
    color: #111;
}

.interview-box:hover .info-area .hide {
    font-weight: 600;
}

.interview-wrap .interview-box.pos01 {
    top: 100px;
    left: 0;
    width: 520px;
    height: 280px;
}

.interview-wrap .interview-box.pos01:hover, .interview-wrap .interview-box.pos01:focus {
    margin-top: -48px;
    height: 327px;
}

.interview-wrap .interview-box.pos01 img {
    width: 625px;
    top: 0;
}

.interview-wrap .interview-box.pos02 {
    top: 320px;
    right: 0;
    width: 504px;
    height: 650px;
}

.interview-wrap .interview-box.pos02:hover, .interview-wrap .interview-box.pos02:focus {
    margin-top: -45px;
    height: 694px;
}

.interview-wrap .interview-box.pos02 img {
    width: 600px;
}

.interview-wrap .interview-box.pos03 {
    bottom: 100px;
    left: 70px;
    width: 463px;
    height: 250px;
}

.interview-wrap .interview-box.pos03:hover, .interview-wrap .interview-box.pos03:focus {
    margin-top: -45px;
    height: 340px;
}

.interview-wrap .interview-box.pos03 img {
    left: 0;
    transform: translateX(0);
}

.main-container .interview-wrap .btn-more {
    position: absolute;
    padding: 10px 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: #fff;
    bottom: 100px;
    border-bottom: none;
}

.main-container .interview-wrap .btn-more:before {
    content: '';
    position: absolute;
    width: 38px;
    height: 1px;
    left: 20px;
    bottom: 8px;
    background: #fff;
}

html.hover * {
    cursor: none;
}

html.hover .cursor-img, html.hover .cursor {
    opacity: 1;
}

.cursor-img {
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
}

.cursor {
    opacity: 0;
    mix-blend-mode: difference;
    transition: opacity 0.2s;
    pointer-events: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    color: #BE9029;
}

.cursor-inner {
    position: absolute;
}

.cursor-pointer {
    width: 220px;
    height: 220px;
    transform: translate(-50%,-50%);
    transition: all 0.2s;
}

.cursor-arrow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: #111;
    /* background: linear-gradient(135deg, rgba(190,144,41,1) 0%, rgba(214,176,89,1) 100%); */
    background: #efb921;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    transition: width 0.2s, height 0.2s;
}

.cursor-arrow span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    transition: opacity 0.4s;
}

.cursor-pointer span {
    font-size: 18px;
    position: absolute;
    left: 50%;
    transform-origin: 0 110px;
    display: inline-block;
    width: 12px;
}

.rolling-txt {
    position: relative;
    opacity: 0;
    transition: all 0.2s;
    width: 220px;
    height: 220px;
    text-align: center;
    animation: rollingAni linear infinite 10s;
}

html.hover .rolling-txt {
    opacity: 1;
}

html.sm .cursor {
    opacity: 0;
}

html.sm .cursor-img {
    mix-blend-mode: difference;
}

html.sm .cursor-arrow {
    width: 30px;
    height: 30px;
}

html.sm .cursor-arrow span {
    opacity: 0;
}

@keyframes rollingAni {
    0% {
        transform: rotate(0deg);
        transform-origin: center center;
    }

    100% {
        transform: rotate(360deg);
    }
}

@media screen and (min-width: 1400px) {
    .interview-wrap .interview-box.pos03 {
        left: 100px;
    }
}

.section.pride {
    position: relative;
    overflow: hidden;
    background: #f3f5f9;
}

.pride-wrap {
    max-width: 1600px;
    margin: 0 auto;
    height: 690px;
    display: flex;
}

.pride-wrap .left {
    position: absolute;
    z-index: 5;
    left: -16%;
    top: 0;
    transform: skewX(-25deg);
    width: 50%;
    min-width: 700px;
    height: 100%;
    overflow: hidden;
}

.pride-wrap .left:before {
    content: '';
    position: absolute;
    right: -82%;
    top: 0;
    width: 150%;
    height: 100%;
    min-width: 1420px;
    transform: skew(25deg);
    background: url('/type/KOR_2024/img/main/img-pride-bg.jpg') -67px 100% no-repeat;
    background-size: 1420px;
}

.pride-wrap .txt-box {
    position: absolute;
    z-index: 10;
    left: 50%;
    padding: 0 30px;
    box-sizing: border-box;
    top: 100px;
    transform: translateX(-50%);
    max-width: 1480px;
    width: 100%;
    letter-spacing: -1px;
    text-align: center;
    font-size: 20px;
    color: #111;
}

.pride-wrap .txt-box .inner-pos {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pride-wrap .txt-box p {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    padding-top: 20px;
}

.pride-wrap .txt-box span {
    position: relative;
}

.pride-wrap .txt-box span:before {
    content: '';
    position: absolute;
    left: -40px;
    top: -23px;
    width: 84px;
    height: 137px;
    background: url('/type/KOR_2024/img/main/ico-left-leap.png') 50% no-repeat;
}

.pride-wrap .txt-box span:after {
    content: '';
    position: absolute;
    right: -40px;
    top: -23px;
    width: 84px;
    height: 137px;
    background: url('/type/KOR_2024/img/main/ico-right-leap.png') 50% no-repeat;
}

.pride-wrap .scroll-wrap {
    margin-left: auto;
    width: 55%;
    /* overflow-y: auto; 백업수정 */
}

.pride-wrap .scroll-wrap>a {
    display: flex;
    gap: 45px;
}

.pride-wrap .box-scroll-wrap {
    padding: 80px 0 20px;
}

.pride-wrap .scroll-vertical {
    width: 50%;
    max-width: 410px;
    /* display: grid; 백업수정 */
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
}

.pride-wrap .scroll-vertical.ani01 {
    transform: translateY(0);
    animation: scrollUp01 30s linear infinite;
}

.pride-wrap .scroll-vertical.ani02 {
    transform: translateY(-160px);
    animation: scrollUp02 40s linear infinite;
}

.pride-wrap .scroll-vertical .box.mobhide {
    display: grid;
}

.pride-wrap .scroll-vertical .box.mobshow {
    display: none;
}

.pride-wrap .scroll-vertical .box {
    position: relative;
    display: grid;
    grid-template-rows: 4fr minmax(100px, 1fr);
    color: #111;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -1px;
    background: #fff;
    height: 320px;
    box-sizing: border-box;
    margin-bottom: 45px;
    box-shadow: 3px 3px 5px rgba(215,215,215,0.5);
}

.pride-wrap .box .bg-area {
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    background-repeat: no-repeat;
    background-size: cover;
}

.pride-wrap .box .bg-area strong {
    font-size: 35px;
    font-weight: 700;
    display: block;
    letter-spacing: -2px;
}

.pride-wrap .box .bg-area p {
    margin-top: auto;
}

.pride-wrap .box .bg-area p>em {
    font-size: 80px;
    line-height: 50px;
    font-weight: 900;
    color: #1D3D87;
    vertical-align: baseline;
    font-style: normal;
}

.pride-wrap .box .bg-area.bg01 {
    background-image: url('/type/KOR_2024/img/main/pride-bg01.jpg');
}

.pride-wrap .box .bg-area.bg02 {
    background-image: url('/type/KOR_2024/img/main/pride-bg02.jpg');
}

.pride-wrap .box .bg-area.bg03 {
    background-image: url('/type/KOR_2024/img/main/pride-bg01.jpg');
}

.pride-wrap .box .bg-area.bg04 {
    background-image: url('/type/KOR_2024/img/main/pride-bg04.jpg');
}

.pride-wrap .box .bg-area.bg05 {
    background-image: url('/type/KOR_2024/img/main/pride-bg05.jpg');
}

.pride-wrap .box span {
    display: flex;
    align-items: center;
    line-height: 1.2;
    padding: 0 30px;
}

@keyframes scrollUp01 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-1095px);
    }
}

@keyframes scrollUp02 {
    0% {
        transform: translateY(-160px);
    }

    100% {
        transform: translateY(-1620px);
    }
}

@media screen and (min-width: 1400px) {
    .pride-wrap .left:before {
        right: -69%;
    }

    .pride-wrap .scroll-vertical .box {
        font-size: 24px;
        height: 460px;
        grid-template-rows: 4fr minmax(120px, 1fr);
    }

    .pride-wrap .box .bg-area {
        padding: 40px;
        line-height: 1.3;
    }

    .pride-wrap .box .bg-area strong {
        font-size: 40px;
    }

    .pride-wrap .box .bg-area p>em {
        font-size: 100px;
    }

    .pride-wrap .box span {
        padding: 0 40px;
    }

    .pride-wrap .scroll-vertical.ani02 {
        transform: translateY(-230px);
        animation: scrollUp02 40s linear infinite;
    }

    @keyframes scrollUp01 {
        0% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(-1515px);
        }
    }

    @keyframes scrollUp02 {
        0% {
            transform: translateY(-230px);
        }

        100% {
            transform: translateY(-2250px);
        }
    }
}

.section.story {
    padding: 100px 30px 150px;
}

.sns-story-wrap {
    max-width: 1420px;
    margin: 0 auto;
    position: relative;
}

.sns-story-wrap .sns-lnk {
    display: flex;
    gap: 5px;
    position: absolute;
    right: 0;
    top: 15px;
}

.sns-story-wrap .sns-lnk>li>a {
    display: block;
    transition: opacity 0.3s;
}

.sns-story-wrap .sns-lnk>li>a:hover, .sns-story-wrap .sns-lnk>li>a:focus {
    opacity: 0.7;
}

.sns-story-slide {
    padding: 70px 50px 0;
    position: relative;
}

.sns-story-slide .swiper {
    overflow: hidden;
}

.sns-story-slide .swiper-slide {
    height: auto !important;
    align-self: stretch;
}

.sns-story-slide .img-area {
    overflow: hidden;
    transition: all 0.3s;
    height: 0;
    position: relative;
    padding-top: 100%;
}

.sns-story-slide .img-area img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.sns-story-slide .swiper-slide:hover .img-area {
    opacity: 0.7;
}

.sns-story-slide .swiper-slide:hover .img-area img {
    transform-origin: center center;
    transform: scale(1.1);
}

.sns-story-slide .tit {
    word-break: break-all;
    margin: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #111;
    line-height: 1.2;
}

.sns-story-slide .label {
    display: inline-block;
    margin-left: 20px;
}

.sns-story-slide .label img {
    width: 30px;
}

.sns-story-slide .swiper-button-next {
    right: 15px;
    transform: translateY(-50%);
    margin-top: 0;
    background-image: url('/type/KOR_2024/img/main/ico-slide-next.png');
    width: 90px;
    height: 90px;
    background-size: 90px;
}

.sns-story-slide .circle-txt {
    /*mix-blend-mode: difference;*/
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 170px;
    height: 170px;
}

.sns-story-slide .circle-txt .text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    font-size: 18px;
    color: #000;
    font-weight: 500;
    animation: textRotation 8s linear infinite;
}

.sns-story-slide .circle-txt .text>span {
    position: absolute;
    left: 50%;
    transform-origin: 0 85px;
}

@keyframes textRotation {
    to {
        transform: rotate(360deg);
    }
}

@media screen and (min-width: 1550px) {
    .sns-story-slide .swiper-button-next {
        right: 0;
    }

    .sns-story-slide .circle-txt {
        right: -40px;
    }
}
