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

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

.swiper-container {
    width: 100%;
    height: auto;
    padding: 2rem 0;
}

.swiper-slide {
    line-height: normal;
    border-radius: 1rem;
    padding: 4rem;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0;
}

.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    background: #777;
}

.swiper-slide.slide1 {
    background-color: #d7f1d9;
}

.swiper-slide.slide2 {
    background-color: #ffe5e5;
}

.swiper-slide.slide3 {
    background-color: #d7ebff;
}

.swiper-slide>em {
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.swiper-slide>h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.swiper-slide>h2>small {
    font-size: 70%;
    font-weight: 600;
}

.swiper-slide>h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.swiper-slide>a {
    width: fit-content;
    display: flex;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid #000;
    border-radius: 2rem;
    padding: 10px 3rem;
}

.swiper-slide .img {
    position: absolute;
    top: 50%;
    right: 4rem;
    transform: translateY(-50%);
}

.swiper-slide .img img {
    width: 200px;
    height: auto;
    object-fit: contain;
}

/*  */
.cs__wrap {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

.cs__wrap>.inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 2rem 0;
}

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

.cs__type .title {
    padding-bottom: 1rem;
}

.cs__type .title p {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 5px;
}

.cs__type .title span {
    font-size: 1rem;
    font-weight: 500;
    color: #444;
}

.cs__type>ul {
    width: 100%;
    height: auto;
    display: flex;
    gap: 1rem;
}

.cs__type>ul>li {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid #ccc;
    border-radius: 1rem;
    padding: 1rem;
    cursor: pointer;
}

.cs__type>ul>li.active {
    background-color: #ffecce;
    border: none;
}

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

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

.cs .title p {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 5px;
}

.cs .title span {
    font-size: 1rem;
    font-weight: 500;
    color: #444;
}

.cs>.wrap {
    border: 1px solid #ccc;
    border-radius: 1rem;
    padding: 2rem;
}

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

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

.cs__input.last {
    width: 100%;
}

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

.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: #000;
    border: none;
    background-color: #ffecce;
}

.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: 50%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    background-color: #ffecce;
    border-radius: 0.2rem;
    cursor: pointer;
}

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

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

.recom .title {
    margin-bottom: 1rem;
}

.recom .title>em {
    font-size: 1.1rem;
    font-weight: 600;
}

.recom .title>p {
    font-size: 1rem;
    color: #595959;
}

.recom .list {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.recom .list>li {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 1rem;
    padding: 2rem;
}

.recom .list .left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.recom .list .left img {
    width: 70px;
    height: auto;
    object-fit: contain;
}

.recom .list .txt {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.recom .list .txt>span {
    font-size: 1rem;
    font-weight: 500;
    color: #595959;
}

.recom .list .txt>h3 {
    font-size: 1rem;
    font-weight: 600;
}


.recom .list>li>a {
    display: flex;
    font-size: 0.9rem;
    border: 1px solid #000;
    border-radius: 2rem;
    padding: 10px 3rem;
}

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

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

.call__area>.inner>ul {
    display: flex;
    gap: 1rem;
}

.call__area>.inner>ul>li {
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 1rem;
}

.call__area>.inner>ul>li>a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 4rem;
}

.call__area>.inner>ul>li>a img {
    width: 50px;
    height: auto;
    object-fit: contain;
}

.call__area>.inner>ul>li>a>span {
    font-size: 1.2rem;
    font-weight: 500;
}



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

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

    .swiper-container {
        padding: 0 0 2rem;
    }

    .swiper-slide {
        border-radius: 0;
        padding: 3rem;
    }

    .swiper-slide>em {
        font-size: 1.1rem;
    }

    .swiper-slide>h2 {
        font-size: 1.4rem;
    }

    .swiper-slide>h3 {
        font-size: 1rem;
    }

    .swiper-slide .img img {
        width: 140px;
    }

    /*  */
    .cs__wrap>.inner {
        padding: 2rem 1rem;
    }

    .submit {
        width: 100%;
    }

    /*  */
    .recom {
        padding: 0 1rem 2rem;
    }

    .recom .list>li {
        gap: 2rem;
    }

    .recom .list .left img {
        min-width: 70px;
    }

    .recom .list>li>a {
        min-width: 162px;
    }

    /*  */
    .call__area {
        padding: 0 1rem 2rem;
    }

    .call__area>.inner>ul>li>a {
        padding: 2rem;
    }

    .call__area>.inner>ul>li>a img {
        width: 45px;
        min-width: 45px;
    }

    .call__area>.inner>ul>li>a>span {
        font-size: 1.1rem;
        word-break: keep-all;
    }

   
}






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

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

    .swiper-container {
        padding: 0 0 2rem;
    }

    .swiper-slide {
        border-radius: 0;
        padding: 2rem;
    }

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

    .swiper-slide>h2 {
        font-size: 1.1rem;
    }

    .swiper-slide>h2>small {
        font-size: 90%;
    }

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

    .swiper-slide>h3 > br {
        display: none;
    }

    .swiper-slide>a {
        font-size: 0.9rem;
    }

    .swiper-slide .img {
        display: flex;
        justify-content: center;
        position: static;
        transform: none;
        margin-top: 2rem;
    }

    .swiper-slide .img img {
        width: 120px;
    }

    /*  */
    .cs__wrap>.inner {
        gap: 2rem;
        padding: 2rem 1rem;
    }

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

    .cs__type .title span,
    .cs .title span {
        font-size: 0.9rem;
    }

    .cs__type>ul {
        flex-wrap: wrap;
        gap: 10px;
    }

    .cs__type>ul>li {
        width: calc(33.33% - 7px);
        font-size: 0.8rem;
        padding: 12px;
    }

    .cs__input {
        width: 100%;
    }

    .cs__input>span {
        text-align: left;
    }

    .submit {
        width: 100%;
    }

    /*  */
    .recom {
        padding: 0 1rem 2rem;
    }

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

    .recom .list {
        gap: 1rem;
    }

    .recom .list>li {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }

    .recom .list .left {
        flex-direction: column;
        gap: 1rem;
    }

    .recom .list .txt {
        align-items: center;
        text-align: center;
    }

    .recom .list .txt>h3 {
        word-break: keep-all;
    }

    .recom .list>li>a {
        width: 100%;
        justify-content: center;
    }

    /*  */
    .call__area {
        padding: 0 1rem 2rem;
    }

    .call__area>.inner>ul {
        flex-wrap: wrap;
    }

    .call__area>.inner>ul>li>a{
        justify-content: center;
        gap: 1rem;
        padding: 2rem;
    }

    .call__area>.inner>ul>li>a img{
        width: 40px;
        min-width: 40px;
    }

    .call__area>.inner>ul>li>a>span {
        font-size: 1rem;
    }

    

}