@charset "utf-8";

main {
    width: calc(100% - 73px);
    min-height: 100vh;
    background: #eff8ff url(/images/common/main_bg.jpg) center no-repeat;
    background-size: cover;
    margin-left: 73px;
}

@media screen and (max-width: 768px) {
    main {
        width: 100%;
        margin-left: 0;
    }
}

@media screen and (max-width: 568px) {

    html,
    body {
        overflow-x: hidden;
    }
}

.video {
    display: flex;
    gap: 70px;
    flex-direction: column;
    margin: 0 auto;
    padding-inline: 20px;
    padding-block: 70px 80px;
    width: 100%;
    max-width: 1180px;
}

.video .top {
    position: relative;
}

.video .swip_desc {
    width: 490px;
    float: right;
}

.swip_wrap.is-full {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000;
}

.swip_wrap.is-full .playerList,
.swip_wrap.is-full .artplayer {
    width: 100%;
    height: 100%;
}

.swip_wrap.is-full .video_mainS,
.swip_wrap.is-full .swiper-wrapper,
.swip_wrap.is-full .swiper-slide {
    height: 100dvh;
}

.swip_wrap.is-full video {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}

.swip_wrap.is-full .video_mainS {
    width: 100%;
    height: 100vh;
}

.swip_wrap .close_full {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 3px;
    visibility: hidden;
    opacity: 0;
    font-size: 0;
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 3;
}

.swip_wrap .close_full span {
    width: 24px;
    height: 2px;
    background-color: #2d2d2d;
    display: block;
    position: absolute;
}

.swip_wrap .close_full span:first-child {
    transform: rotate(45deg);
    left: 3px;
    top: 14px;
}

.swip_wrap .close_full span:last-child {
    transform: rotate(-45deg);
    left: 3px;
    top: 14px;
}

.swip_wrap.is-full .close_full {
    visibility: visible;
    opacity: 1;
}

.video_mainS {
    width: calc(100% - 610px);
    float: left;
}

.video_mainS .swiper-wrapper {
    border-radius: 30px 0 0 0;
    overflow: hidden;
}

.video_mainS .swiper-slide {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 380px;
    background-color: #000;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.video_mainS .swiper-slide:hover:before {
    visibility: hidden;
    transition: .3s;
    opacity: 0;
}

.video_mainS .swiper-slide:before {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 73px;
    height: 83px;
    visibility: visible;
    background: url(/images/kr/sub/ico_playB.png) center no-repeat;
    background-size: contain;
    transition: .3s;
    content: '';
    transform: translate(-50%, -50%);
    opacity: 0;
}

.video_mainS .swiper-slide a,
.video_mainS .swiper-slide>div {
    display: block;
    width: 100%;
    height: 100%;
}

.artplayer {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    background: #000;
}

.video .control {
    position: absolute;
    width: 100%;
    height: 100%;
}

.video .swiper-pagination {
    display: flex;
    position: absolute;
    top: 14px;
    right: 26rem;
    left: initial;
    width: fit-content;
}

.video .bullet {
    display: block;
    width: 25px;
    height: 25px;
    background: transparent;
    font-size: 12px;
    line-height: 25px;
    color: #333;
    cursor: pointer;
    opacity: 1;
    border-radius: 0;
}

.video .bullet.active {
    background: #3b66a7;
    color: #fff;
    border-radius: 0 8px 0 8px;
}

.video .bullet .ellipsis {
    padding: 0 5px;
}

.video .btn_wrap {
    display: inline-flex;
    gap: 0;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 510px;
    z-index: 3;
}

.video .btn_wrap .vid_btn {
    position: static;
    width: 60px;
    height: 60px;
    opacity: 1;
    margin: 0;
}

.video .btn_wrap .vid_btn:after {
    display: none;
}

.video .btn_wrap .vid_btnPrev {
    background: #3b66a7 url(/images/kr/sub/ico_vid_prevBtn.png) center no-repeat;
    border-radius: 20px 0 0 0;
}

.video .btn_wrap .vid_btnNext {
    background: #fff url(/images/kr/sub/ico_vid_nextBtn.png) center no-repeat;
    border-radius: 0 0 20px 0;
    filter: drop-shadow(0 0 15px rgba(24, 71, 91, .25));
}

.video .swip_desc {
    padding: 70px 60px;
    position: relative;
    min-height: 200px;
}

.video .swip_desc .desc_con {
    display: none;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity .6s ease, transform .6s ease;
    opacity: 0;
    transform: translateY(10px);
}

