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

.top__des > p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.top__des > p > b {
    font-weight: inherit;
    color: #3F72AF;
}

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

/*  */
.swiper-container {
    width: 65%;
    height: auto;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-radius: 1rem;
}

.swiper-slide {
    color: #fff;
}

.swiper-slide.slide1 {
    background-color: #82CBC4;
}
.swiper-slide.slide2 {
    background-color: #FB8888;
}
.swiper-slide.slide3 {
    background-color: #FFCD4A;
}

.swiper-slide > a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}

.swiper-slide > a > h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.swiper-slide > a > h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.swiper-slide .list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 2rem;
}

.swiper-slide .list > li {
    font-size: 1.1rem;
    font-weight: 500;
}

.swiper-slide .list > li > span {
    font-size: 0.9rem;
}

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

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

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

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

/*  */
.cs {
    width: 35%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-radius: 1rem;
    padding: 2rem;
}

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

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

.cs .title p > b {
    font-weight: inherit;
    color: #3F72AF;
}

.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>input {
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    border-radius: 0.2rem;
    padding-left: 10px;
}

.cs__input.box {
    width: 100%;
    height: 45px;
    gap: 10px;
}

.cs__input.box > input {
    width: calc(60% - 10px);
}

.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: 0.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}

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

#csType {
    width: 100%;
    height: 45px;
    font-size: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 0.2rem;
    background-color: #fff;
    color: #333;
    appearance: none;
    /* 기본 브라우저 스타일 제거 */
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    background: url('../img/caret-down-solid.svg') no-repeat right 1rem center;
    background-size: 12px;
    padding: 10px 1rem;
}

#csType option {
    font-size: 1rem;
    background-color: #fff;
    color: #333;
    padding: 10px;
}

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

.cs__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    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;
    color: #555;
}

.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: #112D4E;
    border-radius: 0.2rem;
    cursor: pointer;
}

/*  */
.bot__des > p {
    font-size: 0.9rem;
    margin-top: 10px;
    text-align: right;
}

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

.content .top {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    border-bottom: 1px solid #ccc;
}

.content .top > h4 {
    font-size: 1.6rem;
    color: #47395A;
}

.content .top > h4 > b {
    font-weight: inherit;
    color: #3F72AF;
}

.content .top > ul {
    display: flex;
}

.content .top > ul > li {
    width: 150px;
    height: auto;
}

.content .top > ul > li.active {
    border-bottom: 3px solid #000;
}

.content .top > ul > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem;
}

/*  */
.content > .inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

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

.item__top {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
}

.item__top .title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item__top .title h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3F72AF;
}

.item__top .title p {
    font-size: 1.2rem;
    font-weight: 700;
    color: #112D4E;
}

.item__top .img {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #DBE2EF;
    border-radius: 50%;
    padding: 1rem;
}

.item__top .img img {
    object-fit: contain;
}

.item__bot > ul {
    width: fit-content;
    display: flex;
    gap: 2rem;
    background-color: #f3f3f3;
    border-radius: 1rem;
    padding: 2rem;
}

.item__bot > ul > li {
    width: 50%;
    min-width: 552px;
    height: auto;
    background-color: #fff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    position: relative;
}

.item__bot > ul > li > a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    line-height: normal;
    padding: 2rem;
}

.item__bot > ul > li > a > h5 {
    font-size: 1.2rem;
}

.item__bot > ul > li > a > h5 > small {
    font-size: 90%;
    font-weight: 500;
}

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

.item__bot > ul > li > a > p > b {
    color: #541D7A;
    font-weight: inherit;
}

.item__bot > ul > li > a > img {
    width: 20px;
    height: auto;
    object-fit: contain;
    position: absolute;
    top: 30px;
    right: 2rem;
}

/*  */
.ft__call {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    border-top: 1px solid #ccc;
    padding: 2rem 0;
}

.ft__call > .inner {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

.ft__call > ul > li {
    width: 100%;
    height: auto;
}

.ft__call > ul > li > a {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.ft__call > ul > li > a > span {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
}

.ft__call > ul > li > a > p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #555;
}

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

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

    .visual {
        padding: 2rem 1rem;
    }

    /*  */
    .wrap {
        flex-wrap: wrap;
    }

    .swiper-container {
        width: 100%;
    }

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

    /*  */
    .content .top > ul {
        width: 100%;
    }
    .content .top > ul > li {
        width: 100%;
    }

    .content > .inner {
        padding: 0 2rem;
    }

    .item__bot > ul {
        width: 100%;
        flex-wrap: wrap;
    }

    .item__bot > ul > li {
        width: 100%;
        min-width: auto;
    }
}






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

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

    .visual {
        padding: 1rem 0;
    }

    .top__des {
        padding: 0 1rem;
    }

    .top__des > p {
        font-size: 0.9rem;
        word-break: keep-all;
    }

    /*  */
    .wrap {
        flex-wrap: wrap;
        gap: 0;
    }

    .swiper-container {
        width: 100%;
        border-radius: 0;
        box-shadow: none;
    }

    .swiper-slide > a {
        padding: 2rem;
    }

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

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

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

    .swiper-slide .list > li > span > br {
        display: none;
    }

    .swiper-slide.slide2 .des,
    .swiper-slide.slide3 .des {
        margin-bottom: 2rem;
    }

    .swiper-slide .des > li {
        word-break: keep-all;
    }

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

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

    /*  */
    .cs {
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        padding: 2rem 2rem 1rem 2rem;
    }

    .cs__info span {
        font-size: 0.8rem;
    }

    .bot__des {
        border-bottom: 1px solid #ccc;
        padding: 0 1rem 1rem;
    }

    .bot__des > p {
        font-size: 0.8rem;
        word-break: keep-all;
        text-align: center;
        margin: 0;
    }

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

    .content .top {
        gap: 1rem;
    }

    .content .top > h4 {
        font-size: 1.2rem;
    }

    .content .top > ul {
        width: 100%;
    }

    .content .top > ul > li {
        width: 100%;
    }

    .content .top > ul > li > a {
        font-size: 0.9rem;
        padding: 10px;
    }

    .content > .inner {
        gap: 3rem;
        padding: 0 1rem;
    }

    .content .item {
        gap: 1rem;
    }

    .item__top {
        padding: 0 1rem;
    }

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

    .item__top .title p {
        font-size: 1.1rem;
    }

    .item__top .img {
        width: 70px;
        height: 70px;
    }

    .item__bot > ul {
        width: 100%;
        flex-wrap: wrap;
        gap: 1rem;
        border-radius: 0;
        background-color: #fff;
        padding: 0;
    }

    .item__bot > ul > li {
        width: 100%;
        min-width: auto;
    }

    .item__bot > ul > li > a {
        gap: 1rem;
        padding: 1.5rem;
    }

    .item__bot > ul > li > a > h5 {
        font-size: 1rem;
    }

    .item__bot > ul > li > a > p {
        font-size: 0.9rem;
    }

    .item__bot > ul > li > a > img {
        width: 15px;
        top: 23px;
        right: 1.5rem;
    }

    /*  */
    .ft__call > .inner {
        flex-wrap: wrap;
        gap: 1rem;
    }

}