@charset "utf-8";

/* visual s */
#visual {
    position: relative;
    z-index: 9;
    width: 100%;
    height: 474px;
}

#visual .imgBox {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

#visual .imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#visual .txtBox {
    margin: 0 auto;
    padding-inline: 20px;
    padding-top: 65px;
    max-width: 1440px;
}

#visual .txtBox h3 {
    margin-bottom: 20px;
    
    font-size: 35px;
    font-weight: 400;
    color: #333;
}

#visual .txtBox h2 {
    margin-bottom: 40px;
    
    font-size: 55px;
    font-weight: 700;
    color: #333333;
}

#visual .txtBox p {
    font-size: 16px;
    font-weight: 300;
    color: #333;
}

#visual .quickGreet {
    display: inline-flex;
    gap: 20px;
    align-items: center;
    margin-top: 40px;
    padding-inline: 30px;
    height: 44px;
    background-color: #5e2dc1;
    color: #fff;
    transition: 0.3s;
    border-radius: 10px 0px;
}

#visual .quickGreet:hover i {
    transition: 0.3s;
}

#visual .quickGreet:hover {
    background-color: #1e1e58;
    font-weight: 500;
    color: #fff;
    transition: 0.3s;
}

#visual .quickGreet:hover i {
    transition: 0.3s;
    filter: brightness(1.7);
}

@media screen and (max-width : 1024px) {
    #visual {
        height: 310px;
    }

    #visual .txtBox h3 {
        margin-bottom: 14px;
        font-size: 25px;
    }

    #visual .txtBox h2 {
        margin-bottom: 26px;
        font-size: 40px;
    }

    #visual .txtBox p {
        font-size: 15px;
    }

    #visual .quickGreet {
        margin-top: 30px;
        padding-inline: 20px;
        height: 40px;
        font-size: 14px;
    }
}

@media screen and (max-width : 768px) {
    #visual .txtBox {
        padding-top: 35px;
    }

    #visual .txtBox h3 {
        margin-bottom: 10px;
        font-size: 20px;
    }

    #visual .txtBox h2 {
        margin-bottom: 18px;
        font-size: 36px;
    }

    #visual .quickGreet {
        margin-top: 25px;
        padding-inline: 16px 10px;
        height: 36px;
    }
}

@media screen and (max-width : 768px) {
    #visual {
        height: 210px;
    }

    #visual .txtBox h3 {
        font-size: 20px;
        filter: drop-shadow(0px 0px 3px rgba(255, 255, 255, 1));
        text-shadow: 0 0 9px rgba(255, 255, 255, .35);
    }

    #visual .txtBox h2 {
        font-size: 32px;
        filter: drop-shadow(0px 0px 3px rgba(255, 255, 255, 1));
        text-shadow: 0 0 4px rgba(255, 255, 255, .65);
    }

    #visual .txtBox p {
        max-width: 63%;
        font-size: 14px;
        padding-block: 1rem;
        padding-inline: 20px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.657);
    }

    #visual .txtBox p br {
        display: none;
    }

    #visual .quickGreet {
        display: none;
    }
}

@media screen and (max-width : 568px) {
    #visual .txtBox h2 {
        margin-bottom: 11px;
    }

    #visual .txtBox p {
        max-width: 60%;
        word-break: keep-all;
    }
}

@media screen and (max-width : 430px) {
    #visual .txtBox p {
        max-width: 80%;
    }
}

@media screen and (max-width: 340px) {
    #visual {
        height: 220px;
    }
}

/* visual end */

/* quick s */

#quick {
    padding-block: 78px 78px;
    overflow: hidden;
    position: relative;
}

/* #quick 배경 circle */
#quick .circleWrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

#quick .circleWrap .cirLarge {
    position: absolute;
    top: -78px;
    right: 0;
}

#quick .circleWrap .cirMid {
    position: absolute;
    top: 30px;
    left: 4vw;
}

/* #quick 배경 circle e */

#quick ul {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    padding-inline: 20px;
    width: calc(100% - 40px);
    max-width: 1440px;
}

#quick ul li{
    filter: drop-shadow(0 0 10px rgba(255,255,255,0));
    transition: .3s;
    background: #5e2dc1;
    border-radius: 50px 10px;
    overflow:hidden;
}

#quick ul li a {
    display: block;
    position: relative;
    width: 331px;
    height: 198px;
    transition: 0.3s;
}

#quick ul li a,
#quick ul li a:hover{
    text-decoration:unset;
}

#quick ul li:hover {
    transition: 0.3s;
    border-radius:10px;
}

#quick ul li:nth-child(1) {
    background:#5e2dc1;
}
#quick ul li:nth-child(2){
    background:#316975;
}
#quick ul li:nth-child(3) {
    background:#2e3e93;
}

