@charset "UTF-8";
/* 共通部分
------------------------------------*/
html{
    font-size: 100%;
}
img{
    max-width: 100%;
}
body{
    font-family: Arial,Hiragino Sans,Hiragino Kaku Gothic ProN,Meiryo,sans-serif;
    background-color: rgb(255, 254, 235);
}
a{
    text-decoration: none;
    color: black;
}
.container{
    overflow: auto;
    scroll-snap-type: y mandatory;
    height: 100vh;
}
.snap{
    scroll-snap-align: start;
}

/* HOME
------------------------------------*/
#home{
    background-image: url(../img/business-1869127_1920.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
}
.home-title{
    font-family: "Whisper", cursive;
    font-weight: 700;
    font-style: normal;
    font-size: 5rem;
    color: white;
    text-shadow: 2px 2px 2px #000;
    padding-top: 30vh;
    position: relative;
    display: inline-block;
    z-index: 1;
}
.home-title::after{
    position: absolute;
    display: block;
    content: "";
    height: 5px;
    width: 100%;
    background-color: red;
    top: 45vh;
    z-index: -1;
}
.home-box{
    text-align: center;
}
.nav-list{
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    padding-top: 4%;
}
.nav-list li{
    margin: 0 15px;
}
.nav-list li a{
    color: white;
    text-shadow: 2px 1px 1px #000;
    font-size: 1.3rem;
    transition: all .5s;
    text-decoration: underline;
    text-decoration-color: red;
    font-size: 1.1rem;
}
.nav-list li a:hover{
    opacity: .8;
    color: red;
}

/* about
------------------------------------*/
#about{
    background-image: url(../img/elaine-casap-qgHGDbbSNm8-unsplash.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
}
.about-box{
    display: inline-block;
    background-color: rgb(255, 255, 255,0.8);
    margin-left: 4%;
    margin-right: 4%;
    padding: 2% 5%;
    margin-top: 15vh;
    text-align: center;
}
.about-box h2{
    border-bottom: 4px dotted red;
    margin-bottom: 2%;
    font-family: "Whisper", cursive;
    font-weight: 700;
    font-size: 3.5rem;
    font-style: normal;

}
.about-box p{
    margin-bottom: 3%;
}

/* MENU
------------------------------------*/
#menu{
    background-image: url(../img/meal-2834549_1920.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
}

.menu-box{
    background-color: rgb(255, 255, 255,0.8);
    position: absolute;
    width: 60vw;
    top: 30vh;
    left: 0;
}
.menu-text h3{
    font-family: "Whisper", cursive;
    font-weight: 700;
    font-size: 3rem;
    font-style: normal;
    text-align: center;
}
.menu-text h4{
    text-align: center;
}

.menu-list li{
    list-style-type: none;
    position: relative;
    line-height: 1.7;
}
.menu-list li::before{
    position: absolute;
    content: '';
    top: 4px;
    left: -15px;
    width: 15px;
    height: 15px;
    border-top: 7.5px solid transparent;
    border-right: 7.5px solid transparent;
    border-bottom: 7.5px solid transparent;
    border-left: 7.5px solid black;
}
.menu-list{
    width: 30vw;
    margin: 0 auto;
    margin-top: 4%;
    padding-bottom: 2%;
}

/* SHOP
------------------------------------*/
#shop{
    padding-top: 1%;
    height: 100vh;
}
.shop-text{
    margin: 0 10%;
    background-color: #fff;
    position: relative;
}
.shop-box img{  
    margin: 0 auto;
    height: 100px;
    width: 100px;
    border-radius: 50%/50%;
}
.shop-text h3{
    font-family: "Whisper", cursive;
    font-weight: 700;
    font-size: 3.5rem;
    font-style: normal;
    text-align: center;
}
.shop-text h4{
    text-align: center;
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.shop-info{
    margin-top: 10%;
    padding-bottom: 3%;
    display: flex;
    flex-wrap: wrap;
    font-size: .9rem;
}
.shop-info dt{
    width: 100%;
    margin: 1% 2%;
}
.shop-info dd{
    width: 100%;
    margin: 1% 2%;
}
.shop-info span{
    margin-right: 5px;
}
.sns-box{
    text-align: center;
    margin-top: 1%;
}
.sns-box a{
    margin: 2% 2%;
}
/* map
------------------------------------*/
#map{
    height: 100vh;
}

/* pc向き(スマホmin-width)
------------------------------------*/
@media(min-width: 700px){
    /* HOME
------------------------------------*/
    #home{
        background-size: cover;
    }
    .wrapper{
        max-width: 800px;
        margin: 0 auto;
    }
    .home-title{
        font-size: 7rem;
    }
    .home-title::after{
        height: 7px;
        width: 100%;
        top: 52vh;
    }
    .nav-list li a{
        font-size: 1.6rem;
    }
        /* ABOUT
------------------------------------*/
    .about-box h2{
        font-size: 6rem;

    }
        /* menu
------------------------------------*/
    .menu-text h2{
        font-size: 6rem;
    }
        /* shop
------------------------------------*/
    .about-box h2{
        font-size: 5rem;
    }
    .shop-info{
        flex-wrap: wrap;
        width: 100%;
        margin-top: 3%;
    }
    .shop-text h4{
        text-align: center;
        position: absolute;
        top: 24%;
    }
    .shop-box img{  
        margin-bottom: 2%;
        height: 130px;
        width: 130px;
    }
    .shop-info dt{
        width: 35%;
    }
    .shop-info dd{
        width: 55%;
    }

    .sns-box {
        margin-top: 3%;
    }
    
    



}
