*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    color: #333333;
    line-height: 2;
}

ul {
    list-style: none;
    padding-left: 0;
}

section {
    padding: 15px 0;
}

h2 {}

h3 {
    margin-top: 20px;
    margin-bottom: 0;
}

h3+p {
    margin-top: 0;
}

aside {
    display: none;
}

table,
table th,
table td {
    border: 1px solid #333;
    border-collapse: collapse;
    border-spacing: 0;
}

table th,
table td {
    padding: 5px 15px;
}

dd {
    margin-left: 0;
}

img {
    width: 100%;
}

.content {
    position: relative;
}

.wrapper {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
}

.point>li {
    position: relative;
    padding-left: 1em;
}

.point>li::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 0;
    width: 7px;
    height: 7px;
    background: #333333;
    border-radius: 50%;
}

.faq {
    background: #ececec;
    padding: 15px;
}

.faq dt {
    position: relative;
    padding-left: 1em;
    margin-bottom: 10px;
}

.faq dt::before {
    content: "Q";
    position: absolute;
    left: 0;
}

.faq dd {
    position: relative;
    padding-left: 1em;
}

.faq dd::before {
    content: "A";
    position: absolute;
    left: 0;
}

.gaiyou,
.curriculum {
    overflow-x: scroll;
}

.gaiyou-table {
    width: 1000px;
}

.gaiyou-table th {
    width: 150px;
}

.curriculum-table {
    width: 1200px;
}

.curriculum-table th:nth-of-type(1) {
    width: 100px;
}

.curriculum-table th:nth-of-type(2) {
    width: 200px;
}

.curriculum-table th:nth-of-type(3) {
    width: 300px;
}

.profile {
    display: flex;
    flex-direction: column;
}

.profile+.profile {
    margin-top: 50px;
}

.profile img {
    width: 100%;
    max-width: 200px;
}

.composition .img-wrapper {
    max-width: 870px;
    margin: 0 auto;
}

.u-pc-only {
    display: none;
}

.fixed {
    position: fixed;
}

.link-none a {
    text-decoration: none;
    color: #333333;
}

.cta {
    max-width: 500px;
    margin: 50px auto;
}

.cta a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #eca981;
    color: #fff;
    font-weight: 700;
}

.noto-serif {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
}

@media screen and (min-width: 1000px) {
    aside {
        display: block;
        position: absolute;
        top: 30px;
        left: 20px;
        padding: 15px;
        z-index: 10;
    }

    aside ul {
        margin: 0;
    }

    aside li {
        border-bottom: 1px solid #000;
        margin-bottom: 5px;
        padding-bottom: 5px;
    }

    section {
        padding: 30px 0;
    }

    .wrapper {
        padding: 0 200px;
    }

    .gaiyou {
        overflow-x: initial;
    }

    .gaiyou-table {
        width: 100%;
    }

    /* .gaiyou {
        overflow-x: initial;
    } */

    /* .gaiyou-table,
    .curriculum-table {
        width: 100%;
    } */

    .gaiyou-table th {
        width: 220px;
    }

    .profile {
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }

    .u-pc-only {
        display: block;
    }

    .u-sp-only {
        display: none;
    }
}

@media screen and (min-width: 1615px) {
    .curriculum {
        overflow-x: initial;
    }
}