#quick ul li:nth-child(4) {
    
    background:#2e6e93;
}

#quick ul li .imgBox {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#quick li .top {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    position: absolute;
    top: 18px;
    right: 10px;
    font-size: 14px;
    color: #fff;
}

#quick li .desc {
    padding-inline: 30px;
    padding-block: 53px;
    width: calc(100% - 60px);
    text-decoration:none;
}

#quick li .desc h4 {
    
    font-size: 27px;
    font-weight: 400;
    color: #fff;
    text-decoration:none;
}

#quick li .desc p {
    margin-top: 17px;
    font-size: 17px;
    color: #fff;
    text-decoration:none;
}

#quick li .desc h4:hover,
#quick li .desc p:hover {
    text-decoration:unset;
}
 
#quick li .icon {
    position: absolute;
    top: 105px;
    right: 30px;
}

@media screen and (max-width: 1400px) {
    #quick ul {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    #quick ul li a {
        width: 260px;
        height: auto;
    }

    #quick li .desc {
        padding-inline: 20px;
        padding-block: 38px;
    }

    #quick li .desc h4 {
        font-size: 20px;
    }

    #quick li .desc p {
        font-size: 15px;
    }

    #quick li .top {
        top: 15px;
        font-size: 12px;
    }

    #quick li .icon {
        top: 77px;
        right: 11px;
    }
}

@media screen and (max-width: 590px) {
    #quick ul li {
        width: calc(100% - 38px);
        height: 180px;
    }

    #quick ul li a {
        width: 100%;
        height: 100%;
    }

    #quick ul li .imgBox,
    #quick ul li .imgBox img {
        width: 100%;
        height: 100%;
    }

    #quick li .desc {
        padding-block: 40px 30px;
        height: calc(100% - 80px);
    }

    #quick li .top {
        right: 13px;
        font-size: 16px;
    }

    #quick li .top i {
        display: none;
    }

    #quick .top p {
        width: fit-content;
    }

    #quick li .icon {
        display: block;
        top: 105px;
        right: 26px;
    }

    #quick .circleWrap .cirMid {
        top: 860px;
        width: 130px;
    }

}

@media screen and (max-width: 390px) {
    #quick li .top {
        top: 18px;
        right: 13px;
        font-size: 14px;
    }
}

/* quick e */

/* 갤러리 활동영상 s */
#gallery {
    padding-top: 60px;
    padding-bottom: 60px;
    width: 100%;
    background: #f1f0f9;
}

#gallery .galInner {
    display: flex;
    margin: 0 auto;
    padding-inline: 20px;
    width: calc(100% - 40px);
    max-width: 1440px;
}

#gallery .tit {
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
    text-align: center;
}

#gallery .tit h5 {
    margin: 0 auto;
    padding-inline: 37px;
    position: relative;
    width: fit-content;
    
    font-size: 40px;
    color: #333;
    text-align: center;
}

/* #gallery .tit:before,
#gallery .tit:after {
    position: absolute;
    top: 20px;
    left: 0;
    z-index: -1;
    width: 25%;
    height: 1px;
    background-color: #f2f2f2;
    content: '';
} */

#gallery .tit:after {
    right: 0;
    left: initial;
}

#gallery .left .tit h5:after {
    position: absolute;
    top: -6px;
    right: 14px;
    
    font-size: 30px;
    color: #5a55b7;
    content: "+";
}

#gallery .left {
    padding-inline: 100px;
    position: relative;
    width: calc(100% - 587px);
}

#gallery .left .gall_next {
    display: inline-block;
    position: absolute;
    top: 60%;
    right: 16px;
    width: 55px;
    height: 55px;
    background: url(../../images/ch/main/ico_gallNext.png) center no-repeat;
    background-size: cover;
    content: '';
    transform: translateY(-50%);
    opacity: 1;
    cursor: pointer;
    pointer-events: visible;
}

#gallery .left .gall_next:after {
    content: none;
}

#gallery .left .gall_prev {
    display: inline-block;
    position: absolute;
    top: 60%;
    left: 0px;
    width: 55px;
    height: 55px;
    background: url(../../images/ch/main/ico_gallPrev.png) center no-repeat;
    background-size: cover;
    content: '';
    transform: translateY(-50%);
    opacity: 1;
    cursor: pointer;
    pointer-events: visible;
}

#gallery .left .gall_prev:after {
    content: none;
}

#gallery .left .gall_stop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #827ec0;
    position: absolute;
    top: 0%;
    right: 6rem;
    z-index: 2;
    width: 45px;
    height: 45px;
    background-color: #fff;
    font-size: 0;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9;
}

