@charset "utf-8";

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

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

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

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

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

/*  */
.container {
    width: 65%;
    height: auto;
    background-color: #FCEAEA;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px, rgba(0, 0, 0, 0.1) 0px 0px 6px;
    padding: 4rem;
    position: relative;
}

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

.container .txt strong {
    width: fit-content;
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: #EB230F;
    border-radius: 2rem;
    padding: 8px 2rem;
}

.container .txt h2 {
    font-size: 1.4rem;
    font-weight: 800;
}

.container .txt p {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.container .txt span {
    font-size: 1.2rem;
    font-weight: 700;
}

.container .img {
    position: absolute;
    right: 3rem;
    bottom: 3rem;
}

.container .img img {
    width: 160px;
    height: 130px;
    object-fit: contain;
}

/*  */
.cs {
    width: 35%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px, rgba(0, 0, 0, 0.1) 0px 0px 6px;
    padding: 2rem;
}

.cs .title > p {
    font-size: 0.9rem;
    font-weight: 600;
    border-left: 3px solid #4A7EBB;
    padding-left: 1rem;
}

/*  */
.cs__inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.cs__input.house {
    height: auto;
}

.cs__input > span {
    width: 70px;
    font-size: 0.9rem;
    font-weight: 500;
}

.cs__input > input {
    width: calc(100% - 70px);
    height: 100%;
    box-shadow: 0 0 0 1px inset #ccc;
    border-radius: 0.2rem;
    padding: 0 1rem;
}

.cs__radio {
    width: calc(100% - 70px);
    height: 100%;
    display: flex;
    gap: 10px;
}

.cs__radio.house {
    width: 100%;
    flex-wrap: wrap;
}

.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;
    font-size: 0.9rem;
    color: #555;
    box-shadow: 0 0 0 1px inset #ccc;
    border-radius: 0.2rem;
    cursor: pointer;
}

.cs__radio input[type=radio]:checked+label {
    font-weight: 600;
    color: #000;
    box-shadow: 0 0 0 2px inset #EB230F;
}

.cs__radio.house input[type=radio]+label {
    width: calc(33.33% - 7px);
    height: 45px;
}

.cs__radio.house input[type=radio]+label:nth-of-type(1),
.cs__radio.house input[type=radio]+label:nth-of-type(2){
    width: calc(50% - 5px);   
}

.cs__info {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

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

.cs__info>label>input {
    width: 18px;
    height: 18px;
}

.cs__info>label>span {
    font-size: 0.9rem;
}

.cs__info>span {
    font-size: 0.9rem;
    color: cornflowerblue;
    text-decoration: underline;
    cursor: pointer;
}

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

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

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

.content .title h4 {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: normal;
    border-left: 4px solid #EB230F;
    padding-left: 10px;
}

.content .list {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.content .list > li {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.content .list > li:nth-child(even){
    background-color: #F4F8F8;
}

.content .list > li > .inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.content .list > li > .inner b {
    font-weight: inherit;
    color: #EB230F;
}

.content .list > li > .inner > span {
    width: 100px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background-color: #EB230F;
    border-radius: 5px;
}

.content .list > li > .inner > h5 {
    font-size: 1.4rem;
}

.content .list > li > .inner > h6 {
    font-size: 1.2rem;
}

.content .list > li > .inner > strong,
.content .list > li > .inner > em {
    font-size: 1rem;
    font-weight: 600;
}

.content .list > li.des > .inner {
    align-items: flex-start;
}

.content .list > li.des > .inner > p {
    font-size: 1rem;
    color: #EB230F;
}

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

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

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

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

    /*  */
    .container {
        width: 100%;
        padding: 3rem;
    }

    .container .img img {
        width: 130px;
        height: 100px;
    }

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

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

    .content .list > li {
        word-break: keep-all;
        padding: 2rem;
    }

}






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

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

    .visual {
        padding: 0 0 2rem;
    }

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

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

    .container .txt {
        word-break: keep-all;
    }

    .container .txt h2 {
        font-size: 1.2rem;
    }

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

    .container .txt p > br {
        display: none;
    }

    .container .txt span {
        font-size: 1rem;
    }

    .container .img {
        position: static;
        display: flex;
        justify-content: flex-end;
        margin-top: 2rem;
    }

    .container .img img {
        width: 130px;
        height: 100px;
    }

    /*  */
    .cs {
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid #ccc;
    }

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

    .content .title h4 {
        font-size: 1rem;
    }

    .content .list > li {
        word-break: keep-all;
        padding: 2rem;
    }

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

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

    .content .list > li > .inner > strong,
    .content .list > li > .inner > em {
        font-size: 0.9rem;
    }

}