
        body { background-color: #f8f9fa; font-family: 'Noto Sans JP', sans-serif; }
        
        /* メイン画像エリア */
        .hero-image-container {
            width: 100%;
            height: 300px;
            overflow: hidden;
            position: relative;
            background-color: #eee;
        }
        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        @media (min-width: 768px) {
            .hero-image-container { height: 400px; }
        }

        /* コンテンツエリア */
        .main-content-box {
            background-color: #333;
            color: white;
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
.main-text {
    font-size: 1.1rem;
    line-height: 1.8;
    white-space: pre-wrap; /* 改行はそのまま反映 */
    text-align: left;      /* ★強制的に左揃えにする */
    word-break: break-all; /* 長い英単語などが枠を突き抜けるのを防ぐ */
}

        /* テーブル */
        .info-table th {
            background-color: #f8f9fa;
            width: 30%;
            white-space: nowrap;
        }

        /* キャンペーン内容ボックス */
        .campaign-box {
            background-color: #fff4f4;
            border: 2px solid #dc3545;
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        /* ギャラリー画像の調整 */
        .gallery-img {
            aspect-ratio: 4/3;
            object-fit: cover;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .gallery-img:hover {
            opacity: 0.8;
        }