#gallery .gallSwiper .imgBox {
    border: 1px solid transparent;
    overflow: hidden;
    width: 100%;
    height: 234px;
    background-color: #bfbfbf;
    transition: 0.3s;
    border-radius: 10px 10px 0 0;
}

#gallery .gallSwiper .swiper-slide-active .imgBox {
    border: 1px solid #827ec0;
    transition: 0.3s;
}

#gallery .gallSwiper .imgBox:hover img{
    transform: scale(1.125);
    transition: .3s;
}

#gallery .swiper-slide:focus {
    outline: 2px solid black;
    outline-offset: 4px;
}

#gallery .gallSwiper .imgBox img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

#gallery .gallSwiper .txt {
    margin-top: 20px;
    width: 100%;
}

#gallery .gallSwiper .txt h5 {
    font-size: 17px;
    font-weight: 500;
    color: #333;
}

#gallery .gallSwiper .txt p {
    display: flex;
    gap: 7px;
    align-items: center;
}

#gallery .gallSwiper .txt i {
    margin-bottom: 5px;
}

#gallery .gallSwiper .date {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}

#gallery .right {
    width: 387px;
}

#gallery .right .vidWrap {
    display: block;
    box-shadow: 0 5px 25px 2px rgba(199, 199, 199, 0.3);
    position: relative;
    width: 388px;
    height: 234px;
    background-color: #1d242a;
    aspect-ratio: 1.66 / 1;
    border-radius: 10px;
}

#gallery .right .vidWrap a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

#gallery .right .vidWrap a:focus {
    border: 2px solid red;
    outline: initial;
}

#gallery .right .imgBox {
    width: 100%;
    height: 100%;
}

#gallery .right .imgBox img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#gallery .right .iconPlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 1024px) {
    #gallery .galInner {
        gap: 2rem;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    #gallery .left {
        width: calc(100% - 200px);
    }
}

@media screen and (max-width: 768px) {
    #gallery {
        background: linear-gradient(to bottom, #fff 0%, #fff 47%, #f1f0f9 47%, #f1f0f9 100%);
    }

    #gallery .tit:before,
    #gallery .tit:after {
        width: 25%;
    }

    #gallery .tit h5 {
        font-size: 32px;
    }

    #gallery .left {
        width: calc(100% - 200px);
    }

    #gallery .gallSwiper .imgBox {
        margin: 0 auto;
        width: 95%;
    }

    #gallery .left .gall_next:after,
    #gallery .left .gall_prev:after {
        width: 45px;
        height: 45px;
    }

    #gallery .right {
        width: calc(100% - 200px);
    }

    #gallery .right .vidWrap {
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 568px) {
    #gallery {
        background: linear-gradient(to bottom, #fff 0%, #fff 57%, #f1f0f9 57%, #f1f0f9 100%);
    }

    #gallery .tit h5 {
        font-size: 28px;
    }

    #gallery .left,
    #gallery .right {
        padding-inline: 20px;
        width: calc(100% - 40px);
    }

    #gallery .left .gall_next:after,
    #gallery .left .gall_prev:after {
        width: 38px;
        height: 38px;
    }

    #gallery .gallSwiper .imgBox {
        height: 200px;
    }

    #gallery .right .iconPlay {
        width: 55px;
    }

    #gallery .tit {
        margin-bottom: 65px;
    }

    #gallery .right .tit {
        margin-bottom: 20px;
    }

    #gallery .left .gall_stop {
        top: 35px;
        right: 33px;
        width: 40px;
        height: 40px;
    }

    #gallery .left .gall_prev,
    #gallery .left .gall_next {
        top: 60%;
        width: 45px;
        height: 45px;
    }
}

@media screen and (max-width: 385px) {
    #gallery .tit h5 {
        font-size: 26px;
        padding-inline: 0;
    }

    #gallery .tit:before,
    #gallery .tit:after {
        display: none;
    }

    #gallery .left .tit h5:after {
        top: -18px;
        right: -21px;
    }

    #gallery .left .gall_stop {
        top: 35px;
        right: 16px;
    }

    #gallery .left .gall_prev,
    #gallery .left .gall_next {
        top: 63%;
    }

    #gallery .left .gall_next {
        right: 0;
    }
}

@media screen and (max-width : 345px) {
    #gallery .tit h5 {
        font-size: 24px;
    }

    #gallery .left,
    #gallery .right {
        padding-inline: 10px;
        width: calc(100% - 20px);
    }

    #gallery .left .gall_next:after {
        right: -16px;
    }

    #gallery .left .gall_prev:after {
        left: -16px;
    }

}

/* 갤러리 활동영상 e */