@charset "UTF-8";

.section_title {
    width: calc(100% - 1rem);
    margin: 0 auto 1.5em auto;
    color: var(--main);
    font-size: 125%;
    font-weight: 700;
    line-height: 1.7;
    display: flex;
    align-items: center;
    position: relative;
}
@media screen and (min-width: 768px){
    .section_title {
        font-size: 150%;
    }
}
.section_title span {
    border-bottom: 1px solid var(--main);
}
@media screen and (min-width: 768px){
    section > .inner {
        max-width: 914px;
    }
}
section small {
    font-size: 80%;
}
section table {
    width: 100%;
    margin-bottom: 3em;
    border-collapse: separate;
    border-spacing: 8px;
}
section table th,
section table td {
    padding: 1em;
}
section table thead th {
    width: 26%;
    background: var(--main);
    color: #fff;
    font-weight: 500;
    text-align: center;
}
section table thead th:nth-child(2) {
    width: 48%;
}
@media screen and (min-width: 992px){
    section table thead th {
        width: 28%;
    }
    section table thead th:nth-child(2) {
        width: 44%;
    }
}
section table tbody th,
section table tbody td {
    border: 1px solid #D6D6D6;
    font-weight: 400;
}
section table tbody td h3 {
    display: none;
}
@media screen and (min-width: 768px) and (max-width: 835px){
    section table tbody {
        font-size: 90%;
    }
}
@media screen and (max-width: 767px){
    section table thead {
        display: none;
    }
    section table tbody th,
    section table tbody td {
        display: list-item;
        list-style-type: none;
    }
    section table tbody th {
        margin-bottom: 4px;
        background: var(--main);
        border: 0;
        color: #fff;
        font-weight: 500;
    }
    section table tbody td {
        margin-bottom: 4px;
    }
    section table tbody td h3 {
        margin-bottom: 0.5em;
        color: var(--main);
        font-weight: 700;
        font-size: 100%;
        text-align: center;
        display: block;
    }
    section table tbody td h3 span {
        border-bottom: 1px solid var(--main);
    }
}
section ol.note {
    counter-reset: note 0;
    font-size: 87.5%;
}
section ol.note li {
    padding-left: 2.5em;
    list-style: none;
    position: relative;
}
section ol.note li::before {
    counter-increment: note 1;
    content: "※" counter(note);
    display: inline-block;
    position: absolute;
    left: 0;
}