@charset "utf-8";


.title {
    height: 310px;
    background-image: url(images/menu/menu背景.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-shadow: 1px 1px 10px #4b2c14;
}
.title h1 {
    font-family: 'Montserrat' sans-serif;
    font-size: 32px;
    font-weight: bold;
}
.title p {
    font-size: 14px;
    margin-top: 15px;
}

*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
     font-family: "Shippori Mincho", serif;
     font-weight: 400;
     font-style: normal;
    font-size: 16px;
    color: #000000;
    line-height: 1;
    background-color: #ffffff;
}
img {
    max-width: 100%;
}

.header-inner {
    max-width: 1200px;
    height: 110px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-menu ul {
    display: flex;
}
.site-menu ul li {
   margin: 20px 20px 20px 40px;
}
.site-menu ul li a {
    font-weight: bold;
}
.site-menu a {
    transition: opacity 0.3s ease;
}
.site-menu a:hover {
    opacity: 0.4;
}
.toggle-menu-button {
    display: none;
}



.item-list {
    width: 930px;
    max-width: 90%;
    margin-top: 75px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, 240px);
    column-gap: 95px;
    row-gap: 70px;
    justify-content: center;
}

.item-list li {
    position: relative;
    overflow: hidden;
}
.item-list .item-label {
    position: absolute;
    top: 0;
    left: calc(100% + 18px);
    font-size: 10px;
    white-space: nowrap;
    transform-origin: top left;
    transform: rotate(90deg);
}
.item-list li img {
        transition: transform 0.3s ease;
    }
    .item-list li:hover img {
        transform: scale(1.05);
    }
.item-list dl {
        margin-top: 20px;
    }
    .item-list dt {
        font-weight: bold;
    }
    .item-list dd {
        font-size: 13px;
        line-height: 20px;
        margin-top: 10px;
    }
    .item-list .price {
        font-weight: bold;
        margin-top: 15px;
    }




.footer {
    color: #ffffff;
    background-color: #24211b;
    padding-top: 30px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
}

.footer-tel {
    font-size: 26px;
    font-weight: bold;
    margin-top: 28px;
}
.footer-time {
    font-size: 13px;
    margin-top: 16px;
}
.copyright {
    font-size: 14px;
    font-weight: bold;
    margin-top: 90px;
}


@media (max-width: 800px) {
    .item-list {
        margin-top: 45px;
        row-gap: 40px;
    }
    
}