@charset "utf-8";

@import url('common.css');

/* 공통 요소 스타일 */

body {
    background-color: var(--white);
    width: 100%;
}

.bodyH {
    min-height: calc(100vh - 196px);
}

textarea {
    display: block;
    border-radius: 2px;
    border: 1px solid var(--b-gray-300);
    width: 100%;
    min-height: 134px;
    padding: 12px 16px;
}

textarea:disabled {
    background-color: #F9FCFF;
}

input {
    outline: none;
    border-radius: 2px;
    border: 1px solid var(--gray-300);
    background-color: var(--white);
}

input:disabled {
    background-color: #F3F3F3;
}

input:invalid {
    border-color: var(--red);
}

input[type="file"] {
    display: none;
}

input[type="file"]~label {
    display: inline-block;
}

input[type="number"] {
    text-align: right;
    padding: 0 8px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input::placeholder {
    font-size: 14px;
    color: var(--gray-500);
}

.input-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--b-gray-600);
    margin-right: 14px;
}

input.inp_L {
    width: 360px;
    height: 40px;
    padding: 0 15px;
    border-color: var(--b-gray-300);
}

input.inp_M {
    width: 277px;
    height: 30px;
    padding: 0 12px;
}

input.inp_S {
    height: 28px;
    padding: 0 12px;
}

.inp-box {
    position: relative;
}

.inp-box label {
    position: absolute;
    left: 12px;
    top: 10px;
    z-index: 9;
}

input.inp-id {
    padding-left: 42px;
}

input.inp-pw {
    padding-left: 42px;
}

input.inp-sch {
    padding-right: 42px;
    background: #f5f5f5 url(/static/img/inp_sch.svg) no-repeat center right 12px;
    background-size: 18px;
}

.select-frame {
    padding: 0 24px;
    position: relative;
}

.select-frame::after {
    content: '';
    width: 1px;
    height: 24px;
    background: var(--b-gray-300);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.select-frame:last-of-type::after {
    display: none;
}

.select-frame__title {
    color: var(--b-gray-600);
    margin-right: 24px;
    font-size: 14px;
    font-weight: 600;
}

select {
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 2px;
    border: 1px solid var(--b-gray-300);
    background-color: var(--white);
    cursor: pointer;
}

select.sel_L {
    padding: 0 30px 0 16px;
    width: 200px;
    height: 40px;
    border-color: var(--b-gray-300);
    background: #fff url(/static/img/select_arrow_L2.svg) no-repeat center right 12px;
}

select.sel_M {
    padding: 0 30px 0 12px;
    width: 277px;
    height: 30px;
    background: #fff url(/static/img/select_arrow_L2.svg) no-repeat center right 10px;
}

select.sel_S {
    padding: 0 20px 0 8px;
    height: 28px;
    background: #fff url(/static/img/select_arrow_S.svg) no-repeat center right 10px;
}

/* 랩 */
.wrap {
    width: 1400px;
    margin: 0 auto;
}

/* 버튼 */
.btn-frame {
    text-align: right;
    margin-top: 24px;
}

.btn {
    border-radius: 2px;
    border: 1px solid var(--b-gray-300);
    background: var(--white);
    padding: 0 12px;
    color: var(--b-gray-500);
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    text-align: center;
}

.btn:disabled {
    border-color: var(--gray-300);
    background-color: var(--gray-100);
    color: #C0C0C0;
}

.btn.blue {
    color: var(--sky-800);
    border-color: var(--sky-500);
}

.btn.red {
    color: var(--red);
}

.btn_Sld,
.btn_XL {
    width: 120px;
    height: 40px;
    line-height: 38px;
    background: var(--sky-700);
    color: var(--white);
    border: none;
    font-size: 16px;
    letter-spacing: -0.02em;
    font-weight: 500;
}

.btn_L {
    min-width: 88px;
    height: 36px;
    line-height: 34px;
    font-size: 16px;
    padding: 0 16px;
}

.btn_M {
    height: 28px;
    line-height: 26px;
    font-size: 12px;
}

.btn_S {
    height: 24px;
    line-height: 22px;
    font-size: 12px;
}

.btn_Gst {
    min-width: 88px;
    height: 36px;
    line-height: 34px;
    border-color: var(--sky-500);
    color: var(--sky-800);
    font-size: 16px;
    padding: 0 20px;
}

.btn_sch {
    padding: 0 30px;
    border-radius: 2px;
    border: none;
    min-width: 120px;
    height: 40px;
    line-height: 38px;
    background: var(--sky-700);
    color: var(--white);
    font-size: 16px;
    margin-left: 10px;
    font-weight: 500;
}

.btn_login {
    width: 140px;
    height: 120px;
    border-radius: 2px;
    background: var(--sky-600);
    font-size: 16px;
    color: var(--white);
    border: none;
}

.btn_find {
    width: 100%;
    margin-top: 34px;
    background: var(--sky-600);
}

.btn_print {
    width: 32px;
    height: 28px;
    padding: 0;
    background: var(--b-gray-500) url(/static/img/print.svg) no-repeat center;
    background-size: 20px;
}

.btn_gotop {
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: -60px;
    right: 24px;
    z-index: 999;
    border: 1px solid #ddd;
    outline: none;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    color: #333;
    cursor: pointer;
    border-radius: 50%;
    text-align: center;
    padding-top: 10px;
    transition: .6s ease-in;
}

/* 헤더 */
header {
    width: 100%;
    height: 84px;
    background: var(--white);
    /* box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08); */
    border: 1px solid var(--b-gray-200);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
}

.blank {
    width: 100%;
    height: 84px;
}

header .wrap {
    width: 1400px;
    height: 92px;

}

header .logo {
    padding: 24px 0;
}

header .gnb {
    height: 84px;
}

header .gnb>li {
    min-width: 220px;
    height: 84px;
    line-height: 80px;
    text-align: center;
    color: #414141;
    font-size: 18px;
    position: relative;
}

header .gnb>li>a {
    width: 100%;
    height: 100%;
    font-family: 'S-CD';
    font-weight: 500;
}

header .gnb>li:hover>a {
    color: var(--violet-300);
    font-weight: 700;
}

header .gnb .sub-gnb {
    display: none;
    position: absolute;
    left: 50%;
    top: 79px;
    transform: translateX(-50%);
    min-width: 220px;
    height: auto;
    padding: 16px;
    text-align: center;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12);
    font-family: 'Pretendard';
    background: var(--white);
}

