@charset "utf-8";
html {
    font-size: 100%;
}

body {
    background-color: #fff;
    font-family: 'Battambang', serif;
    min-width:100vw;
}

a {
    color:#24292E;
    text-decoration: none;
}

h2 {
    color:#383E45;
    border-bottom: 1px solid #383E45;
    display: inline-block;
    margin-bottom:66.29px;
    font-size:32px;
}

ul {
    list-style:none;
}

section {
    margin-left:auto;
    margin-right:auto;
    margin-bottom:67px;
    text-align:center;
}

footer {
    text-align:center;
    font-family:'ABeeZee';
    font-size:8px;
}

.inner {
    width:858px;
    max-width:100%;
    margin:0 auto;
}

header {
    display:flex;
    justify-content: space-between;
    align-items: center;
    width:100%;
    height:65px;
    padding:40px;
}

header ul {
    display: flex;
}

header ul li {
    margin-left: 20px;
}

header .nav-item {
    font-size: 14.4px;
}

.hamburger {
    display:none;
}

.header-img {
    width:100%;
    height:598px;
    object-fit:cover;
    margin-bottom:115px;

}

.info{
    justify-content: center;
    display: flex;
}

.menu{
    display: flex;
    column-gap: 17.6px;
}

.info-owner{
    width:468px;
    margin-left:62px;
    text-align:left;
}

.info-owner-name{
    font-size: 20px;
    margin-bottom:10px;
}

.menu-items{
    width:274.4px;
    font-family: 'Hiragino Kaku Gothic ProN','Hiragino Sans';
}

.menu-item-title{
    font-size: 16px;
    font-weight: bold;
    margin-top:30px;
    margin-bottom:10px;
}

.location-img{
    width:100%;
}

@media screen and (max-width:480px) {

img {
    margin: auto;
    display: block;
}

nav ul{
    display: none;
}

.hamburger {
    display: block;
}

.hamburger {
    position: absolute;
    top:18px;
    right:17px;
    cursor:pointer;
    width:32px;
    height:24px;
    z-index:10;
}

.hamburger span{
    display: block;
    position: absolute;
    width: 100%;
    border-bottom: solid 1px #383E45;
    transition: 0.3s;
}

.hamburger span:nth-of-type(1) {
    top:4px;
}

.hamburger span:nth-of-type(2) {
    top:15px;
}

.hamburger span:nth-of-type(3) {
    top:25px;
}

.hamburger.open span:nth-of-type(1) {
    top:10px;
    transform: translateY(6px) rotate(-33deg);
}

.hamburger.open span:nth-of-type(2){
    opacity:0;
}

.hamburger.open span:nth-of-type(3){
    top:22px;
    transform:translateY(-6px) rotate(33deg);
}

.info{
    display: block;
}

.info-owner{
    width:100%;
    margin-left:0px;
    text-align:center;
}

.info-owner-name{
    text-align: center;
    margin-top:23px;
    margin-bottom:53px;
}

.menu{
    display: block;
}

.menu-items{
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 60px;
}

}