.video .swip_desc .desc_con.on {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.video .swip_desc h5 {
    display: -webkit-box;
    font-family: 'gmarket';
    font-size: 28px;
    font-weight: 500;
    line-height: 1.25;
    color: #333;
    white-space: initial;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.video .swip_desc .date,
.video .bottom .date {
    margin-block: 20px 29px;
    font-family: 'gmarket';
    font-size: 17px;
    font-weight: 500;
    color: #888888;
}

.video .swip_desc .desc_i {
    font-family: 'gmarket';
    font-size: 17px;
    font-weight: 200;
    color: #666666;
}

.video .swip_desc .desc_i p {
    display: -webkit-box;
    line-height: 1.35;
    white-space: initial;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.vid_thumb .swiper-slide {
    display: flex;
    gap: 30px;
    flex-direction: column;
    cursor: pointer;
}

.vid_thumb .swiper-slide .vid {
    position: relative;
    cursor: pointer;
}

.vid_thumb .swiper-slide .vid a {
    display: block;
    width: 100%;
    height: 100%;
}

.vid_thumb .swiper-slide .vid img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vid_thumb .swiper-slide .vid::before {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 43px;
    height: 50px;
    visibility: visible;
    background: url(/images/kr/sub/ico_playS.png) center no-repeat;
    background-size: contain;
    transition: .3s;
    content: '';
    transform: translate(-50%, -50%);
    opacity: 1;
}

.vid_thumb .swiper-slide .vid:hover::before {
    visibility: hidden;
    transition: .3s;
    opacity: 0;
}

.vid_thumb .swiper-slide .vid {
    height: 240px;
    background-color: #000;
}

.video .bottom .desc h6 {
    padding-bottom: 14px;
    font-family: 'gmarket';
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
    color: #333;
}

.video .bottom .date {
    margin-block: 0 0;
}

.video .art-poster {
    width: 60%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

@media screen and (max-width: 1293px) {
    .video {
        width: calc(100% - 40px);
        max-width: none;
    }

    .video_mainS {
        width: 50%;
    }

    .video .swip_desc {
        padding: 9vh 2vw 1vh;
        width: 43%;
    }

    .video .swip_desc h5 {
        font-size: 24px;
    }

    .video .swip_desc .date,
    .video .bottom .date {
        font-size: 16px;
    }

    .video .swip_desc .desc_i {
        font-size: 16px;
    }

    .video .swip_desc .desc_i p {
        line-height: 1.45;
    }

    .video .btn_wrap {
        left: 50%;
        z-index: 9;
        transform: translateX(-50%);
    }

    .video .btn_wrap .vid_btnPrev {
        border-radius: 16px 0 0 0;
    }

    .video .btn_wrap .vid_btnNext {
        border-radius: 0 0 16px 0;
    }

    .video .btn_wrap .vid_btn {
        width: 50px;
        height: 50px;
    }

    .video .swiper-pagination {
        right: 32vw;
    }

    .video .swiper-pagination {
        right: inherit;
        left: 48vw;
        height: fit-content;
    }
}

@media screen and (max-width: 930px) {
    .video .swip_desc h5 {
        font-size: 22px;
    }

    .vid_thumb .swiper-slide {
        gap: 20px;
    }

    .video .swip_desc .date {
        margin-block: 10px 22px;
        font-size: 16px;
    }

    .video .swip_desc .desc_i p {
        line-height: 1.5;
    }

    .video .bottom .desc h6 {
        padding-bottom: 6px;
    }
}

@media screen and (max-width: 768px) {
    .video {
        gap: 2rem;
    }

    .video .top {
        margin-top: 2rem;
    }

    .video_mainS {
        margin-bottom: 1.125rem;
        width: 100%;
    }


    .video_mainS .swiper-wrapper {
        border-radius: 16px 16px 0 0;
    }

    .video .control {
        display: inline-flex;
        gap: 3rem;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        position: static;
        width: 100%;
        height: fit-content;
    }

    .video .swiper-pagination {
        position: static;
    }

    .video .btn_wrap {
        top: 380px;
        width: 100%;
        height: 38px;
    }

    .video .btn_wrap .vid_btn {
        margin: 0;
        position: absolute;
        top: 0;
        width: 38px;
        height: 38px;
    }

    .video .btn_wrap .vid_btnPrev {
        left: 0;
        border-radius: 0 0 0 16px;
        filter: drop-shadow(0 0 15px rgba(24, 71, 91, .25));
    }

    .video .btn_wrap .vid_btnNext {
        right: 0;
    }

    .video .swip_desc {
        padding: 2.5rem 10px 1.125rem;
        width: calc(100% - 20px);
    }

    .vid_thumb .swiper-slide .vid {
        height: 155px;
    }

    .video .bottom .desc h6 {
        font-size: 18px;
    }

    .video .bottom .date {
        font-size: 14px;
    }
}

@media screen and (max-width: 568px) {
    .video {
        gap: 0;
    }

    .video_mainS .swiper-slide {
        height: 250px;
    }

    .video_mainS .swiper-slide:before {
        width: 53px;
        height: 63px;
    }

    .video .btn_wrap {
        top: 250px;
    }

    .video .swip_desc {
        padding: 1.875rem 10px 1.5rem;
        min-height: 175px;
    }

    .video .swip_desc h5 {
        font-size: 18px;
    }

    .video .swip_desc .date {
        margin-block: 6px 14px;
        font-size: 14px;
    }

    .video .swip_desc .desc_i p {
        line-height: 1.45;
    }

    .video .swip_desc .desc_i {
        font-size: 15px;
    }

    .video .bottom .desc h6 {
        font-size: 16px;
    }
}

.information {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.information .info_inner {
    gap: 40px;
    margin: 0 auto;
    padding-inline: 20px;
    width: 100%;
    max-width: 700px;
}


.information .form_wrap {
    padding: 42px 125px 60px;
    border: 1px solid transparent;
    background-color: #fff;
    transition: .3s;
    filter: drop-shadow(0 0 20px rgba(55, 79, 115, .12));
    border-radius: 20px;
}

.information .form_wrap:hover {
    border: 1px solid #3b66a7;
}

.information .form_wrap .top h3 {
    margin-bottom: 40px;
    font-family: 'gmarket';
    font-size: 42px;
    font-weight: 500;
    color: #333;
}

.information .form_list {
    gap: 17px;
}

.information .form_list ul {
    gap: 15px;
}

.information .form_list ul input {
    padding: 25px;
    border: 1px solid #cccccc;
    overflow: hidden;
    width: 100%;
    height: 67px;
    background-color: #fff;
    font-weight: 500;
    color: #333;
    border-radius: 10px;
}

.information .form_list ul input::placeholder {
    font-size: 16px;
    font-weight: 500;
    color: #888;
}

.information .submit_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 65px;
    background-color: #3b66a7;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    transition: .3s;
    border-radius: 10px;
}

.information .submit_btn:hover {
    background-color: #123466;
    transition: .3s;
}

.information .token_list {
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
}

.information .token_list label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    letter-spacing: -0.3px;
}

.information .token_list .save_id {
    gap: 9px;
    align-items: center;
    justify-content: start;
}

.information .token_list .save_id input {
    position: absolute;
    opacity: 0;
}

.information .token_list .save_id label {
    position: relative;
    padding-left: 2rem;
}

.information .token_list .save_id label::before {
    border: 1px solid #ccc;
    position: absolute;
    top: -5px;
    left: 0;
    width: 24px;
    height: 24px;
    background: #fff url(/images/kr/sub/ico_inputChk.png) center no-repeat;
    background-position: 6px -8px;
    content: "";
    border-radius: 5px;
    box-sizing: border-box;
}

.information .token_list .save_id input[type="checkbox"]:checked+label::before {
    border-color: #3996c1;
    background: #fff url(/images/kr/sub/ico_inputChk.png) center no-repeat;
    background-position: 5px 7px;
}

.information .etc_menu ul {
    gap: 18px;
}

.information .etc_menu li {
    position: relative;
    font-size: 14px;
    font-weight: 500;
}

.information .etc_menu li:before {
    display: block;
    position: absolute;
    top: 50%;
    right: -8px;
    width: 1px;
    height: 11px;
    background-color: #cccccc;
    content: '';
    transform: translateY(-50%);
}

.information .etc_menu li:last-child:before {
    display: none;
}

@media screen and (max-width : 768px) {
    .information .form_wrap {
        padding-inline: 40px;
    }
}

@media screen and (max-width : 568px) {
    .information .logo {
        width: 130px;
    }

    .information .form_wrap {
        padding-block: 2rem 1.5rem;
    }

    .information .form_wrap .top h3 {
        margin-bottom: 22px;
        font-size: 32px;
    }

    .information .form_list ul input {
        padding: 10px 16px;
        height: 50px;
    }

    .information .submit_btn {
        height: 50px;
    }

    .information .token_list {
        flex-wrap: wrap;
        margin-top: 26px;
        row-gap: 1.5rem;
    }

    .information .token_list .save_id label {
        position: relative;
        padding-left: 26px;
    }

    .information .token_list .save_id label::before {
        top: -4px;
        width: 20px;
        height: 20px;
        background-position: 4px -10px;
    }

    .information .token_list .save_id input[type="checkbox"]:checked+label::before {
        background-position: 4px 5px;
    }

    .information .etc_menu {
        width: 100%;
    }

    .information .etc_menu ul {
        justify-content: flex-end;
        flex-wrap: wrap;
        row-gap: 14px;
    }
}

.top_tit h4 {
    margin-bottom: 18px;
    padding-top: 45px;
    font-family: 'gmarket';
    font-size: 28px;
    font-weight: 500;
    color: #333;
    text-align: left;
}

.top_tit h4 {
    margin-bottom: 18px;
    padding-top: 45px;
    font-family: 'gmarket';
    font-size: 28px;
    font-weight: 500;
    color: #333;
    text-align: left;
}

@media screen and (max-width : 568px) {
    .top_tit h4 {
        font-size: 24px;
    }
}

.sign_up {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.sign_up .inner {
    margin: 0 auto;
    padding-inline: 20px;
    width: 100%;
    max-width: 1080px;
}

.sign_up .box_wrap {
    padding: 50px 43px 60px;
    background-color: #fff;
    filter: drop-shadow(0px 0px 20px rgba(24, 71, 93, 0.1));
}

.sign_up .box_wrap>.top {
    margin-bottom: 25px;
}

.sign_up .box_wrap>.top h4 {
    margin-bottom: 12px;
    font-family: 'gmarket';
    font-size: 23px;
    font-weight: 500;
    color: #333;
    letter-spacing: -0.15px;
}

.sign_up .box_wrap>.top p {
    font-size: 16px;
    font-weight: 200;
}

.sign_up .check_wrap {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding-block: 25px 20px;
}

.sign_up .check_wrap input {
    border: 1px solid #ddd;
    overflow: hidden;
    width: 24px;
    height: 24px;
    border-radius: 5px;
}

.sign_up input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.sign_up input[type="checkbox"]:checked+label::before {
    border-color: #3996c1;
    background: #fff url(/images/kr/sub/ico_inputChk.png) center no-repeat;
    background-position: 6px 7px;
}

.check_wrap label {
    padding-top: 3px;
    padding-left: 32px;
    position: relative;
    font-family: 'gmarket';
    font-size: 20px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.check_wrap label::before {
    border: 1px solid #ddd;
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background: #fff url(/images/kr/sub/ico_inputChk.png) center no-repeat;
    background-position: 6px -8px;
    content: "";
    border-radius: 5px;
    box-sizing: border-box;
}

.sign_up .term_wrap {
    gap: 43px;
}

.sign_up .term_top {
    position: relative;
    width: 100%;
}

.sign_up .term_top::after {
    display: inline-block;
    margin-top: 15px;
    width: 100%;
    height: 5px;
    background: #fff url(/images/kr/sub/patt_line.png) center repeat-x;
    content: '';
}

.sign_up .term_wrap .terms {
    padding: 27px 27px 34px;
    border: 1px solid #cccccc;
    overflow: hidden;
    background-color: #fff;
    border-radius: 10px;
}

.sign_up .term_wrap .terms input {
    border: 1px solid #ddd;
    overflow: hidden;
    width: 24px;
    height: 24px;
    background: #fff url(/images/kr/sub/ico_inputChk.png) center no-repeat;
    background-position: 6px 7px;
    border-radius: 5px;
}

.sign_up .term_wrap .terms label {
    padding-top: 3px;
    padding-left: 32px;
    position: relative;
    font-family: 'gmarket';
    font-size: 16px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.sign_up .term_wrap .terms label::before {
    border: 1px solid #ddd;
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background: #fff url(/images/kr/sub/ico_inputChk.png) center no-repeat;
    background-position: 6px -8px;
    content: "";
    border-radius: 5px;
    box-sizing: border-box;
}

.sign_up .term_wrap .term_desc {
    margin-top: 36px;
    overflow-y: auto;
    height: 130px;
}

.sign_up .term_wrap .term_desc::-webkit-scrollbar {
    width: 7px;
}

.sign_up .term_wrap .term_desc::-webkit-scrollbar-thumb {
    background: #888888;
    border-radius: 10px;
}

.sign_up .term_wrap .term_desc::-webkit-scrollbar-track {
    background: #eeeeee;
}

.sign_up .desc_i {
    display: flex;
    gap: 14px;
    flex-direction: column;
    margin-bottom: 30px;
}

.sign_up .desc_i h5 {
    font-family: 'gmarket';
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.sign_up .desc_i ol:not(.dash) {
    padding-left: 1rem;
    list-style-position: inside;
}

.sign_up .desc_i ol li {
    margin-bottom: 22px;
    list-style: auto;
}

.sign_up .desc_i ol li:last-child {
    margin-bottom: 0;
}

.sign_up .desc_i .dash li {
    margin-block: 5px;
    list-style: none;
}

.sign_up .btn_wrap {
    display: inline-flex;
    gap: 11px;
    align-items: center;
    justify-content: center;
}

.sign_up .btn_wrap button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cccccc;
    width: 196px;
    height: 58px;
    background: #fff;
    font-weight: 500;
    color: #333;
    transition: .3s;
    border-radius: 10px;
}

.sign_up .btn_wrap button:hover {
    border: 1px solid #123466;
    background-color: #edf4ff;
}

.sign_up .btn_wrap button.next_btn {
    border: 1px solid transparent;
    background: #3b66a7;
    color: #fff;
}

.sign_up .btn_wrap button.next_btn:hover {
    border: 1px solid #3333;
    background-color: #123466;
}

.sign_up .person_type {
    margin-top: 20px;
    padding-bottom: 78px;
}

.sign_up .person_type ul {
    gap: 22px;
    margin-bottom: 60px;
}

.sign_up .person_type li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-color: #fff;
    text-align: center;
    transition: .3s;
}

.sign_up .person_type li input {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    appearance: none;
}

.sign_up .person_type li input:focus {
    outline: none;
}

.sign_up .person_type li input:checked+label {
    border-color: #3b66a7;
}

.sign_up .person_type label {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-block: 24px;
    border: 2px solid #cccccc;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 10px;
    transition: .3s;
}

.sign_up .person_type li:hover label {
    border-color: #3b66a7;
    transition: .3s;
}

.sign_up .person_type label span {
    font-size: 25px;
    font-weight: 500;
    line-height: 1;
    padding-top: 7px;
}

.sign_up .person_type label p {
    font-size: 18px;
    font-weight: 200;
}

.sign_up hr {
    margin: 0;
    display: block;
}

.sign_up .age_btn_wrap {
    display: flex;
    gap: 15px;
    margin-block: 50px 115px;
}

.sign_up .age_btn_wrap div {
    width: 50%;
    position: relative;
}

.sign_up .age_btn_wrap input {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    appearance: none;
}

.sign_up .age_btn_wrap input:focus {
    outline: none;
}

.sign_up .age_btn_wrap label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    width: 100%;
    height: 58px;
    background-color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
    border-radius: 10px;
    padding-block: 0;
    border: 1px solid #ccc;
}

.sign_up .age_btn_wrap>div:hover label {
    background-color: #f6f6f6;
    border: 1px solid #888888;
}

.sign_up .age_btn_wrap input:checked+label {
    background-color: #f6f6f6;
    border: 1px solid #888888;
}

.sign_up .age_btn_wrap label span {
    font-size: 16px !important;
}

.sign_up .age_btn_wrap label:hover,
.sign_up .age_btn_wrap label:focus,
.sign_up .age_btn_wrap label:active {
    border-color: #888888;
    background-color: #f6f6f6;
}

.sign_up .detail_wrap {
    margin-top: 27px;
}

.sign_up .detail_list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding-bottom: 75px;
}

.sign_up .detail_wrap li {
    width: calc((100% - 16px) / 2);
}

.sign_up .detail_wrap li>div {
    position: relative;
}

.sign_up .detail_wrap li.full {
    width: 100%;
}

.sign_up .detail_wrap li .add_top {
    margin-bottom: 12px;
    width: 70%;
}

.sign_up .detail_wrap li .high_uni {
    display: none;
}

.sign_up .detail_wrap li .high_uni.on {
    display: block !important;
}

.sign_up .detail_wrap input {
    height: 45px;
    font-weight: 500;
    color: #333;
    border-radius: 5px;
}

.sign_up .detail_wrap input::placeholder {
    font-weight: 200;
}

.sign_up .detail_wrap li button {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 45px;
    background-color: #2e3b43;
    font-weight: 200;
    color: #fff;
    border-radius: 5px;
}

.sign_up .detail_wrap li.add button {
    width: 45px;
    background: #2e3b43 url(/images/kr/sub/ico_addSearch.png) center no-repeat;
    font-size: 0;
    border-radius: 0 10px 10px 0;
}

.sign_up .detail_wrap label {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding-block: 5px;
    font-size: 17px;
    font-weight: 500;
}

.sign_up .detail_wrap .red {
    padding-top: 6px;
    color: #d94141;
}


@media screen and (max-width : 1140px) {
    .sign_up .inner {
        width: calc(100% - 40px);
        max-width: initial;
    }
}


@media screen and (max-width : 1024px) {
    .sign_up .person_type ul {
        margin-bottom: 24px;
    }

    .sign_up .age_btn_wrap {
        margin-block: 43px 80px;
    }

    .sign_up .person_type li {
        padding-block: 10px;
        height: auto;
    }

    .sign_up .person_type label img {
        margin: 0 auto;
        width: 110px;
    }

    .sign_up .person_type label span {
        font-size: 22px;
    }

    .sign_up .person_type a p {
        font-size: 16px;
    }

    .sign_up .person_type {
        padding-bottom: 45px;
    }
}

@media screen and (max-width : 768px) {
    .sign_up .inner {
        margin-top: 60px;
    }

    .sign_up .box_wrap {
        padding: 50px 30px 115px;
    }

    .sign_up .box_wrap>.top h4 {
        font-size: 20px;
        text-align: center;
    }

    .sign_up .box_wrap>.top p {
        padding-top: 14px;
        text-align: center;
    }

    .check_wrap label {
        padding-left: 26px;
        font-size: 16px;
    }

    .check_wrap label::before,
    .sign_up .term_wrap .terms label::before {
        width: 20px;
        height: 20px;
        background-position: 5px -10px;
    }

    .sign_up input[type="checkbox"]:checked+label::before {
        background-position: 4px 5px;
    }

    .sign_up .term_wrap {
        gap: 30px;
    }

    .sign_up .term_wrap .terms {
        padding: 20px;
    }

    .sign_up .term_wrap .term_desc {
        margin-top: 24px;
    }

    .sign_up .term_wrap .terms label {
        padding-top: 1px;
        padding-left: 29px;
    }

    .sign_up .btn_wrap button {
        width: 50%;
        height: 45px;
    }

    .sign_up .box_wrap .top_tit h4 {
        padding-top: 0px;
        font-size: 20px;
    }

    .sign_up .person_type {
        padding-bottom: 0;
    }

    .sign_up .detail_list {
        gap: 16px;
    }

    .sign_up .detail_wrap li {
        width: 100%;
    }

    .sign_up .detail_wrap input {
        height: 40px;
        border-radius: 5px
    }

    .sign_up .detail_wrap li button {
        height: 40px;
        border-radius: 3px
    }

    .sign_up .detail_wrap li.add button {
        height: 40px;
    }

    .sign_up .detail_wrap li .add_top {
        width: 70%;
    }
}

@media screen and (max-width: 568px) {

    .sign_up .person_type ul {
        flex-wrap: wrap;
    }

    .sign_up .person_type li {
        flex: 0 0 100%;
        padding-block: 0;
        height: calc(100% - 32px);
    }

    .sign_up .person_type label span {
        font-size: 20px;
    }

    .sign_up .age_btn_wrap {
        flex-wrap: wrap;
        margin-block: 16px 50px;
    }

    .sign_up .age_btn_wrap button {
        width: 100%;
        height: 48px;
    }

    .sign_up .detail_list {
        padding-bottom: 30px;
    }

    .sign_up .detail_wrap input {
        height: 40px;
        border-radius: 5px;
    }

    .sign_up .detail_wrap li button {
        height: 40px;
    }

    .sign_up .detail_wrap li.add button {
        width: 40px;
        border-radius: 0 5px 5px 0;
    }

    .sign_up .detail_wrap li .add_top {
        width: 100%;
    }

    .sign_up .age_btn_wrap div {
        width: 100%;
    }

    .sign_up .age_btn_wrap label {
        height: 45px;
    }

    .sign_up hr {
        display: none;
    }
}

.user_info .inner {
    max-width: 1080px;
    padding-inline: 20px;
    margin: 0 auto;
}

.user_info .box_wrap {
    padding: 50px 43px 60px;
    background-color: #fff;
    filter: drop-shadow(0px 0px 20px rgba(24, 71, 93, 0.1));
    gap: 72px;
    height: 670px;
}

.user_info .info_list {
    gap: 15px;
    width: 100%;
}

.user_info .info_list li {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: start;
}

.user_info .info_list .tit {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #283a80;
    font-weight: 500;
    font-size: 17px;
    width: 80px;
}

.user_info .info_list .tit .lts {
    width: 57px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

.user_info .info_list .tit sub {
    color: #333;
    font-size: 13px;
}

.user_info .info_list .selc_wrap {
    width: 40%;
}

.user_info .info_listB {
    align-items: start;
    gap: 27px;
}

.user_info .info_listB .tit {
    width: 140px;
    justify-content: space-between;
    align-items: start;
    padding-top: 14px;
}

.user_info .info_listB li {
    align-items: start;
    width: 100%;
}

.user_info .info_listB .input_wrap {
    width: 34%;
    position: relative;
    display: inline-block;
}

.user_info .avg_btn {
    width: 485px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3b66a7;
    font-size: 17px;
    font-weight: 500;
    border-radius: 3px;
    color: #fff;
    transition: .3s;
    border: 1px solid transparent;
    margin-top: 36px;
}

.user_info .avg_btn:hover {
    transition: .3s;
    border: 1px solid #3333;
    background-color: #123466;
}

.user_info select,
.user_info input {
    background-color: #f3f8fd;
    border: 1px solid #ccc;
    color: #000;
    font-weight: 400;
    font-size: 18px;
    font-family: 'Noto Sans KR';
    background: #f3f8fd url(/images/common/ico_assem.png) no-repeat right 14px top 50%;
}

.user_info .info_listB input[type=number]::-webkit-inner-spin-button,
.user_info .info_listB input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.user_info .info_listB input[type=number] {
    -moz-appearance: textfield;
}


.user_info .spin_btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #ddd;
}

.user_info .spin_btn button {
    flex: 1;
    width: 100%;
    border: none;
    background: #3b66a7;
    cursor: pointer;
    position: relative;
}

.user_info .spin_btn button:hover {
    background: #123466;
}

.user_info .btn_up::before,
.user_info .btn_down::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
}

.user_info .btn_up {
    border-radius: 0 3px 0 0;
}

.user_info .btn_up::before {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 6px solid #fff;
}

.user_info .btn_down {
    border-radius: 0 0 3px 0;
}

.user_info .btn_down::before {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #fff;
}


@media screen and (max-width: 768px) {
    .user_info .inner {
        padding-top: 3rem;
    }

    .user_info .info_list li {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .user_info .info_list .selc_wrap {
        width: calc(100% - 100px);
    }

    .user_info .info_listB {
        justify-content: space-between;
        flex-direction: column;
        gap: 32px;
    }

    .user_info .info_list {
        width: 100%;
    }

    .user_info .info_listB .input_wrap {
        width: calc(100% - 150px);
    }

    .user_info .avg_btn {
        width: 100%;
        margin-top: 0px;
    }
}

@media screen and (max-width : 568px) {
    .user_info .box_wrap {
        padding-inline: 30px;
        height: auto;
        gap: 46px;
    }

    .user_info .info_list {
        gap: 16px;
    }

    .user_info .info_list li {
        flex-direction: column;
        align-items: start;
    }

    .user_info .info_list .tit {
        font-size: 16px;
        width: 100%;
    }

    .user_info .info_list .tit br {
        display: none;
    }

    .user_info .info_list .col {
        display: none;
    }

    .user_info .info_list .tit .lts {
        display: inline;
    }

    .user_info .info_list .selc_wrap,
    .user_info .info_listB .input_wrap {
        width: 100%;
    }

    .user_info select,
    .user_info input {
        font-size: 15px;
        height: 40px;
        line-height: 1;
    }

    .user_info .info_listB .tit {
        padding-top: 0px;
    }

    .user_info .info_list .tit sub {
        display: block;
        padding-block: 12px;
    }

    .user_info .info_list .tit sub br {
        display: none;
    }
}

/* 새채팅 나오는 곳 */
.chat_icons {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 6px;
    margin-top: 12px;
}

.chat_icons .btn2 {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    margin: 0;
    background: #2b4060;
    font-size: 0;
    border-radius: 3px;
    transition: .3s;
}

.chat_icons .btn2:hover {
    background: #28518d;
}


.chat_icons .btn2 img {
    width: 20px;
    height: 20px;
    filter: contrast(0) brightness(5.5);
    transition: .3s;
    transform: translateY(0);
}

.chat_icons .btn2.good:hover img {
    animation: move 2s infinite ease-in-out;
}

.chat_icons .btn2.hate:hover img {
    animation: down 2s infinite ease-in-out;
}


.chatting {
    width: 100%;
    height: 100%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.chatting .inner {
    width: 100%;
    height: 100%;
    max-width: 1080px;
    padding-inline: 20px;
    background-color: #fff;
    padding-block: 3rem 0;
    position: relative;
}

.chatting .inner .chatting_box {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2rem;
}

.chatting .inner .chat_spacer {
    display: block;
    width: 100%;
    height: 225px;
}

.chatting .user_chat {
    width: 60%;
    margin-left: auto;
    background-color: #2b4060;
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    line-height: 1.5;
    min-height: 30px;
}

.chatting .program_chat {
    width: calc(100% - 20px);
    padding: 10px;
    border-radius: 10px;
    line-height: 1.5;
    word-break: break-all;
}

.chatting .chat_container {
    margin: 0 auto;
    position: fixed;
    bottom: 10px;
    width: 100%;
    max-width: 1060px;
    margin-bottom: 20px;
    margin-bottom: 20px;
    left: calc(50% + 37px);
    transform: translateX(-50%);
}

.chatting .input_box {
    padding: 10px 20px 50px 20px;
    border: 1px solid #d4d7dc;
    overflow: hidden;
    position: relative;
    max-height: 80px;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(55, 79, 115, .12);
}

.chatting .input_box:focus-within {
    border-color: #71a2ea;
    box-shadow: 0 0 0 3px rgba(94, 155, 255, .25);
}

.chatting #chatting {
    padding-right: 10px;
    border: none;
    outline: none;
    overflow-y: auto;
    width: calc(100% - 10px);
    min-height: 75px;
    max-height: 170px;
    background: transparent;
    font-size: 16px;
    line-height: 1.5;
    resize: none;
}

.chatting #chatting::-webkit-scrollbar {
    width: 8px;
}

.chatting #chatting::-webkit-scrollbar-thumb {
    background: #3b66a7;
    border-radius: 10px;
}

.chatting #chatting::-webkit-scrollbar-track {
    background: rgb(209, 232, 243);
    border-radius: 10px;
}