header .gnb>li:hover .sub-gnb {
    display: block;
}

header .gnb .sub-gnb li {
    min-width: 188px;
    height: 42px;
    line-height: 40px;
    color: var(--gray-700);
    font-size: 16px;
    letter-spacing: -0.04em;
    font-weight: 400;
}

header .gnb .sub-gnb li:hover a {
    font-weight: 700;
    color: var(--violet-800);
    background: var(--sky-100);
    border-radius: 4px;
}

header .snb {
    background: #EDF1F8;
    width: auto;
    padding: 12px 10px 12px 24px;
    border-radius: 40px;
}

header .snb p {
    color: #456BA4;
    font-size: 14px;
    margin-right: 10px;
}

header .snb .user-name {
    font-weight: 500;
    color: #101010;
    margin-right: 6px;
}

header .snb .btn_login,
header .snb .btn_logout {
    background: #9CB8E2;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: var(--white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

header .snb .btn_go_mypage {
    background: #5696F8;
    height: 28px;
    line-height: 28px;
    padding: 0 10px;
    border-radius: 20px;
    color: var(--white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
    border: none;
}

/* 푸터 */
footer {
    width: 100%;
    height: 196px;
    background: var(--gray-900);
}

.foot_top {
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.foot_top .fnb li {
    margin-left: 20px;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.foot_bot {
    padding: 30px 20px;
}

.foot_bot address p {
    font-style: normal;
    font-size: 12px;
    color: #686868;
    margin-right: 10px;
}

.foot_bot address span,
.foot_bot address a {
    color: #DDDDDD;
    display: inline-block;
}

.foot_bot .copyright {
    color: #ADADAD;
    font-size: 14px;
}

/* 메인페이지 */
/* 메인페이지 - 사이드바 */

.main-side-bar {
    position: fixed;
    right: 0;
    top: 84px;
    width: 70px;
    height: 520px;
    transition: 1s;
    z-index: 9;
}

.main-side-bar.centerfix {
    top: 50%;
    transform: translateY(-50%);
}

.main-side-bar>a {
    width: 100%;
    height: 70px;
    text-align: center;
    color: #fff;
    padding-top: 45px;
    font-family: 'S-CD';
    font-weight: 600;
    font-size: 14px;
    background: #5696F8 url(/static/img/snb_book.svg)no-repeat top 5px center;
    background-size: 40px;
}

.main-side-bar .address {
    width: 70px;
    height: 520px;
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.main-side-bar .address .wrap {
    padding: 14px 18px;
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    position: absolute;
    left: 70px;
    top: 0;
    width: 520px;
    height: 70px;
    line-height: 42px;
    font-family: 'S-CD';
}

.main-side-bar .address .wrap a {
    padding-right: 12px;
    font-weight: 700;
    font-size: 18px;
}

.main-side-bar .address .wrap a img {
    margin-top: 8px;
    margin-right: 12px;
    width: 24px;
}

.main-side-bar .address .wrap p {
    padding: 0 16px;
    border-left: 1px solid #868686;
    font-weight: 400;
    font-size: 14px;
}

/* 메인페이지 - 슬라이드 배너 */
.bnr-main {
    width: 100%;
    height: auto;
    background: #fff;
    position: relative;
}

.bnr-main .swiper {
    width: 100%;
    max-width: 2560px;
    height: 100%;
}

.bnr-main .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #ffc;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.bnr-main .swiper-slide>.a>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bnr-main .swiper-slide .btn_down {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.2) url(/static/img/bnr_main_down.svg) no-repeat center right 18px;
    background-size: 32px;
    border-radius: 100px;
    padding: 15px 64px 16px 24px;
}

.bnr-main .swiper-pagination-bullets {
    bottom: 0 !important;
}

.bnr-main .swiper-pagination-bullet {
    width: 350px;
    height: 48px;
    border-radius: 0;
    text-align: center;
    line-height: 48px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    opacity: 1;
    background: rgba(0, 0, 0, 0.3);
    margin: 0 !important;
}

.bnr-main .swiper-pagination-bullet:hover {
    text-decoration: underline;
}

.bnr-main .swiper-pagination-bullet-active {
    font-weight: 600;
    background: var(--violet-700);
    border: none;
    text-decoration: underline;
}

/* 메인페이지 - 플로팅 배너 */
.flt-bnr {
    position: absolute;
    top: 60px;
    right: 120px;
    width: 230px;
    height: 230px;
    z-index: 2;
}

.flt-bnr1 {
    position: absolute;
    top: 60px;
    left: 350px;
    width: 350px;
    height: 500px;
    z-index: 2;
}

.flt-bnr1 img {
    max-width: 350px;
}

.flt-bnr2 {
    position: absolute;
    top: 200px;
    left: 600px;
    width: 230px;
    height: 230px;
    z-index: 2;
}

.flt-bnr2 img {
    max-width: 350px;
}

.flt-bnr .btn_delete {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    background: #fff url(/static/img/btn_delete.svg)no-repeat center;
    background-size: 9px;
}

.flt-bnr1 .btn_delete {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    background: #fff url(/static/img/btn_delete.svg)no-repeat center;
    background-size: 9px;
}

.flt-bnr2 .btn_delete {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    background: #fff url(/static/img/btn_delete.svg)no-repeat center;
    background-size: 9px;
}


/* 메인페이지 - META-cognition */
.section-idt1 {
    width: 100%;
    background: #fff url(/static/img/main_idt1_bg.svg)no-repeat top 50px left 24px;
    background-size: 74px;
    padding: 160px 0 160px;
}

.section-idt1 img {
    width: 1400px;
}

/* 메인페이지 - 메타프로 Solution */
.section-idt2 {
    width: 100%;
    height: 840px;
    background: #2A2B2D;
    text-align: center;
    padding: 226px 0;
}

.section-idt2 img {
    width: 1108px;
}

/* 메인페이지 - 리얼 리뷰 */
.section-review {
    width: 100%;
    height: 840px;
    background: #EAF6FF;
    text-align: center;
    padding: 70px 0 100px 0;
}

.main--banner {
    width: 100%;
    height: 100%;
}

.main--banner .banner__frame {
    position: relative;
    width: 100%;
    height: 100%;
}

.main--banner .banner__container {
    width: 100%;
    height: 640px;
    padding: 50px 0;
    overflow: hidden;
}

.main--banner .banner__container .banner__item {
    position: relative;
    width: 100%;
    height: 100%;
}

.main--banner .banner__container .banner__item img {
    width: 100%;
}

.main--banner .banner__funcs {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 1400px;
    max-width: 100%;
    height: 20px;
}

.main--banner .banner__funcs .funcs__group {
    width: 150px;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.main--banner .banner__funcs .funcs__pagination {
    font-size: 16px;
    color: var(--b-gray-500);
    font-weight: 400;
}

.main--banner .banner__funcs .funcs__pagination .pagi__nums {
    display: flex;
    align-items: center;
}

.main--banner .banner__funcs .funcs__pagination .pagi__now {
    color: #000;
    font-weight: 600;
}

.main--banner .banner__funcs .funcs__pagination .pagi__line {
    margin: 0 6px;
}

.main--banner .banner__funcs .funcs__navigation {
    cursor: pointer;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: 50%;
    text-indent: -9999px;
    overflow: hidden;
}

.main--banner .banner__funcs .funcs__navigation.cfy--prev {
    background-image: url("/static/img/funcs_prev.svg");
}

.main--banner .banner__funcs .funcs__navigation.cfy--next {
    background-image: url("/static/img/funcs_next.svg");
}

.main--banner .banner__funcs .funcs__navigation.cfy--toggle {
    background-image: url("/static/img/funcs_pause.svg");
    margin: 0 12px;
}

.main--banner .banner__funcs .funcs__navigation.cfy--toggle.is--pause {
    background-image: url("/static/img/funcs_play.svg");
}

.main--banner .banner__funcs .funcs__progress {
    position: relative;
    width: 1230px;
    height: 2px;
    background-color: #C9DAEB;
}

.main--banner .banner__funcs .funcs__progress .progress__bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #A6C2DE;
}

/* 메인페이지 - 분석 종류 */
.section-analysis {
    width: 100%;
    height: 850px;
    background: #fff;
}

.section-analysis .swiper {
    width: 100%;
    height: 100%;
    max-height: 850px;
}

.section-analysis .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #ffc;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-analysis .swiper-slide>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-analysis .wrap {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: 100%;
    z-index: 10;
}

.section-analysis .swiper-slide .wrap {
    top: 30%;
    transform: translate(-50%);
    height: auto;
}

.section-analysis .swiper-slide .wrap .txt-box .txt-dec {
    display: inline-block;
    width: 50px;
    height: 10px;
    border-radius: 5px;
    background: #5696F8;
    text-align: center;
    transform: rotate(-45deg);
    margin-bottom: 42px;
}

.section-analysis .swiper-slide .wrap .txt-box h3 {
    font-family: 'S-CD';
    font-weight: 600;
    font-size: 50px;
    margin-bottom: 24px;
    color: #fff;
}

.section-analysis .swiper-slide .wrap .txt-box h5 {
    font-family: 'S-CD';
    font-weight: 100;
    font-size: 30px;
    line-height: 1.4;
    letter-spacing: -0.03em;
    color: #fff;
}

.section-analysis .swiper-pagination-bullets {
    bottom: 80px !important;
}

.section-analysis .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 14px;
    opacity: 1;
    background: rgba(255, 255, 255, 0.4);
    margin-right: 16px !important;
}

.section-analysis .swiper-pagination-bullet:last-child {
    margin: 0 !important;
}

.section-analysis .swiper-pagination-bullet-active {
    width: 50px;
    background: #fff;
}

.section-analysis .swiper-button-next,
.section-analysis .swiper-button-prev {
    color: rgba(255, 255, 255, 0.6);

}

/* 메인페이지 - 공지사항 */
.section-coop {
    width: 100%;
    padding: 140px 0 165px;
    background: #fff;
    text-align: center;
}

.section-coop__title h3 {
    font-size: 50px;
    font-weight: 700;
    font-family: 'S-CD';
    color: #222;
    margin-bottom: 16px;
}

.section-coop__title p {
    font-size: 20px;
    color: #353943;
    margin-bottom: 40px;
}

.coop-box__frame {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 190px);
    gap: 16px;
}

.coop-box__frame .coop-box {
    background: #FAFAFA;
    border-radius: 20px;
    padding: 16px;
}

.coop-box__frame .coop-box .coop-box__logo {
    height: 144px;
}

.coop-box__frame .coop-box .coop-box__info {
    font-size: 12px;
    font-weight: 400;
    color: #B0B5B9;
}

.coop-box__frame .coop-box .coop-box__info strong {
    font-weight: 600;
}

/* 서비스 소개 페이지 */
.service-introduce .wrap {
    width: 1920px;
    margin: 0 auto;
    text-align: center;
    margin-top: 60px;
}

/* 메인컨텐츠 - 상단 타이틀 */
.page-top {
    padding: 60px 0 40px;
    text-align: center;
}

.page-top__title {
    font-weight: 700;
    font-size: 42px;
    color: var(--gray-900);
    margin-bottom: 16px;
    font-family: 'S-CD';
    padding-top: 20px;
    background: url(/static/img/page_top_img.svg) no-repeat center top;
}

.page-top__sub-title {
    font-size: 16px;
    color: var(--gray-900);
}

/* 로그인 */
.wrap.login {
    width: 692px;
    padding-bottom: 140px;
}

.idpw-box {
    width: 692px;
    height: auto;
    margin: 0 auto;
    background: var(--white);
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--gray-300);
}

