@charset "utf-8";

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

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

.visual {
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    margin: 0 0 1rem;
}

.visual>.inner {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    border-top: none;
    padding: 2rem 6rem;
}

.visual .title h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.visual .title h3 {
    font-size: 1rem;
    font-weight: 500;
}

.visual .title p {
    font-size: 1rem;
    color: #d32b83;
    margin-top: 1rem;
}

.visual .img {
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
}

.visual .img img {
    width: 190px;
    height: 190px;
    object-fit: contain;
}

/*  */
.cs__wrap {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

.cs__wrap>.inner {
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    padding: 2rem;
}

.cs__wrap .title {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.cs__wrap .title img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.cs__wrap .title>p {
    font-size: 1.2rem;
    font-weight: 700;
}

.cs__inputs {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cs__input {
    width: calc(33.33% - 11px);
    height: 50px;
    display: flex;
    align-items: center;
}

.cs__input.last {
    width: 100%;
}

.cs__input span {
    width: 80px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.cs__input input {
    width: calc(100% - 80px);
    height: 100%;
    border-style: none;
    background-color: #f2f2f2;
    border-radius: 0.5rem;
    padding-left: 1rem;
}

.input__box {
    width: calc(33.33% - 11px);
    height: 50px;
    display: flex;
    gap: 10px;
}

.input__box>.cs__input {
    width: 70%;
}

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

.cs__radio input {
    margin-right: 5px;
}

.cs__radio:nth-child(2) input {
    margin-left: 10px;
}

.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;
    background-color: #f3f3f3;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

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


.cs__apply {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cs__info {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 1rem 0;
}

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

.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;
    gap: 1rem;
}

.cs__btn>a {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    background-color: #000;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    cursor: pointer;
}

.cs__btn>a:nth-of-type(1) {
    color: #fff;
}

.cs__btn>a:nth-of-type(1) img {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
}

.cs__btn>a:nth-of-type(2) {
    color: #000;
    background-color: #f7e600;

}

.cs__btn>a:nth-of-type(2) img {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
}

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

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

.content .items {
    width: 100%;
    height: auto;
}

.content .item {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    border-bottom: 1px solid #ccc;
    padding: 4rem 0;
}

.content .item .txt {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.content .item .txt>h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #d32b83;
    margin-bottom: 1rem;
}

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

.content .item .txt>ul>li {
    font-size: 1rem;
    color: #595959;
    text-indent: -10px;
    padding-left: 10px;
}

.content .item:nth-of-type(1) .txt>ul>li {
    color: #000;
}

.content .item .txt>ul>li>b {
    color: #000;
}

.content .item .txt>ul>li.bold {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
}

.content .item .txt>ul>li.gray {
    color: #929292;
}

.content .item .txt .des {
    background-color: #f3f3f3;
    border-radius: 0.5rem;
    margin-top: 1rem;
    padding: 1.5rem;
}

.content .item .img {
    display: flex;
    align-items: center;
}

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

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

.banner>.inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.banner .title {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    background-color: #f2f2f2;
    padding: 2rem;
}

.banner .title>h3 {
    font-size: 2rem;
    font-weight: 800;
}

.banner .title>p {
    font-size: 1rem;
    font-weight: 500;
    color: #595959;
}

.insu__banner {
    width: 100%;
    height: auto;
}

.insu__banner .fire,
.insu__banner .life {
    width: 100%;
    height: auto;
}

.insu__banner .fire>h4,
.insu__banner .life>h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.insu__banner .items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.insu__banner .items>li {
    width: calc(20% - 13px);
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.insu__banner .items .img {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
}

.insu__banner .items .img>img {
    max-width: 120px;
    max-height: 30px;
}

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

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

.notice__area>.inner {
    width: 100%;
    height: auto;
    display: flex;
    gap: 2rem;
    border-top: 1px solid #ccc;
    padding: 2rem 0 0;
}

.notice__area .box1 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: #f2f2f2;
    padding: 2rem;
}

.notice__area .box1 img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.notice__area .box1 p {
    font-size: 0.95rem;
}

.notice__area .box2 {
    width: 100%;
    height: auto;
    background-color: #f2f2f2;
}

.notice__area .box2>a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.notice__area .box2>a img {
    width: 100px;
    height: 90px;
    object-fit: contain;
}

.notice__area .box2 .txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.notice__area .box2 .txt>p {
    font-size: 1.2rem;
    font-weight: 600;
}

.notice__area .box2 .txt>span {
    font-size: 1.6rem;
    font-weight: 700;
}

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

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

    .visual {
        height: auto;
        margin: 0;
    }

    .visual>.inner {
        border: none;
        padding: 4rem;
    }

    .visual .title h2 {
        font-size: 2rem;
    }

    .visual .img img {
        width: 170px;
        height: 170px;
    }

    /*  */
    .cs__wrap>.inner {
        border: none;
        border-bottom: 1px solid #ccc;
    }

    .input__box,
    .cs__input {
        width: 100%;
    }

    .cs__input span {
        justify-content: flex-start;
    }

    .cs__input span>br {
        display: none;
    }

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

    .content .item .img img {
        width: 90px;
    }

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

    /*  */
    .banner .title>h3 {
        font-size: 1.4rem;
    }

    .banner .title>p {
        word-break: keep-all;
    }

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

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

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

    .notice__area>.inner {
        flex-wrap: wrap;
        gap: 1rem;
    }
}






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

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

    .visual {
        height: auto;
        margin: 0;
    }

    .visual>.inner {
        flex-direction: column;
        gap: 2rem;
        border: none;
        padding: 2rem;
    }

    .visual .title h2 {
        font-size: 1.6rem;
    }

    .visual .title h3>br {
        display: none;
    }

    .visual .img img {
        width: 130px;
        height: 130px;
    }

    /*  */
    .cs__wrap>.inner {
        border: none;
        border-bottom: 1px solid #ccc;
        padding: 1.5rem;
    }

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

    .input__box,
    .cs__input {
        width: 100%;
    }

    .cs__input span {
        justify-content: flex-start;
    }

    .cs__input span>br {
        display: none;
    }

    .cs__btn {
        flex-wrap: wrap;
        gap: 10px;
    }

    /*  */
    .content .item {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .content .item .txt {
        width: 100%;
    }

    .content .item .txt>h3 {
        font-size: 1.2rem;
    }

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

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

    .content .item .img {
        justify-content: center;
    }

    .content .item .img img {
        width: 80px;
    }



    /*  */
    .banner .title>h3 {
        font-size: 1.4rem;
    }

    .banner {
        padding: 2rem 1rem;
    }

    .insu__banner .fire>h4 {
        font-size: 1.1rem;
    }

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

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

    .notice__area>.inner {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .notice__area .box1,
    .notice__area .box2>a {
        flex-direction: column;
        gap: 1rem;
    }

    .notice__area .box1 img,
    .notice__area .box2>a img {
        width: 80px;
        height: 80px;
    }

    .notice__area .box2 .txt {
        gap: 0;
    }

    .notice__area .box2 .txt>p {
        font-size: 1rem;
    }
}