@charset "utf-8";

/*
 * File       : style.css
 * Author     : YONG
 *
 * 최종수정일 : 24/00/00
 *
 * SUMMARY:
 * 통합.CSS
 */

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

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

.visual {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    background-color: #F0F0FF;
    padding: 2rem 0;
}

.visual > .inner {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}

.visual > .inner > img {
    width: 330px;
    height: auto;
    object-fit: contain;
    position: absolute;
    left: 0;
    bottom: 0;
}

.visual > .inner > .title {
    min-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visual .title > h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.visual .title > h3 {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 4rem;
}

.visual .title > h3 > b {
    font-weight: inherit;
    color: #7030A0;
}

.visual .title > h4 {
    display: flex;
    justify-content: center;
}

.visual .title > h4 > img {
    width: 230px;
    height: auto;
    object-fit: contain;
}


/*  */
.cs {
    width: 35%;
    height: auto;
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 2rem;
}

.cs>p {
    font-size: 1rem;
    font-weight: 600;
    border-left: 4px solid #4A7EBB;
    padding-left: 10px;
    margin-bottom: 1rem;
}

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

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

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

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

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

.input__box>span {
    width: 70px;
    font-size: 0.9rem;
}

.input__box>input {
    width: calc(100% - 70px);
    height: 100%;
    border-bottom: 1px solid #ccc;
}

.cs__radio {
    width: calc(100% - 70px);
    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;
    border: 1px solid #ccc;
    border-radius: 0.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.cs__radio input[type=radio]:checked+label {
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    border: 2px solid #e31f8f;
    color: #222;
}


.cs__info {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 1rem 0;
}

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

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

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

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

.submit__btn {
    width: 100%;
    height: auto;
    display: flex;
    gap: 10px;
}

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

.submit2 {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
    font-weight: 600;
    background-color: #ffdb40;
    border-radius: 0.5rem;
    cursor: pointer;
}

.submit2>img {
    width: 30px;
}

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

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

.bojang > .inner > h5 {
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 2rem;
}

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

.bojang__list > li {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.bojang__list > li > span {
    width: 70px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    background-color: #9A66CC;
    border-radius: 5px;
    position: relative;
}

.bojang__list > li > span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 10px;
    height: 10px;
    background-color: #9A66CC;
    clip-path: polygon(100% 0, 0 0, 0 100%);
}

.bojang__list > li > strong {
    font-size: 0.9rem;
}

.bojang__list > li > strong > b {
    font-weight: inherit;
    color: #ED008C;
}

.bojang__list > li > p {
    font-size: 0.9rem;
    font-weight: 500;
    /* word-break: keep-all; */
}

.bojang__list > li > small {
    font-size: 90%;
}

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

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

.content__menu {
    width: 100%;
    height: auto;
    display: flex;
    border: 2px solid #9A66CC;
    background-color: #9A66CC;
    border-radius: 0.5rem;
    overflow: hidden;
}

.product__btn,
.join__btn {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #9A66CC;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    padding: 1rem;
    cursor: pointer;
}

.product__btn.active,
.join__btn.active {
    border-radius: 0.5rem;
    background-color: #fff;
    color: #9A66CC;
}

/*  */
.product__area {
    width: 100%;
    height: auto;
    display: none;
    padding: 3rem 0 1rem;
}

.product__area.active {
    display: block;
}

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

.product__area .list > li {
    width: 100%;
    height: auto;
    display: flex;
}

.product__area .list .order {
    width: 60px;
}

.product__area .list .order > span {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: normal;
}

.product__area .list .txt {
    width: calc(100% - 70px);
}

.product__area .list .txt > h3 {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 1rem;
}

.product__area .list .txt > h3 > em {
    font-weight: inherit;
    color: #9A66CC;
}

.product__area .list .txt > h3 > small {
    font-weight: 500;
}


.product__area .list .txt > ul {
    display: flex;
    flex-direction: column;
}

.product__area .list .txt > ul > li {
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
}

.product__area .list .txt > ul > li > small {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
}

.product__area .list .txt > ul > li.color--gray {
    font-size: 1rem;
}

/*  */
.join__area {
    width: 100%;
    height: auto;
    display: none;
    padding: 3rem 0 1rem;
}

.join__area.active {
    display: block;
}

.join__area > h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.table__wrap {
    width: 100%;
}

.join__area table {
    width: 100%;
    height: auto;
    margin-bottom: 5px;
    border-top: 3px solid #513a84;
}

.join__area table th,
.join__area table td {
    font-size: 0.95rem;
    border: 1px solid #ccc;
    text-align: center;
    padding: 1rem;
}

.join__area > p {
    font-size: 0.9rem;
    color: #444;
}

.join__area > ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
}

.join__area > ul > li {
    font-size: 0.9rem;
    color: #444;
}


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

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

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

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

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

.call__list li>p {
    font-size: 1rem;
    font-weight: 600;
}

.call__list li>a {
    font-size: 1.4rem;
    font-weight: 800;
    color: #e31f8f;
}

.call__list li>span {
    font-size: 1rem;
    color: #555;
}

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

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

    .visual {
        padding: 2rem 1rem;
    }

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

    .visual > .inner > .title {
        width: 100%;
        text-align: center;
        padding-bottom: 2rem;
    }

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

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

    .visual .title > h4 > img {
        width: 200px;
    }

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

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

    .bojang__list {
        flex-wrap: wrap;
    }

    .bojang__list > li {
        width: calc(33.33% - 11px);
    }

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

    /*  */
    .call__banner {
        padding: 1.5rem 0;
    }

    .call__list {
        flex-direction: column;
        gap: 1.5rem;
    }
}






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

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

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

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

    .visual > .inner > .title {
        width: 100%;
        text-align: center;
    }

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

    .visual .title > h3 {
        font-size: 1.2rem;
        word-break: keep-all;
        margin-bottom: 2rem;
    }

    .visual > .inner > .title > span {
        font-size: 0.9rem;
    }

    .visual .title > h4 > img {
        width: 130px;
    }

    /*  */
    .cs {
        width: 100%;
        padding: 1.5rem;
    }

    .submit__btn {
        flex-wrap: wrap;
    }


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

    .bojang > .inner > h5 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .bojang__list {
        flex-wrap: wrap;
    }

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

    .bojang__list > li > strong {
        font-size: 1rem;
    }

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

    .product__btn,
    .join__btn {
        padding: 10px;
    }

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

    .product__area .list .order {
        margin-bottom: 8px;
    }

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

    .product__area .list .txt {
        width: 100%;
    }

    .product__area .list .txt > h3 {
        font-size: 1rem;
    }

    .product__area .list .txt > ul > li {
        font-size: 0.9rem;
    }

    /*  */
    .join__area > h5 {
        font-size: 1.1rem;
    }
    
    .table__wrap {
        overflow-x: auto;
    }

    .join__area table {
        width: 100%;
        min-width: 600px;
    }

    /*  */
    .call__banner {
        padding: 1.5rem 0;
    }

    .call__list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .call__list li {
        flex-wrap: wrap;
        gap: 0 5px;
    }

    .call__list li>a {
        font-size: 1rem;
    }
}