    section.docs { margin-bottom: 3rem; }
    section.docs:first-child { margin-top: 0; padding-top: 0; }
    section.docs .banner {
        margin: 1rem 0;
        min-height: 140px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        position: relative;
        display: flex;
        justify-content: flex-end;
        flex-direction: column;
    }

    @media only screen and (min-width: 768px) {
        section.docs .banner {
            margin: 2rem 0;
            min-height: 200px;
        }
    }

    section.docs h2 {
        color: var(--red-dark);
        text-align: center;
        margin: 4rem 0 1rem
    }
    section.docs p.sub-h2 {
        text-align: center;
        margin-bottom: 2rem;
        color: var(--gray-700)
    }
    section.docs p.sub-h2::before {
        content: "";
        display: block;
        width: 20px;
        border-top: 1px solid #000;
        margin: 20px auto;
    }

    section.docs h3 {
        margin: 3rem 0 2rem 0;
        display: flex;
        align-items: center;
    }

    section.docs h3 i {
        color: var(--red-dark);
        font-size: 1.25rem;
        margin-right: .5rem
    }

    section.docs .red-head {
        color: var(--red-dark);
        display: flex;
        align-items: center;
    }
    section.docs .red-head i {
        color: var(--red);
        font-size: 1rem;
        margin-right: .5rem
    }

    section.docs h4 {
        margin-bottom: 1rem
    }

    ol.-ol {
        text-align: left;
        list-style: none;
        counter-reset: li
    }
    ol.-ol > li::before {
        content: counter(li);
        color: var(--red-dark);
        width: 45px;
        padding-right: 10px;
        font-size: 40px;
        font-family: var(--font-serif);
        line-height: 1;
        text-align: right;
        position: absolute;
        margin-left: -55px;
        top: -5px;
    }
    ol.-ol > li::after {
        content: "";
        background-color: #fff;
        width: 30px;
        height: 30px;
        border-bottom: 1px solid var(--red-dark);
        -webkit-transform: rotate(135deg);
        position: absolute;
        z-index: 1;
        top: 22px;
        left: -30px;
    }
    ol.-ol > li {
        counter-increment: li;
        position: relative;
        padding-bottom: 1rem
    }
    ol.-ol .title {
        font-weight: bold;
        font-size: 20px;
        color: #333
    }
    ol.-ol ul {
        margin: 0;
    }

    ol.-step {
        text-align: left;
        list-style: none;
        counter-reset: li
    }
    ol.-step li::before {
        content: counter(li);
        border: solid 1px var(--red-dark);
        border-radius: 2px;
        color: var(--red-dark);
        text-align: center;
        font-weight: bold;
        width: 26px;
        height: 26px;
        position: absolute;
        z-index: 1;
        top: 1px;
        left: -2rem;
        line-height: 22px
    }
    ol.-step li {
        counter-increment: li;
        position: relative;
        padding-bottom: 1rem
    }

    ul.-ico-box {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
    }
    ul.-ico-box li {
        flex: 1 0 0;
        min-width: 150px;
        border: solid 1px var(--gray-200);
        padding: 2rem 0;
        margin: -1px 0 0 -1px;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: var(--gray-700);
        line-height: 1.5;
        font-size: 14px;
    }
    ul.-ico-box li img {
        margin-bottom: 1rem
    }

    .review {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
    }
    .review li {
        text-align: center;
        flex-grow: 1;
        border: 1px solid var(--line);
        margin-top: -1px;
        margin-left: -1px;
        padding: 2rem 1rem;
    }
    .review li p {
        margin-top: 1rem;
        font-size: 11pt;
        line-height: 1.5
    }
    .review li p.user-name {
        color: var(--gray-600);
    }

    .carousel-item img {
        height: 400px;
        object-fit: cover;
    }

    .doc-table {
        border-top: solid 2px var(--red-dark);
        font-size: small;
        line-height: 1.5;
    }
    .doc-table caption {
        caption-side: top;
        font-weight: bold;
    }
    .doc-table th {
        background-color: var(--gray-100)
    }
    .doc-table th:first-child {
        white-space: nowrap;
    }
    .doc-table th, .doc-table td {
        vertical-align: middle;
    }
    .doc-table.first-head tbody tr td:first-child,
    .doc-table.first-head thead tr th:first-child {
        font-weight: bold;
        text-align: right;
    }
    .doc-table.-center th, .doc-table.-center td {
        text-align: center;
    }
    .doc-table ul, .doc-table ol {
        margin: 0
    }

    .procedure {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .procedure li {
        flex: 1 0 40%;
        border: solid 1px var(--gray-200);
        background-color: #fff;
        padding: 2rem 1rem;
        margin: .5rem;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        color: var(--gray-700);
        line-height: 1.5;
        font-size: 14px;
        position: relative;
    }
    .procedure li:not(:last-child):after, .procedure li:not(:last-child):before {
        left: 100%;
        top: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
    }

    .procedure li:not(:last-child):after {
        border-color: rgba(136, 183, 213, 0);
        border-left-color: #fff;
        border-width: 10px;
        margin-top: -10px;
    }
    .procedure li:not(:last-child):before {
        border-color: rgba(194, 225, 245, 0);
        border-left-color: var(--gray-200);
        border-width: 12px;
        margin-top: -12px;
    }
    .procedure li img {
        margin-bottom: 1rem
    }

    .image-wrap img {
        width: 100%;
    }
    .image-wrap img.pc {
        display: none;
    }

    @media only screen and (min-width: 576px) {
        .procedure li {
            flex: 1 0 30%;
        }
        .review li {
            flex: 1 0 33.333%;
        }
        .carousel-item img {
            height: 600px
        }

        .doc-table {
            font-size: medium;
        }
        .image-wrap img.pc {
            display: block;
        }
        .image-wrap img.mobile {
            display: none;
        }
    }


    ul.school-list {
        list-style: none;
        padding: 0;
        margin: 2rem 0 0 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    ul.school-list li {
        flex: 16.6666% 0 0;
        height: 140px;
        min-width: 150px;
        min-height: 150px;
        border: solid 1px var(--gray-200);
        background-color: #fff;
        padding: 2rem 0;
        margin: -1px 0 0 -1px;
        display: flex;
        justify-content: center;
        align-items: center
    }
    ul.school-list li a {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    ul.school-list li img {
        width: auto;
        height: auto;
        max-width: 80%;
        max-height: 90px;
        object-fit: contain;
        transition: transform .2s;
    }
    ul.school-list li img.school-logo--light {
        filter: invert(1);
    }
    ul.school-list li:hover img {
        /*transform: scale(1.3);*/
    }

    .-rc {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .-rc li {
        display: flex;
        margin-bottom: -1px;
    }
    .-rc .-left {
        background-color: #f7f7f7;
        flex: 1;
        padding: 1rem;
        border: solid 1px var(--line);
        display: flex;
        align-items: center;
    }
    .-rc .-left span {
        line-height: 1;
        display: block;
        width: 50px
    }
    .-rc .-right {
        flex: 2;
        padding: 1rem;
        border: solid 1px var(--line);
        margin-left: -1px;
    }
    .-rc .-right a {
        display: inline-block;
    }
    .-rc .-right a:not(:last-child):after {
        content: ',';
    }

    li.star {
        list-style:none;
    }
    li.star:before {
        content: '*';
        color: var(--red-dark);
        font-weight: bold;
        font-size: large;
        vertical-align: middle;
        margin-left: -1rem;
        margin-right: .6rem
    }
