/* footer */
.footer {
    padding: 0px 60px 100px;
}
.ft_wrap {
    border-radius: 50px;
    background-color: #333;
    overflow: hidden;
}
.ft_info {
    padding: 104px 180px 131px;
    color: #fff;
}
.ft_info h2 {
    text-align: center;
}
.come_box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 121px;
}
.ft_time {
    margin: 25px 0px 0px;
    display: flex;
    align-items: center;
    gap: 13px;
}
.ft_time > div {
    display: flex;
    flex-direction: column;
    gap: 53px;
    align-items: center;
}
.ft_time span {
    display: inline-block;
    width: 98px;
    border-radius: 50px;
    line-height: 30px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -1px;
    background-color: var(--mint);
    text-align: center;
}
.ft_time span:last-child {
    color: var(--text);
    background-color: #fff;
}
.ft_left > p {
    font-size: 20px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0px;
    margin: 41px 0px 91px;
}
.ft_tel {
    display: flex;
    align-items: center;
    gap: 20px;
}
.ft_come {
    display: flex;
    align-items: center;
    gap: 20px;
}
.ft_park {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0px 30px;
    padding: 20px 15px;
    color: var(--dark);
    background-color: var(--mint);
    border-radius: 20px;
}
.ft_park span {
    display: inline-block;
    width: 70px;
    border-radius: 50px;
    line-height: 40px;
    background-color: #fff;
    text-align: center;
}
#map {
    border-radius: 20px;
}
.ft_address {
    background-color: var(--mint);
    padding: 20px 0px;
}
.ft_address > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ft_address p {
    font-size: 14px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0px;
    color: #fff;
}
.ft_address p span {
    font-weight: 700;
}
.ft_address a:last-child {
    display: inline-block;
    color: var(--Text, #3b9da8);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    border-radius: 10px;
    background-color: #fff;
    line-height: 60px;
    padding: 0px 65px;
}

/* quick_menu */
.quick_menu {
    position: fixed;
    right: 98px;
    bottom: 55px;
    z-index: 102;
    display: flex;
    align-items: center;
    gap: 20px;
}
.quick_menu_box {
    position: relative;
}
.quick_menu_link {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    border-radius: 20px;
    padding: 0px 97px 0px 26px;
    gap: 32px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transition: opacity 0.3s;
}
.quick_menu_box.closed .quick_menu_link {
    opacity: 0;
    pointer-events: none;
}
.quick_menu_link > a {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.3px;
    width: max-content;
}
.quick_menu_btn {
    box-shadow: 0px 0px 10px 0px #8fa7cb;
    display: block;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.quick_menu > a {
    box-shadow: 0px 0px 10px 0px #8fa7cb;
    display: block;
    border-radius: 20px;
}
