@charset "utf-8";

/*
 * File       : common.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;
    display: flex;
    gap: 2rem;
}

/*  */
.container {
    width: 65%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background-color: #FFF6EB;
    border-radius: 1rem;
    padding: 3rem;
}

.container > h3 {
    font-size: 1.2rem;
    color: #E97708;
}

.container > h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: normal;
}

.container > p {
    font-size: 1.1rem;
    font-weight: 500;
}

/*  */
.cs {
    width: 35%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 1rem;
    padding: 2rem;
}

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

.cs__input {
    width: 100%;
    height: 45px;
    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%;
    border-bottom: 1px solid #ccc;
    padding-left: 10px;
}

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

.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;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
}

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

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

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

.sub__title > .inner {
    width: 100%;
    height: auto;
    background-color: #f3f3f3;
    border-radius: 1rem;
    padding: 1rem;
}

.sub__title h3 {
    font-size: 1.2rem;
    color: #E97708;
    text-align: center;
}

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

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

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

.content__menu > li {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
    padding: 1rem;
    cursor: pointer;
}

.content__menu > li.active {
    border-bottom: 4px solid #E97708;
}

/*  */
.content {
    display: none;
}

.content.active {
    display: block;
}

.content1 .list {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    /* gap: 2rem; */
}

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

.content1 .list > li {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 4rem 0;
}

.content1 .list > li > span {
    font-size: 2rem;
    font-weight: 700;
    color: #E97708;
}

.content1 .list > li > h3 {
    font-size: 1.4rem;
    font-weight: 500;
}

.content1 .list > li > h3 > b {
    font-weight: 800;
}

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

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

/*  */
.content2,
.content3 {
    padding: 4rem 0;
}

.content .essential__txt,
.content .depositor__txt {
    padding: 0;
}

/*  */
.ft__call {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    border-top: 1px solid #ccc;
    padding: 2rem 0;
}

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

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

.ft__call > .inner > li:nth-of-type(1){
    border-right: 2px dashed #ccc;
}

.ft__call > .inner > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.ft__call > .inner > li > a img {
    width: 40px;
    height: auto;
    object-fit: contain;
}

.ft__call > .inner > li > a > p {
    font-size: 1rem;
    font-weight: 500;
}

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

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

    .visual {
        padding: 0 0 2rem;
    }

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

    /*  */
    .container {
        width: 100%;
        border-radius: 0;
    }

    .container > h2 {
        font-size: 1.8rem;
    }

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

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

    /*  */
    .content1 .list > li {
        padding: 4rem 2rem;
    }

    /*  */
    .content2,
    .content3 {
        padding: 4rem 2rem;
    }
}






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

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

    .visual {
        padding: 0 0 2rem;
    }

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

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

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

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

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

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

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

    .sub__title h3 {
        font-size: 1rem;
    }

    /*  */
    .content__menu > li {
        font-size: 0.9rem;
        word-break: keep-all;
        text-align: center;
        padding: 1rem 0;
    }

    /*  */
    .content1 .list > li {
        padding: 2rem 1rem;
    }

    .content1 .list > li > span {
        font-size: 1.8rem;
    }

    .content1 .list > li > h3 {
        font-size: 1.1rem;
        word-break: keep-all;
    }

    .content1 .list > li > ul > li {
        font-size: 0.9rem;
        text-indent: -10px;
        padding-left: 10px;
    }

    .content1 .list > li > ul > li > br {
        display: none;
    }

    /*  */
    .content2,
    .content3 {
        padding: 2rem 1rem;
    }

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

    .ft__call > .inner {
        flex-wrap: wrap;
    }

    .ft__call > .inner > li:nth-of-type(1) {
        border-right: none;
        border-bottom: 2px dashed #ccc;
    }

    .ft__call > .inner > li > a {
        padding: 1rem 0;
    }

}