body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #FFFFFF;
}

.big-frame {
    padding-top: 80px;
    max-width: 1024px;
    margin: auto;
    overflow-x: hidden;
}



.title {

    font-size: 24px;
    margin-bottom: 5px;
    font-family: 'Manrope';
    position: relative;
    font-weight: bold;
    margin: 41px, 14px;
    cursor: pointer;
}





.region-container {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 20px;
    overflow: hidden;
    max-height: 1000px;
    transition: max-height 0.2s ease;
}


.region-container.show {
    max-height: 0px;
    transition: max-height 0.2s ease;
}


.button {
    font-size: 16px;
    color: #070707;
    font-weight: bold;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #C4C4C4;
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 20px;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Manrope';
}




.button.active {
    background-color: #070707;
    color: #fff;
}

.dtl_filter:checked+.button {
    background-color: #070707;
    color: #fff;
}


.advertisement {
    width: 100%;
    margin-bottom: 50px;
    border-radius: 10px;
    overflow: hidden;
}

.advertisement-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.last-container {
    margin-bottom: 90px;
}

.schedule_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 24px;
    padding: 40px 0;
    position: relative;
}

.card-frame {
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    flex: 1 1 23%;
    border-radius: 10px;
    width: 240px;
}

.card-img-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 232px;
    border-radius: 10px;
}

.card_tag {

    z-index: 10;
    /* color: white; */
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 0 5px;
    box-sizing: border-box;
    text-align: center;
    line-height: 25px;
    border-radius: 5px;
    font-size: 14px;
}

.card_tag.General {
    background-color: black;
    color: white;
    border: 1px solid white;
}

.card_tag.Mission {
    background-color: white;
    color: black;
    border: 1px solid black;
}

.card_tag.Stamp {
    background-color: gray;
    color: white;
    border: 1px solid white;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-content {
    padding: 10px;
    margin-bottom: 30px;
}

.card-title {
    font-family: 'Manrope';
    color: #000000;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    min-height: 45px;
}

.card-heart {
    width: 24px;
    height: 24px;
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
}

.card-review {
    font-size: 14px;
    margin-top: 10px;
    font-weight: bold;
    color: #000000;
    font-family: "Manrope";
}

.card-price {
    font-size: 23px;
    color: #000000;
    font-family: "Manrope";
    font-weight: bold;
    margin-top: 5px;
    text-align: right;
}

.line {
    border: 1px solid #D5D5D5;
    margin-bottom: 20px;
}

/* 호버 줌인 기능능능능 */
.card-img-wrapper:hover .card-image {
    transform: scale(1.2);
}



.hrt_btn {
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 1.25rem;
    height: 1.25rem;
    z-index: 10;
}

.hrt_btn.off {
    background: url("/mainimg/wish_off.png") no-repeat;
    background-size: contain;
}

.hrt_btn.on {
    background: url("/mainimg/wish_on.png") no-repeat;
    background-size: contain;
}

.hrt_btn.active {
    animation-name: hrt_beat;
    animation-duration: 0.3s;
    animation-timing-function: ease-out;
}

@keyframes hrt_beat {
    0% {
        transform: scale(1.0);
    }

    50% {

        transform: scale(1.5);
    }

    100% {

        transform: scale(1.0);
    }
}


.more_btn {
    cursor: pointer;
    margin: auto;
    width: 600px;
    height: 40px;
    background: #FFFFFFE6 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-family: 'Manrope';
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    margin-bottom: 100px;
    margin-top: 50px;
}



.more_btn:hover {
    background-color: #000;
    color: #fff;
}

.banner_intro {
    position: relative;
    overflow: hidden;
    height: 1175px;
    /* height: 300px; */
    margin: 0 auto;
    max-width: 1024px;
    padding-top: 80px;
}

.banner_intro img {
    width: 100%;
    height: auto;
    display: block;
    transition: max-height 0.5s ease;
}

.banner_intro.expanded {
    height: auto;
}

.banner_intro.expanded img {
    max-height: none;
}

#toggleButton2 {
    width: 600px;
    height: 40px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: black;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 2px 2px 6px#00000052;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#toggleButton2:hover {
    background-color: black;
    color: white;
}


.big-frame>div:nth-child(1) {
    margin-top: 0px;
    display: none;
}

.active-button {
    color: white;
    background-color: black;
}


.wrapper_footer {
    margin-top: 100px;
}


@media screen and (max-width: 1024px) {

    .schedule_list {
        margin: 0px 20px;
    }

    .hrt_btn {
        top: 10%;
        right: 10%;
    }

    .schedule_list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .more_btn {
        cursor: pointer;
        margin: auto;
        width: 350px;
        height: 30px;
        background: #FFFFFFE6 0% 0% no-repeat padding-box;
        box-shadow: 0px 3px 6px #00000029;
        border-radius: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 15px;
        font-family: 'Manrope';
        font-weight: bold;
        transition: background-color 0.3s, color 0.3s;
        margin-bottom: 50px;
        margin-top: 25px;
    }

    /* #toggleButton {
        width: 30px;
        height: 30px;
    } */

    .more_btn:hover {
        background-color: #000;
        color: #fff;
    }

    .title {
        margin: 0px 20px;
        text-align: center;
    }

    .advertisement {
        border-radius: 0px;
    }

    .line {
        margin: 0px 20px;
        margin-bottom: 30px;
    }

    .button.active {
        background-color: #000;
        color: #fff;
    }

    .banner_intro {
        margin: 0 20px 40px;
    }
}

