<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*-------------------------------------------
Curriculum-year-plan
-------------------------------------------*/

.curriculum-year-plan {
    padding-bottom: 100px;
}

.year-plan-content-title {
    display: grid;
    place-content: center;
    height: 145px;
    background-color: #F9EBF1;
}

.year-plan-content-title img {
    width: 72px;
    height: 33px;
}

.year-plan-content-box {
    max-width: 1030px;
    padding: 40px 15px;
    margin: 0 auto;
}

.year-plan-content-text {
    margin-bottom: 49px;
}

.year-plan-content-sub-title {
    text-align: center;
    margin-bottom: 22px;
    color: #333333;
}

.curriculum .year-plan-content-sub-text {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
}

.curriculum .year-plan-content-schedule {
    text-align: center;
    font-size: 14px;
}

.year-plan-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 35px 20px;
}

.year-plan-item {
    width: 30%;
}

.year-plan-item-title {
    padding-top: 3px;
    padding-left: 12px;
    line-height: 35px;
    background-color: #F9EBF1;
    border-top: solid 1px rgba(51, 51, 51, 0.3);
    border-bottom: solid 1px rgba(51, 51, 51, 0.3);
    color: #333333;
}

.year-plan-item li:nth-child(2) {
    margin-top: 15px;
}

.year-plan-item li:nth-child(n+2) {
    font-size: 14px;
    margin-left: 8px;
    text-indent: -1em;
    padding-left: 1em;
    text-align: left;
}

/*-------------------------------------------
Curriculum-practice
-------------------------------------------*/
.curriculum-practice {
    padding-bottom: 77px;
    margin-bottom: 60px;
    background-color: #F9EBF1;
}

.practice-items {
    max-width: 1030px;
    padding: 0 15px;
    margin: 0 auto;
}

.practice-item {
    padding-top: 80px;
}

.practice-item-title {
    display: grid;
    place-content: center;
    width: 100%;
    height: 46px;
    border: solid 1px rgba(51, 51, 51, 0.3);
    margin-bottom: 34px;
    color: #333333;
}

.practice-item-mv {
    margin-bottom: 49px;
}

.practice-item-img {
    width: 700px;
    height: 450px;
    margin: 0 auto 15px;
}

.curriculum .practice-item-mv-text {
    font-size: 14px;
    line-height: 1.7;
}

.practice-item-body {
    display: flex;
    gap: 19px;
}

.practice-item-location {
    display: grid;
    place-content: center;
    width: 97px;
    height: 97px;
    border: solid 1px rgba(51, 51, 51, 0.3);
    flex-shrink: 0;
    background-color: #FFFFFF;
    font-weight: bold;
}

.practice-item-body-img {
    width: 230px;
    height: 154px;
    flex-shrink: 0;
}

.practice-item-name {
    font-weight: bold;
    color: #333333;
}

.curriculum .practice-item-introduction-text {
    font-size: 14px;
    line-height: 1.7;
}

.button-area {
    padding: 0 15px;
}

/*-------------------------------------------
スマートフォン
-------------------------------------------*/

@media screen and (max-width: 767px) {

    /*-------------------------------------------
    Curriculum-year-plan
    -------------------------------------------*/

    .curriculum-year-plan {
        padding-bottom: 0;
    }

    .year-plan-content-title {
        height: 90px;
    }

    .year-plan-content-title img {
        width: 58px;
        height: 26px;
    }

    .year-plan-content-box {
        padding: 30px 15px 60px;
    }

    .year-plan-content-text {
        margin-bottom: 40px;
    }

    .year-plan-content-sub-title {
        font-size: 16px;
    }

    .curriculum .year-plan-content-sub-text {
        font-size: 13px;
        margin-bottom: 15px;
        text-align: center;
    }

    .curriculum .year-plan-content-schedule {
        font-size: 13px;
    }

    .year-plan-items {
        gap: 30px;
        border-bottom: solid 1px #333333;
        padding-bottom: 30px;
    }

    .year-plan-item {
        width: 100%;
    }

    .year-plan-item li:nth-child(n+2) {
        font-size: 13px;
    }

    /*-------------------------------------------
    Curriculum-practice
    -------------------------------------------*/

    .curriculum-practice {
        padding-bottom: 60px;
        margin-bottom: 20px;
    }


    .practice-item {
        padding-top: 40px;
    }

    .practice-item-title {
        font-size: 20px;
        border: none;
        margin-bottom: 20px;
    }

    .practice-item-mv {
        margin-bottom: 35px;
    }

    .practice-item-img {
        width: 100%;
        height: 100%;
        max-width: 690px;
        max-height: 450px;
        margin-bottom: 10px;
        aspect-ratio: 690/450;
    }

    .curriculum .practice-item-mv-text {
        font-size: 13px;
        line-height: 1.8;
    }

    .practice-item-body {
        display: flex;
        gap: 2.2%;
    }

    .practice-item-location {
        width: 14.4%;
        min-width: 60px;
        height: 14.4%;
        aspect-ratio: 1/1;
        font-size: 14px;
    }

    .practice-item-body-img {
        width: 29.8%;
        height: 23%;
        min-width: 115px;
        aspect-ratio: 200/154;
        max-width: 200px;
        max-height: 154px;
    }

    .curriculum .practice-item-name {
        font-size: 12px;
    }

    .curriculum .practice-item-introduction-text {
        font-size: 12px;
    }

}</pre></body></html>