.chatting #chatting::placeholder {
    color: #9ea4b0;
    font-weight: 200;
}

.chatting ul>li {
    list-style: inside;
}

.chatting ul>li>ul {
    padding-left: 1.5rem;
}

.chatting ul>li>ul>li {
    list-style: inside;
    list-style-type: circle;
}

.loading_ui {
    display: flex;
    align-items: center;
    gap: 6px;
}

.loading_dot {
    animation: pulse 1.2s infinite ease-in-out;
}

.loading_dot.big {
    animation-delay: .3s;
}

.loading_dot.small {
    animation-delay: .5s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: .4;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: .4;
    }
}

.button_wrap {
    display: inline-flex;
    gap: 18px;
    align-items: center;
    justify-content: end;
    position: absolute;
    right: 20px;
    bottom: 10px;
    width: fit-content;
    height: fit-content;
}

.send_btn {
    border: none;
    right: 14px;
    bottom: 14px;
    width: 32px;
    height: 32px;
    background: none;
    transition: opacity .2s;
    cursor: pointer;
    opacity: .5;
}

.send_btn:hover {
    opacity: 1;
}

@media screen and (max-width: 1140px) {
    .chatting .inner {
        width: calc(100% - 40px);
    }

    .chatting .chat_container {
        max-width: initial;
        width: 87%;
    }
}

