@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;
    background-color: #EBEBF5;
}

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

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

.breadcrumb>ul {
    display: flex;
    gap: 10px;
}

.breadcrumb>ul>li {
    font-size: 0.9rem;
    color: #595959;
}

.breadcrumb>ul>li strong {
    font-weight: 600;
    color: #000;
}

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

.swiper .swiper-wrapper {
    display: flex;
}

.swiper .swiper-slide {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 2rem;
    padding: 10px 0;
}

.swiper .swiper-slide img {
    width: 120px;
    height: 30px;
    object-fit: contain;
}

.swiper .swiper-slide img.big {
    height: 20px;
}

/*  */
.container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0 4rem;
}

.container .txt {
    display: flex;
    flex-direction: column;
    gap: 5px;
    line-height: normal;
}

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

.container .txt h2>b {
    font-weight: inherit;
    color: #2015B3;
}

.container .img {
    padding-right: 2rem;
}

.container .img img {
    width: 240px;
    height: auto;
    object-fit: contain;
}


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

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

.cs__wrap .title {
    width: 20%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #ccc;
}

.cs__wrap .title>h3 {
    font-size: 1.6rem;
    color: #595959;
}

.cs__wrap .title>h3>b {
    font-weight: inherit;
    color: #2015B3;
}

/*  */
.cs {
    width: 80%;
    height: auto;
    display: flex;
    gap: 2rem;
}

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

.cs__box {
    display: flex;
    gap: 1rem;
}

.cs__box .cs__input {
    width: 80%;
}

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


.cs__input>span {
    width: 70px;
    height: auto;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: right;
    padding-right: 1rem;
}

.cs__input>input {
    width: calc(100% - 70px);
    height: 100%;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    padding-left: 10px;
}

