
        .tips-container {
            max-width: 1200px;
            width: 100%;
            background-color: #ffffff;
            padding: 10px;
            box-sizing: border-box;
        }

        /* ヘッダー部分（タイトルとタグ） */
        .tips-header-area {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
            gap: 15px;
        }

        .tips-title {
            font-size: 22px;
            font-weight: bold;
            line-height: 1.4;
            margin: 0;
            color: #2c2c2c;
        }

        .tips-tag-1 {
            background-color: #CBE6B2;
            color: black;
            font-size: 12px;
            font-weight: bold;
            padding: 6px 12px;
            border-radius: 4px;
            white-space: nowrap;
        }

        .tips-tag-2 {
            background-color: #FFFAD1;
            color: black;
            font-size: 12px;
            font-weight: bold;
            padding: 6px 12px;
            border-radius: 4px;
            white-space: nowrap;
        }

        .tips-tag-3 {
            background-color: #FFD1D7;
            color: black;
            font-size: 12px;
            font-weight: bold;
            padding: 6px 12px;
            border-radius: 4px;
            white-space: nowrap;
        }

        .tips-tag-4 {
            background-color: #C6EEDD;
            color: black;
            font-size: 12px;
            font-weight: bold;
            padding: 6px 12px;
            border-radius: 4px;
            white-space: nowrap;
        }

        .tips-tag-5 {
            background-color: #FFE9D5;
            color: black;
            font-size: 12px;
            font-weight: bold;
            padding: 6px 12px;
            border-radius: 4px;
            white-space: nowrap;
        }

        .tips-tag-6 {
            background-color: #E8D3F3;
            color: black;
            font-size: 12px;
            font-weight: bold;
            padding: 6px 12px;
            border-radius: 4px;
            white-space: nowrap;
        }

        .tips-tag-7 {
            background-color: #DFF5D6;
            color: black;
            font-size: 12px;
            font-weight: bold;
            padding: 6px 12px;
            border-radius: 4px;
            white-space: nowrap;
        }

        .tips-tag-8 {
            background-color: #C3D4F3;
            color: black;
            font-size: 12px;
            font-weight: bold;
            padding: 6px 12px;
            border-radius: 4px;
            white-space: nowrap;
        }

        /* リード文 */
        .tips-lead-text {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
        }

        /* フッター（会社情報） */
        .tips-footer-text {
            font-size: 16px;
            color: #666;
            text-align: center;
            border-top: 1px solid #eee;
            padding-top: 25px;
            letter-spacing: 0.5px;
        }


        /* レスポンシブ対応 */
        @media (max-width: 600px) {
            .tips-header-area {
                flex-direction: column;
                gap: 10px;
            }
            .tips-title {
                font-size: 18px;
            }
            .tips-container {
                padding: 20px;
            }
        }