@media screen and (max-width: 768px) {
    .chatting .inner {
        margin-top: 60px;
        max-width: none;
        width: calc(100% - 20px);
        padding-block: 2rem 0;
    }

    .chatting .chat_container {
        left: 50%;
        width: calc(100% - 40px);
    }
}

@media screen and (max-width: 568px) {
    /* .chatting .inner .chatting_box {
        padding-bottom: 1rem;
    } */

    .chatting .user_chat,
    .chatting .program_chat {
        width: calc(100% - 20px);
        line-height: 1.5;
    }

    .chatting .chat_container {
        max-width: initial;
        margin: 0 auto;
        bottom: 28px;
    }

    .chatting .input_box {
        display: flex;
        gap: 10px;
        padding: 10px;
        width: auto;
    }

    .chatting #chatting {
        min-height: unset;
        max-height: auto;
        height: 30px;
        padding: 0;
    }

    .button_wrap {
        position: static;
        gap: 10px;
    }

    .chatting .inner .chat_spacer {
        height: 80px;
    }

}

/* 캘린더 */

body:has(#sub_schedule) {
    overflow: auto !important;
}

#sub_schedule {
    display: flex;
    flex-wrap: wrap;
    gap: 5vw;
    padding: 6rem 2rem 0;
    justify-content: center;
}

