@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: 2rem 0;
}

.visual > .inner {
    width: 100%;
    height: auto;
    display: flex;
    gap: 2rem;
}

/*  */
.container {
    width: 65%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.container .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.container .title > h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #7f7f7f;
}

.container .title > span {
    width: fit-content;
    display: inline-block;
    font-size: 0.9rem;
    color: #fff;
    background-color: #1972B5;
    border-radius: 2rem;
    padding: 8px 3rem;
}

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

.container .list {
    width: 80%;
    height: auto;
    display: flex;
    gap: 1rem;
}

.container .list > li {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    line-height: normal;
    border: 1px solid #ccc;
    border-radius: 1rem;
    box-shadow: rgba(50, 50, 93, 0.15) 0px 6px 12px -2px, rgba(0, 0, 0, 0.1) 0px 3px 7px -3px;
    padding: 1.5rem;
}

.container .list > li > em {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.container .list > li > em > b {
    color: #1972B5;
}

.container .list > li > ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #fff7d1;
    border-radius: 1rem;
    padding: 1.5rem;
}

.container .list > li > ul > li {
    font-size: 0.9rem;
    text-indent: -7px;
    padding-left: 7px;
}

.container .list img {
    width: 80px;
    height: auto;
    object-fit: contain;
}

/*  */
.cs {
    width: 35%;
    height: auto;
    display: flex;
    flex-direction: column;
    border: 1px solid #1972B5;
    border-radius: 1rem;
    box-shadow: rgba(50, 50, 93, 0.15) 0px 6px 12px -2px, rgba(0, 0, 0, 0.1) 0px 3px 7px -3px;
    padding: 2rem;
}

.cs>h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.cs__input>span {
    width: 70px;
    height: auto;
    font-size: 0.9rem;
    text-align: center;
}

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

.cs .radio {
    width: calc(100% - 70px);
    height: 100%;
    display: flex;
    gap: 10px;
}

.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.95rem;
    font-weight: 500;
    cursor: pointer;
}

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

.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;
    gap: 1rem;
}

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

/*  */
.mid__banner {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

.mid__banner > .inner {
    width: 100%;
    height: auto;
    background-color: #FFD102;
    border-radius: 0.5rem;
    padding: 1rem;
}

.mid__banner h4 {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

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

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

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

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

.content .list .title {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content .list .title > h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.content .list .title > h5 > b {
    font-weight: inherit;
    color: #1972B5;
}

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

.content .list .title > ul > li {
    font-size: 1rem;
    color: #7f7f7f;
}

.content .list .title > ul > li > small {
    font-size: 90%;
}

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

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

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

    .visual {
        padding: 2rem 1rem;
    }

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

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

    .container .list {
        width: 100%;
    }

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

    /*  */
    .mid__banner > .inner {
        border-radius: 0;
    }

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

    .content .list {
        gap: 4rem;
    }

    .content .list > li {
        flex-wrap: wrap;
    }

    .content .list .title {
        width: 100%;
    }

    .content .list .img {
        width: 100%;
        height: auto;
        display: flex;
    }

}






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

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

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

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

    .container .list {
        width: 100%;
        flex-wrap: wrap;
    }

    .container .list img {
        width: 62px;
    }

    /*  */
    .cs {
        width: 100%;
        border: none;
        border-top: 1px solid #1972B5;
        border-bottom: 1px solid #1972B5;
        border-radius: 0;
        box-shadow: none;
    }

    .cs__input>span {
        text-align: left;
    }

    /*  */
    .mid__banner > .inner {
        border-radius: 0;
    }

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

    .content .list {
        gap: 4rem;
    }

    .content .list > li {
        flex-wrap: wrap;
    }

    .content .list .title {
        width: 100%;
    }

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

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

    .content .list .img img {
        width: 100%;
        max-width: 600px;
    }
}