body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    margin: 0;
    background-color: #f9f8f4;
    color: #333;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #d83c3c;
    color: white;
    text-align: center;
    padding: 20px 0;
    overflow: hidden; /* アニメーションで要素がはみ出さないように */
}

header h1 {
    margin: 0;
    font-family: 'M PLUS 1p', sans-serif; /* フォント適用 */
    font-size: 3.5em; /* サイズを大きく */
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3); /* 影を強調 */
    animation: slideInFromTop 1s ease-out forwards;
}

header p {
    font-family: 'M PLUS 1p', sans-serif; /* フォント適用 */
    font-size: 1.5em; /* サイズを大きく */
    animation: slideInFromTop 1s ease-out forwards;
    animation-delay: 0.5s; /* h1より少し遅れて開始 */
    opacity: 0; /* 初期状態では非表示 */
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

main h2 {
    text-align: center;
    color: #d83c3c;
    font-size: 2em;
    border-bottom: 3px solid #d83c3c;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

main h2 .date {
    font-size: 1.5em;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.item {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.item img {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
}

.item h3 {
    margin: 15px 0 10px;
    font-size: 1.2em;
}

.price {
    font-size: 1.2em;
    color: #d83c3c;
    font-weight: bold;
}

.price span {
    font-size: 2em;
}

#coupon {
    margin-top: 40px;
}

.coupon-box {
    background-color: #fffacd;
    border: 3px dashed #d83c3c;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
}

.coupon-box .discount {
    font-size: 2.5em;
    color: #d83c3c;
    font-weight: bold;
    margin: 10px 0;
}

.coupon-box .note {
    font-size: 0.9em;
    color: #555;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}

#access {
    margin-top: 40px;
    text-align: center;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #eee;
    margin-bottom: 20px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.address,
.hours {
    font-size: 1.1em;
    margin-bottom: 5px;
}