#sub_schedule .cal_wrap .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #e8f0fa;
    border-radius: 14px;
    flex-direction: row-reverse;
    border: 1px solid #fff;
}

#sub_schedule h2 {
    position: relative;
    line-height: 1;
    font-size: 28px;
    font-weight: 800;
    padding-bottom: 0;
    font-family: inherit;
}

#sub_schedule h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 28px;
    height: 4px;
    background: #3b6fb6;
    border-radius: 2px;
}

#sub_schedule .cal_wrap {
    width: 50%;
    height: fit-content;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

#sub_schedule .cal_wrap .cal_btn_wrap {
    display: inline-flex;
    gap: 4px;
    background: #b6cae3;
    padding: 6px;
    border-radius: 9px;
    margin-left: auto;
}

#sub_schedule .cal_wrap .menu button {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 1px solid #021430;
    background: #3b66a7;
    transition: .3s;
    color: #fff;
    font-weight: 600;
    font-family: serif;
}

#sub_schedule .cal_wrap .cal_btn_wrap button:hover {
    background: #2f5fa3;
}

#sub_schedule .cal_wrap .menu button#todayBtn {
    width: 45px;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Noto Sans KR';
}

#sub_schedule .cal_wrap .menu button:hover {
    background: #123466;
    transition: .3s;
}

