@charset "utf-8";

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

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

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

.visual > .inner {
    width: 100%;
    height: 300px;
    background-color: #edf4ff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
}

.visual .txt strong {
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
}

.visual .txt h2 {
    font-size: 2rem;
    color: #0068FF;
}

.visual .txt h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #0068FF;
}

.visual .img {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
}

.visual .img img {
    width: 250px;
    height: 200px;
    object-fit: contain;
}

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

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

.cs {
    width: 100%;
    height: auto;
    background-color: #fff;
    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: 2rem;
}

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

.cs .title p {
    font-size: 1rem;
    font-weight: 500;
    line-height: normal;
}

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

.cs__input {
    width: calc(50% - 8px);
    height: 50px;
    display: flex;
    align-items: center;
}

.cs__input.full {
    width: 100%;
}

.cs__input>span {
    width: 70px;
    height: auto;
    font-size: 0.9rem;
    font-weight: 500;
    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: 400;
    cursor: pointer;
}

.cs__radio input[type=radio]:checked+label {
    font-weight: 500;
    color: #fff;
    border: none;
    background-color: #0068FF;
}

.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;
    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: #0068FF;
    border-radius: 0.2rem;
    cursor: pointer;
}

.submit.katalk {
    color: #000;
    background-color: #f7e600;
}

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

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

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

.content .list > li {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    border-bottom: 1px solid #ccc;
    padding: 4rem 0;
}

.content .list > li:nth-last-of-type(1) {
    border-bottom: none;
}

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

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

.content .list .txt > h3 {
    font-size: 1.1rem;
    color: #0068FF;
}

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

.content .list .txt > ul > li > h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #595959;
}

.content > .inner .des > p {
    font-size: 0.9rem;
    font-weight: 500;
    background-color: #edf4ff;
    padding: 1rem;
}


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

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

    .visual {
        padding: 0 1rem;
    }

    .visual > .inner {
        height: auto;
    }

    .visual .txt strong {
        margin-bottom: 1rem;
    }

    .visual .txt h2 {
        font-size: 1.8rem;
    }

    .visual .txt h3 {
        font-size: 1.2rem;
    }

    .visual .img {
        position: static;
        display: flex;
        justify-content: flex-end;
    }

    .visual .img img {
        width: 200px;
        height: 160px;
    }

    /*  */
    .cs__wrap {
        border-bottom: 1px solid #ccc;
        padding: 1rem;
    }
    
    /*  */
    .content .list > li {
        gap: 2rem;
        padding: 4rem 2rem;
    }

    .content .list .txt > ul > li > h4 > br {
        display: none;
    }

}






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

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

    .visual {
        padding: 0 1rem;
    }

    .visual > .inner {
        height: auto;
    }

    .visual .txt strong {
        margin-bottom: 1rem;
    }

    .visual .txt h2 {
        font-size: 1.4rem;
        word-break: keep-all;
        margin-bottom: 10px;
    }

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

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

    .visual .img img {
        width: 150px;
        height: 130px;
    }

    /*  */
    .cs__wrap {
        border-bottom: 1px solid #ccc;
        padding: 1rem;
    }

    .cs {
        padding: 1.5rem;
    }

    .cs .title p {
        font-size: 0.85rem;
    }

    .cs__input {
        width: 100%;
    }

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

    .cs__btn {
        flex-wrap: wrap;
    }

    /*  */
    .content .list > li {
        flex-direction: column;
        gap: 2rem;
        padding:  2rem;
    }

    .content .list .img img {
        width: 60px;
        min-width: auto;
    }

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

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

    .content .list .txt > ul > li > h4 > br {
        display: none;
    }
}