.idpw-box .tab-menu {
    width: 100%;
    height: 63px;
    border-bottom: 1px solid var(--gray-300);
}

.idpw-box .tab-menu ul {
    width: 100%;
    height: 100%;
}

.idpw-box .tab-menu ul li {
    width: calc(100% / 3);
    height: 100%;
    line-height: 60px;
    text-align: center;
    background: var(--gray-50);
    font-size: 18px;
    color: var(--gray-900);
    cursor: pointer;
}

.idpw-box.find-info-box .tab-menu ul li {
    width: calc(100% / 2);
}

.idpw-box .tab-menu ul li.active {
    color: var(--violet-300);
    font-weight: 700;
    border-bottom: 4px solid var(--violet-300);
}

.idpw-box .tab-content {
    display: none;
    padding: 50px 88px 60px 88px;
}

.idpw-box .tab-content.active {
    display: block;
}

.idpw-box .tab-content__title {
    width: 100%;
    line-height: 38px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--b-gray-300);
    font-size: 24px;
    margin-bottom: 20px;
}

.idpw-box .tab-content__title strong {
    font-weight: 900;
}

.idpw-box .tab-content__title img {
    width: 38px;
    margin-right: 16px;
}

.idpw-box .idpw-frame>p {
    font-size: 14px;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.idpw-box.find-info-box .idpw-frame>p {
    font-size: 14px;
    color: var(--b-gray-500);
    margin-bottom: 0;
    font-weight: 700;
}

.login-info__ment {
    font-size: 14px;
    color: var(--b-gray-500);
}

.find-pw-box {
    padding: 67px 38px;
    background: var(--sky-50);
    border: 1px solid var(--gray-300);
    border-radius: 4px;
}

.find-pw-box p {
    color: var(--gray-900);
    font-size: 20px;
}

.find-pw-box p strong {
    font-weight: 700;
}

/* 메인 컨텐츠 - 흰색 박스 컨텐츠*/
.section {
    padding-bottom: 100px;
}

.section__title {
    width: 100%;
    margin-bottom: 20px;
}

.section__title h3,
.section__title h3 span {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
}

.section__search {
    border: 1px solid var(--sky-300);
    background: var(--sky-100);
    text-align: center;
    padding: 20px 0;
    border-radius: 4px;
}

.result-ment {
    font-size: 14px;
    letter-spacing: -0.02em;
    padding: 8px 0 12px 0;
    margin-top: 20px;
    color: var(--gray-700);
}

.result-ment span {
    font-weight: 700;
}

.turn-ment {
    padding: 15px 0;
    border-bottom: 1px solid #DDDDDD;
    margin-bottom: 32px;
}

.turn-ment a {
    font-size: 12px;
    font-weight: 600;
    color: #3346AB;
}

.turn-ment a img {
    width: 12px;
    margin-right: 6px;
}

/* 설명박스 */
.info-box {
    width: 100%;
    padding: 24px;
    border-radius: 4px;
    background: var(--gray-50);
    border: 1px solid var(--gray-300);
}

.info-box ul li {
    color: var(--gray-600);
    margin-bottom: 8px;
    padding-left: 12px;
    font-size: 14px;
    line-height: 18px;
    position: relative;
}

.info-box ul li:last-child {
    margin-bottom: 0;
}

.info-box ul li::before {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gray-600);
}

