
        
        .reason-section {
            padding: 80px 0;
        }
        
        .reason-item {
            margin-bottom: 60px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .reason-item:last-child {
            margin-bottom: 0;
        }
        
        .reason-content {
            flex: 1;
            min-width: 300px;
            padding: 0 30px;
        }
        
        .reason-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .reason-image img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .reason-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            background-color: #0056b3;
            color: white;
            border-radius: 50%;
            font-size: 24px;
            font-weight: bold;
            margin-right: 15px;
            vertical-align: middle;
        }
        
        .reason-title {
            display: inline-block;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            vertical-align: middle;
        }
        
        .reason-description {
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .reason-point {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 5px;
            margin-top: 20px;
        }
        
        .reason-point h4 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #0056b3;
        }
        
        .reason-point ul {
            margin: 0;
            padding-left: 20px;
        }
        
        .reason-point li {
            margin-bottom: 8px;
        }
        
        /* 偶数番目の理由は画像と文章の順序を入れ替え */
        .reason-item:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .reason-item {
                flex-direction: column-reverse !important;
            }
            
            .reason-content, .reason-image {
                width: 100%;
                padding: 0;
                margin-bottom: 30px;
            }
        }