@charset "utf-8";

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

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

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

.visual {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 1rem 0 0;
}

.visual>.inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.top__des>p {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.top__des>p>b {
    font-weight: inherit;
    color: #3F72AF;
}

.container {
    width: 100%;
    height: auto;
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

/*  */
.main__box {
    width: 65%;
    height: auto;
    padding: 2rem;
}

.main__box>h2 {
    font-size: 1.2rem;
    color: #3F72AF;
    margin-bottom: 10px;
}

.main__box>h3 {
    font-size: 1.6rem;
    color: #112D4E;
    margin-bottom: 2rem;
}

.main__box>p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.main__box .list {
    display: flex;
    margin-bottom: 2rem;
}

.main__box .list>li {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.main__box .list>li>h2 {
    border: 2px solid #ccc;
    border-radius: 0.5rem;
    padding: 1rem;
}

.main__box .list>li img {
    width: 60px;
    height: auto;
    object-fit: contain;
}

.main__box .list>li>span {
    font-size: 1rem;
    font-weight: 500;
    color: #555;

    line-height: normal;
}

.main__box .list>li>small {
    font-size: 0.9rem;
}

.main__box .list>li>ul>li {
    font-size: 0.8rem;
    word-break: keep-all;
}

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

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

/*  */
.cs__wrap {
    width: 35%;
    height: auto;
}

.cs {
    width: 100%;
    height: auto;
    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;
    margin-bottom: 10px;
    padding: 2rem;
}

.cs .title {
    margin-bottom: 1rem;
}

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

.cs .title p>b {
    font-weight: inherit;
    color: #3F72AF;
}

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

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

.cs__input>input {
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    border-radius: 0.2rem;
    padding-left: 10px;
}

.cs__input.box {
    width: 100%;
    height: 45px;
    gap: 10px;
}

.cs__input.box>input {
    width: calc(60% - 10px);
}

.cs__radio {
    width: 40%;
    height: 100%;
    display: flex;
}

.cs__radio input[type=radio] {
    display: none;
}

.cs__radio input[type=radio]+label {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ccc;
    border: 1px solid #ccc;
    border-radius: 0.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}

.cs__radio input[type=radio]:checked+label {
    color: #fff;
    border: none;
    background-color: #555;
}

#csType {
    width: 100%;
    height: 45px;
    font-size: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 0.2rem;
    background-color: #fff;
    color: #333;
    appearance: none;
    /* 기본 브라우저 스타일 제거 */
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    background: url('../img/caret-down-solid.svg') no-repeat right 1rem center;
    background-size: 12px;
    padding: 10px 1rem;
}

#csType option {
    font-size: 1rem;
    background-color: #fff;
    color: #333;
    padding: 10px;
}

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

.cs__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    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;
    color: #555;
}

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

.cs__btn {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
}

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

/*  */
.cs__des {
    padding: 0 1rem;
}

.cs__des>p {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    word-break: keep-all;
}

/*  */
.main__title {
    width: fit-content;
    height: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 4px solid #EDEDED;
    border-right: 4px solid #EDEDED;
    border-radius: 0 1rem 0 0;
    padding: 10px 1rem 10px 0;
}

.main__title img {
    width: 50px;
    height: auto;
    object-fit: contain;
}

.main__title h3 {
    font-size: 1.2rem;
    color: #112D4E;
}

.main__title h3>b {
    font-weight: inherit;
    color: #3F72AF;
}

/*  */
.content {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    background-color: #F8F8F8;
}

.content .list {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.content .list>li {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    background-color: #F8F8F8;
    padding: 6rem 0;
    position: relative;
}

.content .list>li:nth-of-type(even) {
    background-color: #fff;
}

.content .list>li.first {
    padding: 7rem 0 6rem;
}

.content .list .inner {
    width: 100%;
    height: auto;
}

.content .list .title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.content .list .title img {
    width: 50px;
    height: auto;
    object-fit: contain;
}

.content .list .title h4 {
    font-size: 1.2rem;
    line-height: normal;
}

.content .list .title h4>b {
    font-weight: inherit;
    color: #3A4CA8;
}

.content .list .items>li {
    font-size: 1rem;
    font-weight: 500;

}

.content .list .items>li.extra {
    position: absolute;
    top: 26px;
}

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

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

    .top__des {
        padding: 0 1rem;
    }

    .container {
        flex-wrap: wrap;
        gap: 0;
    }

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

    .main__box .list>li>ul>li {
        font-size: 0.85rem;
    }

    /*  */
    .cs__wrap {
        width: 100%;
        padding: 0 1rem;
    }

    /*  */
    .main__title {
        width: 100%;
        justify-content: center;
    }

    /*  */
    .content .list>li {
        padding: 4rem 2rem;
    }

    .content .list>li.first {
        padding: 7rem 2rem 4rem;
    }

    .content .list .items>li.extra {
        padding: 0 2rem 0 0;
    }
}






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

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

    .top__des {
        border-bottom: 1px solid #ebebeb;
        padding: 0 1rem;
    }

    .top__des>p {
        font-size: 0.85rem;
        word-break: keep-all;
    }

    .container {
        flex-wrap: wrap;
        gap: 0;
        margin-bottom: 0;
    }

    /*  */
    .main__box {
        width: 100%;
        padding: 2rem 1rem;
    }

    .main__box>h2 {
        font-size: 1rem;
    }

    .main__box>h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .main__box>p {
        font-size: 1rem;
    }

    .main__box .list {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 1rem;
    }

    .main__box .list>li {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        text-align: left;
        border: 2px solid #ccc;
        border-radius: 0.5rem;
        padding: 1rem;
    }

    .main__box .list>li>h2 {
        border: none;
        border-radius: 0;
        padding: 0;
    }

    .main__box .list>li img {
        width: 35px;
    }

    .main__box .list>li>span {
        width: calc(100% - 51px);
        display: inline-block;
        font-size: 0.9rem;
    }

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

    .cs {
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid #ccc;
        margin-bottom: 0;
        padding: 1.5rem;
    }

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

    .cs__des {
        border-bottom: 1px solid #ccc;
        padding: 0 1rem 1rem;

    }

    /*  */
    .main__title {
        width: 100%;
        justify-content: center;
        border: none;
        padding: 1rem;
    }

    .main__title img {
        min-width: 40px;
    }

    .main__title h3 {
        font-size: 1rem;
        word-break: keep-all;
    }

    /*  */
    .content .list>li {
        padding: 2rem;
    }

    .content .list>li.first {
        padding: 8rem 2rem 2rem;
    }

    .content .list .items>li.extra {
        font-size: 0.9rem;
        left: 2rem;
        padding: 0 2rem 0 0;
    }

    .content .list .title img {
        width: 35px;
    }

    .content .list .title h4 {
        font-size: 1rem;
    }

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