.upload-cont__frame {
    width: 100%;
    min-height: 290px;
    border: 1px solid var(--b-gray-300);
    padding: 10px 20px;
    /*임시*/
}

.upload-cont__box .ment {
    text-align: center;
    padding: 90px 0;
}

.upload-cont__box .ment img {
    margin-bottom: 16px;
}

.upload-cont__box .ment h5,
.upload-cont__box .ment h5 span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    line-height: 1.4;
}

.upload-cont__box .ment h6,
.upload-cont__box .ment h6 span {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.4;
}

/* 테이블 */
table {
    width: 100%;
}

table a {
    display: inline-block;
    font-weight: inherit;
    font-size: inherit;
}

.file-ment {
    font-size: 14px;
    color: var(--gray-500);
}

.table__title {
    margin-bottom: 16px;
}

.table__title h4 {
    color: var(--b-gray-700);
    font-size: 20px;
    line-height: 32px;
    font-weight: 700;
}

/* type-01 */
table.type-01 {
    text-align: center;
}

table.type-01 th {
    border-top: 1px solid var(--gray-900);
    border-bottom: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-900);
    font-size: 14px;
    font-weight: 700;
    line-height: 50px;
}

table.type-01 td {
    border-bottom: 1px solid var(--gray-300);
    color: var(--gray-800);
    font-size: 14px;
    line-height: 40px;
    background: var(--white);
}


