@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: #FFEAA3;
    background: linear-gradient(90deg, rgba(255, 234, 163, 1) 0%, rgba(250, 243, 219, 1) 86%);
    padding: 2rem 0;
}

.visual>.inner {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

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

.container>em {
    width: 250px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #444;
    border-bottom: 2px solid #EEAF08;
    padding-bottom: 8px;
}

.container>h2 {
   font-size: 2.3rem;
    font-weight: 700;
    color: #EEAF08;
    line-height: normal;
}

.container>h2>span {
    font-size: 1.6rem;
    font-weight: 600;
    color: #444;
}

.container>h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #595959;
}

.container>h3>span {
    color: #A8A8A8;
}

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

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

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

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

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

.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: 100%;
    border-bottom: 1px solid #ccc;
    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.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

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

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

.cs__info {
    display: flex;
    gap: 5px;
    margin: 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;
    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: #EEAF08;
    border-radius: 0.5rem;
    cursor: pointer;
}

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

.content .title {
    width: 100%;
    height: auto;
    background-color: #FCEFCE;
    padding: 1rem 0;
}

.content .title > h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #EEAF08;
    text-align: center;
}

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

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

.content .list .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding: 4rem 0;
}

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

.content .list .item > span {
    width: fit-content;
    display: flex;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background-color: #EEAF08;
    border-radius: 2rem;
    margin-bottom: 1rem;
    padding: 6px 3rem;
}

.content .list .item > h2 {
    font-size: 1.4rem;
    font-weight: 600;
}

.content .list .item > h2 > b {
    font-weight: inherit;
    color: #EEAF08;
}

.content .list .item > p {
    font-size: 1rem;
    font-weight: 600;
    color: #595959;
}

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

.content .list .item > ul > li {
    font-size: 1rem;
    font-weight: 500;
}

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

.content .des > h6 {
    width: 100%;
    font-size: 1.2rem;
    color: #595959;
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1rem;
}
.content .des > ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 1rem;
    padding: 2rem;
}
.content .des > ul > li {
    width: calc(50% - 8px);
    height: auto;
    font-size: 1rem;
    font-weight: 500;
}

.content .des .box {
    background-color: #FFF8E1;
    border-radius: 1rem;
    padding: 2rem;
}

.content .des .box > p {
    font-size: 0.95rem;
}

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

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

    .visual {
        padding: 2rem;
    }

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

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

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

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

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

    .content .list .item > h2 {
        font-size: 1.2rem;
    }

    .content .des > ul > li {
        font-size: 0.95rem;
    }

    .content .des {
        padding: 0 2rem;
    }
}






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

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

    .visual {
        padding: 2rem 1rem;
    }

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

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

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

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

    .container>h2>span {
        font-size: 1.2rem;
    }

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

    .container>h3>br {
        display: none;
    }

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

    /*  */
    .content .title > h5 {
        font-size: 1.1rem;
    }

    .content .list .item {
        padding: 2rem;
    }

    .content .list .item > span {
        padding: 4px 2.5rem;
    }

    .content .list .item > h2 {
        font-size: 1.1rem;
        word-break: keep-all;
    }

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

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

    /*  */
    .content .des {
        padding: 0 1rem;
    }
    .content .des > h6 {
        font-size: 1.1rem;
    }

    .content .des > ul {
        gap: 10px;
        padding: 2rem 1rem;
    }

    .content .des > ul > li {
        width: 100%;
        font-size: 0.9rem;
    }

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