@charset "UTF-8";

html{
    font-size: 62.5%;
}
body{
    padding: 30px;
    background-color: #f6f7fb;
    color: #fff;
    font-size: 1.2rem;
    font-family: "Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
}
*,*::after,*::before{
    box-sizing: border-box;
}
a:link,a:visited,a:hover,a:active{
    color: #7c5119;
    text-decoration: none;
}

.item{
    width: 180px;
    margin-bottom: 4px;
    padding: 8px;
    border-bottom: 3px solid #333;
    border-radius: 5px;
    background-color: #fff;
}
.img-block{
    width: 164px;
    height: 109px;
    overflow: hidden;
    background: #000;
}
.img-block-M{
    width: 348px;
    height: 146px;
    overflow: hidden;
    background: #000;
}
.img-block-L{
    width: 716px;
    height: 403px;
    overflow: hidden;
    background: #000;
}
.item > a img{
    width: 100%;
    transition: transform 0.3s linear;
}
.item > a:hover img{
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0.5;
}

.item .category{
    margin: 15px 9px 10px;
    color: #aaa;
    letter-spacing: 1px;
    font-family: "Trebuchet MS","Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
}
.item .category::before{
    content: "";
    display: inline-block;
    width: 19px;
    height: 19px;
    margin-right: 5px;
    border: 2px solid;
    border-radius: 50%;
    vertical-align: -5px;
}
.item .description{
    margin: 10px;
    line-height: 1.5;
}
.item > a{
    display: block;
    margin: -8px -8px -11px;
    padding: 8px 8px 11px;
    border-radius: inherit;
    color: #777;
    transition: all 0.3s;
}
.item > a:hover{
    box-shadow: 0 0 6px -1px rgba(0,0,0,0.3);
    opacity: 0.8;
}
.item-maindish,
.item-maindish .category::before{
    border-color: #ffc0cb;
}
.item-appetizer,
.item-appetizer .category::before{
    border-color: #76c047;
}
.item-column,
.item-column .category::before{
    border-color: #fff100;
}
.item-breaktime,
.item-breaktime .category::before{
    border-color: #c1efff;
}
.item-M{
    width: 364px;
}
.item-M img{
    height: 146px;
}
.item-L{
    width: 732px;
}
.item-L img{
    height: 403px;
}

.header{
    padding: 25px;
    border-bottom: none;
    text-align: center;
}
img.logo{
    width: 136px!important;
    height: 136px!important;
    transition: transform 0.3s;
    transition: -webkit-transform 0.3s;
}
img.logo:hover{
    -webkit-transform: rotate(360deg)!important;
    transform: rotate(360deg)!important;
}
.nav{
    margin: 35px auto 10px;
}
.nav-item{
    margin-top: 20px;
    text-align: center;
    letter-spacing: 1px;
    font-weight: bold;
    font-size: 1.3rem;
}
.nav-item a{
    display: inline-block;
}
.nav-item a::after{
    content: '';
    display: block;
    width: 0;
    margin: 6px auto 0;
    border-bottom: 1px solid #7c5119;
    transition: width 0.3s ease-in-out;
}
.nav-item a:hover::after{
    width: 100%;
}
.item{
    overflow: hidden;
}
.item > a::before{
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    display: block;
    height: 109px;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    transition: all 0.3s linear;
}
.item > a:hover::before{
    opacity: 1;
}
.item-M > a::before{
    height: 146px;
}
.item-L > a::before{
    height: 403px;
}

.item > a::after{
    content: 'MORE';
    position: absolute;
    top: 43.5px;
    left: 150%;
    display: block;
    width: 100px;
    margin-left: -50px;
    color: #fff;
    padding: 8px;
    border: 3px solid #fff;
    text-align: center;
    letter-spacing: 1px;
    font-size: 1.6rem;
    font-family: "Trebuchet MS","Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
    transition: all 0.3s ease-in-out;
}
.item > a:hover::after{
    left: 50%;
}
.item-M > a::after{
    top: 63px;
}
.item-L > a::after{
    top: 190.5px;
}