.cs__radio {
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.cs__radio input[type=radio] {
    width: 20px;
    height: 20px;
    accent-color: #2015B3;
}

.cs__radio label {
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

/* select */
.cs__select {
    width: calc(100% - 70px);
    height: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    background-color: #fff;
    appearance: none;
    background-image: url(../img/sort-down-solid.svg);
    background-size: 14px;
    background-position: bottom 18px right 18px;
    background-repeat: no-repeat;
    padding: 0 18px;
}

.cs__select option {
    font-size: 1rem;
    padding: 1rem;
}

.cs__apply {
    padding-left: 70px;
}

.cs__info {
    display: flex;
    gap: 5px;
}

.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: 20%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.submit {
    width: 100%;
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background-color: #2015B3;
    border-radius: 0.5rem;
    cursor: pointer;
}

/*  */
.more {
    display: flex;
    justify-content: center;
    background-color: #EBEBF5;

    /* blind */
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}

.more.active {
    width: 100%;
    height: auto;
    clip: auto;
    margin: 0;
    overflow: visible;
    padding: 4rem 0;
}

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

.more .title {
    width: 30%;
    height: auto;
    border-top: 1px solid #ccc;
    padding-top: 1rem;
}

.more .title>span {
    font-size: 1rem;
    color: #595959;
}

.more .title>h3 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.more .title>button {
    font-size: 1rem;
    font-weight: 600;
    color: #2015B3;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px 2rem;
    cursor: pointer;
}

/*  */
.more .list {
    width: 70%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.more .list>li {
    width: calc(50% - 8px);
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 2rem;
    cursor: pointer;
}

.more .list>li:hover {
    background-color: #FFF5F7;
}

.more .list>li>h4 {
    font-size: 1.2rem;
}

.more .list>li>p {
    font-size: 1rem;
    color: #595959;
}

.more .list>li .img {
    display: flex;
    justify-content: flex-end;
}

.more .list>li .img img {
    width: 60px;
    height: auto;
    object-fit: contain;
}

/*  */
.content {
    display: flex;
    justify-content: center;
    background-color: #fff;
    border-top: 1px solid #ccc;
    position: relative;
    z-index: 1;

    /* blind */
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}

.content.active {
    width: 100%;
    height: auto;
    clip: auto;
    margin: 0;
    overflow: visible;
}

.content .cover {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #EBEBF5;
}

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

/*  */
.content .snb {
    width: 30%;
    height: auto;
    background-color: #EBEBF5;
    padding: 2rem;
}

.content .snb>h2 {
    font-size: 1.4rem;
    color: #665BF9;
    margin-bottom: 1rem;
}

.content .snb>ul {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #000;
}

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

.content .snb>ul>li.active {
    background-color: #fff;
}

/*  */
.content .items {
    width: 70%;
    height: auto;
    background-color: #fff;
    padding: 2rem;
}

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

.content .item.active {
    display: flex;
}

.content .item>h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    background-color: #404040;
    border-radius: 0.5rem;
    padding: 1rem 2rem;
}

.content .item>strong {
    font-size: 1.4rem;
}

.content .item>ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

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

.qna .title {
    width: 30%;
    height: auto;
    border-top: 1px solid #ccc;
    padding-top: 1rem;
}

.qna .title>span {
    font-size: 1rem;
    color: #595959;
}

.qna .title>h3 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.qna .title>button {
    font-size: 1rem;
    font-weight: 600;
    color: #2015B3;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px 2rem;
    cursor: pointer;
}

/*  */
.qna .list {
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.qna .list .item {
    display: flex;
    flex-direction: column;
    margin-top: -1px;
}

.qna .q__box {
    display: flex;
    align-items: center;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 1rem;
    cursor: pointer;
}

.qna .q__box .txt {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qna .q__box .txt>span {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    color: #fff;
    background-color: #404040;
    border-radius: 0.5rem;
}

.qna .q__box .txt>h4 {
    font-size: 1.1rem;
}

.qna .q__box img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.qna .q__box img.active {
    transform: rotate(180deg);
}

.qna .a__box {
    height: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #EBEBF5;
    overflow: hidden;
    transform-origin: top;
    transition: all 0.3s ease;
    padding: 0 1rem;
}

.qna .a__box.active {
    height: auto;
    border-bottom: 1px solid #ccc;
    padding: 1rem;
}

.qna .a__box .txt {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qna .a__box .txt>span {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    color: #fff;
    background-color: #2015B3;
    border-radius: 0.5rem;
}

.qna .a__box .txt>h4 {
    font-size: 1.1rem;
    line-height: normal;
}

.qna .a__box>ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 66px;
}

.qna .a__box>ul>li {
    font-size: 1rem;
}




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

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

.footer>.inner>ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer>.inner>ul>li {
    font-size: 0.9rem;
    color: #ddd;
}


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

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

    .visual>.inner {
        padding: 0 2rem;
    }

    /*  */
    .swiper .swiper-slide img {
        width: 100px;
    }

    /*  */
    .container {
        padding: 2rem 0 3rem;
    }

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

    .container .img img {
        width: 180px;
    }


    /*  */
    .cs__wrap {
        padding: 2rem;
    }

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

    .cs__wrap .title {
        width: 100%;
        border: none;
        text-align: center;
    }

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

    .cs {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    .cs__inputs {
        width: 100%;
    }

    .cs__apply {
        display: flex;
        justify-content: center;
        padding: 0;
    }

    .cs__btn {
        width: 100%;
    }

    .submit {
        height: 50px;
    }

    .submit>br {
        display: none;
    }

    /*  */
    .more.active {
        padding: 2rem;
    }

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

    .more .title {
        width: 100%;
    }

    .more .list {
        width: 100%;
    }

    /*  */
    .content .snb>h2 {
        font-size: 1.2rem;
    }
    .content .item>strong {
        font-size: 1.2rem;
    }

    /*  */
    .qna {
        padding: 2rem;
    }

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

    .qna .title {
        width: 100%;
    }

    .qna .list {
        width: 100%;
    }



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

}






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

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

    .visual>.inner {
        padding: 0 1rem;
    }

    /*  */
    .swiper .swiper-slide img {
        width: 80px;
        height: 20px;
    }

    .swiper .swiper-slide img.big {
        height: 16px;
    }

    /*  */
    .container {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
    }

    .container .txt h2 {
        font-size: 1.4rem;
        text-align: center;
    }

    .container .img {
        padding: 0;
    }

    .container .img img {
        width: 120px;
    }


    /*  */
    .cs__wrap {
        padding: 2rem;
    }

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

    .cs__wrap .title {
        width: 100%;
        border: none;
        text-align: center;
    }

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

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

    .cs {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    .cs__inputs {
        width: 100%;
    }

    .cs__box .cs__input {
        width: 65%;
    }

    .cs__radio {
        width: 35%;
    }

    .cs__apply {
        display: flex;
        justify-content: center;
        padding: 0;
    }

    .cs__btn {
        width: 100%;
    }

    .submit {
        height: 50px;
    }

    .submit>br {
        display: none;
    }

    /*  */
    .more.active {
        padding: 2rem;
    }

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

    .more .title {
        width: 100%;
        border: none;
        padding: 0;
    }

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

    .more .list {
        width: 100%;
    }

    .more .list>li {
        width: 100%;
        padding: 1.5rem;
    }

    .more .list>li>h4 {
        font-size: 1rem;
    }

    .more .list>li>p {
        font-size: 0.9rem;
    }

    .more .list>li .img img {
        width: 45px;
    }

    /*  */
    .content {
        border-bottom: 1px solid #ccc;
    }

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

    .content .snb {
        width: 100%;
        padding: 2rem 1rem;
    }

    .content .snb>h2 {
        font-size: 1.1rem;
    }

    .content .snb>ul {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .content .snb>ul>li {
        width: 50%;
        font-size: 0.9rem;
        justify-content: center;
        text-align: center;
        word-break: keep-all;
    }

    .content .snb>ul>li:nth-child(odd){
        border-right: 1px solid #ccc;
    }

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

    /*  */
    .content .items {
        width: 100%;
    }

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

    .content .item>strong {
        font-size: 1.1rem;
    }

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

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

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

    .qna .title {
        width: 100%;
        border: none;
        padding: 0;
    }

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

    .qna .list {
        width: 100%;
    }

    .qna .q__box {
        justify-content: space-between;
        padding: 1rem 0;
    }

    .qna .q__box .txt {
        width: calc(100% - 46px);
    }

    .qna .q__box .txt>span {
        width: 35px;
        min-width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .qna .q__box .txt>h4 {
        font-size: 0.95rem;
    }

    .qna .q__box img {
        width: 30px;
        height: 30px;
    }

    /*  */
    .qna .a__box .txt>span {
        width: 35px;
        min-width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .qna .a__box .txt>h4 {
        font-size: 0.95rem;
    }

    .qna .a__box .txt>h4>br {
        display: none;
    }

    .qna .a__box>ul {
        padding-left: 51px;
    }

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

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