body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #fffaf0;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* 横スクロール防止 */
}

header {
    background-color: #fffae5; /* やさしいイエロー */
    padding: 20px;
    text-align: center;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.logo {
    width: 100px; /* ロゴのサイズ調整 */
    height: auto;
}

.catchphrase {
    font-size: 18px;
    color: #ff9900;
    font-weight: bold;
    font-family: "Arial", sans-serif;
    background: #fff5cc; /* ほんのり黄色の背景 */
    padding: 10px 15px;
    border-radius: 10px; /* ふんわり感 */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* ほんのり影 */
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .header-content {
        flex-direction: column; /* スマホでは縦並び */
    }
    .logo {
        width: 80px; /* スマホ用に少し小さく */
    }
}


.main-visual img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.menu {
    margin: 40px 0;
}

.menu h2 {
    font-size: 24px;
    color: #ff9900;
}

.menu-items {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.menu-item {
    width: 250px;
    text-align: center;
}

.menu-item img {
    width: 100%;
    border-radius: 10px;
}

.menu-item p {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.store-info table {
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: #fff;
}

.store-info th, .store-info td {
    border: 1px solid #ff9900;
    padding: 10px;
    text-align: left;
}

.store-info th {
    background-color: #ffcc66;
    width: 30%;
    text-align: center;
}

.store-info td {
    width: 70%;
}

footer {
    background-color: #ffcc66;
    padding: 10px 0;
    margin-top: 40px;
}

footer p {
    font-size: 14px;
    color: #333;
}
@media screen and (max-width: 768px) {
    .catchphrase {
        display: none !important;
    }
}