table.type-01.H tr:hover td {
    color: var(--violet-500);
    background: var(--sky-50);
}

table.type-01.H tr:hover td a {
    font-weight: 700;
    text-decoration: underline;
}

table.type-01.H tr:hover td a.btn {
    text-decoration: none;
}

table.type-01 td img {
    width: 12px;
    padding: 14px 0;
    margin-left: 6px;
}

span.clip {
    height: 40px;
    display: inline-block;
}

span.clip img {
    width: 12px;
}

span.new {
    width: 16px;
    height: 16px;
    display: inline-block;
    line-height: 18px;
    font-size: 8px;
    font-weight: 300;
    text-align: center;
    border-radius: 50%;
    color: var(--sky-50);
    background: var(--violet-100);
}

/* type-02 */
table.type-02 {
    text-align: left;
}

table.type-02 th,
table.type-02 td {
    line-height: 40px;
    border: 1px solid var(--b-gray-300);
}

table.type-02 th {
    padding: 0 24px;
    background: var(--b-gray-100);
    font-size: 14px;
    color: var(--b-gray-600);
}

table.type-02 td {
    padding: 4px 12px;
}

/* type-03 */
table.type-03 {
    text-align: center;
}

table.type-03 th,
table.type-03 td {
    border: 1px solid var(--b-gray-300);
    line-height: 40px;
    padding: 0 16px;
    font-size: 14px;
}

table.type-03 th strong,
table.type-03 td strong {
    font-weight: 600;
}

table.type-03 th {
    background: var(--b-gray-100);
    color: var(--b-gray-600);
}

.q table.type-03 th {
    line-height: 1.4;
}

