
#index-top-swiper {
    width: 100%;

    margin: 4px auto 10px auto; /* 중앙 정렬 */
    overflow: hidden; /* 여분의 콘텐츠 숨기기 */
}



/*--------------------------------------------------------------------------------*/
.index-enter {
    display: flex;
    flex-direction: column;

    background-color: #ebe4d0;

    padding: 10px 30px 10px;
}
    .enter-button {
        display: block;
        margin: 10px auto 10px;
        background-color: #5c9f55;
        border-radius: 10px;
        height: 64px;
        cursor: pointer;
    }
        .enter-main-top,
        .enter-main-top:hover
        {
            color: #ffffff;
            text-decoration: none;
        }
            .enter-button-text {
                font-size: 24px;
                color: #ffffff;
                text-align: center;
                min-width: 278px;
                padding: 12px 0px 10px 0px;

                position: relative;
            }
                .enter-button-next-arrow {
                    position: absolute;

                    right: 18px;
                    top: 12px;
                }


/*--------------------------------------------------------------------------------*/
.index-menu {
    display: flex;
    flex-direction: column;
}

    .menu-item {
        height: 77px;
        padding: 21px 28px;

        display: flex;
        flex-direction: row;

        justify-content: left; /* 가로 정렬 */

        border-bottom: 2px solid #eee;

        cursor: pointer;
    }
        .menu-item-icon {
            
        }
        .menu-item-text {
            flex: 1;

            padding-left: 10px;
            padding-top: 4px;

            font-weight: 700;
            font-size: 20px;
        }
        .menu-item-end {
            padding-top: 0px;
        }
            .menu-btn-arrow-down {
                height: 41px;
            }



    .menu-content {
        display: none;

        padding: 30px;

        border-bottom: solid 2px #eee;
    }
        .menu-content-image {
            width: 100%;
            border-radius: 5px;
        }

        .menu-content-list {
            padding-top: 10px;

            display: flex;
            flex-direction: column;
        }
            .menu-content-item {
                display: flex;
                flex-direction: row;

                padding-bottom: 6px;
            }
                .menu-content-btn-icon {
                    width: 16px;
                    height: 16px;
                    background-color: #5c9f55;
                    border-radius: 50%;
                    margin-top: 8px; /* 자신의 모양을 바꾸면 안되기 때문 */
                }
                .menu-content-btn-text {
                    padding-left: 30px;
                    font-size: 22px;
                    font-weight: 900;
                }
        .menu-content-description {
            font-size: 17px;
            font-weight: 400;
            padding-top: 10px;
        }



/*--------------------------------------------------------------------------------*/
.index-concept {
    margin-bottom: 2px;
}
    .concept-title {
        font-weight: 700;
        font-size: 20px;

        padding: 14px 0px 0px 30px;

        display: flex;
        flex-direction: row;
        gap: 4px;
    }
        .concept-icon-wrapper {
            width: 27px;
            margin: 3px 0px 0px 4px;
        }
            .concept-icon-drink {
                width: 100%;
            }

    .concept-description {
        font-weight: 500;
        font-size: 15px;

        border-radius: 5px;
        margin: 10px 13px;
        padding: 16px;

        color: #333333;
        background-color: #ebe4d0;
    }



/*--------------------------------------------------------------------------------*/
.index-foot {
    display: block;

    color: #fff;
    background-color: #5c9f55;

    padding: 10px 0px;

    font-size: 11px;

    width: 100%;
    text-align: center;
}
    .foot-text {
        display: block;
        margin: 0 auto;
    }