#sub_schedule #calendar {
    height: 600px;
    margin-top: 1rem;
}

#sub_schedule .right {
    flex: 0 0 37%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#sub_schedule .modal {
    width: 100%;
    position: static;
    display: block;
    opacity: 1;
    padding-top: 7rem;
    z-index: 1;
    overflow: visible;
    height: fit-content;
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0.07);
}

#sub_schedule .modal-header {
    padding: 16px 20px 12px;
    border-bottom: 1px dashed #e3ebf5;
    border-radius: 16px 16px 0 0;
}

#sub_schedule .modal-content {
    border-radius: 16px;
}

#sub_schedule .modal-body {
    padding: 15px 1.5rem;
    min-height: 250px;
}

#sub_schedule .modal-none {
    display: none;
    padding-inline: 36px 0;
    font-size: 18px;
    min-height: 60px;
    font-size: 16px;
    color: #171e27;
    padding-block: 20px;
    font-weight: 400;
}

#sub_schedule .modal-body:empty+.modal-none {
    display: block;
}

#sub_schedule .modal-body:empty {
    min-height: 0;
    padding: 0;
}

#sub_schedule .modal-title {
    font-size: 22px;
    padding: 16px 20px 12px;
    background: #e8f0fa;
    border-radius: 13px;
}

#sub_schedule .modal .modal-dialog {
    transform: none;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

#sub_schedule .modal-content {
    box-shadow: none;
    height: 100%;
    border: none;
}

#sub_schedule .modal-backdrop {
    display: none;
}

#sub_schedule .schedule {
    margin: 0;
    line-height: 1.5;
}

#schedule_modal .schedule dt,
#sub_schedule .schedule li {
    padding: 8px 12px;
    background: #f9fbfe;
    border-radius: 10px;
}

#sub_schedule .modal-header .close,
#sub_schedule .modal-footer {
    display: none;
}

#sub_schedule .schedule strong {
    display: inline-flex;
    width: 85px;
    align-items: center;
    flex-shrink: 0;
    gap: 12px;
    position: relative;
    padding-left: 12px;
}

#sub_schedule .schedule strong:before {
    display: inline-block;
    content: '-';
    position: absolute;
    left: 0px;
    top: 1px;
}

#schedule_modal .schedule ul {
    display: flex;
    flex-direction: column;
}

#schedule_modal .schedule dt,
#schedule_modal .schedule li,
#sub_schedule .schedule span p {
    display: inline-flex;
    align-items: start;
    margin-bottom: 7px;
    width: calc(100% - 24px);
    filter: drop-shadow(1px 1px 0px #b7cbe92b);
}

#sub_schedule .schedule strong {
    width: 80px;
    font-size: 16px;
    color: #171e27;
}

#sub_schedule .schedule span {
    font-size: 16px;
    color: #1f1f1f;
    font-weight: 400;
    display: flex;
    flex-direction: column;
}

#sub_schedule .schedule span ul li,
#sub_schedule .schedule span p {
    padding: 3px;
    width: auto;
}

#sub_schedule .schedule span p {
    background: #f9fbfe;
    border-radius: 10px;
}

#schedule_modal .schedule dt strong {
    letter-spacing: 6px;
    gap: 6px;
}

#schedule_modal .schedule dt strong span {
    letter-spacing: 0;
}

#sub_schedule .dday-body {
    min-height: 90px;
}

#sub_schedule .dday-list li {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 7px;
    width: calc(100% - 24px);
    filter: drop-shadow(1px 1px 0px #b7cbe92b);
    padding: 8px 12px;
    background: #f9fbfe;
    border-radius: 10px;
    flex-wrap: wrap;
}

#sub_schedule .dday-list:not(:has(li)) .modal-none {
    display: block;
    padding: 12px;
}

#sub_schedule .dday-desc {
    font-size: 16px;
    color: #171e27;
    font-weight: 500;
}

#sub_schedule .dday-num {
    display: flex;
    width: 60px;
    align-items: center;
    justify-content: center;
    background: #d0e1f5;
    padding: 3px;
    border-radius: 14px;
}

#sub_schedule .dday-num.zero {
    background: #ffdbdb;
}

#sub_schedule .dday-num.zero * {
    color: #bf0000 !important;
}

#sub_schedule .dday-num .num {
    font-size: 15px;
    color: #171e27;
    font-weight: 400;
}

