@charset "utf-8";

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

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

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

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

.breadcrumbs>ul {
    width: 100%;
    height: auto;
    display: flex;
    gap: 8px;
}

.breadcrumbs>ul>li {
    font-size: 0.85rem;
    font-weight: 500;
}

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

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

/*  */
.container {
    width: 65%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 1rem;
    background-color: #fff1ea;
    padding: 3rem;
}

.container .txt {
    width: 100%;
    height: auto;
}

.container .txt>h2 {
    font-size: 1.2rem;
    color: #404040;
    margin-bottom: 10px;
}

.container .txt>h3 {
    font-size: 2rem;
    color: #fb6a19;
    margin-bottom: 2rem;
}

.container .txt>p {
    font-size: 1.3rem;
    font-weight: 600;
}

.container .list {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
}

.container .list>li {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.container .list>li>em {
    font-size: 1rem;
    font-weight: 600;
    color: #c38737;
}

/*  */
.cs {
    width: 35%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 2rem;
}

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

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

.cs__input.box {
    gap: 1rem;
}

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

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

.cs__input input:focus {
    border: 2px solid #000;
    outline: none;
}

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

.cs__radio {
    width: calc(100% - 70px);
    height: 50px;
    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: 600;
    cursor: pointer;
}

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


.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: #ffc337;
    border-radius: 0.5rem;
    cursor: pointer;
}

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

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

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

.content > .inner > h4 {
    font-size: 1.2rem;
    color: #c38737;
    text-align: center;
    background-color: #f3f3f3;
    border-radius: 5px;
    padding: 1rem;
}

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

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

.content article > span {
    font-size: 2rem;
    font-weight: 700;
    color: #ffcd41;
}

.content article > h5 {
    font-size: 1.4rem;
    color: #c38737;
}

.content article > p {
    font-size: 1rem;
    font-weight: 600;
}

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

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

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

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

    .breadcrumbs {
        padding: 1rem;
    }

    .visual {
        padding: 0 1rem 2rem;
    }

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

    /*  */
    .container {
        width: 100%;
        gap: 2rem;
    }

    .container .txt>h3 {
        margin-bottom: 1rem;
    }

    .container .txt>p {
        font-size: 1.1rem;
    }

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

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

}






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

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

    .breadcrumbs {
        padding: 1rem;
    }

    .visual {
        padding: 0 0 2rem;
    }

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

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

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

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

    .container .txt>p {
        font-size: 0.9rem;
        word-break: keep-all;
    }

    .container .txt>p>br {
        display: none;
    }

    .container .list {
        flex-wrap: wrap;
        gap: 10px;
    }

    .container .list>li {
        width: calc(50% - 5px);
    }

    .container .list>li>em {
        font-size: 0.9rem;
    }

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

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

    .content > .inner > h4 {
        font-size: 1rem;
    }

    .content article > span {
        font-size: 1.8rem;
    }

    .content article > h5 {
        font-size: 1.2rem;
    }

    .content article > ul > li {
        font-size: 0.95rem;
        text-indent: -10px;
        padding-left: 10px;
    }

}