@media screen and (max-width: 820px) {

    .hrt_btn {
        top: 10%;
        right: 10%;
    }

    .schedule_list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .more_btn {
        cursor: pointer;
        margin: auto;
        width: 350px;
        height: 30px;
        background: #FFFFFFE6 0% 0% no-repeat padding-box;
        box-shadow: 0px 3px 6px #00000029;
        border-radius: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 15px;
        font-family: 'Manrope';
        font-weight: bold;
        margin-bottom: 50px;
        margin-top: 25px;
    }

    #toggleButton2 {
        width: 350px;
        height: 30px;
    }


    .title {
        margin: 0px 20px;
        text-align: center;

    }

    .advertisement {
        border-radius: 0px;
    }

    .line {
        margin: 0px 20px;
        margin-bottom: 30px;
    }

    .button {
        box-sizing: border-box;
        flex: 0 1 22%;
        text-align: center;
        margin-bottom: 20px;
    }

    .banner_intro {
        height: 835px;
    }


    .button.active {
        background-color: #000;
        color: #fff;
    }
}




@media screen and (max-width: 768px) {

    .hrt_btn {
        top: 10%;
        right: 10%;
    }

    .schedule_list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .more_btn {
        cursor: pointer;
        margin: auto;
        width: 350px;
        height: 30px;
        background: #FFFFFFE6 0% 0% no-repeat padding-box;
        box-shadow: 0px 3px 6px #00000029;
        border-radius: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 15px;
        font-family: 'Manrope';
        font-weight: bold;
        margin-bottom: 50px;
        margin-top: 25px;
    }



    .title {
        margin: 0px 20px;
        text-align: center;

    }

    .advertisement {
        border-radius: 0px;
    }

    .line {
        margin: 0px 20px;
        margin-bottom: 30px;
    }

    .button {
        box-sizing: border-box;
        flex: 0 1 22%;
        text-align: center;
        margin-bottom: 20px;
    }




    .button.active {
        background-color: #000;
        color: #fff;
    }
}

@media screen and (max-width: 550px) {

    .hrt_btn {
        top: 10%;
        right: 10%;
    }

    .schedule_list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .more_btn {
        cursor: pointer;
        margin: auto;
        width: 350px;
        height: 30px;
        background: #FFFFFFE6 0% 0% no-repeat padding-box;
        box-shadow: 0px 3px 6px #00000029;
        border-radius: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 15px;
        font-family: 'Manrope';
        font-weight: bold;
        margin-bottom: 50px;
        margin-top: 25px;
    }

    .title {
        margin: 0px 20px;
        text-align: center;

    }

    .advertisement {
        border-radius: 0px;
    }

    .line {
        margin: 0px 20px;
        margin-bottom: 30px;
    }

    .button {
        box-sizing: border-box;
        flex: 0 1 47%;
        text-align: center;
    }

}


@media screen and (max-width: 425px) {

    .hrt_btn {
        top: 10%;
        right: 10%;
    }

    .schedule_list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .more_btn {
        cursor: pointer;
        margin: auto;
        width: 350px;
        height: 30px;
        background: #FFFFFFE6 0% 0% no-repeat padding-box;
        box-shadow: 0px 3px 6px #00000029;
        border-radius: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 15px;
        font-family: 'Manrope';
        font-weight: bold;
        margin-bottom: 50px;
        margin-top: 25px;
    }

    .title {
        margin: 0px 20px;
        text-align: center;

    }

    .advertisement {
        width: 100%;
        margin-bottom: 50px;
        border-radius: 10px;
        overflow: hidden;
    }

    .advertisement-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .line {
        margin: 0px 20px;
        margin-bottom: 30px;
    }

    .button {
        box-sizing: border-box;
        flex: 0 1 47%;
        text-align: center;
    }

    .banner_intro {
        height: 440px;
    }


}


@media screen and (max-width: 375px) {

    .hrt_btn {
        top: 10%;
        right: 10%;
    }

    .schedule_list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .more_btn {
        cursor: pointer;
        margin: auto;
        width: 350px;
        height: 30px;
        background: #FFFFFFE6 0% 0% no-repeat padding-box;
        box-shadow: 0px 3px 6px #00000029;
        border-radius: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 15px;
        font-family: 'Manrope';
        font-weight: bold;
        margin-bottom: 50px;
        margin-top: 25px;
    }

    .banner_intro {
        height: 384px;
    }

    .title {
        margin: 0px 20px;
        text-align: center;

    }

    .advertisement {
        border-radius: 0px;
    }


    .line {
        margin: 0px 20px;
        margin-bottom: 30px;
    }

    .button {
        box-sizing: border-box;
        flex: 0 1 45%;
        text-align: center;
    }

    #toggleButton2 {
        width: 250px;
        height: 30px;
    }
}

@media screen and (max-width: 320px) {

    .hrt_btn {
        top: 10%;
        right: 10%;
    }

    .schedule_list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .more_btn {
        cursor: pointer;
        margin: auto;
        width: 300px;
        height: 30px;
        background: #FFFFFFE6 0% 0% no-repeat padding-box;
        box-shadow: 0px 3px 6px #00000029;
        border-radius: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 15px;
        font-family: 'Manrope';
        font-weight: bold;
        margin-bottom: 50px;
        margin-top: 25px;
    }




    .banner_intro {
        height: 320px;
    }

    .title {
        margin: 0px 20px;
        text-align: center;

    }

    .advertisement {
        border-radius: 0px;
    }

    .line {
        margin: 0px 20px;
        margin-bottom: 30px;
    }

    .button {
        box-sizing: border-box;
        flex: 0 1 45%;
        text-align: center;

    }


}