@charset "utf-8";


.title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
}
.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-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;
}


.shop-contents {
    width: 1080px;
    max-width: 90%;
    margin-top: 75px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.shop-item {
    flex-grow: 1;
    max-width: 765px;
}
.shop-item h2 {
    font-size: 22px;
    font-weight: bold;
    line-height: 30px;
}
.shop-item h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    background-color: #000000;
    margin-top: 20px;
}
.item-list {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, 220px);
    column-gap: 50px;
    row-gap: 40px;
}
.item-list li img {
    transition: transform 0.3s ease;
}
.item-list li:hover img {
    transform: scale(1.03);
}
 .item-list dl {
        margin-top: 20px;
    }
    .item-list dt {
        font-weight: bold;
    }
    .item-list dd {
        font-size: 13px;
        line-height: 20px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .item-list li {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .item-list .price {
        margin-top: auto;
    }
    .price {
        font-weight: 500;
    }

    .shop-menu {
        flex-shrink: 0;
        margin-right: 60px;
    }
    .shop-menu-inner {
        position: sticky;
        top: 30px;
        left: 0;
        right: 0;
    }
    .shop-menu-inner h2 {
        font-size: 18px;
        font-weight: bold;
    }
    .shop-menu-inner ul {
        list-style-type: disc;
        margin-top: 20px;
        margin-left: 20px;
    }
    .shop-menu-inner li {
        font-size: 14px;
        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-logo {
    display: block;
    width: 235px;
    margin-top: 90px;
}
.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) {
    .shop-contents {
        display: block;
        max-width: 100%;
        margin-top: 60px;
    }
    .shop-item {
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
    }
    .item-list {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 35px;
    }

    .shop-menu {
        background-color: #f8f8f8;
        padding-top: 50px;
        padding-bottom: 50px;
        margin-top: 60px;
        margin-right: 0;
    }
    .shop-menu-inner {
         max-width: 540px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
    }
}