@charset "UTF-8";

html {
    font-size: 24px;
}

@media (max-width: 1440px) {
    html {
        font-size: calc((100vw - 320px) / 140 + 16px);
    }
}

body {
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: 1rem;
    text-align: center;
    background-image: url('../images/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* スクロールしても固定 */
}

p {
    margin: 1.5rem 0;
    font-size: 1rem;
    line-height: 1.5;
}

.logo {
    width: 90%;
    max-width: 1000px;
    margin: 20px auto;
}

.menu-title {
    font-size: 1.8rem;
    font-weight: lighter;
    color: #764C3F;
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 10px;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-grid img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.menu-grid img:hover {
    transform: scale(1.03);
}