h1,
h2 {
    color: #444;
    margin-top: 30px;
}

.command-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
    margin: 20px 0;
}

.command-table thead {
    display: none;
}

.command-table tr {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 16px;
    transition: transform 0.2s;
}

.command-table tr:hover {
    transform: translateY(-3px);
}

.command-table td {
    border: none;
    padding: 6px 0;
}

.command-table td:first-child {
    font-weight: bold;
    color: #5a4ae3;
    font-size: 1.1em;
}

.command-table code {
    background: #f0f0ff;
    padding: 3px 6px;
    border-radius: 6px;
    color: #4a3fb3;
}

h2 {
    font-size: 1.4em;
    color: #333;
    border-left: 6px solid #a5c8f3;
    padding-left: 10px;
    margin-top: 40px;
}

/* スマホ対応 */
@media (min-width: 768px) {
    .command-table tr {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
    }

    .command-table td {
        flex: 1;
        padding: 8px 12px;
    }

    .command-table thead {
        display: table-header-group;
        background: #d6ecf5;
    }

    .command-table th {
        padding: 12px;
        text-align: left;
    }
}

@font-face {
    font-family: 'x14y24pxHeadUpDaisy';
    src: url('../fonts/x14y24pxHeadUpDaisy.ttf') format('truetype');
}
code{
    font-family: "x14y24pxHeadUpDaisy";
}