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

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

.swiper-slide {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #d5ff9f;
    background: linear-gradient(120deg, rgba(255, 229, 160, 1) 0%, rgba(255, 241, 202, 1) 86%);
    border-radius: 1rem;
    padding: 4rem 6rem;
}

.swiper-slide.slide2 {
    background: #CEF2E7;
    background: linear-gradient(120deg, rgba(206, 242, 231, 1) 0%, rgba(226, 247, 241, 1) 86%);
}

.swiper-slide.slide3 {
    background: #FFCFE8;
    background: linear-gradient(120deg, rgba(255, 207, 232, 1) 0%, rgba(255, 221, 239, 1) 86%);
}

.swiper-slide.slide4 {
    background: #B2DDFF;
    background: linear-gradient(120deg, rgba(178, 221, 255, 1) 0%, rgba(203, 233, 255, 1) 86%);
}

.swiper-slide .txt>h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #515151;
}

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

.swiper-slide .txt>p {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.swiper-slide .txt>a {
    width: fit-content;
    height: auto;
    display: flex;
    font-size: 0.95rem;
    border: 1px solid #595959;
    border-radius: 2rem;
    padding: 6px 1.8rem;
}

.swiper-slide .txt>a:hover {
    color: #fff;
    border: 1px solid #EEAF08;
    background-color: #EEAF08;
}

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

	/*
		2025-11-26 라운드 추가
	*/
	border-radius:20px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 26px;
    height: 28px;
    filter: grayscale(1);
}

.swiper-button-next {
    right: 30px;
}

.swiper-button-prev {
    left: 30px;
}

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

.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: inherit;
    border: 2px solid #747474;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    width: 30px;
    height: 15px;
    border-radius: 10px;
    background: #747474;
    border: none;
}

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

.direct>.inner {
    width: 100%;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 1rem;
    padding: 2rem;
}

.direct>.inner>h5 {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

	flex-wrap: wrap;
    gap: 2rem 0;
}

.direct .list>li {
    /*width: 100%;*/
	width: 25%;
    height: auto;
}

.direct .list>li>a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.direct .list>li>a img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.2s ease;
}

.direct .list>li>a:hover img {
    transform: scale(1.1);
}

.direct .list>li>a span {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    line-height: normal;
}

.direct .list>li>a:hover span {
    color: #EEAF08;
}

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

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

/*  */
.container {
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.container .item {
    width: 100%;
    height: 100%;
    background-color: #D0DEF8;
    border-radius: 1rem;
    padding: 3rem;
    position: relative;
}

.container .item.item2 {
    background-color: #DCEFE9;
}

.container .item>h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

.container .item>a {
    width: fit-content;
    height: auto;
    display: flex;
    font-size: 1rem;
    color: #fff;
    background-color: #77A7FF;
    border-radius: 2rem;
    padding: 6px 1.5rem;
}

.container .item.item2>a {
    background-color: #27C690;
}

.container .item .img {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
}

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

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

.cs .title p {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    margin-bottom: 1.5rem;
}

.cs__list {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cs__list>li {
    width: calc(25% - 8px);
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #EEAF08;
    border-radius: 2rem;
    padding: 6px;
    cursor: pointer;
}

.cs__list>li.active {
    color: #fff;
    background-color: #EEAF08;
}

.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>span {
    width: 70px;
    height: auto;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
}

.cs__input>input {
    width: calc(100% - 70px);
    height: 100%;
    background-color: inherit;
    border-bottom: 1px solid #ccc;
    padding-left: 10px;
}

.input__box {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.input__box .cs__input {
    width: 60%;
}

.cs__radio {
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.cs__radio input {
    width: 20px;
    height: 20px;
    accent-color: #cd7b00;
}

.cs__radio label {
    font-size: 1rem;
}

.cs__radio label:nth-of-type(1){
    margin-right: 10px;
}

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

.cs__info {
    display: flex;
    gap: 5px;
    margin: 0 0 1rem;
}

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

.cs__info input {
    width: 17px;
    height: 17px;
    border-radius: 50%;
}

.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: #EEAF08;
    border-radius: 0.5rem;
    cursor: pointer;
}

/* 크롬/사파리 자동완성 배경 수정 */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    /* 배경색 흰색으로 강제 */
    -webkit-text-fill-color: #000;
    /* 글자색 */
}

/* 파이어폭스 */
input:-moz-autofill {
    box-shadow: 0 0 0px 1000px #fff inset;
    -moz-text-fill-color: #000;
}

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

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

.ft__call ul {
    display: flex;
    gap: 2rem;
}

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

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

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

.ft__call .txt>p {
    font-size: 1rem;
    font-weight: 700;
}

.ft__call .txt>p>b {
    font-weight: inherit;
    color: #ff5b5b;
}

.ft__call .txt>span {
    font-size: 1.6rem;
    font-weight: 700;
    color: #EEAF08;
}

.ft__call .img img {
    width: 70px;
    height: auto;
    object-fit: contain;
}

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

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

    .visual {
        padding: 1rem 1rem 2rem;
    }

    /*  */
    .swiper-slide {
        padding: 3rem 4rem;
    }

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

    .swiper-slide .img img {
        /* width: 280px; */
		width: 280px;
    }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    
    .swiper-pagination-bullet-active {
        width: 30px;
        height: 10px;
    }

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

    .direct .list {
        flex-wrap: wrap;
        gap: 2rem 0;
    }

    .direct .list>li {
        width: 25%;
    }

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

    .content>.inner {
        flex-direction: column-reverse;
    }

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

    .input__box .cs__input {
        width: 75%;
    }

    .cs__radio {
        width: 25%;
    }

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

    .container .item .img img {
        width: 120px;
    }

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

    .ft__call .img img {
        width: 60px;
    }

}






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

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

    .visual {
        padding: 1rem;
    }

    /*  */
    .swiper-slide {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
        padding: 2rem;
    }

    .swiper-slide .txt {
        width: 100%;
    }

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

    .swiper-slide .txt>h2 {
        font-size: 1.4rem;
        word-break: keep-all;
        line-height: normal;
    }

    .swiper-slide .txt>p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

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

    .swiper-slide .img {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        padding: 0 0 1rem;
    }

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

    .swiper-button-next, 
    .swiper-button-prev {
        top: 75%;
    }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    
    .swiper-pagination-bullet-active {
        width: 30px;
        height: 10px;
    }

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

    .direct>.inner>h5 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .direct .list {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 1rem;
    }

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

    .direct .list>li>a span {
        font-size: 0.9rem;
    }

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

    .content>.inner {
        flex-direction: column-reverse;
    }

    /*  */
    .cs {
        width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        padding: 1.5rem;
    }

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

    .cs__list>li {
        width: calc(33.33% - 7px);
    }

    .input__box .cs__input {
        width: 55%;
    }

    .cs__radio {
        width: 45%;
        gap: 5px;
    }

    .cs__radio input {
        width: 15px;
        height: 15px;
    }

    /*  */
    .container {
        width: 100%;
        gap: 1rem;
        padding: 0 1rem;
    }

    .container .item {
        padding: 2rem;
    }

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

    .container .item>p {
        font-size: 0.9rem;
    }

    .container .item .img {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: flex-end;
        position: static;
        transform: none;
    }

    .container .item .img img {
        width: 72px;
    }

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

    .ft__call ul {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .ft__call .txt>span {
        font-size: 1.4rem;
    }

    .ft__call .img img {
        width: 50px;
        min-width: 50px;
    }

}