@charset "utf-8";

/* mv */
.main .mv {
    background: url('/img/main_con01_bg.jpg') no-repeat center / cover;
    height: 100vh;
}

.flex_con .inner {
    display: flex;
    height: 100%;
    align-items: center;
}

.flex_box {
    display: flex;
}

.com_flex_con_box {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.mv_tit {
    font-size: 70px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #fff;
}

.com_search_box {
    border-radius: 28px;
    max-width: 535px;
    width: 100%;
    height: 56px;
    display: inline-flex;
    overflow: hidden;
    background-color: rgba(207, 211, 255, 0.1);
    padding: 0 30px;
}

.com_search_box input,
.com_search_box button {
    background: unset;
    background-color: transparent;
    margin: unset;
    padding: unset;
    outline: unset;
    border: unset;
}

.com_search_box input {
    width: 100%;
    color: #dfdfdf;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.025em;
}

.com_search_box input::placeholder {
    color: #D3D3D3;
}

.com_search_btn {
    min-width: 25px;
}

.mv_con_box {
    gap: 405px;
}

.mv_con_box .box {
    aspect-ratio: 1/1;
    position: relative;
    width: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(28, 43, 243, 1);
    font-size: 46px;
    font-weight: 400;
    letter-spacing: 0;
    color: #fff;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

.mv_con_box .box:hover {
    animation: shake-right 7s infinite linear;
}

.mv_con_box .box:hover .sub_box:nth-child(1) {    
    animation: shake-right2 7s infinite linear;
    animation-delay: 0.2s;
}

.mv_con_box .box:hover .sub_box:nth-child(2) {
    animation: shake-right3 7s infinite linear;
    animation-delay: 0.4s;
}

.mv_con_box .box:hover .sub_box:nth-child(3) {
    animation: shake-right4 7s infinite linear;
    animation-delay: 0.6s;
}

.mv_con_box .box .sub_box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(28, 43, 243, 0.2);
    z-index: -1;
    transform: translateX(10%);
    transition: all 0.3s ease-in-out;
}

.mv_con_box .box .sub_box:nth-child(2) {
    transform: translateX(20%);
}

.mv_con_box .box .sub_box:nth-child(3) {
    transform: translateX(30%);
}

.mv_con_box .big_box.pink .box {
    background-color: rgba(255, 51, 153, 1);
    font-size: 60px;
}

.mv_con_box .big_box.pink .sub_box {
    background-color: rgba(255, 51, 153, 0.2);
    transform: translateX(-10%);
}

.mv_con_box .big_box.pink .sub_box:nth-child(2) {
    transform: translateX(-20%);
}

.mv_con_box .big_box.pink .sub_box:nth-child(3) {
    transform: translateX(-30%);
}

.mv_con_box .big_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mv_con_box .big_box .txt_box {
    margin-top: 40px;
    font-size: 24px;
    line-height: 1.7em;
    color: #fff;
}

.mv_con_box .big_box .txt_box b {
    background-color: #182bd2;
}

.mv_con_box .big_box.pink .txt_box b {
    background-color: #d42d80;
}

@keyframes shake {

    from,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

@keyframes shake-right {

    from,
    to {
       left: 0;
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        left: -20px;
    }

    20%,
    40%,
    60%,
    80% {
        left: 20px;
    }
}

@keyframes shake-right2 {

    from,
    to {
        left: 0;
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        left: -30px;
    }

    20%,
    40%,
    60%,
    80% {
        left: 30px;
    }
}

@keyframes shake-right3 {

    from,
    to {
        left: 0;
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        left: -50px;
    }

    20%,
    40%,
    60%,
    80% {
        left: 50px;
    }
}
@keyframes shake-right4 {

    from,
    to {
        left: 0;
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        left: -70px;
    }

    20%,
    40%,
    60%,
    80% {
        left: 70px;
    }
}

.com_up_ani {
    transform: translateY(100px);
    opacity: 0;
    transition: all 1s ease;
}

.d_1s {
    transition-delay: .1s;
}

.d_3s {
    transition-delay: .3s;
}

.d_5s {
    transition-delay: .5s;
}

.fp-viewing-se01 .mv_tit,
.fp-viewing-se01 .com_search_box,
.fp-viewing-se01 .mv_con_box {
    transform: translateY(0);
    opacity: 1;
}

@media all and (max-width: 1400px) {
    .mv_con_box {
        gap: unset;
        width: 100%;
        justify-content: space-between;
    }
}

@media all and (max-width: 1024px) {
    .main .mv {
        height: auto;
        padding: 80px 0;
        padding-top: 160px;
    }

    .mv_tit {
        font-size: 40px;
    }

    .mv_con_box {
        flex-direction: column;
        gap: 60px;
    }
}

/* END mv */

/* con01 */
.main .con01 {
    overflow: hidden;
    height: 100vh;
}

.main .con01 .fp-tableCell {
    vertical-align: top;
}

.main .con01 .flex_box {
    justify-content: space-between;
    padding-top: 120px;
}

.main .con01 .flex_box>div {
    width: 50%;
    position: relative;
}

.main .con01 .left .com_con_txt_box {
    padding-left: 135px;
}

.main .con01 .right .com_con_txt_box {
    padding-right: 135px;
}

.main .con01 .right .com_con_txt_box {
    text-align: right;
}

.com_con_sub_tit {
    font-size: 28px;
    letter-spacing: -0.05em;
    font-weight: 500;
    color: #222;
}

.com_con_tit {
    font-size: 56px;
    letter-spacing: -0.04em;
    color: #222;
    font-weight: 700;
    line-height: 1.5em;
}

.main .con01 .circle_box {
    width: 86.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    transform: translate(-10%, 0%);
    right: unset;
    border-radius: 50%;
    aspect-ratio: 1/1;
    transition: all 3s ease-in-out;
    background-color: #1c2cf3;
    position: absolute;
}

.main .con01 .right .circle_box {
    background-color: #ff3399;
    right: 0;
    transform: translate(10%, 0%);
}

.main .con01 .flex_box .com_con_txt_box,
.main .con01 .flex_box .circle_box>div {
    opacity: 1;
}

.main .con01 .circle_box>div:first-child {
    margin-top: 100px;
    font-size: 46px;
    color: #fff;
}

.main .con01 .right .circle_box>div:first-child {
    font-size: 60px;
}

.main .con01 .circle_box .txt_box {
    position: absolute;
    right: 0;
    top: 50%;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.8em;
    color: #444;
    transform: translate(31%, -150%);
    mix-blend-mode: screen;
}

.main .con01 .circle_box .txt_box span {
    color: #fff;
}

.main .con01 .right .circle_box .txt_box {
    right: unset;
    text-align: right;
    left: 0;
    transform: translate(-35%, -150%);
}

.main .con01 .circle_box .img {
    height: 80%;
    position: absolute;
    bottom: 0;
}

.main .con01 .circle_box img {
    height: 100%;
    transform: translateY(4%);
}

@media all and (max-width: 1400px) {
    .main .con01 {
        height: auto;
    }

    .main .con01 .circle_box {
        position: relative;
        transform: unset;
        right: unset;
        width: 100%;
    }

    .main .con01 .left .com_con_txt_box {
        text-align: center;
        padding: unset;
    }

    .main .con01 .right .com_con_txt_box {
        text-align: center;
        padding: unset;
    }

    .main .con01 .right .circle_box {
        transform: unset;
        right: unset;
    }

    .main .con01 .flex_box {
        flex-direction: column;
        align-items: center;
        gap: 60px;
        padding: 100px 0;
    }

    .main .con01 .flex_box>div {
        width: 100%;
        max-width: 700px;
        padding-bottom: 150px;
    }

    .main .con01 .left .circle_box .txt_box,
    .main .con01 .right .circle_box .txt_box {
        top: 100%;
        margin-top: 20px;
        bottom: unset;
        transform: unset;
        left: unset;
        right: unset;
        text-align: center;
    }
    .main .con01 .circle_box .txt_box span {
        color: #000;
    }

}

/* END con01 */

/* con02 */
.con {
    padding: 150px 0;
}

.main .con02 {
    background: url('/img/main_con02_bg.jpg') no-repeat bottom center / cover;
}

.pink {
    color: #ff3399;
}

.bold {
    font-weight: 700;
}

.main .con02 .flex_box {
    width: 100%;
    justify-content: space-between;
}

.main .con02 .flex_box>div {
    width: 50%;
}

.main .con02 .flex_box .img {
    text-align: right;
}

@media all and (max-width: 1400px) {
    .main .con02 .flex_box {
        flex-direction: column;
        gap: 60px;
    }

    .main .con02 .flex_box>div {
        width: 100%;
    }

    .con {
        padding: 100px 0;
    }
}

/* END con02 */

/* con03 */

.main .con03 .con03_slide {
    height: 100%;
}

.com_con_ment {
    font-size: 20px;
    letter-spacing: -0.04em;
    font-weight: 200;
    color: #666666;
}

.main .con03 .con03_slide .item .inner {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.main .con03_slide_label {
    border-radius: 20px;
    width: 88px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #fff;
    margin-left: auto;
}

.main .con03_slide_tit {
    font-size: 44px;
    letter-spacing: -0.04em;
    line-height: 1.3em;
    color: #222222;
    text-align: right;
    margin-top: 40px;
    font-weight: 700;
}

.main .con03_txt_wrap .item {
    border-radius: 40px;
    padding: 65px 60px;
}

.main .con03_txt_wrap .item+.item {
    margin-top: 45px;
}

.main .con03_txt_wrap .item.green {
    background: linear-gradient(to left, #dcfbf8, #fff);
}

.main .con03_txt_wrap .item.green .con03_slide_label {
    background-color: #19d0bd;
}

.main .con03_txt_wrap .item.blue {
    background: linear-gradient(to left, #e7f4ff, #fff);
}

.main .con03_txt_wrap .item.blue .con03_slide_label {
    background-color: #33a1ff;
}

.main .con03_txt_wrap .item.purple {
    background: linear-gradient(to left, #f4eeff, #fff);
}

.main .con03_txt_wrap .item.purple .con03_slide_label {
    background-color: #7435eb;
}

.main .con03_txt_wrap .item.purple2 {
    background: linear-gradient(to left, #f4e0ff, #fff);
}

.main .con03_txt_wrap .item.purple2 .con03_slide_label {
    background-color: #b638ff;
}

.main .con03_slide_tit .green {
    color: #19d0bd;
}

.main .con03_slide_tit .blue {
    color: #33a1ff;
}

.main .con03_slide_tit .purple {
    color: #7435eb;
}

.main .con03_slide_tit .purple2 {
    color: #b638ff;
}

.main .con03_slide_tit .yellow {
    color: #ffc62e;
}

.main .con03_slide_link {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    letter-spacing: -0.04em;
    margin-top: 40px;
    color: #222;
    font-weight: 600;
}

@media all and (max-width: 1024px) {
    .main .con03_txt_wrap .item {
        padding: 35px 30px;
    }

    .main .con03_slide_tit {
        font-size: 33px;
        margin-top: 30px;
    }

    .main .con03_slide_label {
        width: 77px;
        height: 35px;
        font-size: 20px;
    }

    .con {
        padding: 80px 0;
    }
}

/* END con03 */

/* con04 */
.main .con04 {
    background: url('/img/main_con04_bg.jpg') no-repeat center / cover;
    padding-bottom: 300px;
}

.txt_center_box {
    text-align: center;
    width: 100%;
}

.main .con04 .com_flex_con_box {
    align-items: flex-start;
}

.com_con_tit02 {
    color: #7f89ff;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.fp-viewing-se05 .com_con_tit {
    transform: translateY(0);
    opacity: 1;
}

/* END con04 */

/* con05 */
.main .con05 {
    background: url('/img/main_con05_bg.jpg') no-repeat center / cover;
}

.main .con05 .com_flex_con_box {
    align-items: flex-start;
}

.com_num_box {
    display: flex;
    flex-wrap: wrap;
    gap: 35px 40px;
}

.com_num_box.item02 .box {
    width: calc(50% - 20px);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 55px 0;
    border-radius: 30px;
    text-align: center;
}

.com_num_box .box {
    display: flex;
    gap: 45px;
    align-items: flex-start;
    justify-content: center;
    color: #fff;
}

.com_num_box .box .ba {
    font-size: 90px;
    letter-spacing: -0.04em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.08);
}

.com_num_box .box .tit {
    position: relative;
    font-size: 30px;
    letter-spacing: -0.04em;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.com_num_box .box .tit::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 4px;
    border-radius: 2px;
    background-color: #7f89ff;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

.com_num_box .box .alt {
    font-size: 20px;
    letter-spacing: -0.04em;
    font-weight: 400;
    line-height: 1.7em;
}

@media all and (max-width: 1400px) {
    .com_num_box .box .alt {
        font-size: 18px;
    }

    .com_num_box .box .tit {
        font-size: 28px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
}

/* END con05 */

/* con06 */
.main .con06 {
    background: url('/img/main_con06_bg.jpg') no-repeat center / cover;
    padding-bottom: 360px;
}

.main .con06 .com_flex_con_box,
.main .con07 .com_flex_con_box,
.main .con08 .com_flex_con_box {
    align-items: flex-start;
}

.main .con06_slide,
.main .con08_slide {
    width: 100%;
    height: 100%;
}

.main .con06_slide .item .flex_box,
.main .con07_slide .item .flex_box {
    height: 100%;
    flex-direction: column;
    justify-content: center;
}

.main .con06_slide .item .com_con_tit02,
.main .con07_slide .item .com_con_tit02 {
    text-align: center;
}

.main .con06_slide .item .com_con_tit02 span {
    color: #fff;
}

.main .con06_slide .center_item {
    margin: 380px 0;
}

.main .con06_slide_box,
.main .con08_slide_box {
    position: relative;
    height: 100%;
    width: 100%;
}

.main .con06_slide .item .com_con_tit,
.main .con07_slide .item .com_con_tit {
    text-align: center;
}

.main .con06_slide .item .com_con_tit span,
.main .con07_slide .item .com_con_tit span {
    color: #7f89ff;
}

@media all and (max-width: 1400px) {
    .main .con06_slide .center_item {
        margin: 280px 0;
    }

    .com_con_tit {
        font-size: 35px;
    }

    .com_con_tit02 {
        font-size: 55px;
    }
}

@media all and (max-width: 1024px) {
    .com_con_tit02 {
        font-size: 40px;
    }

    .com_con_tit {
        font-size: 24px;
    }

    .com_num_box.item02 .box {
        width: 100%;
    }

    .main .con06_slide .center_item {
        margin: 180px 0;
    }

    .main .con06 {
        padding-bottom: 160px;
    }
}

/* END con06 */

/* con07 */
.main .con07 {
    background: url('/img/main_con_07_bg.jpg') no-repeat center / cover;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.main .con07 .inner {
    height: 100%;
}

.main .con07_slide_box {
    position: relative;
    height: 100%;
}

.main .con07_slide {
    overflow: hidden;
    position: absolute;
    height: 360px;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.main .con07_slide .item {
    position: absolute;
    width: 100%;
    left: 0;
}

.main .con07_slide .item.two {
    z-index: 2;
}

.main .con07_slide .item.three {
    z-index: 3;
}

.main .con07_slide .item .com_con_tit02 span {
    color: #222;
}

.main .con07_slide .item .com_con_tit02 {
    position: relative;
    z-index: 2;
}

.main .con07_slide .item .com_con_tit02 .ba {
    position: relative;
    color: #ececfc;
    font-size: 280px;
    letter-spacing: -0.04em;
    line-height: 1;
    z-index: -1;
    margin-top: -70px;
}

/* .main .con07_slide .item + .item {
    margin-top: 380px;
} */

@media all and (max-width: 1400px) {
    .main .con07_slide .item .com_con_tit02 .ba {
        font-size: 250px;
    }

    /* .main .con07_slide .item + .item {
        margin-top: 280px;
    } */
    .main .con07_slide {
        height: 335px;
    }
}

@media all and (max-width: 1024px) {
    .main .con07_slide .item .com_con_tit02 .ba {
        font-size: 180px;
    }

    /* .main .con07_slide .item + .item {
        margin-top: 180px;
    } */
    .main .con07_slide {
        height: 220px;
    }
}

@media all and (max-width: 700px) {
    .com_con_tit br {
        display: none;
    }

    .main .con07_slide .item .com_con_tit02 .ba {
        font-size: 120px;
        margin-top: -40px;
    }

    .mv_tit {
        font-size: 30px;
    }

    .main .con07_slide {
        height: 185px;
    }
}

/* END con07 */

/* con08 */
.blue2 {
    color: #1c2cf3;
}

.main .con08_slide {
    padding-bottom: 100px;
}

.main .con08_slide .item {
    height: auto;
}

.main .con08_slide .item .flex_box {
    height: 100%;
    align-items: center;
}

.main .con08_slide .item .flex_box .box {
    width: 100%;
    height: 100%;
    padding: 30px;
    position: relative;
    border-radius: 40px;
}

.main .con08_slide .item .flex_box .box .tit_box {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.main .con08_slide .item .flex_box .box .tit_box .num {
    font-family: 'Elephant', sans-serif;
    font-size: 36px;
    letter-spacing: -0.05em;
}

.main .con08_slide .item .flex_box .box .tit_box .tit {
    font-size: 24px;
    letter-spacing: -0.05em;
    line-height: 1.5em;
    color: #222;
    font-weight: 700;
}

.main .con08_slide .item .flex_box .box .tit_box .alt {
    font-weight: 200;
    font-size: 16px;
    letter-spacing: -0.05em;
    color: #666666;
    line-height: 1.6em;
    margin-top: 20px;
}

.main .con08_slide .item .flex_box .box .tit_box .alt br {
    display: none;
}

.main .con08_slide .item .flex_box .box .img {
    text-align: right;
    margin-top: auto;
}

.main .con08_slide .item .flex_box .box.type01 {
    background-color: #f5f5fa;
    transition: all 0.3s ease;
}

.main .con08_slide .item .flex_box .box.type01:hover {
    background-color: #fff5fa;
}

.main .con08_slide .item .flex_box .box.type01:hover .tit_box .num {
    color: #ff3399;
}

.main .con08_slide .item .flex_box .box .tit_box .num {
    transition: all 0.3s ease;
}

.main .con08_slide .item .flex_box .box.type02 {
    background-color: #fff5fa;
    width: calc(60% - 40px);
}

.main .con08_slide .item .flex_box .box.type03 {
    background-color: #fff5fa;
    width: calc(40% - 40px);
}

.main .con08_slide .progress {
    bottom: 0;
    top: unset;
}

.main .con08_slide .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background-color: #1c2cf3;
}

/* END con08 */

/* main_banner */
.main_banner {
    background: linear-gradient(to right, #1c2cf3, #b35acc);
    padding: 80px 0;
}

.main_banner .flex_box {
    justify-content: space-between;
    align-items: center;
}

.main_banner .flex_box .ba {
    line-height: 1;
    font-size: 24px;
    letter-spacing: -0.05em;
    color: #fff;
    margin-bottom: 20px;
}

.main_banner .flex_box .tit {
    color: #fff;
    font-size: 50px;
    letter-spacing: -0.05em;
    font-weight: 700;
}

.com_btn01 {
    width: 220px;
    height: 65px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    letter-spacing: -0.05em;
    color: #222 !important;
    font-weight: 700;
    background-color: #fff;
}

/* END main_banner */

.sign_up_tit {
    font-size: 70px;
    color: #1c2cf3;
    letter-spacing: 0;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.sub_visual .inner .custom_box .add_ment {
    display: none;
}

.government .sub_visual .inner .custom_box .add_ment {
    display: block;
}

.government .sub_visual .sub_circle {
    top: 70%;
}

.sub_visual .inner .custom_box .add_ment {
    margin-top: 100px;
}

.sub_visual .inner .custom_box .add_ment .tit {
    font-size: var(--fz-44);
    letter-spacing: -0.045em;
    font-weight: 700;
    color: #1c2cf3;
    margin-bottom: 30px;
}

.sub_visual .inner .custom_box .add_ment .alt {
    font-size: var(--fz-26);
    font-weight: 400;
    letter-spacing: -0.05em;
    line-height: 1.5em;
    color: #666;
}
.programCon_Custom{max-width: 1400px; margin: 0 auto; padding: 100px 0 150px; z-index: 5; position: relative;}
.programCon_Custom .gal_wrap ul li a .part_img img{height: 100%; object-fit: cover; max-width:none;}
@media all and (max-width:1400px){
    .programCon_Custom{width: 93.75%;}
}

@media all and (max-width:1000px){
    .programCon_Custom .program_search{display: flex;}
    .programCon_Custom .program_search > span{margin-top: 0; width: 70%;}
    .programCon_Custom .program_search input[type="text"]{width: calc(100% - 115px);}
}

@media all and (max-width:640px){
    .programCon_Custom .program_search input[type="text"]{width: calc(100% - 110px);}
}

/* 2024.08.05 추가 */
.pc_only {
    display: block;
}

.mb_only {
    display: none !important;
}
@media all and (max-width:640px){
    .pc_only {
        display: none !important;
    }
    .mb_only {
        display: block !important;
    }
    
    .main .con01 .left .circle_box .txt_box,
    .main .con01 .right .circle_box .txt_box {
        top: 100%;
        margin-top: 20px;
        bottom: unset;
        transform: unset;
        left: unset;
        right: unset;
        text-align: center;
    }
}

/* END 2024.08.05 추가 */

.flex_yo_box {display:flex; width:100%; align-items:center; justify-content:center; gap:10px;}
.flex_yo_box .com_btn01{height:56px;}