@charset "UTF-8";
/*======================================================= 
 footer用スタイル
=======================================================*/

/*==================== bottom_reserve ====================*/
.bottom-reserve{
    position: relative;
}
.bottom-reserve img{
    width: 100%;
}
.reserve-cta{
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.reserve-cta a{
    position: relative;
    max-width: 350px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #df0716;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    border-radius: 10px;
    transition: 0.5s;
    padding-top: 5px;
    margin: 0 auto 10px auto;
}
.reserve-cta a span{
    position: absolute;
    width: 12em;
    top: -1em;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    color: #df0716;
    font-size: 14px;
    border-radius: 30px;
    padding: 5px 10px;
}
.reserve-cta a:hover{
    transform: translateY(-3px);
    color: #fff;
}


.footer{
    width: 100%;
    box-shadow: 0px -3px 3px #eee;
    padding: 0;
}
/*==================== footer-top-area ====================*/
.footer-top-area .inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.footer-btn{
    display: block;
    width: 160px;
    background-color: #df0716;
    color: #fff;
    border: 2px solid #df0716;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    transition: 0.3s;
    padding: 10px;
}
.footer-btn:hover{
    background-color: #fff;
    color: #df0716;
}

/*==================== footer-menu-area ====================*/
.footer-menu-area{
    background-color: #343434;
    padding: 30px 0;
}
.footer-menu-block{
    display: flex;
    justify-content: space-between;
}
.footer-menu-item a,
.footer-menu-item p{
    display: block;
    color: #fff;
}
.footer-menu-item a:hover{
    color: #fff;
    opacity: 0.6;
}
.menu-head{
    font-weight: bold;
    padding-bottom: 10px;
}
.menu-body{
    display: block;
}
.menu-link{
    position: relative;
    padding-left: 1em;
    padding-bottom: 10px;
}
.menu-link::before{
    position: absolute;
    content: "";
    left: 0;
    top: 13px;
    width: 0.7em;
    height: 1px;
    background-color: #fff;
}

.sns, .application{
    border-top: 1px solid #fff;
    padding: 15px 10px;
}
.sns-area, .application-area{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}
.sns-area a, .application-area a{
    width: 35px;
}

/*==================== copy ====================*/
.copy{
    background-color: #000;
    color: #fff;
    font-size: 12px;
    text-align: center;
    padding: 10px 0;
}

/*1000px以下*/
@media screen and (max-width:1000px){
    .footer-top-area .inner{
        padding: 10px;
    }
    .footer-logo-area img{
        width: 180px;
    }
    .footer-btn{
        width: 150px;
    }
    .footer-menu-area{
        padding: 0;
    }
    .footer-menu-area .inner{
        padding: 0;
    }
    .footer-menu-block{
        display: block;
    }
    .menu-head{
        border-bottom: 1px solid #fff;
        padding: 15px;
    }
    .menu-head-open{
        position: relative;
    }
    .menu-head-open::before,
    .menu-head-open::after{
        position: absolute;
        content: "";
        top: 0;
        right: 15px;
        bottom: 0;
        width: 15px;
        height: 2px;
        margin: auto;
        background-color: #fff;
    }
    .menu-head-open::after {
        transform: rotate(-90deg);
        transition: transform 0.3s;
    }
    .menu-head-open.open::after {
        transform: rotate(0deg);
    }
    .menu-body{
        display: none;
        padding: 15px;
        border-bottom: 1px solid #fff;
    }
    .sns, .application{
        width: 50%;
    }
    .sns{
        border-top: 0;
    }
}

/*750px以下*/
@media screen and (max-width:750px){
    .bottom-reserve img{
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    
}

/*480px以下*/
@media screen and (max-width:480px){
    .reserve-cta a{
        width: 280px;
        height: 80px;
        font-size: 20px;
    }
    .reserve-cta p{
        font-size: 12px;
    }
}