@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: 2rem 0;
}

.visual > .inner {
    width: 100%;
    height: auto;
    display: flex;
    gap: 2rem;
}

/*  */
.swiper-container {
    width: 65%;
    height: auto;
}

.swiper-slide {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: normal;
    background-color: #FFF6EB;
    border-radius: 1rem;
    padding: 3rem;
}

.swiper-slide > h3 {
    font-size: 1.2rem;
    color: #E97708;
    margin-bottom: 1rem;
}

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

.swiper-slide > span {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.swiper-slide > a {
    display: block;
    width: fit-content;
    font-size: 1rem;
    border: 1px solid #000;
    border-radius: 2rem;
    padding: 8px 2rem;
    cursor: pointer;
}

.swiper-slide .img {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
}

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

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    width: fit-content;
    height: fit-content;
    text-align: right;
    top: 2rem;
    right: 2rem;
    left: auto;
}

.swiper-pagination-bullet-active {
    background: #000;
}

/*  */
.cs {
    width: 35%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 1rem;
    padding: 2rem;
}

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

.cs__top > select {
    width: 60%;
    height: 100%;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 5px;
    appearance: none;
    background-image: url(../img/sort-down-solid.svg);
    background-size: 12px;
    background-position: bottom 18px right 18px;
    background-repeat: no-repeat;
    padding: 0 18px;
}

.cs__top > select > option {
    font-size: 1rem;
    padding: 1rem;
}

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

.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: 5px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
}

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

.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: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: #E97708;
    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 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.content .title span {
    font-size: 1.2rem;
    font-weight: 600;
}

.content .title p {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
}

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

.content .list > li {
    width: calc(25% - 12px);
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 1rem;
    padding: 2rem;
}

.content .list > li img {
    width: 100px;
    height: auto;
    object-fit: contain;    
}

.content .list > li > span {
    font-size: 1rem;
    color: #555;
}

.content .list > li > h3 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.content .list > li > a {
    display: flex;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 2rem;
    padding: 8px 2rem;
}

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

.ft__call > .inner {
    width: 100%;
    height: auto;
    display: flex;
    gap: 16px;
}

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

.ft__call > ul > li > a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}

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

.ft__call > ul > li p {
    font-size: 1rem;
    font-weight: 500;
}



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

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

    .visual {
        padding: 0;
    }

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

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

    .swiper-slide {
        border-radius: 0;
    }

    /*  */
    .cs {
        width: 100%;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid #ccc;
    }

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

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

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

}






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

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

    .visual {
        padding: 0;
    }

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

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

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

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

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

    .swiper-slide > span {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

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

    .swiper-slide .img {
        position: static;
        display: flex;
        justify-content: flex-end;
    }

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

    .swiper-container-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        left: 2em;
        bottom: 2rem;
        top: auto;
        right: auto;
        text-align: left;
    }

    /*  */
    .cs {
        width: 100%;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid #ccc;
    }

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

    .content .title span {
        font-size: 1.1rem;
    }

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

    .content .list {
        gap: 10px;
    }

    .content .list > li {
        width: 100%;
        padding: 1rem;
    }

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

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

    .content .list > li > a {
        width: 100%;
        height: 40px;
        font-size: 0.9rem;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

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

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

    .ft__call > ul > li > a {
        justify-content: center;
        padding: 1rem;
    }

    .ft__call > ul > li img {
        width: 30px;
    }
}