/* 基本設定 */
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 20px;
}

/* 中央寄せコンテナ */
.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* ヘッダー */
header {
    text-align: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
}

h1 {
    font-size: 1.5em;
    font-weight: 700;
    margin-top: 10px;
    color: #555;
}

/* 各セクション共通 */
section {
    margin-bottom: 30px;
}

h2, h3 {
    text-align: center;
    font-weight: 700;
}

h2 {
    font-size: 1.4em;
    color: #d33;
    background-color: #fff3f3;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #f8d7da;
}

h3 {
    font-size: 1.2em;
    margin-top: 15px;
}

p {
    margin-top: 0;
    margin-bottom: 1em;
}

/* お知らせセクション */
h3{
    font-weight: 400;
}
.announcement p {
    text-align: center;
    font-size: 1.1em;
}

a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
.y-img {
    max-width: 400px;
    width: 100%;
    height: auto;

}
/* クーポンセクション */
.coupon {
    text-align: center;
}

.coupon-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.coupon-details {
    font-size: 0.9em;
    color: #666;
}

/* 補足情報セクション */
.info {
    font-size: 0.95em;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    border-left: 5px solid #ccc;
}

/* レスポンシブ対応 (スマートフォン向け) */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 20px;
    }

    h1 {
        font-size: 1.3em;
    }

    h2 {
        font-size: 1.2em;
    }
}

/* ▼▼▼ フッターのスタイルを追加 ▼▼▼ */
footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.8em;
    color: #888;
}

footer p {
    margin: 0;
    line-height: 1.6;
}

.footer-name {
    margin-bottom: 5px;
}