@charset "utf-8";

/*
 * File       : style.css
 * Author     : YONG
 *
 * 최종수정일 : 24/00/00
 *
 * SUMMARY:
 * 서브페이지.CSS
 */

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

.breadcrumb__wrap {
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: center;
    background-color: #605bec;
}

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

.breadcrumb > li {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #fff;
}

.breadcrumb > li > img {
    width: 10px;
    height: auto;
}

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

/*  */
.main__txt {
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #e2f0d9;
    border-radius: 1rem;
    box-shadow: 5px 5px 5px 1px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.main__txt > figure > img {
    width: 110px;
    height: auto;
    object-fit: contain;
}

.main__txt > h3 {
    font-size: 1.2rem;
}

.main__txt > h2 {
    font-size: 2.4rem;
    font-weight: 800;
}

.main__txt > p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #eb6e19;
}

.main__txt > ul > li {
    width: fit-content;
    font-size: 1rem;
    color: #fff;
    background-color: #385723;
    border-radius: 0.5rem;
    padding: 10px 1rem;
}

.main__txt > small {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
}

/* 하나손해보험 */
.main__txt.hana {
    background-color: #20b7a4;
}

.main__txt.hana > h3,
.main__txt.hana > h2 {
    color: #fff;
}

.main__txt.hana > p {
    color: #f6ff44;
}

.main__txt.hana > ul > li {
    background-color: #178376;
}

/* 메리츠화재 */
.main__txt.meritz {
    background-color: #fee6e6;
}

.main__txt.meritz > p {
    color: #605bec;
}

.main__txt.meritz > ul > li {
    background-color: #f96161;
}

/* KB손해보험 */
.main__txt.kb {
    background-color: #fdedb1;
}

.main__txt.kb > p {
    color: #843c0c;
}

.main__txt.kb > ul > li {
    background-color: #fca304;
}

/* 현대해상 */
.main__txt.hd {
    background-color: #FFF7EE;
}

.main__txt.hd > p {
    color: #F17804;
}

.main__txt.hd > ul > li {
    background-color: #337BF6;
}

/*  */
.cs {
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    background-color: #fff;
    border-radius: 1rem;
    border: 1px solid #605bec;
    box-shadow: 5px 5px 5px 1px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.cs>h2 {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.cs__type {
    display: flex;
    gap: 10px;
}

.cs__type li {
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 1px solid #ccc;
    border-radius: 0.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cs__type li.active {
    border: 1px solid #605bec;
}

.cs__type li > img {
    width: 16px;
    height: auto;
    object-fit: contain;
    display: none;
}

.cs__type li.active > img {
    display: block;
}

.cs__type li > span {
    font-size: 0.9rem;
    font-weight: 500;
}

.cs__type li.active > span {
    color: #605bec;
}

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

.inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input {
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 0.2rem;
    padding: 0 10px;
}

.input>span {
    width: 70px;
    font-size: 0.9rem;
}

.input>input {
    width: calc(100% - 70px);
    height: 100%;
}

.input__box {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.input__box>span {
    width: 70px;
    font-size: 0.9rem;
}

.input__box .radio {
    display: flex;
    align-items: center;
    gap: 5px;
}

.input__box .radio input[type=radio] {
    width: 18px;
    height: 18px;
}

.input__box .radio input[type=radio]+label {
    font-size: 0.9rem;
    margin-right: 10px;
}

.input__select {
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 0.2rem;
    padding: 0 10px;
}

.input__select>span {
    width: 70px;
    font-size: 0.9rem;
}

.input__select>select {
    width: 60px;
    height: 100%;
    border: none;
}

.input__select>input {
    width: calc(100% - 130px);
    height: 100%;
    padding-left: 10px;
}

.apply {
    text-align: center;
}

.info {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 1rem 0;
}

.info span {
    font-size: 0.9rem;
}

.info label {
    display: flex;
    gap: 5px;
}

.info>span {
    color: cornflowerblue;
    text-decoration: underline;
    cursor: pointer;
}

.submit {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: #fff;
    background-color: #605bec;
    border-radius: 0.5rem;
}

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

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

.content .title {
    width: fit-content;
    background-color: #605bec;
    border-radius: 0.2rem;
    margin-bottom: 2rem;
    padding: 10px 2rem;
}

.content .title > h4 {
    font-size: 1rem;
    color: #fff;
}

.content .list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content .list > hr {
    margin: 0;
    border: none;
    width: 100%;
    height: 1px;
    background-color: #ccc;
}

.content .list > li {
    display: flex;
    gap: 1rem;
}

.content .list .order {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    font-weight: 600;
    color: #605bec;
}

.content .list .txt {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content .list .txt > h5 {
    font-size: 1.2rem;
}

.content .list .txt > h5 > small {
    font-weight: 500;
}

.content .list .txt > ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.content .list .txt > ul > li {
    font-size: 1rem;
}

.content .list .txt > ul > li > small {
    font-size: 0.9rem;
    color: #555;
    line-height: normal;
}

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


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

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

.banner .title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    border: 2px solid #7f7f7f;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    margin-bottom: 2rem;
    padding: 2rem;
}

.banner .title > h4 {
    font-size: 1.8rem;
    color: #605bec;
}

.banner .title > p {
    font-size: 1.4rem;
}

.banner .insu__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.banner .insu__list > li {
    width: calc(20% - 13px);
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    padding: 2rem;
}

.banner .insu__list > li > img {
    max-height: 32px;
}

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

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

    .breadcrumb {
        padding: 0 1rem;
    }

    /*  */
    .visual {
        padding: 1rem;
    }
    .visual > .inner {
        flex-direction: column;
    }

    .main__txt {
        width: 100%;
    }

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

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

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

    .banner .title > h4 {
        font-size: 1.4rem;
    }

    .banner .title > p {
        font-size: 1.2rem;
    }

    .banner .insu__list > li {
        width: calc(25% - 12px);
    }
}






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

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

    .breadcrumb {
        padding: 0 1rem;
    }

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

    .visual > .inner {
        flex-direction: column;
        gap: 1rem;
    }

    .main__txt {
        width: 100%;
    }

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

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

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

    .main__txt > ul > li {
        font-size: 0.9rem;
    }

    .main__txt > small {
        font-size: 0.9rem;
    }

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

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

    .content .title {
        width: 100%;
        text-align: center;
    }

    .content .list > li {
        flex-direction: column;
        gap: 5px;
    }

    .content .list .order {
        width: 100%;
        font-size: 1.6rem;
        text-align: center;
    }

    .content .list .txt > h5 {
        font-size: 1.1rem;
        word-break: keep-all;
        line-height: normal;
        padding-left: 10px;
    }

    .content .list .txt > ul > li {
        font-size: 0.9rem;
        text-indent: -10px;
        padding-left: 10px;
        word-break: keep-all;
    }

    .content .list .txt > ul > li > small > br {
        display: none;
    }

    .content .list > li > p {
        font-size: 0.9rem;
        text-align: center;
    }

    /*  */
    .banner {
        padding: 0 1rem 2rem;
    }
    .banner .title {
        flex-direction: column;
        margin-bottom: 1rem;
        padding: 1.5rem;
    }

    .banner .title > h4 {
        font-size: 1.2rem;
    }

    .banner .title > p {
        font-size: 1rem;
    }

    .banner .insu__list > li {
        width: calc(50% - 8px);
        padding: 1.5rem;
    }
}