.q table.type-03 .sub {
    font-size: 16px;
    font-weight: 700;
    color: var(--b-gray-700);
    display: block;
    margin-bottom: 8px;
}

table.type-03 td {
    background: var(--white);
    color: var(--gray-800);
}

table.type-03 .num-box {
    display: inline-block;
    min-width: 60px;
    line-height: 32px;
    text-align: center;
    border-radius: 50px;
    background: var(--gray-50);
    border: 1px solid var(--gray-300);
    margin: 0 10px;
    font-size: 16px;
    font-weight: 600;
}

table.type-03 .num-box:nth-of-type(2) {
    color: #F175B0;
}

/* type-04 */
table.type-04 {
    text-align: center;
}

table.type-04 th,
table.type-04 td {
    border: 1px solid var(--gray-300);
    color: var(--gray-600);
    line-height: 40px;
    font-size: 14px;
    padding: 0 16px;
}

table.type-04 th {
    font-weight: 600;
    background: #F9F9F9;
}

table.type-04 td {
    font-weight: 400;
}

/* type-05 */
table.type-05 {
    text-align: left;
    border-top: 1px solid var(--gray-900);
}

table.type-05 tr:last-child th,
table.type-05 tr:last-child td {
    border-bottom: 1px solid var(--gray-900);
}

table.type-05 th,
table.type-05 td {
    border-bottom: 1px solid var(--gray-300);
    color: var(--gray-600);
    line-height: 56px;
    font-size: 14px;
}

table.type-05 th {
    font-weight: 600;
    padding: 0 24px;
}

table.type-05 td {
    font-weight: 400;
    padding: 0 16px;
}

table.type-05 .pw-ment {
    display: inline-block;
    margin-left: 14px;
}

table.type-05 .pw-ment.red {
    color: var(--red);
}

table.type-05 .pw-ment.green {
    color: var(--green);
}

/* type-06 */
table.type-06 {
    border-top: 1px solid var(--gray-900);
    border-bottom: 1px solid var(--gray-900);
}

table.type-06 tr {
    border-bottom: 1px solid var(--gray-300);
}

table.type-06 tr:last-child {
    border-bottom: none;
}

table.type-06 th,
table.type-06 td {
    padding: 8px 24px;
}

table.type-06 th {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

table.type-06 th span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 40px;
}

/* 게시글 상세뷰 */
.post__title-frame {
    padding: 32px 26px 16px 26px;
    border-bottom: 1px solid #CCCCCC;
    margin-bottom: 16px;
    border-top: 1px solid var(--gray-900);
}

.post__title-main {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.post__title-sub p {
    margin-right: 40px;
}

.post__title-sub strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-800);
    margin-right: 20px;
}

.post__title-sub span {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-700);
}

.post__cont {
    padding: 16px 25px 62px 25px;
    border-bottom: 1px solid var(--gray-900);
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-900);
    text-align: center;
}

.comment {
    padding-top: 24px;
    border-top: 1px solid #ccc;
}

.comment__num {
    width: 100%;
    margin-bottom: 20px;
    font-size: 16px;
    color: #000;
    line-height: 18px;
}

.comment__num>span {
    font-size: 18px;
    font-weight: 600;
    color: var(--sky-600);
}

.comment__cont {
    padding: 16px;
    background: var(--sky-50);
    border: 1px solid var(--sky-200);
    border-radius: 4px;
}

.comment__inpform {
    height: 92px;
    border: 1px solid var(--b-gray-300);
    border-radius: 4px;
    overflow: hidden;
}

.comment__inpform .txt-frame {
    position: relative;
    width: calc(100% - 86px);
    background: #fff;
}

.comment__inpform .txt-frame textarea {
    border: none;
    min-height: 0;
    height: 90px;
    background: none;
}

.comment__inpform .txt-frame textarea::placeholder {
    color: #828282;
}

.comment__inpform .txt-length {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: #bdbdbd;
    font-size: 12px;
    text-align: right;
}

.comment__inpform button {
    width: 86px;
    background: var(--sky-100);
    border-left: 1px solid var(--b-gray-300);
    border-radius: 4px;
}

.commentRe__inpform {
    height: 140px;
    border: 1px solid var(--b-gray-300);
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    padding: 20px;
}

.commentRe__inpform .txt-frame textarea {
    border: none;
    min-height: 0;
    height: 52px;
    background: none;
    padding: 0;
    margin-bottom: 16px;
}

.commentRe__inpform .bot {
    border-top: 1px solid #ccc;
    padding-top: 12px;
}

.commentRe__inpform .bot .txt-length {
    color: #bdbdbd;
    font-size: 12px;
    text-align: left;
}

.commentRe__inpform .bot .txt-length span {
    color: var(--b-gray-500);
}

.comment-empty {
    color: var(--b-gray-400);
    font-size: 16px;
    font-weight: 600;
    margin-top: 42px;
    margin-bottom: 28px;
    text-align: center;
}

