@charset "utf-8";

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

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

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

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

/*  */
.breadcrumb {
    margin-bottom: 2rem;
}

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

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

.breadcrumb > ul > li > h2 {
    font-weight: inherit;
}

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

.container .txt {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    line-height: normal;
}
.container .txt > h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #F8B619;
}
.container .txt .wrap {
    display: flex;
    align-items: center;
    gap: 5px;
}
.container .txt .wrap > span {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: #F8B619;
    padding: 8px 1rem;
}
.container .txt .wrap > h3 {
    font-size: 1.2rem;
}
.container .txt > strong {
    font-size: 1.2rem;
    font-weight: 600;
    color: #766C61;
    text-decoration: underline 5px #fff8d3;
    text-underline-offset: -3px;
    text-decoration-skip-ink: none;
}

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

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


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

.cs > .inner {
    width: 100%;
    height: auto;
    background-color: #fff2ae;
    padding: 2rem;
}

.cs .title {
    text-align: center;
    margin-bottom: 2rem;
}

.cs .title > strong {
    font-size: 1.2rem;
    color: #766C61;
}

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

.cs__select {
    width: calc(100% - 70px);
    height: 50px;
    font-size: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 0 0.2rem 0.2rem 0;
    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__input {
    width: calc(50% - 8px);
    height: 50px;
    display: flex;
    align-items: center;
}

.cs__input.last {
    width: 100%;
}

.input__box {
    width: calc(50% - 8px);
    height: 50px;
    display: flex;
    gap: 1rem;
}

.input__box .cs__input {
    width: 70%;
}

.cs__input>span {
    width: 70px;
    height: auto;
    font-size: 0.9rem;
    font-weight: 600;
    color: #766C61;
    text-align: center;
}

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

.cs__radio {
    width: 30%;
    height: 100%;
    display: flex;
    gap: 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: #fff;
    border-radius: 0.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
}

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

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

.cs__radio2 input[type=radio] {
    display: none;
}

.cs__radio2 input[type=radio]+label {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ccc;
    background-color: #fff;
    border-radius: 0.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
}

.cs__radio2 input[type=radio]:checked+label {
    color: #000;
    border: none;
    background-color: #ffd21c;
}

.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: #766c61;
    border-radius: 0.2rem;
    cursor: pointer;
}

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

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

.content .title {
    width: fit-content;
    background-color: #766c61;
    border-radius: 2rem;
    margin-bottom: 2rem;
    padding: 8px 2rem;
}

.content .title > h2 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
}

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

.content .list > li {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.content .list .img {
    border: 2px solid #F8B619;
    border-radius: 50%;
    padding: 1.5rem;
}
.content .list .img img {
    width: 60px;
    height: auto;
    object-fit: contain;
}

.content .list .txt {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: normal;
}

.content .list .txt > span {
    min-width: 30px;
    font-size: 2rem;
    font-weight: 700;
    color: #766C61;
}

.content .list .txt .wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 8px;
}
.content .list .txt .wrap > h3 {
    width: fit-content;
    font-size: 1.2rem;
    text-decoration: underline 10px #fff8d3;
    text-underline-offset: -3px;
    text-decoration-skip-ink: none;
}
.content .list .txt .wrap > h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #766C61;
}


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

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

    .visual {
        padding: 0;
    }

    .visual > .inner {
        border: none;
        border-top: 1px solid #ccc;
    }

    /*  */
    .container .txt > h2 {
        font-size: 1.6rem;
    }

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

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

    .container .img {
        padding-right: 0;
    }

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

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

}






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

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

    .visual {
        padding: 0;
    }

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

    .breadcrumb  {
        margin-bottom: 1rem;
    }

    .breadcrumb > ul > li {
        font-size: 0.8rem;
    }

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

    .container .txt {
        width: 100%;
    }

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

    .container .txt .wrap {
        gap: 10px;
    }

    .container .txt .wrap > span {
        min-width: 62px;
        font-size: 0.9rem;
    }

    .container .txt .wrap > h3 {
        font-size: 1rem;
        word-break: keep-all;
    }

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

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

    .container .img {
        padding-right: 0;
    }

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

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

    .cs > .inner {
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
        border-radius: 1rem;
    }

    .cs .title > strong {
        font-size: 1rem;
    }

    .cs__input {
        width: 100%;
    }

    .input__box {
        width: 100%;
        gap: 10px;

    }

    .input__box .cs__input {
        width: 65%;
    }

    .cs__radio {
        width: 35%;
    }

    .cs__input>span {
        text-align: left;
    }

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

    .content .title {
        width: 100%;
        padding: 10px 2rem;
    }

    .content .title > h2 {
        font-size: 1rem;
        text-align: center;
        line-height: normal;
    }

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

    .content .list .img img {
        width: 50px;
    }

    .content .list .txt {
        gap: 10px;
    }

    .content .list .txt > span {
        font-size: 1.8rem;
    }

    .content .list .txt .wrap > h3 {
        font-size: 1.1rem;
    }

    .content .list .txt .wrap > h4 {
        font-size: 0.95rem;
    }

    .content .list .txt .wrap > h4 > br {
        display: none;
    }

}