@charset "utf-8";

/*
 * File       : style.css
 * Author     : YONG
 *
 * 최종수정일 : 25/00/00
 *
 * SUMMARY:
 * 메인페이지.CSS
 */

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

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

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

.visual>.inner {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background-color: #f3f3f3;
    border: 1px solid #ccc;
    border-top: none;
    padding: 4rem 6rem;
}

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

.visual .txt>h2 {
    font-size: 3.4rem;
    font-weight: 800;
}

.visual .txt>p {
    font-size: 1rem;
}


.visual .img img {
    width: 180px;
    height: auto;
    object-fit: contain;
}

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

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

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

.content .list>li {
    width: calc(20% - 13px);
    height: auto;
    background-color: #f3f3f3;
    border: 1px solid #ccc;
}

.content .list>li>a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem;
}

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

.content .list>li>a>img {
    width: 60px;
    height: auto;
    object-fit: contain;
    align-self: flex-end;
}


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

.cs>.inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border: 1px solid #ccc;
    padding: 2rem;
}

/*  */
.cs__top {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #ccc;
    padding: 0 0 1rem;
}

.cs__top img {
    width: 30px;
    height: auto;
    object-fit: contain;
}

.cs__top>p {
    font-size: 1.2rem;
    font-weight: 800;
}

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

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

.cs__input.last {
    width: 100%;
}

.cs__input span {
    width: 80px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.cs__input input {
    width: calc(100% - 80px);
    height: 100%;
    border-style: none;
    background-color: #f2f2f2;
    border-radius: 0.5rem;
    padding-left: 1rem;
}

.input__box {
    width: calc(33.33% - 11px);
    height: 50px;
    display: flex;
    gap: 10px;
}

.input__box>.cs__input {
    width: 70%;
}

.cs__radio {
    width: 30%;
    height: 100%;
    display: flex;
}

.cs__radio input {
    margin-right: 5px;
}

.cs__radio:nth-child(2) input {
    margin-left: 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;
    background-color: #f3f3f3;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

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


.cs__apply {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cs__info {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 1rem 0;
}

.cs__info label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.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__submit {
    width: 100%;
    height: auto;
    display: flex;
    gap: 1rem;
}

.cs__submit>a {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    background-color: #000;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    cursor: pointer;
}

.cs__submit>a:nth-of-type(1) {
    color: #fff;
}

.cs__submit>a:nth-of-type(1) img {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
}

.cs__submit>a:nth-of-type(2) {
    color: #000;
    background-color: #f7e600;

}

.cs__submit>a:nth-of-type(2) img {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
}




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

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

    .visual {
        padding: 0;
    }

    .visual>.inner {
        border: none;
        padding: 3rem;
    }

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

    .visual .img img {
        width: 120px;
        min-width: 120px;
    }

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

    .content .list>li {
        width: calc(33.33% - 11px);
    }

    /*  */
    .cs>.inner {
        border: none;
        border-bottom: 1px solid #ccc;
    }

    .input__box {
        width: 100%;
    }

    .cs__input {
        width: 100%;
    }



}






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

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

    .visual {
        padding: 0;
    }

    .visual>.inner {
        flex-direction: column;
        border: none;
        padding: 2rem;
    }

    .visual .txt {
        width: 100%;
    }

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

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

    .visual .img img {
        width: 90px;
    }

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

    .content .list {
        gap: 10px;
    }

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

    .content .list>li>a {
        justify-content: space-between;
        gap: 1rem;
        padding: 1rem;
    }

    .content .list>li>a>h3 {
        font-size: 0.9rem;
    }

    .content .list>li>a>img {
        width: 40px;
    }

    /*  */
    .cs>.inner {
        border: none;
        border-bottom: 1px solid #ccc;
        padding: 1.5rem;
    }

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

    .cs__input span {
        width: 70px;
        justify-content: flex-start;
    }

    .cs__input span>br {
        display: none;
    }

    .input__box {
        width: 100%;
    }

    .cs__input {
        width: 100%;
    }

    .cs__input input {
        width: calc(100% - 70px);
    }

    .cs__submit {
        flex-wrap: wrap;
        gap: 10px;
    }

    

}