@media screen and (max-width: 1100px) {
    #sub_schedule h2 {
        line-height: 1;
        font-size: 30px;
    }

    #sub_schedule {
        flex-direction: column;
        padding-block: 5rem 2rem;
        padding-inline: 20px;
    }

    #sub_schedule .cal_wrap {
        width: calc(100% - 32px);
    }

    #sub_schedule .modal {
        padding-top: 0;
    }

    #sub_schedule .modal-none {
        font-size: 16px;
    }
}

@media screen and (max-width: 568px) {
    #sub_schedule h2 {
        font-size: 26px;
    }

    #sub_schedule .cal_wrap .menu {
        /* gap: 16px; */
        flex-direction: row-reverse;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    #sub_schedule .cal_wrap .cal_btn_wrap {
        margin-left: 0;
    }

    #sub_schedule .cal_wrap .menu button:not(#todayBtn) {
        width: 28px;
        font-size: 14px;
    }

    #sub_schedule #calendar {
        height: 400px;
        min-height: 400px;
        margin-top: 1rem;
    }

    #sub_schedule .modal-title {
        font-size: 18px;
        padding: 12px 16px 10px;
        border-radius: 8px;
    }

    #sub_schedule .modal-header {
        padding: 16px 1rem 10px;
    }

    #sub_schedule .modal-none {
        font-size: 14px;
        padding-inline: 20px 0;
    }

    #sub_schedule .modal-body {
        padding: 10px 1rem;
    }

    #schedule_modal .schedule dt strong {
        letter-spacing: 0px;
    }

    #sub_schedule li.schedule dt,
    #sub_schedule li.schedule li {
        margin-bottom: 12px;
        padding: 12px 16px 10px;
        display: flex;
        flex-direction: column;
        border-radius: 8px;
        width: calc(100% - 32px);
    }

    #sub_schedule .schedule dt:before {
        width: 4px;
        height: 4px;
    }

    #sub_schedule .schedule dt:before,
    #sub_schedule .schedule li:before {
        left: -6px;
    }

    #sub_schedule .schedule strong {
        font-size: 15px;
    }

    #sub_schedule .schedule strong span {
        display: none;
    }

    #sub_schedule .schedule span {
        margin: 0;
        line-height: 1.25;
        font-size: 14px;
    }

    #sub_schedule .right {
        gap: 1.5rem;
    }

    #sub_schedule .dday-desc {
        font-size: 15px;
    }

    #sub_schedule .dday-list:not(:has(li)) .modal-none {
        padding: 4px;
    }
}

@media screen and (max-width: 430px) {
    #sub_schedule .cal_wrap .menu {
        gap: 20px;
        flex-direction: column-reverse;
        align-items: center;
    }

    #sub_schedule h2::after {
        left: -10px;
        bottom: -5px;
        width: calc(100% + 20px);
    }
}

@media screen and (orientation: landscape) and (max-height: 768px) {

    /* 가로 모드일 때 적용할 CSS */
    #sub_schedule .modal-body {
        /* min-height: 450px; */
    }
}

/* 아이디 비밀번호 찾기 */
.find_page .form_wrap {
    width: 380px;
    min-height: 400px;
    padding: 40px 32px 16px;
    margin: 0 auto;
    border-radius: 12px;
}

.find_page .form_wrap .top {
    text-align: left;
    margin-bottom: 1.5rem;
}

.find_page .form_wrap .top h3 {
    margin-bottom: 10px;
    font-size: 32px;
}

.find_page .top p {
    font-size: 16px;
}

.information .form_list {
    gap: 20px;
}

.find_page .form_list ul>li {
    align-items: center;
    gap: 20px;
}

.find_page .form_list ul>li label {
    font-size: 16px;
    font-weight: 400;
}

.find_page .token_list {
    justify-content: center;
    margin-top: 52px;
}

.find_page .token2 {
    justify-content: end;
    margin-top: 38px;
    border-top: 1px solid #ddd;
    padding-top: 2rem;
    gap: 12px;
    font-size: 15px;
}

.find_page .token2 li {
    position: relative;
}

.find_page .token2 li:last-child {
    position: static;
}

.find_page .token2 li:before {
    display: block;
    position: absolute;
    top: 50%;
    right: -8px;
    width: 1px;
    height: 11px;
    background-color: #cccccc;
    content: '';
    transform: translateY(-50%);
}

.find_page .form_list ul input {
    height: 54px;
    padding: 3px 10px;
    width: auto;
    flex: 1;
    border-radius: 6px;
}

.find_page .form_list ul input[type="email"] {
    height: 46px;
    width: calc(100% - 20px);
}

.find_page .form_list ul input::placeholder {
    font-weight: 300;
}

.find_page .submit_btn {
    height: 44px;
    border-radius: 6px;
    width: fit-content;
    padding-inline: 16px;
    font-size: 16px;
    margin-left: auto;
}

.find_page .etc_menu li.move_login {
    display: inline-flex;
    gap: 10px;
    font-size: 16px;
}

.find_page .move_login a {
    color: #3b66a7;
    text-decoration: 1px solid underline;
    text-underline-offset: 3px;
    position: relative;
}

.find_page .submit_btn {
    height: 44px;
    border-radius: 6px;
    width: fit-content;
    padding-inline: 16px;
    font-size: 16px;
    margin-left: auto;
}

.find_page.find_pw .token_list {
    justify-content: center;
    margin-top: 52px;
}

.find_page.find_pw .token2 {
    display: none;
}

.find_page.find_pw .move_login {
    display: inline-flex;
    gap: 10px;
    font-size: 16px;
}

.find_page.find_pw .move_login a {
    color: #3b66a7;
    text-decoration: 1px solid underline;
    text-underline-offset: 3px;
    position: relative;
}

@media screen and (max-width: 568px) {
    .find_page .form_wrap {
        width: 240px;
        min-height: 320px;
        padding: 40px 32px 16px;
    }

    .find_page.find_pw .form_wrap {
        min-height: 370px;
    }

    .find_page .form_wrap .top h3 {
        text-align: start;
        font-size: 22px;
        margin-bottom: 16px;
    }

    .find_page .form_wrap .top p {
        font-size: 15px;
    }

    .find_page .form_list {
        gap: 46px;
    }

    .find_page .form_list ul {
        gap: 22px;
    }

    .find_page .form_list ul>li {
        flex-direction: column;
        gap: 10px;
        align-items: start;
    }

    .find_page .form_list ul input {
        width: 100%;
        padding: 10px 10px;
        height: 54px;
        flex: none;
    }

    .find_page .form_list ul input::placeholder {
        font-size: 14px;
    }

    .find_page .form_list ul input[type="email"] {
        height: 32px;
        flex: none;
    }

    .find_page .token_list {
        margin-top: 32px;
    }

    .find_page .submit_btn {
        height: 40px;
        font-size: 15px;
    }

    .information .etc_menu ul {
        justify-content: center;
    }

    .find_page .etc_menu li.move_login {
        font-size: 14px;
    }

    .find_page .token2 {
        padding-top: 16px;
        font-size: 14px;
    }
}

