@charset "utf-8";

.venueBtnBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 auto 40px;
}

.venueBtn {
    margin: 0;
}

.venueIntroTxt {
    margin: 0 auto 40px;
}

.venueMap {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.venueSpecialBox {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 auto 30px;
}

.venueSpecialTxtArea {
    width: 100%;
}

.venueSpecialImgArea {
    max-width: 600px;
    width: 100%;
}

.venueSpecialTtl {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-align: center;
}

.taxGiftBox {
    width: 100%;
    margin: 0 0 30px;
    padding: 20px 15px 30px;
    border-radius: 20px;
    background-color: rgba(59, 69, 122, .5);
}

.taxGiftBoxTxt {
    margin: 0 auto 20px;
}

.taxGiftList {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 880px;
    width: 100%;
    margin: 0 auto;
}

.taxGiftListItem {
    display: flex;
    flex-direction: column;
    /* justify-content: flex-end; */
    justify-content: center;
    align-items: center;
    max-width: 290px;
    width: 100%;
    /* height: 380px; */
    height: 320px;
    /* padding: 0 10px 30px; */
    padding: 30px 15px 0;
    border-radius: 200px 200px 0 0;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 10px rgba(255, 255, 255, .5);
}

.taxGiftItemIcon {
    max-width: 280px;
    width: 100%;
    margin: 0 auto 20px;
}

.taxGiftItemTxt {
    margin: 0 auto 30px;
    text-align: center;
}

.taxGiftItemBtn {
    margin: 0 auto 20px;
}

.taxGiftItemBtn:last-child {
    margin: 0 auto;
}

@media screen and (min-width:768px) {

    .venueBtnBox {
        flex-direction: row;
    }

    .venueIntroTxt {
        text-align: center;
    }

    .venueSpecialBox {
        flex-direction: row;
        justify-content: space-between;
        gap: initial;
    }

    .venueSpecialTxtArea {
        width: 47%;
    }

    .venueSpecialTtl {
        font-size: 18px;
        text-align: start;
    }

    .venueSpecialImgArea {
        width: 50%;
    }

    .taxGiftBoxTxt {
        text-align: center;
    }

    .taxGiftList {
        flex-direction: row;
        /* justify-content: space-between; */
        align-items: flex-start;
    }

    .taxGiftListItem {
        max-width: 380px;
        /* height: 444px; */
        height: 420px;
    }

}

@media screen and (min-width:1024px) {

    .venueBtnBox {
        margin: 0 auto 80px;
    }

    .venueIntroTxt {
        margin: 0 auto 80px;
    }

    .venueSpecialBox {
        margin: 0 auto 60px;
    }

    .venueSpecialTxtArea {
        width: 45%;
    }

    .venueSpecialTtl {
        margin: 0 0 20px;
        font-size: 24px;
    }

    .venueSpecialImgArea {
        width: 50%;
    }

    .taxGiftBox {
        margin: 0 0 60px;
        padding: 40px 15px 60px;
        border-radius: 40px;
    }

    .taxGiftBoxTxt {
        margin: 0 auto 40px;
    }

}