body {
            background-color: #FDFBF7;
            color: #6B5442;
            /* 全体のベース文字サイズを少し大きめに */
            font-size: 1.1rem;
        }

        /* スライドショー用CSS追加 */
        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            animation: fadeZoom 24s infinite;
        }

        /* 美味しそうに見える温かみのあるブラウンのオーバーレイ */
        .hero-slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(74, 50, 33, 0.3), rgba(74, 50, 33, 0.6));
        }

        .hero-slide:nth-child(1) {
            background-image: url('img/cookie.png');
            /* クッキー */
            animation-delay: 0s;
        }

        .hero-slide:nth-child(2) {
            background-image: url('img/egg.png');
            /* 卵 */
            animation-delay: 6s;
        }

        .hero-slide:nth-child(3) {
            background-image: url('img/tensai.png');
            /* てんさい糖 */
            animation-delay: 12s;
        }

        .hero-slide:nth-child(4) {
            background-image: url('img/weekend.png');
            /* ウィークエンドシトロン */
            animation-delay: 18s;
        }

        @keyframes fadeZoom {
            0% {
                opacity: 0;
                transform: scale(1);
            }

            10% {
                opacity: 1;
            }

            25% {
                opacity: 1;
                transform: scale(1.03);
            }

            35% {
                opacity: 0;
                transform: scale(1.05);
            }

            100% {
                opacity: 0;
                transform: scale(1);
            }
        }

        .text-vertical {
            writing-mode: vertical-rl;
            text-orientation: upright;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 40px;
            height: 3px;
            background-color: #AA4601;
            margin: 20px auto 0;
            border-radius: 2px;
        }