@charset "UTF-8";
/* ----------------------------------------
   index.css
---------------------------------------- */
#hero {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 54.54545vw;
    max-height: 600px;
    min-height: 250px;
    background: url("../img/index/bg_hero_01.jpg") no-repeat center center / cover;
}
#hero > div {
    max-width: 555px;
    max-height: 100%;
}
#hero > div #h1 {
    max-width: 417px;
    margin: 0 auto 50px;
    opacity: 0.0;
    transform: scale(0.97);
    transition: 1.8s all 0.5s ease-out;
}
#hero > div #h1.on {
    opacity: 1.0;
    transform: scale(1.0);
}
.restaurant {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
    height: 28.63636vw;
    max-height: 315px;
    min-height: 300px;
}
.restaurant .img {
    width: 62vw;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.restaurant .doc {
    width: 38vw;
    height: 100%;
}

.restaurant .doc a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.restaurant .doc a span {
    width: 50%;
}
#primrose {
    background: #f092b5;
}
#primrose .img {
    background-image: url("../img/index/bg_primrose_01.jpg");
}
#primrose .doc a {
    background: #f092b5;
}
#tohri {
    /*margin-top: 10px;*/
    background: #f7b000;
}
#tohri .img {
    background-image: url("../img/index/bg_tohri_01.jpg");
}
#tohri .doc a {
    background: #f7b000;
}
/* @media : PC */
@media screen and (max-width: 1100px) {
    #hero > div {
        width: 50.45455vw;
    }
    #hero > div #h1 {
        width: 37.90909vw;
        margin-bottom: 4.54545vw;
    }
}
@media screen and (min-width: 769px) {
    .sp {
        display: none;
    }
}
/* @media : SP */
@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
    #hero {
        height: auto;
        max-height: none;
        padding: 10vw 0;
    }
    #hero > div {
        width: 80vw;
    }
    #hero > div #h1 {
        width: 70vw;
        margin-bottom: 20px;
    }
    .restaurant {
        height: 50vw;
        max-height: none;
        min-height: 0;
    }
    .restaurant .img,
    .restaurant .doc {
        width: 50%;
    }
   /* #tohri {
        margin-top: 5px;
    }*/
}
@media screen and (max-width: 480px) {
    .restaurant .doc a span {
        width: 80%;
    }
}