@charset "utf-8";

/*
 * File       : common.css
 * Author     : YONG
 *
 * 최종수정일 : 25/00/00
 *
 * SUMMARY:
 * 서브페이지.CSS
 */

/* 
■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■ PC ■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■
*/

/*  */
.header {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
}

.header>.inner {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 100px;
    height: auto;
    object-fit: contain;
}

/*  */
.nav {
    width: 60%;
    height: 100%;
}

.nav>ul {
    width: 100%;
    height: 100%;
    display: flex;
}

.nav>ul>li {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: #002060;
    position: relative;
    cursor: pointer;
}

.nav>ul>li.on {
    font-weight: 600;
    color: #150F95;
}

.drop__nav {
    width: 100%;
    height: auto;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    position: absolute;
    top: 60px;
    padding: 1rem;
    z-index: 99;
}

.drop__nav.active {
    display: flex;
}

.drop__nav>li>a {
    font-size: 0.95rem;
    color: #000;
}

.drop__nav>li>a:hover {
    color: #0068ff;
}

/*  */
.m__menu {
    width: 24px;
    height: 20px;
    display: none;
}

.m__menu ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.m__menu ul li {
    width: 100%;
    height: 3px;
    background-color: #444;
    border-radius: 2rem;
    transition: all 0.3s ease;
    position: absolute;
}

