@charset "utf-8";

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

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

body {
    background-color: #637dff;
}

/*  */
.header {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
}

.header>.inner {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 100px;
    height: auto;
    object-fit: contain;
}

/*  */
.nav {
    width: 60%;
    height: 100%;
}

.nav>ul {
    width: 100%;
    height: 100%;
    display: flex;
}

.nav>ul>li {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    position: relative;
    cursor: pointer;
}

.nav>ul>li.on {
    font-weight: 600;
    color: #150F95;
}

.drop__nav {
    width: 100%;
    height: auto;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    position: absolute;
    top: 60px;
    padding: 1rem;
    z-index: 99;
}

.drop__nav.active {
    display: flex;
}

.drop__nav>li>a {
    font-size: 0.95rem;
    color: #000;
}

.drop__nav>li>a:hover {
    color: #0068ff;
}

/*  */
.m__menu {
    width: 24px;
    height: 20px;
    display: none;
}

.m__menu ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.m__menu ul li {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2rem;
    transition: all 0.3s ease;
    position: absolute;
}

.m__menu ul li:nth-of-type(1) {
    width: 100%;
    background-color: #fff;
    top: 0px;
    right: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.m__menu ul li:nth-of-type(2) {
    background-color: #fff;
    top: 8px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.m__menu ul li:nth-of-type(3) {
    background-color: #fff;
    top: 16px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

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

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

.visual > .inner {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

/*  */
.swiper-container {
    width: 55%;
    height: auto;
    color: #fff;
    position: relative;
}

.swiper-slide {
    padding: 4rem 0 0;
}

.swiper-slide > h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #0068ff;
    text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.4);
    margin-bottom: 5px;
}

.swiper-slide > strong {
    display: inline-block;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.swiper-slide > a {
    display: inline-block;
    font-size: 1rem;
    border: 2px solid #fff;
    border-radius: 1rem;
    transition: all 0.3s ease;
    padding: 10px 2rem;
}

.swiper-slide > a:hover {
    color: #0068ff;
    background-color: #fff;
}

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

.swiper-slide .img img {
    width: 250px;
    height: 212px;
    object-fit: contain;
}

/*  */
.cs {
    width: 35%;
    height: auto;
    background-color: #fff;
    border: 2px solid #0068ff;
    border-radius: 1rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    margin: 0 0 2rem 0;
    padding: 1.5rem;
}

.cs .title {
    border-bottom: 1px solid #000;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

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

.insu__list {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1rem;
}

.insu__list > li {
    width: calc(33.33% - 7px);
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #0068ff;
    border-radius: 2rem;
    padding: 8px 10px;
    cursor: pointer;
}

.insu__list > li.active {
    border: none;
    color: #fff;
    background-color: #0068ff;
}

.cs__inputs {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cs__input {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
}

.cs__input>input {
    width: 100%;
    height: 100%;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
    padding-left: 10px;
}

.cs__input.box {
    display: flex;
    gap: 1rem;
}

.cs__input.box > input {
    width: 60%;
}

.cs__radio {
    width: 40%;
    height: auto;
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 500;
}

.cs__radio > input {
    width: 20px;
    height: 20px;
}

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

.submit {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: #0068ff;
    border-radius: 0.2rem;
    cursor: pointer;
}

/*  */
.direct__menu {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    background-color: #1b1c2a;
    color: #fff;
    padding: 4rem 0;
}

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

.direct__menu > .inner > p {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.direct__menu .list {
    width: 100%;
    height: auto;
    display: flex;
}

.direct__menu .list > li {
    width: 100%;
    height: auto;
}

.direct__menu .list > li > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.direct__menu .list > li > a > h3 {
    background-color: #2a2c42;
    border-radius: 2rem;
    padding: 2rem;
}

.direct__menu .list > li img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.direct__menu .list > li > a > strong {
    font-size: 1rem;
}

/*  */
.recom {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    background-color: #f2f2f2;
    padding: 4rem 0;
}

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

.recom > .inner > h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.recom > .inner > h4 > b {
    font-weight: inherit;
    color: #0068ff;
}

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

.recom .list > li {
    width: calc(33.33% - 11px);
    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;
}

.recom .list > li > a {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.recom .list > li > a > h5 {
    font-size: 1.1rem;
    color: #0068ff;
    margin-bottom: 1rem;
}

.recom .list > li > a > em {
    font-size: 1rem;
    font-weight: 600;
}

.recom .list > li > a > p {
    font-size: 0.95rem;
}

/*  */
.ft__call {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    background-color: #fff;
    padding: 4rem 0;
}

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

.ft__call > .inner > h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

.ft__call .list > li {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.ft__call .list > li:nth-of-type(1){
    background-color: #f16b7e;
}

.ft__call .list > li:nth-of-type(2){
    background-color: #002060;
}

.ft__call .list > li > a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    padding: 2rem;
}

.ft__call .list > li > a > p {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ft__call .list > li > a > span {
    font-size: 1rem;
}

.ft__call .list > li > a > span > b {
    font-size: 1.1rem;
    opacity: .8;
}

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

.ft__notice > .inner {
    width: 100%;
    height: auto;
    text-align: center;
    background-color: #e7f2ff;
    border-radius: 1rem;
    box-shadow: rgba(222, 232, 245, 0.8) 0px 1px 2px 0px, rgba(222, 232, 245, 0.8) 0px 2px 6px 2px;
    padding: 2rem;
}

.ft__notice p {
    font-size: 1rem;
    font-weight: 500;
    color: #0068ff;
}

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

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

    .header {
        padding: 0 1rem;
    }

    .logo img {
        width: 90px;
    }

    .nav {
        display: none;
        width: 100%;
        height: auto;
        position: absolute;
        top: 80px;
        left: 0;
        background-color: #fff;
        border-bottom: 2px solid #000;
        padding: 2rem;
        z-index: 99;
    }

    .nav.active {
        display: block;
    }

    .nav>ul {
        flex-direction: column;
        gap: 2rem;
    }

    .nav>ul>li {
        font-size: 1.1rem;
        font-weight: 600;
        color: #000;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .drop__nav {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        box-shadow: none;
        border-radius: 0;
        border: none;
        position: static;
        padding: 0;
    }

    .drop__nav>li>a {
        font-size: 1rem;
        color: #555;
    }

    /*  */
    .m__menu {
        display: block;
    }

    /*  */
    .visual {
        padding: 0 1rem 1rem;
    }

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

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

    .swiper-slide {
        padding: 2rem;
    }

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

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

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

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

    .swiper-slide .img img {
        width: 200px;
        height: 170px;
    }

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

    .cs__input.box > input {
        width: 75%;
    }

    .cs__radio {
        width: 25%;
    }

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

    .direct__menu > .inner > p {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

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

    .direct__menu .list > li {
        width: calc(16.66% - 14px);
    }

    .direct__menu .list > li > a > h3 {
        width: 100%;
        display: flex;
        justify-content: center;
    }

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

    .recom > .inner > h4 {
        font-size: 1.2rem;
    }

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

    /*  */
    .ft__call {
        padding: 2rem 1rem;
    }
    
    .ft__call > .inner > h4 {
        font-size: 1.2rem;
    }

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






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

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

    .header {
        height: 70px;
        padding: 0 1rem;
    }

    .logo img {
        width: 80px;
    }

    .nav {
        display: none;
        width: 100%;
        height: auto;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #fff;
        border-bottom: 2px solid #000;
        padding: 2rem;
        z-index: 99;
    }

    .nav.active {
        display: block;
    }

    .nav>ul {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .nav>ul>li {
        height: auto;
        font-size: 1rem;
        font-weight: 600;
        color: #000;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .drop__nav {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        box-shadow: none;
        border-radius: 0;
        border: none;
        position: static;
        padding: 0;
    }

    .drop__nav>li>a {
        font-size: 0.95rem;
        color: #555;
    }

    .m__menu {
        display: block;
    }

    /*  */
    .visual {
        padding: 0;
    }

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

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

    .swiper-slide {
        padding: 1rem 2rem 3rem;
    }

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

    .swiper-slide > strong {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

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

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

    .swiper-slide .img {
        right: 0;
    }

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

    /*  */
    .cs {
        width: 100%;
        border-radius: 1rem 1rem 0 0;
        margin: 0;
    }

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

    .direct__menu > .inner > p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

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

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

    .direct__menu .list > li > a > h3 {
        width: 100%;
        display: flex;
        justify-content: center;
        border-radius: 1rem;
        padding: 1.5rem;
    }

    .direct__menu .list > li > a > strong {
        font-size: 0.9rem;
    }

    .direct__menu .list > li img {
        width: 35px;
        height: 35px;
    }

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

    .recom > .inner > h4 {
        font-size: 1rem;
    }

    .recom .list > li {
        width: 100%;
    }

    /*  */
    .ft__call {
        padding: 2rem 1rem;
    }
    
    .ft__call > .inner > h4 {
        font-size: 1rem;
    }

    .ft__call .list {
        flex-wrap: wrap;
    }

    .ft__call .list > li > a > p {
        font-size: 1rem;
    }

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

    .ft__notice p {
        font-size: 0.9rem;
    }

    .ft__notice p > br {
        display: none;
    }

}