.comment__list {
    margin-top: 12px;
}

.comment__list .comt {
    border-top: 1px solid var(--b-gray-200);
    padding: 20px;
}

.comment__list>li ul li {
    padding: 12px 0 0 24px;
    background: url(/static/img/comt_re.svg)no-repeat left top 12px;
    background-size: 20px;
}

.comment__list>li ul li.re-write {
    background-image: url(/static/img/comt_re_G.svg)
}

.comment__list>li ul li:first-child {
    border-top: 1px solid var(--b-gray-200);
}

.comment__list>li ul li:last-child {
    padding-bottom: 12px;
}

.comment__list .comt_Re {
    background: #F1F5FC;
    padding: 18px 20px;
    border-radius: 4px;
    border: 1px solid var(--b-gray-200);
}

.comt__info {
    margin-bottom: 12px;
}

.comt__info .user .name {
    line-height: 24px;
    color: var(--b-gray-600);
    font-size: 16px;
    font-weight: 600;
    margin-right: 4px;
}

.comt__info .user .auth {
    line-height: 24px;
    color: var(--b-gray-600);
    font-size: 16px;
    font-weight: 400;
}

.comt__info .user .auth.mng {
    font-weight: 600;
    color: var(--sky-700);
}

.comt__info .user .time {
    line-height: 24px;
    color: var(--b-gray-400);
    font-size: 12px;
    font-weight: 400;
    margin-left: 10px;
}

.comt__info .btn-frame {
    margin-top: 0;
}

.comt__info .btn-frame>* {
    margin-left: 12px;
}

.recomt-num {
    color: var(--b-gray-500);
    font-size: 12px;
    line-height: 24px;
}

.recomt-num>span {
    font-weight: 600;
    margin-left: 2px;
}

.comt__cont {}

.post__nav {
    margin-top: 24px;
    border-top: 1px solid var(--b-gray-300);
}

.post__nav>a {
    border-bottom: 1px solid var(--b-gray-300);
    height: 50px;
    line-height: 50px;
}

.post__nav .sort-btn {
    font-size: 16px;
    font-weight: 700;
    padding: 0 24px;
    color: var(--gray-800);
    width: 220px;
    text-align: left;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
}

.post__nav .next img {
    transform: rotate(180deg);
}

.post__nav .title {
    font-size: 16px;
    padding: 0 6px;
    color: var(--gray-800);
    width: calc(100% - 220px);
}

.post__nav>a:hover .sort-btn {
    color: var(--sky-700);
}

.post__nav>a:hover .title {
    text-decoration: underline;
}

.file-box__frame {
    margin-top: 10px;
    padding: 16px;
    border: 1px solid var(--gray-300);
}

.file-box {
    padding: 12px 22px;
    border: 1px solid var(--gray-300);
    background: var(--gray-100);
    border-radius: 2px;
    margin-bottom: 8px;
    border-radius: 2px;
}

.file-box:last-child {
    margin-bottom: 0;
}

.file-box:hover {
    border-color: var(--violet-500);
    background-color: var(--b-gray-100);
}

.file-box p img {
    width: 18px;
    margin-right: 6px;
}

.file-box p a {
    font-size: 14px;
    color: var(--gray-800);
}

.file-box:hover p a {
    color: var(--violet-500);
    font-weight: 600;
}

/* 브레드크럼브 */
.breadCrumb-frame {
    width: 100%;
    height: 60px;
    padding: 18px 6px;
    border-radius: 4px;
    background: var(--violet-300);
    margin-bottom: 32px;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.14);
}

.breadCrumb li {
    padding: 0 24px;
    line-height: 24px;
    color: var(--white);
    margin-right: 18px;
    font-size: 14px;
    position: relative;
}

.breadCrumb li::after {
    content: '';
    width: 18px;
    height: 18px;
    background: url(/static/img/bread_crumb_arrow.svg)no-repeat center;
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
}

.breadCrumb li:last-child {
    margin-right: 0;
    font-weight: 600;
}

.breadCrumb li:last-child::after {
    display: none;
}

/* 모달 팝업 */
.modalpopup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
}

.modalpopup__inner {
    background: #fff;
    width: 1400px;
    height: auto;
    max-height: 80%;
    overflow-y: auto;
    padding: 32px 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 4px;
}

.modalpopup table.type-01 tbody tr:hover {
    background: var(--sky-50);
    font-weight: 700;
    color: var(--violet-500);
    border: 1px solid var(--violet-500);
    position: relative;
}

.modalpopup table.type-01 tbody tr:hover td {
    background: var(--sky-50);
    font-weight: 700;
    color: var(--violet-500);
    border-bottom: 1px solid var(--violet-500);
    border-collapse: separate;
    z-index: 9;
}

.modalpopup table.type-01 tbody tr:hover::after {
    content: '';
    width: calc(100% + 2px);
    height: 1px;
    position: absolute;
    left: -1px;
    top: -1px;
    background: var(--violet-500);
}


