@media (max-width: 767px) {
    .pageMainVisual__title {
        width: 100%;
    }
}

.term {
    font-size: 1.8rem;
    width: calc(100% - 15px * 2);
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 767px) {
    .term {
        font-size: 1.6rem;
    }
}
.term__title {
    font-size: 2.4rem;
    font-weight: 700;
}
.term__text {
    margin-top: 30px;
}
.term__list {
    list-style-type: decimal;
    list-style-position: inside;
}
.term__item {
    padding-left: 1em;
    text-indent: -1em;
    margin-top: 30px;
}
.term__sublist {
    counter-reset: count 0;
}
.term__subitem {
    margin-top: 15px;
    padding-left: 1.3em;
    text-indent: -1.3em;
}
.term__subitem::before {
    content: "(" counter(count) ")";
    counter-increment: count 1;
}
.term__oItem {
    padding-left: 1em;
    text-indent: -1em;
}
.term__uItem {
    padding-left: 15px;
    text-indent: -15px;
}
.term__uItem::before {
    content: "";
    width: 5px;
    height: 5px;
    margin-right: 10px;
    margin-top: 5px;
    border-radius: 50%;
    background-color: #333;
    display: inline-block;
    vertical-align: text-top;
}
.term__nList {
    list-style-type: lower-alpha;
    list-style-position: inside;
}
.term__nItem {
    padding-left: 1em;
    text-indent: -1em;
}
.term__em {
    font-weight: 700;
}
.term__ex {
    margin-top: 10px;
    padding-left: 2em;
    text-indent: -2em;
}
.term__note {
    padding-left: 1em;
    text-indent: -1em;
}
.term__day {
    width: 150px;
    display: inline-block;
}
.term__right {
    text-align: right;
}