/* 1枚画像（ウィンドウ幅100%） */
        .single-image {
            margin-right: calc(50% - 50vw);
            margin-left: calc(50% - 50vw);
        }

        .single-image img {
            width: 100%;
            height: auto;
        }


        /* 情報ボックス（既存スタイル活用） */
        .info-box {
            background: #fff;
            border: 2px solid #FFE3E3;
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
        }

        .info-box h4 {
            color: #e04f54;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .info-box p {
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .info-box .highlight {
            color: #e04f54;
        }

        /* 重要なお知らせボックス */
        .notice-box {
            
        }

        /* フローステップ（既存スタイル活用） */
        .flow-section {
            text-align: left;
        }

        .flow-steps {
            display: flex;
            width: 100%;
            justify-content: center;
            gap: 40px;
            margin: 40px 0;
            flex-wrap: wrap;
            text-align: center;
        }

        .flow-step {
            background: white;
            border-radius: 15px;
            padding: 30px 20px;
            flex: 1;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .flow-step h4 {
            color: #e04f54;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .flow-step img {
            width: 200px;
            height: 200px;
            object-fit: contain;
            margin-bottom: 15px;
            border-radius: 10px;
        }

        .flow-step p {
            line-height: 1.6;
        }

        /* お願い事項リスト */
        .request-list {
            list-style: none;
            margin: 20px 0;
        }

        .request-list li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
            line-height: 1.6;
        }

        .request-list li::before {
            content: "●";
            color: #e04f54;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* 連絡先情報 */
        .contact-info {
            background: #e04f54;
            color: white;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            margin: 30px 0;
        }

        .contact-info h4 {
            margin-bottom: 15px;
        }

        .contact-info .phone-number {
            font-weight: bold;
            margin: 10px 0;
        }

        .contact-info .hours {
            opacity: 0.9;
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .single-image img {
            }

            .flow-steps {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .flow-step {
                max-width: 100%;
            }

          
        }