.TokusyoPage {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;

    .PageTitle {
        text-align: center;
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 40px;
        color: #000;
    }

    .ContentTable {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 30px;

        .TableRow {
            display: table-row;

            .TableHeader {
                display: table-cell;
                background-color: var(--PrimaryColor);
                color: white;
                padding: 20px;
                border: 1px solid #ddd;
                font-weight: bold;
                vertical-align: top;
                width: 30%;
            }

            .TableData {
                display: table-cell;
                padding: 20px;
                border: 1px solid #ddd;
                vertical-align: top;
                line-height: 1.6;
                color: #333;
            }
        }
    }

    .ContactNote {
        font-size: 14px;
        color: #666;
        margin-top: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .TokusyoPage {
        padding: 20px 15px;

        .PageTitle {
            font-size: 24px;
            margin-bottom: 30px;
        }

        .ContentTable {
            display: block;

            .TableRow {
                display: block;
                margin-bottom: 20px;
                border: 1px solid #ddd;
                border-radius: 5px;
                overflow: hidden;

                .TableHeader {
                    display: block;
                    width: 100%;
                    background-color: var(--PrimaryColor);
                    color: white;
                    padding: 15px;
                    font-weight: bold;
                    border: none;
                }

                .TableData {
                    display: block;
                    width: 100%;
                    padding: 15px;
                    background-color: white;
                    border: none;
                }
            }
        }

        .ContactNote {
            font-size: 12px;
            margin-top: 15px;
        }
    }
}