@media screen and (max-width: 330px) {
    .find_page .form_wrap {
        width: auto;
        min-height: 280px;
        padding: 40px 20px 26px;
    }
}

/* ======================= */
/* 캘린더 커스텀*/
.toastui-calendar-layout {
    background: rgba(255, 255, 255, .85) !important;
}

.toastui-calendar-daygrid-cell:has(.toastui-calendar-weekday-grid-date.toastui-calendar-weekday-grid-date-decorator) {
    background: rgba(0, 90, 180, 0.12) !important;
}

.toastui-calendar-grid-cell-date .toastui-calendar-weekday-grid-date.toastui-calendar-weekday-grid-date-decorator {
    background-color: #3b66a7 !important;
    font-weight: 400 !important;
    height: 24px !important;
    width: 24px !important;
    line-height: 24px;
}

.toastui-calendar-weekday-event-title {
    font-weight: 400 !important;
}

.toastui-calendar-day-names.toastui-calendar-month {
    padding: 0 !important;
}

.toastui-calendar-day-name-item {
    padding: 0 !important;
    text-align: center !important;
    background: #f7f7f7 !important;
}

.toastui-calendar-holiday-sat {
    color: rgb(38 61 225) !important;
}

.toastui-calendar-daygrid-cell:nth-child(n+7) .toastui-calendar-grid-cell-date {
    color: rgb(38 61 225) !important;
}

/* ======================= */
/* 새 채팅  chat_icons animation*/
@keyframes move {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes down {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(2px);
    }

    100% {
        transform: translateY(0);
    }
}

/* guide */
.guide {
    max-width: 1200px;
    margin: 4rem auto 0;
    background-color: #fff;
}

.guide * {
    font-family: 'NanumSquare';
    font-weight: 400;
}

.guide .top {
    background: #dee5f5;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    justify-content: center;
    padding-block: 36px;
}

.guide .top h3 {
    font-size: 30px;
    color: #333333;
    font-weight: 800;
    padding-top: 6px;
}

.guide .desc_wrap .box {
    padding-block: 40px;
    padding-inline: 47px;
    display: inline-flex;
    gap: 16px;
    background-color: #fff;
    width: calc(100% - 94px);
}

.guide .desc_wrap .box:nth-child(2n) {
    background-color: #f5f5f5;
}

.guide .box .num {
    width: 44px;
    height: 44px;
    border-radius: 46px;
    color: #fff;
    background: #436bce;
    font-size: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.guide .box h5 {
    color: #436bce;
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 800;
}

.guide .box .desc {
    font-size: 17px;
    width: calc(100% - 50px);
    line-height: 1.5;
}

.guide .box .desc p {
    line-height: 1.6;
}

.guide .box .desc sub {
    color: #436bce;
    font-size: 17px;
}

.guide .expm_wrap {
    margin-top: 17px;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
}

.guide .expm {
    border: 1px dotted #436bce;
    padding: 30px;
}

.guide .desc h6 {
    color: #333;
    padding-top: 8px;
    font-weight: 700;
}

@media screen and (max-width: 1300px) {
    .guide {
        max-width: none;
        width: calc(100% - 40px);
    }

    .guide .top {
        align-items: center;
        padding-block: 20px;
    }

    .guide .top .logo {
        width: 85px;
    }

    .guide .top .logo img {
        width: 100%;
        display: block;
    }

    .guide .top h3 {
        font-size: 26px;
    }

    .guide .desc_wrap .box {
        width: calc(100% - 40px);
        padding-inline: 20px;
        padding-block: 20px;
        gap: 10px;
        flex-wrap: wrap;
    }

    .guide .box .num {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .guide .box h5 {
        font-size: 22px;
    }

    .guide .box .desc sub {
        font-size: 16px;
    }

    .guide .expm {
        padding: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .guide {
        margin-top: 7rem;
    }

    .guide .desc_wrap .box {
        flex-direction: column;
    }

    .guide .box .desc {
        width: 100%;
        font-size: 15px;
    }

    .guide .box h5 {
        font-size: 20px;
    }

    .guide .box .desc p {
        font-size: 15px;
    }

    .guide .desc h6 {
        font-size: 16px;
    }

    .guide .expm_wrap {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 568px) {
    .guide .top .logo {
        width: 75px;
    }

    .guide .top h3 {
        font-size: 22px;
    }
}

/* 영상2 */
#sub_gallery{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

#sub_gallery_contents{
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4rem;
    padding-top: 6rem;
}

#sub_gallery .board_total{
    position: static;
}

/* 사진 게시판 */
.photo2{width: calc(100% - 40px);margin: 0;}
.photo2:after{content:''; display:block; clear:both;}
.photo2 li{float:left;width: calc(100% / 4);box-sizing:border-box;padding:0 16px;margin: 0 auto 30px;vertical-align:top;} 
.photo2 li *{display:block;}
.photo2 li a{position:relative; overflow:hidden; box-shadow:3px 0 10px rgba(64,64,64,0.15); border-radius:15px 15px 0 0; background:#fff;}
.photo2 li a:before{z-index:1; content:''; position:absolute; top:0; left:0; width:100%; height:100%; box-sizing:border-box; border:2px solid transparent; border-radius:15px 15px 0 0;}
.photo2 li a:hover:before{border-color:#3259a6; transition:0.25s ease-in-out;}
.photo2 li .img{overflow:hidden; position:relative; padding-top:70%; text-align:center;}
.photo2 li .img img{position:absolute;top:0;left:0;width:100%;height:100%;transition:all 0.25s ease-in-out;}
.photo2 li a:hover img,
.photo2 li a:focus img{transform:scale(1.1);}
.photo2 li .txt{padding:19px 22px 16px; text-align:left;}
.photo2 li .txt em{overflow:hidden; width:100%; padding:0 0 5px; text-overflow:ellipsis; white-space:nowrap; font-weight:800;}
.photo2 li .date{color:#777;}

.photo2 + #pagingNav{margin:20px 0 0;}

@media all and (max-width:800px){
    .photo2 {width:calc(100% + 20px); margin:0 -10px}
	.photo2 li{width: calc(100% / 3); padding:0 10px; margin:0 0 20px; width: 33.33%;}
    .photo2 li .txt{padding:10px 15px;}
}
@media all and (max-width:568px){
	.photo2{width:calc(100% + 14px); margin:0 -7px}
	.photo2 li{width:50%; margin:0 0 15px; padding:0 7px;}
    .photo2 li a{border-radius:10px 10px 0 0;}
    .photo2 li .txt em{padding:0;}
}
@media all and (max-width:380px){
    .photo2 li a{border-radius:5px 5px 0 0;}
}

#sub_board{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 6rem;
    background-color: #fff;
}

@media screen and (max-width: 1440px) {
    #sub_board{
        max-width: none;
        width: calc(100% - 40px);
    }
}