:root {
    --main_color: #EE86A1;
    --second_color: #333333;
    --third_color: #FCEAEE;
    --fourth_color: #4D4D4D;
    --fifth_color: #52B5B0;
}

footer {
    background-color: var(--fourth_color);
}

.footer_top {
    padding-top: 80px;
    padding-bottom: 50px;
    border-bottom: 1px solid #fff;
}
.footer_top_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_logo {
    width: 242px;
    height: auto;
    margin-bottom: 30px;
}
.footer_top_txt {
    color: #fff;
    letter-spacing: 0.01rem;
}
.footer_top_txt p:first-child {
    margin-bottom: 10px;
}

.footer_male_link {
    position: relative;
    display: block;
    color: var(--second_color);
    text-decoration: none;
    background-color: #fff;
    padding: 10px 35px;
    margin-right: 20px;
    margin-bottom: 20px;
    width: 200px;
}
.footer_male_link::before {
    content: '';
    position: absolute;
    top: 22px;
    right: 10px;
    transform: rotate(-45deg);
    width: 7px;
    height: 1px;
    background: var(--second_color);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}
.footer_male_link::after {
    content: '';
    position: absolute;
    top: 18px;
    right: 10px;
    transform: rotate(45deg);
    width: 7px;
    height: 1px;
    background: var(--second_color);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.footer_male_link:hover {
    color: var(--second_color);
}
.footer_reservation_link {
    position: relative;
    display: block;
    color: #fff;
    text-decoration: none;
    background-color: var(--main_color);
    padding: 10px 44px;
    margin-right: 22px;
    width: 200px;
}
.footer_reservation_link::before {
    content: '';
    position: absolute;
    top: 22px;
    right: 10px;
    transform: rotate(-45deg);
    width: 7px;
    height: 1px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}
.footer_reservation_link::after {
    content: '';
    position: absolute;
    top: 18px;
    right: 10px;
    transform: rotate(45deg);
    width: 7px;
    height: 1px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.footer_reservation_link:hover {
    color: #fff;
}

.footer_bottom {
    padding-top: 30px;
    padding-bottom: 20px;
}
.footer_link_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}
.footer_link {
    color: #fff;
    text-align: center;
    letter-spacing: 0.01rem;
}
.footer_link:hover {
    color: #fff;
}
.footer_link span {
    display: block;
}
.footer_link span:first-child {
    margin-bottom: 5px;
}
.footer_sns_box {
    margin-bottom: 20px;
}
.footer_sns {
    display: block;
    width: 34px;
    height: 34px;
    margin-left: auto;
    margin-right: auto;
}
.footer_bottom_link_box {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
.footer_bottom_link {
    display: block;
    color: #fff;
    letter-spacing: 0.08rem;
}
.footer_bottom_link:hover {
    color: #fff;
}
.footer_bottom_link:nth-of-type(2) {
    margin-left: 15px;
    margin-right: 15px;
}
.footer_bottom_link:nth-of-type(2)::before {
    content: '/';
    margin-right: 15px;
}
.footer_bottom_link:nth-of-type(2)::after {
    content: '/';
    margin-left: 15px;
}
.copyright {
    text-align: center;
    color: #fff;
    letter-spacing: 0.08rem;
    font-size: 12px;
}

@media only screen and (max-width: 768px) {
    .footer_top_box {
        display: block;
    }
    .footer_top {
        padding-top: 50px;
        padding-bottom: 30px;
    }
    .footer_logo {
        width: 150px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }
    .footer_top_txt {
        font-size: 14px;
        text-align: center;
        margin-bottom: 30px;
    }
    .footer_male_link {
        margin-left: auto;
        margin-right: auto;
    }
    .footer_reservation_link {
        margin-left: auto;
        margin-right: auto;
    }
    .footer_link_list {
        flex-wrap: wrap;
        margin-bottom: 0px;
    }
    .footer_link_item {
        width: 50%;
        margin-bottom: 30px;
    }
    .footer_bottom_link_box {
        margin-bottom: 30px;
    }
    .footer_bottom_link {
        font-size: 12px;
    }
}