.m__menu ul li:nth-of-type(1) {
    width: 100%;
    background-color: #444;
    top: 0px;
    right: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.m__menu ul li:nth-of-type(2) {
    background-color: #444;
    top: 8px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.m__menu ul li:nth-of-type(3) {
    background-color: #444;
    top: 16px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

/*  */
.main {
    width: 100%;
    height: auto;
}

.visual {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    background-color: #eff2ff;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 10px -5px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    padding: 2rem 0;
}

.visual > .inner {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

/*  */
.container {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 2rem;
    position: relative;
}

.container > h2 {
    font-size: 1.6rem;
    color: #0068ff;
    text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.4);
    margin-bottom: 1rem;
}

.container > h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.container > strong {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 1rem;
}

.container > strong > small {
    font-size: 70%;
    font-weight: 500;
}

.container > p {
    font-size: 1rem;
    font-weight: 500;
}

.container > span {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1rem;
}

.container .img {
    position: absolute;
    right: 0;
    bottom: 0;
}

.container .img img {
    width: 170px;
    height: 150px;
    object-fit: contain;
}

/*  */
.cs {
    width: 35%;
    height: auto;
    background-color: #fff;
    border: 2px solid #0068ff;
    border-radius: 1rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    padding: 1.5rem;
}

.cs .title {
    border-bottom: 1px solid #000;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.cs .title p {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: normal;
    text-align: center;
}

.cs__inputs {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cs__input {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
}

.cs__input>input {
    width: 100%;
    height: 100%;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
    padding-left: 10px;
}

.cs__input.box {
    display: flex;
    gap: 1rem;
}

.cs__input.box > input {
    width: 60%;
}

.cs__radio {
    width: 40%;
    height: auto;
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 500;
}

.cs__radio > input {
    width: 20px;
    height: 20px;
}

.cs__apply {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cs__info {
    display: flex;
    gap: 5px;
    margin: 1rem 0;
}

.cs__info label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cs__info input {
    width: 17px;
    height: 17px;
}

.cs__info span {
    font-size: 0.9rem;
}

.cs__info>span {
    color: cornflowerblue;
    text-decoration: underline;
    cursor: pointer;
}

.cs__btn {
    width: 100%;
    height: auto;
    display: flex;
}

.submit {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: #0068ff;
    border-radius: 0.2rem;
    cursor: pointer;
}

/*  */
.content {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.content > .inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.content .title {
    border-bottom: 2px solid #002060;
    padding-bottom: 1rem;
}

.content .title > h3 {
    font-size: 1.2rem;
}

/*  */
.content > .inner > h4 {
    width: fit-content;
    height: auto;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: #6643fb;
    padding: 10px 2rem;
}

.content .list {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border: 1px solid #ccc;
    border-radius: 1rem;
    padding: 2rem;
}

.content .list > li {
    width: 100%;
    height: auto;
    display: flex;
    gap: 1rem;
}

.content .list .order {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f2f2f2;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 600;
}

.content .list .txt {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 6px;
}

.content .list .txt > h5 {
    font-size: 1.1rem;
}

.content .list .txt > ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.content .list .txt > ul > li {
    font-size: 1rem;
}

.content .list .txt > ul > li > b {
    color: #6643fb;
}

.content .list .des {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.content .list .des > li {
    font-size: 0.9rem;
}

/*  */
.ft__notice {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 0 0 2rem 0;
}

.ft__notice > .inner {
    width: 100%;
    height: auto;
    text-align: center;
    background-color: #e7f2ff;
    border-radius: 1rem;
    box-shadow: rgba(222, 232, 245, 0.8) 0px 1px 2px 0px, rgba(222, 232, 245, 0.8) 0px 2px 6px 2px;
    padding: 2rem;
}

.ft__notice p {
    font-size: 1rem;
    font-weight: 500;
    color: #0068ff;
}


@media screen and (min-width: 768px) and (max-width: 1200px) {

    /* 
    ■■■■■■■■■■■■■■■■■■■■■
    ■■■■■■■■ 태블릿 ■■■■■■■■
    ■■■■■■■■■■■■■■■■■■■■■
    */

    .header {
        padding: 0 1rem;
    }

    .logo img {
        width: 90px;
    }

    .nav {
        display: none;
        width: 100%;
        height: auto;
        position: absolute;
        top: 80px;
        left: 0;
        background-color: #fff;
        border-top: 1px solid #ccc;
        border-bottom: 2px solid #000;
        padding: 2rem;
        z-index: 99;
    }

    .nav.active {
        display: block;
    }

    .nav>ul {
        flex-direction: column;
        gap: 2rem;
    }

    .nav>ul>li {
        font-size: 1.1rem;
        font-weight: 600;
        color: #000;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    /*  */
    .drop__nav {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        box-shadow: none;
        border-radius: 0;
        border: none;
        position: static;
        padding: 0;
    }

    .drop__nav>li>a {
        font-size: 1rem;
        color: #555;
    }

    /*  */
    .m__menu {
        display: block;
    }

    /*  */
    .visual {
        box-shadow: none;
        padding: 2rem 1rem;
    }

    .visual > .inner {
        flex-wrap: wrap;
    }

    /*  */
    .container {
        width: 100%;
        padding-bottom: 0;
        padding: 0 2rem;
    }

    .container > strong {
        font-size: 1.6rem;
    }

    .container .img {
        right: 2rem;
    }

    .container .img img {
        height: 110px;
    }

    /*  */
    .cs {
        width: 100%;
    }

    .cs__input.box > input {
        width: 75%;
    }

    .cs__radio {
        width: 25%;
    }

    /*  */
    .content {
        padding: 2rem 1rem;
    }

    /*  */
    .ft__notice {
        padding: 0 1rem 2rem;
    }

}






@media screen and (max-width: 767px) {

    /* 
    ■■■■■■■■■■■■■■■■■■■■■
    ■■■■■■■■ 모바일 ■■■■■■■■
    ■■■■■■■■■■■■■■■■■■■■■
    */

    .header {
        height: 70px;
        padding: 0 1rem;
    }

    .logo img {
        width: 80px;
    }

    .nav {
        display: none;
        width: 100%;
        height: auto;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #fff;
        border-top: 1px solid #ccc;
        border-bottom: 2px solid #000;
        padding: 2rem;
        z-index: 99;
    }

    .nav.active {
        display: block;
    }

    .nav>ul {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .nav>ul>li {
        height: auto;
        font-size: 1rem;
        font-weight: 600;
        color: #000;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .drop__nav {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        box-shadow: none;
        border-radius: 0;
        border: none;
        position: static;
        padding: 0;
    }

    .drop__nav>li>a {
        font-size: 0.95rem;
        color: #555;
    }

    /*  */
    .m__menu {
        display: block;
    }

    /*  */
    .visual {
        box-shadow: none;
        padding: 0;
    }

    .visual > .inner {
        flex-wrap: wrap;
        gap: 0;
    }

    /*  */
    .container {
        width: 100%;
        padding: 1.5rem;
    }

    .container > h2 {
        font-size: 1.2rem;
    }
    .container > h3 {
        font-size: 1rem;
    }
    .container > strong {
        font-size: 1.2rem;
    }
    .container > strong > small {
        font-size: 90%;
    }
    .container > p {
        font-size: 0.9rem;
    }

    .container > span {
        font-size: 0.9rem;
    }

    .container .img {
        position: static;
        display: flex;
        justify-content: flex-end;
        margin-top: 2rem;
    }

    .container .img img {
        width: 100px;
        height: 80px;
    }

    /*  */
    .cs {
        width: 100%;
        border-radius: 0;
    }

    /*  */
    .content {
        padding: 2rem 1rem;
    }

    .content .title > h3 {
        font-size: 1.1rem;
        word-break: keep-all;
    }

    .content .list > li {
        flex-direction: column;
    }

    .content .list .txt {
        padding-top: 0;
    }

    .content .list .txt > h5 {
        font-size: 1rem;
        word-break: keep-all;
    }

    .content .list .txt > ul > li {
        font-size: 0.95rem;
    }

    /*  */
    .ft__notice {
        padding: 0 1rem 2rem;
    }

    .ft__notice p {
        font-size: 0.9rem;
    }

    .ft__notice p > br {
        display: none;
    }
}