.modalpopup__find-id-done {
    text-align: center;
    padding: 0 20px 20px 20px;
}

.modalpopup__find-id-done img {
    width: 86px;
    margin-bottom: 24px;
}

.modalpopup__find-id-done h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.modalpopup__find-id-done p {
    font-size: 14px;
    margin-bottom: 24px;
    color: var(--gray-900);
}

.modalpopup__find-id-done .result-box {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    line-height: 40px;
    border-radius: 2px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--gray-800);
}

.modalpopup .btn_x {
    border: none;
    width: 28px;
    height: 28px;
    padding: 0;
}

/* 박스 스타일 */
.box-type1 {
    padding: 40px 0;
    background: var(--sky-50);
    border: 1px solid var(--gray-300);
    border-radius: 20px;
}

.box-type1>div {
    border-left: 1px solid var(--gray-300);
    padding: 0 40px;
}

.box-type1>div:first-of-type {
    border-left: 0;
}

.box-type1 p {
    margin-bottom: 16px;
    color: var(--gray-600);
    font-size: 14px;
}

.box-type1 p:last-of-type {
    margin-bottom: 0;
}

.box-type1 p>span {
    display: inline-block;
    max-width: 120px;
    font-weight: 700;
}

.box-type2 {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-300);
    padding: 30px;
    min-height: 180px;
    margin-right: 16px;
    color: var(--gray-800);
}

.box-type2:last-of-type {
    margin-right: 0;
}

.box-type2 h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.box-type2 p {
    font-size: 14px;
    font-weight: 400;
    word-break: keep-all;
}

.box-type3 {
    padding: 26px 32px;
    border-radius: 4px;
    background: var(--gray-50);
    border: 1px solid var(--gray-300);
}

.box-type3 h3 {
    color: var(--sky-600);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.box-type3 ul li {
    margin-bottom: 8px;
    padding-left: 13px;
    position: relative;
    color: var(--gray-700);
    font-size: 14px;
}

.box-type3 ul li::after {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gray-700);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.box-type3 ul li:last-child {
    margin-bottom: 0;
}

.box-type3 ul li strong {
    font-weight: 600;
}

.box-type4 {
    padding: 30px;
    border-radius: 6px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.06);
}

.box-type4 h5,
.box-type4 h5 span {
    color: var(--gray-800);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.box-type4>div {
    text-align: center;
}

.box-type4>div:first-child {
    min-height: 320px;
}

.box-type5 {
    padding: 12px;
    border-radius: 2px;
    background: var(--sky-100);
    border: 1px solid var(--b-gray-300);
}

.box-type6 {
    padding: 20px 24px;
    border-radius: 4px;
    background: var(--sky-50);
    border: 1px solid var(--b-gray-300);
}

.box-type6.bg_wh {
    background: var(--white);
}

.box-type6 h5 {
    color: var(--b-gray-500);
    font-size: 14px;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
}

.box-type6 h5::before {
    content: '';
    width: 4px;
    height: 18px;
    background: var(--violet-500);
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
}

.box-type6.bg_wh h5::before {
    background: var(--b-gray-300);
}

.box-type6 ol {
    padding-left: 20px;
}

.box-type6 ol li {
    margin-bottom: 8px;
    color: var(--b-gray-600);
    font-size: 14px;
}

/* 가채점 */
.marks-section {
    padding-top: 32px;
    border-top: 1px solid #DDDDDD;
}

.marks-info__title {
    padding-left: 30px;
    margin-bottom: 8px;
}

.marks-info__title,
.marks-info__title>span {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

.marks-info__title .sub {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-800);
    margin-left: 10px;
}

.marks-info__box-frame {
    padding: 16px;
    border-bottom: 1px solid var(--b-gray-400);
}

.marks-info__table-frame {
    padding: 16px;
}

.marks-info__table-frame table .radioBox label {
    padding: 0;
    margin: 0;
    padding-left: 18px;
}

.marks-info__table-frame .tbody {
    min-height: 40px;
    max-height: 400px;
    overflow-y: scroll;
}

.marks-info__table-frame th,
.marks-info__table-frame td {
    text-align: center;
    border: 1px solid var(--gray-300);
    color: var(--gray-600);
    line-height: 1.6;
    height: 40px;
    font-size: 14px;
    padding: 0 16px;
    word-break: keep-all;
}

.marks-info__table-frame th {
    font-weight: 600;
    background: #F9F9F9;
}

.marks-info__table-frame td {
    font-weight: 400;
}

/* 사이드 내비 */
.side-nav {
    padding: 9px 24px;
    border-left: 1px solid var(--violet-600);
}

.side-nav ul li a {
    color: var(--violet-800);
    font-size: 16px;
    padding: 9px 0;
    display: inline-block;
}

.side-nav ul li.active a {
    text-decoration: underline;
    font-weight: 700;
    position: relative;
}

.side-nav ul li.active a::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sky-600);
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
}