@charset "utf-8";

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

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

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

.visual {
    width: 100%;
    height: auto;
    min-height: 500px;
    display: flex;
    justify-content: center;
    background-color: #008E70;
    padding: 2rem 0;
}

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

.container {
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding-top: 2rem;
    padding-left: 2rem;
    position: relative;
}

.container>h3 {
    font-size: 1.4rem;
    color: #00807E;
    margin-bottom: 1rem;
}

.container>h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 2rem;
}

.container>h2>small {
    font-weight: 600    ;
}

.container>p {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

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

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

.container>a {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
}

.container>a>img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

/*  */
.cs {
    width: 40%;
    height: auto;
    background-color: #fff;
    border-radius: 1rem;
    border: 1px solid #008E70;
    padding: 2rem;
}

.cs .title {
    border-bottom: 1px solid #ccc;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.cs .title img {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.cs .title p {
    font-size: 1rem;
    font-weight: 600;
    line-height: normal;
    margin-top: 10px;
}

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

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

.cs__input.first {
    margin-right: 1rem;
}

.cs__input.last {
    width: 100%;
}

.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.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

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

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

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

/*  */
.banner {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    background-color: #f3f3f3;
    padding: 1rem 0;
}

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

.banner h4 {
    font-size: 1rem;
    color: #008E70;
}

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

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

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

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

.content .item .title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.content .item .title img {
    width: 30px;
    height: auto;
    object-fit: contain;
}

.content .item .title h5 {
    font-size: 1rem;
}

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

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


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

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

    .visual {
        padding: 0;
    }

    .visual>.inner {
        flex-direction: column;
    }

    .container {
        width: 100%;
        padding: 0;
    }

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

    .container>a {
        bottom: 0;
    }

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


    /* */
    .banner {
        padding: 1rem;
    }

    .banner h4 {
        text-align: center;
    }

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

    .content .item .list > li {
        text-indent: -10px;
        padding-left: 10px;
    }
}






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

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

    .visual {
        padding: 0;
    }

    .visual>.inner {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .container {
        width: 100%;
        padding: 0;
    }

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

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

    .container>p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

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

    .container>a {
        position: static;
        display: flex;
        justify-content: flex-end;
        margin-top: 1rem;
    }

    .container>a>img {
        width: 100px;
    }

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


    /* */
    .banner {
        padding: 1rem;
    }

    .banner h4 {
        text-align: center;
    }

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

    .content .item .title img {
        width: 20px;
    }

    .content .items {
        gap: 2rem;
    }

    .content .item .list > li {
        font-size: 0.9rem;
        text-indent: -10px;
        padding-left: 10px;
    }

}