body {
    font-family: 'Noto Serif JP', serif; /* 和風のフォント */
    background-color: #f5f5f5; /* 背景色 */
    color: #333; /* テキスト色 */
    margin: 20px; /* 全体のマージン */
    padding: 0; /* パディングをリセット */
}

.image-container {
    text-align: center; /* 画像を中央揃え */
    margin-bottom: 20px; /* 画像とヘッダーの間にスペースを追加 */
    padding: 20px; /* 内側のパディング */
    border-radius: 10px; /* 角を丸くする */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 影を追加 */
}

.product-image {
    max-width: 100%; /* 画面幅に合わせて画像のサイズを調整 */
    height: auto; /* アスペクト比を保つ */
}

header {
    background-color: #b78a3a; /* 和風の色合い */
    color: white; /* テキスト色 */
    text-align: center; /* 中央揃え */
    padding: 20px; /* パディング */
    border-radius: 10px; /* 角を丸くする */
}

h1, h2 {
    margin-top: 20px; /* 上のマージン */
    margin-bottom: 10px; /* 下のマージン */
}

h2 {
    color: #b38a3e; /* 和モダンな金色 */
    margin-top: 20px; /* 上のマージン */
    margin-bottom: 10px; /* 下のマージン */
}

p, ol {
    color: #555; /* 段落とリストのテキスト色 */
    line-height: 1.5; /* 行間 */
    margin-bottom: 15px; /* 各段落の下にスペースを追加 */
}

li {
    text-align: left; /* リストのテキストを左揃え */
    margin-bottom: 5px; /* リスト項目の下にスペースを追加 */
}

main {
    background-color: white; /* メイン部分の背景色 */
    border-radius: 10px; /* 角を丸くする */
    padding: 20px; /* パディング */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 影を追加 */
}

footer {
    text-align: center; /* 中央揃え */
    padding: 15px; /* パディング */
    background-color: #b78a3a; /* 和風の色合い */
    color: white; /* テキスト色 */
    position: relative; /* 相対位置 */
    bottom: 0; /* 下に固定 */
    width: 100%; /* 幅100% */
    margin-top: 20px; /* 上のマージン */
}

/* スマホ用のスタイル */
@media (max-width: 600px) {
    body {
        margin: 10px; /* スマホ時のマージン */
        padding: 0; /* パディングをリセット */
    }

    header {
        padding: 15px; /* スマホ時のパディング */
    }

    main {
        padding: 15px; /* スマホ時のパディング */
    }

    h1 {
        font-size: 24px; /* ヘッダーのフォントサイズ */
    }

    h2 {
        font-size: 20px; /* サブヘッダーのフォントサイズ */
    }

    p, ol {
        font-size: 16px; /* 段落とリストのフォントサイズ */
    }
}
