@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;
    background-color: #f8fae9;
}

.visual > .inner {
    width: 100%;
    height: auto;
    display: flex;
    gap: 2rem;
    padding: 3rem 0 2rem;
    position: relative;
}

.breadcrumbs {
    position: absolute;
    top: 10px;
    left: 0;
}

.breadcrumbs > ul {
    display: flex;
    gap: 10px;
}

.breadcrumbs > ul > li {
    font-size: 0.9rem;
    font-weight: 500;
    color: #595959;
}

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

.container .title > h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #595959;
    margin-bottom: 1rem;
}

.container .title > h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

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

.container .list {
    width: 100%;
    height: auto;
    display: flex;
    gap: 1.5rem;
}

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

.container .list > li > hr {
    width: 1px;
    height: 50%;
    text-align: center;
    background-color: #ccc;
    margin: 0;
    border: none;
}

.container .list figure {
    width: fit-content;
    background-color: #f9f6f8;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.container .list figure img {
    width: 85px;
    height: 85px;
    object-fit: contain;
}

.container .list > li > span {
    font-size: 1rem;
    font-weight: 500;
}

/*  */
.cs {
    width: 35%;
    height: auto;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 1rem;
    overflow: hidden;
}

.cs .title {
    color: #fff;
    line-height: normal;
    background-color: #8e8171;
    padding: 1rem 2rem;
}

.cs .title > p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.cs .title > span {
    font-size: 0.9rem;
}

.cs__wrap {
    padding: 2rem;
}

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

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

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

.cs__input>input:focus {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    outline: none; /* 기본 파란 테두리 제거 (선택사항) */
    transition: box-shadow 0.2s ease; /* 부드럽게 */
    border-radius: 0.5rem;
}

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

.cs__radio {
    width: 40%;
    height: 100%;
    display: flex;
    margin-left: 1rem;
}

.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: #7f7f7f;
    background-color: #d9d9d9;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.cs__radio input[type=radio]+label:nth-of-type(1){
    border-radius: 0.5rem 0 0 0.5rem;
}

.cs__radio input[type=radio]+label:nth-of-type(2){
    border-radius: 0 0.5rem 0.5rem 0;
}

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

.cs__info {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 0 0 1rem;
}

.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;
}

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

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

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

.content .title > h4 {
    font-size: 1.8rem;
    font-weight: 700;
}

.content .title > strong {
    font-size: 1.2rem;
    font-weight: 500;
    color: #595959;
}

.content .title > p {
    font-size: 0.9rem;
}

.content .wrap {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 4rem 0;
}

.content .article {
    width: 100%;
    height: auto;
    display: flex;
    gap: 3rem;
}

.content .article .sub__title {
    width: 250px;
    min-width: 250px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #ccc;
}

.content .article .sub__title .order {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #949685;
    border-radius: 2rem 2rem 0 2rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    margin-bottom: 1rem;
}

.content .article .sub__title .order > span {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.content .article .sub__title > h6 {
    font-size: 1.1rem;
}

.content .article .sub__title > small {
    font-size: 0.95rem;
    color: #595959;
}

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

.content .article .txt > h5 > em {
    color: #ffcc55;
}

.content .article .txt > h5 > small {
    font-size: 90%;
    font-weight: 500;
}

.content .article .txt > p {
    font-size: 1rem;
    font-weight: 500;
    color: #595959;
}

.content .article .txt > ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 1rem;
}

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

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

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

    /*  */
    .breadcrumbs {
        top: 1rem;
        left: 2rem;
    }

    /*  */
    .visual > .inner {
        flex-wrap: wrap;
        padding: 4rem 2rem 2rem;
    }

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

    .container .title > h3 {
        font-size: 2rem;
    }

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

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

    .content .wrap {
        gap: 2rem;
        padding: 4rem 0 2rem;
    }

    .content .title > h4 {
        font-size: 1.8rem;
    }

    .content .article {
        flex-direction: column;
        gap: 2rem;
        border-bottom: 1px solid #ccc;
        padding: 0 0 2rem;
    }

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

    .content .article .sub__title {
        width: 100%;
        border: none;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }

    .content .article .sub__title .order {
        width: 50px;
        height: 50px;
        margin: 0;
    }

    .content .article .sub__title > h6 {
        font-size: 1.4rem;
    }

    .content .article .sub__title > small {
        font-size: 1.1rem;
    }
}






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

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

     /*  */
     .breadcrumbs {
        top: 1rem;
        left: 1rem;
    }

    /*  */
    .visual > .inner {
        flex-wrap: wrap;
        padding: 4rem 1rem 2rem;
    }

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

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

    .container .title > h3 {
        font-size: 1.4rem;
    }

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

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

    .container .list {
        justify-content: space-between;
        gap: 8px;
    }

    .container .list figure img {
        width: 50px;
        height: 50px;
    }

    .container .list > li > span {
        font-size: 0.85rem;
    }

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

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

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

    .content .wrap {
        gap: 2rem;
        padding: 2rem 0;
    }

    .content .title > h4 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

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

    .content .article {
        flex-direction: column;
        gap: 2rem;
        border-bottom: 1px solid #ccc;
        padding: 0 0 2rem;
    }

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

    .content .article .sub__title {
        width: 100%;
        border: none;
        align-items: center;
    }

    .content .article .sub__title .order {
        width: 50px;
        height: 50px;
        margin: 0 0 1rem;
    }

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

    .content .article .sub__title > small {
        font-size: 1rem;
    }

    .content .article .txt > h5 > br {
        display: none;
    }

}