/* 小さな文字 */
.small-1 {
    font-size: 0.8em; /* 小1 */
}

.small-2 {
    font-size: 0.9em; /* 小2 */
}

.small-3 {
    font-size: 1em; /* 小3 */
}

.small-4 {
    font-size: 1.1em; /* 小4 */
}

.small-5 {
    font-size: 1.2em; /* 小5 */
}

/* 大きな文字 */
.large-1 {
    font-size: 1.2em; /* 大1 */
}

.large-2 {
    font-size: 1.4em; /* 大2 */
}

.large-3 {
    font-size: 1.6em; /* 大3 */
}

.large-4 {
    font-size: 1.8em; /* 大4 */
}

.large-5 {
    font-size: 2em; /* 大5 */
}

/* 太字 */
.bold {
    font-weight: bold;
}

/* 斜体 */
.italic {
    font-style: italic;
}

/* 取り消し線 */
.strike {
    text-decoration: line-through;
}

/* 下線 */
.underline {
    text-decoration: underline;
}

/* サイコロ */
.dice-6, .dice-100 {
    font-weight: bold;
    color: red;
}

/* サイコロのサイズを大きく */
.dice-6 {
    font-size: 1.2em;
}

.dice-100 {
    font-size: 1.4em;
}
