@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPMincho&display=swap');

/* =========================================
    ローディング画面のスタイル
========================================= */

.loader-title-ja {
    font-family: var(--ud-mincho-font);
    font-weight: var(--font-weight-bold);
}

#wao-opening-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 99999;
    transition: opacity 1.0s ease-in-out, visibility 1.0s ease-in-out;
}

/* 読み込み完了後にこのクラスが付くと消える */
#wao-opening-loader.is-loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* テキスト全体のコンテナ */
.loader-text-container {
    display: flex;
    text-align: center;
    color: #004098;
}

/* 日本語タイトル（縦書き） */
.loader-title-ja {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: var(--font-size-heading-l);
    letter-spacing: 10px;
    margin: 20px auto 0;
    display: inline-block;
    width: -webkit-fit-content;
    align-self: flex-start;
    text-align: start;
    transform: scale(0.7);
    letter-spacing: var(--letter-spacing-wider);
}

/* =========================================
   文字のアニメーション定義
========================================= */
/* 日本語の一文字ずつに対するスタイル */
.loader-title-ja span {

    display: inline-block;
    /* アニメーションのために必要 */
    opacity: 0;
    /* 最初は隠しておく */
    transform: translateY(20px);
    /* 少し下に配置 */
    animation: fadeInUp 0.8s ease forwards;
    /* 下からふわっと表示 */

}

/* 各文字の出現タイミングをずらす（これで流れるように見える） */
/* 1行目「感動が、」 */
.loader-title-ja span:nth-child(1) {
    animation-delay: 0.5s;
}

.loader-title-ja span:nth-child(2) {
    animation-delay: 0.7s;
}

.loader-title-ja span:nth-child(3) {
    animation-delay: 0.9s;
}

.loader-title-ja span:nth-child(4) {
    animation-delay: 1.1s;
}

/* 2行目「未来をひらく。」 */
.loader-title-ja span:nth-child(6) {
    animation-delay: 1.3s;
    margin-top: 60px;
}

.loader-title-ja span:nth-child(7) {
    animation-delay: 1.5s;
}

.loader-title-ja span:nth-child(8) {
    animation-delay: 1.7s;
}

.loader-title-ja span:nth-child(9) {
    animation-delay: 1.9s;
}

.loader-title-ja span:nth-child(10) {
    animation-delay: 2.1s;
}

.loader-title-ja span:nth-child(11) {
    animation-delay: 2.3s;
}

.loader-title-ja span:nth-child(12) {
    animation-delay: 2.5s;
}

/* 下からふわっと浮かび上がる動きの定義 */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   スマホ用の調整（メディアクエリ）
========================================= */
@media screen and (max-width: 599px) {
    .loader-title-ja {
        font-size: var(--font-size-heading-l);
        transform: scale(1.0);
        letter-spacing: 10px;
        margin: 80px auto 0;

    }

    .loader-title-ja span:nth-child(6) {
    animation-delay: 1.3s;
    margin-top: 32px;
}
}


:root {

    --line-height-extra-tight: 1.2;

    --font-size-42: 42px;

    --yellow-background: #FFFDEB;
    --blue-ice: #f7feff;
    --blue-mist: #DCE3FF;
    --pink-accent: #AA3B66;
    --yellow-deep: #F9D423;
    --blue-accent: #4C79EB;

    --ud-mincho-font: "BIZ UDPMincho", serif;

}







.content {
    color: var(--black);
    display: flow-root;
    font-family: var(--main-font-family);
    height: auto;
    padding: 0;
    position: relative;
    width: 100%;
}

.bg-image {
    position: relative;
    overflow: hidden;
}

.bg-image::before {
    background-image: var(--bg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: 110%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.fv {
    margin: 0 auto;
    max-width: 1600px;
    padding: 0 40px;
    width: 100%;

}

.fv__copy {
    margin: 0;
    padding: 0;
    width: 100%;
}

.fv__copy--h1 {
    color: var(--white);
    font-family: var(--ud-mincho-font);
    font-size: var(--font-size-heading-l);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing-wider);
    line-height: var(--line-height-tight);
    margin: 20px auto 0;
    text-shadow: 2px 2px 4px var(--black);
    writing-mode: vertical-rl;
    transform: scale(0.7);
}

.fv__copy--span {
    display: block;
    margin-top: 60px;
}

.fv__movie {
    margin: 0;
    padding: 0;
    width: 100%;
    margin-top: -92px;
}

.fv__movie--title {
    width: 100%;
}

.fv__movie--title {
    margin: 0 auto;
    text-align: center;
    transform: scale(0.6);
}

.fv__movie--h2 {
    color: var(--white);
    font-size: var(--font-size-heading-l);
    font-weight: var(--font-weight-normal);
    letter-spacing: 0;
    line-height: var(--line-height-extra-tight);
    text-shadow: 2px 2px 4px var(--black);
    white-space: nowrap;
}

.fv__movie-arrow {
    width: 100%;
}

.fv__movie--image {
    display: block;
    margin: 0 auto;
    max-width: 42px;
    width: 100%;
    animation: fluffy-arrow 2s ease-in-out infinite;
}

@keyframes fluffy-arrow {
    0% {
        transform: translateY(0);
        /* スタート位置 */
    }

    50% {
        transform: translateY(10px);
        /* 10px下へ動く */
    }

    100% {
        transform: translateY(0);
        /* 元に戻る */
    }
}

.fv__movie--youtube {
    height: auto;
    width: 100%;
}

.fv__youtube--iframe {
    aspect-ratio: 16 / 9;
    display: block;
    margin: 40px auto 90px;
    max-width: 1040px;
    width: 100%;
}

.cm {
    width: 100%;
    padding: 0 40px;
}

.cm__title--background {
    background-color: var(--student-primary);
    border-radius: 20px 20px 0 0;
    margin: 0 auto;
    max-width: 1600px;
    padding: 60px 20px 40px;
}

.cm__title {
    margin: 0 0 32px;
}

.cm__title--h2 {
    color: var(--yellow-deep);
    font-family: var(--ud-mincho-font);
    font-size: var(--font-size-heading-m);
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.cm__title--span {
    font-size: 48px;
}


.cm__message {
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.cm__message--p {
    color: var(--yellow-deep);
    text-align: center;
    margin: 0 auto;
    max-width: 620px;
    width: 100%;
}

.cm--mask {
    background-color: color-mix(in srgb, var(--blue-primary), transparent 50%);
    border-radius: 0 0 20px 20px;
    padding: 30px 40px 60px;
    margin: 0 auto 40px;
    max-width: 1600px;
    width: 100%;
}

.cm__image-text-1 {
    background-color: color-mix(in srgb, var(--white), transparent 10%);
    border-radius: 4px;
    display: flex;
    gap: min(calc(20px + (100 - 20) * ((100vw - 1024px) / (1600 - 1024))), 40px);
    margin: 0 auto 60px;
    max-width: 1200px;
    padding: 30px min(calc(40px + (100 - 40) * ((100vw - 1024px) / (1600 - 1024))), 70px);
    width: 100%;
}

.cm__image-text-1:last-child {
    margin: 0 auto;
}

.cm__image--container-1 {
    width: calc(50% - min(calc(10px + (50 - 10) * ((100vw - 1024px) / (1600 - 1024))), 20px));
}

.cm__image--image {
    width: 100%;
    object-fit: contain;
}

.cm__image--container-2 {
    display: flex;
    justify-items: center;
    width: calc(50% - min(calc(10px + (50 - 10) * ((100vw - 1024px) / (1600 - 1024))), 20px));

}

.cm__conrtainer-1 {
    margin: auto 0;
    width: 100%;
}

.cm__container--h3 {
    color: var(--blue-primary);
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-loose);
    margin: 0 auto min(calc(0px + (20 - 8) * ((100vw - 1024px) / (1600 - 1024))), 20px);
}

.cm__container--p {
    color: var(--blue-primary);
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-relaxed);
    margin: 0 auto;
}

.wao__bg--blue {
    background-color: var(--student-primary);
}

.wao {
    background-color: var(--student-primary);
    margin: 0 auto;
    max-width: 1600px;
    padding: 90px 40px;
    position: relative;
    text-align: center;
    width: 100%;
}

.wao__animation-1 {
    left: calc(32px + (128 - 32) * ((100vw - 1024px) / (1600 - 1024)));
    max-width: 300px;
    position: absolute;
    transform: translateY(-50%);
    top: 60%;
    width: calc(200px + (300 - 200) * ((100vw - 1024px) / (1600 - 1024)));
}

.wao__animation-1--image {
    max-width: 300px;
    display: flex;
    width: 100%;
}

.wao__animation-2 {
    max-width: 300px;
    position: absolute;
    right: calc(32px + (128 - 32) * ((100vw - 1024px) / (1600 - 1024)));
    transform: translateY(-50%);
    top: 60%;
    width: calc(200px + (300 - 200) * ((100vw - 1024px) / (1600 - 1024)));
}

.wao__animation-2--image {
    max-width: 300px;
    display: flex;
    width: 100%;
}

.wao__title--big {
    background-color: var(--blue-accent);
    border-radius: 120px;
    display: flex;
    justify-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    max-width: 1200px;
    padding: 10px 0;
    width: 100%;
}

.wao__title--h2 {
    color: var(--white);
    font-size: var(--font-size-heading-m);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing-tight);
    line-height: var(--line-height-tight);
}

.wao__title--h3 {
    color: var(--white);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing-tight);
    line-height: var(--line-height-tight);
    margin: 0 auto 40px;
}

.wao__sentence--p {
    color: var(--white);
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-relaxed);
    margin: 0 auto 40px;
}


.movie {
    background-color: var(--white);
    padding: 90px 40px;
    text-align: center;
}

.movie__title {
    border-radius: 120px;
    background-color: var(--blue-accent);
    margin: 0 auto 40px;
    max-width: 1200px;
    padding: 10px 0;
    width: 100%;
}

.movie__title--h2 {
    color: var(--white);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing-tight);
    line-height: var(--line-height-tight);
}

.movie__banner {
    margin: 0 auto 40px;
    max-width: 400px;
    width: 100%;
}

.movie__banner--img {
    display: block;
    height: auto;
    max-width: 400px;
    width: 100%;
}

.movie__message--p {
    color: var(--blue-primary);
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-relaxed);
    margin: 0 auto 40px;
}

.movie__message--p-last {
    color: var(--blue-primary);
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-relaxed);
    margin: 0 auto;
}


.movie__vertical {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 60px auto 40px;
}


.movie__vertical--message {
    width: 100px;
    writing-mode: vertical-rl;

    display: flex;
    align-items: center;
}


.movie__vertical--p {
    color: var(--blue-primary);
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-relaxed);
    letter-spacing: var(--letter-spacing-wide);
    padding: 0;
    margin: 0;
}


.movie__vertical--span-1,
.movie__vertical--span-2,
.movie__vertical--span-3 {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    z-index: 0;
}

.movie__vertical--span-1::before,
.movie__vertical--span-2::before,
.movie__vertical--span-3::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
    transform: none;
}

.movie__vertical--span-1::before {
    background-image: var(--illust-1);
}

.movie__vertical--span-2::before {
    background-image: var(--illust-2);
}

.movie__vertical--span-3::before {
    background-image: var(--illust-3);
}



.board {
    background-color: var(--student-primary);
    padding: 200px 0 50px;
    overflow: hidden;
    width: 100%;
}

.board__div {
    position: relative;
    width: 100%;
}

.board__div::before {
    background-image: var(--picture-1);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: 70%;
    left: -5%;
    position: absolute;
    top: -30%;
    transform: translate(-50%, -50%);
    width: 110%;
    z-index: 0;
    transform: perspective(10000px) rotateX(45deg);
    opacity: 0.7;
}

.board__title {
    background-color: var(--blue-accent);
    border-radius: 120px;
    margin: 0 auto 40px;
    max-width: min(1200px, calc(100% - 80px));
    padding: 10px 0;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 3;
}



.board__title--h3 {
    color: var(--white);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing-tight);
    line-height: var(--line-height-tight);
}

.board__message {
    margin: 0 auto;
    max-width: calc(100% - 80px);
    text-align: center;
    width: 100%;
}

.board__message--p {
    color: var(--white);
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-relaxed);
    margin: 0 auto 40px;
}

.board__introduce {
    width: 100%;
}

.board__introduce-1 {
    display: flex;
    margin: 0 auto 40px;
    max-width: min(756px, calc(100% - 40px));
    width: 100%;
}

.board__introduce-2 {
    display: flex;
    margin: 0 auto 40px;
    max-width: min(866px, calc(100% - 40px));
    width: 100%;
}

.board__introduce--picture {
    max-width: min(417px, calc(50% - 30px));
}

.board__introduce--img {
    width: 100%;
}

.board__introduce--message {
    display: block;
    margin: auto;
    max-width: calc(50%-30px);
    width: 100%;
}

.board__introduce--p {
    color: var(--white);
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-relaxed);
    margin: 0 auto;
    text-align: center;
}

.message {
    height: auto;
    text-align: center;
    padding: 90px 0;
    position: relative;
}

.message::before {
    background-image: var(--bg-message);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: 100%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: -1;
}

.message__title--div {
    margin: 0 auto 40px;
    max-width: min(320px, calc(100% - 40px));
    width: 100%;
}

.message__title--h2 {
    color: var(--blue-primary);
    font-size: var(--font-size-heading-m);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing-tight);
    line-height: var(--line-height-tight);
    margin: 0 auto;
}

.message__message {
    margin: 0 auto 0;
    max-width: calc(100% - 80px);
    width: 100%;
}

.message__message--p {
    color: var(--blue-primary);
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-relaxed);
    margin: 0 auto 40px;
    text-align: center;
    width: 100%;
}

.message__slider {
    margin: 0 0 40px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.message__slider.slick-initialized {
    opacity: 1;
}

.logo-item--img {
    display: block;
    height: 100%;
    max-width: 280px;
    object-fit: contain;
    width: 100%;
    border-radius: 10px;
    border: #d0eff7 solid 1.5px;
}

.logo-item {
    margin: 0 8px;
    max-height: 168px;
}

.logo-item--jpg {
    background-color: var(--white);
    border-radius: 10px;
    border: #d0eff7 solid 2px;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 8px;
    max-height: 168px;
    max-width: 282px;
}

.logo-item--jpg a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.logo-item--img-jpg{
    justify-content: center;
    align-items: center;
    margin: auto;
    max-width: 200px;
    max-height:100px;
}

.slick-track {
    transition-timing-function: linear;
}

.message__btn--div {
    margin: 0 auto;
    max-width: 286px;
    width: 100%;
}

.message__btn--a {
    text-decoration: none;
    color: var(--white);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-m);
    padding: 20px 60px;
    border-radius: 9999px;
    background-color: var(--staff-primary);
    box-shadow: 0 3px 0px 4px var(--white);
    display: block;
    text-align: center;
    width: 100%;
}

.message__btn--a:hover {
    background-color: #e58515;
    box-shadow: 0 0 0 4px var(--white);
    transform: translateY(4px);
}

.onlt__1600 {
    display: block;
}

.only__1024 {
    display: none;
}

.only__600 {
    display: none;
}































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

    .fv__movie--arrow {
        margin-top: -16px;
        margin-bottom: -20px;
    }

    .only__1024 {
        display: block;
    }

    .fv {
        margin: 0 auto;
        max-width: 1600px;
        padding: 0 20px;
        width: 100%;

    }

    .fv__youtube--iframe {
        aspect-ratio: 16 / 9;
        display: block;
        margin: 40px auto 60px;
        max-width: 1040px;
        width: 100%;
    }

    .cm {
        width: 100%;
        padding: 0 20px;
    }

    .cm__title--background {
        background-color: var(--student-primary);
        border-radius: 12px 12px 0 0;
        margin: 0 auto;
        max-width: 1600px;
        padding: 48px 20px 30px;
    }

    .cm--mask {
        background-color: color-mix(in srgb, var(--blue-primary), transparent 50%);
        border-radius: 0 0 12px 12px;
        padding: 30px 20px 48px;
        margin: 0 auto 32px;
        max-width: 1600px;
        width: 100%;
    }

    .cm__image-text-1 {
        background-color: color-mix(in srgb, var(--white), transparent 10%);
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        gap: min(calc(20px + (100 - 20) * ((100vw - 1024px) / (1600 - 1024))), 40px);
        justify-items: center;
        margin: 0 auto 48px;
        max-width: 1200px;
        padding: 30px 20px 0;
        width: 100%;
    }

    .cm__image-text-1:last-child {
        margin: 0 auto;
    }

    .cm__image--container-1 {
        display: block;
        margin: 0 auto 20px;
        width: calc(100% - 32px);
    }

    .cm__image--container-2 {
        display: block;
        margin: 0 auto 20px;
        width: calc(100% - 32px);
    }

    .cm__conrtainer-1 {
        margin: auto 0;
        padding: 0 16px;
        width: 100%;
    }

    .cm__container--h3 {
        color: var(--blue-primary);
        font-size: var(--font-size-l);
        font-weight: var(--font-weight-medium);
        line-height: var(--line-height-loose);
        margin: 0 auto 16px;
        text-align: center;
    }

    .cm__image--reverse {
        flex-direction: column-reverse;
    }


    .wao {
        background-color: var(--student-primary);
        margin: 0 auto;
        max-width: 1600px;
        padding: 60px 20px;
        position: relative;
        text-align: center;
        width: 100%;
    }

    .wao__title--h2 {
        color: var(--white);
        font-size: var(--font-size-heading-m);
        font-weight: var(--font-weight-bold);
        letter-spacing: var(--letter-spacing-tight);
        line-height: var(--line-height-tight);
        padding: 0 40px;
    }

    .wao__title--small {
        margin: 0 0 40px;
    }

    .wao__animation {
        align-items: center;
        display: flex;
        justify-content: center;
        margin: 0 auto 40px;
    }

    .wao__animation-1 {
        transform: none;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        max-width: 300px;
        position: static;
        width: 100%;
        vertical-align: bottom;
    }

    .wao__animation-1--image {

        max-width: 160px;
        width: 100%;
    }

    .wao__animation-2 {
        transform: none;
        display: flex;
        justify-content: center;
        max-width: 300px;
        position: static;
        width: 100%;
        align-items: flex-end;
    }

    .wao__animation-2--image {
        max-width: 160px;

        width: 100%;
        height: auto;
        vertical-align: bottom;
    }

    .movie {
        background-color: var(--white);
        padding: 60px 20px;
        text-align: center;
    }

    .board__message {
        margin: 0 auto;
        max-width: calc(100% - 40px);
        text-align: center;
        width: 100%;
    }

    .message__message {
        margin: 0 auto 0;
        max-width: calc(100% - 40px);
        width: 100%;
    }


}






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

    .fv__copy--h1 {
        transform: scale(1.0);
        margin-top: 80px;
    }

    .fv__movie--title {
        transform: scale(0.8);
    }

    .fv__copy--span {
        margin-top: 32px;
    }

    .fv__movie--h2 {
        white-space: normal;
    }

    .fv__movie {
        margin-top: 0px;
    }

    .fv__movie--arrow {
        transform: scale(0.7);
    }

    .fv__movie--youtube {
        margin-top: -16px;
    }

    .only__1600 {
        display: none;
    }

    .only__600 {
        display: block;
    }

    .fv {
        margin: 0 auto;
        max-width: 1600px;
        padding: 0 16px;
        width: 100%;
    }

    .cm {
        width: 100%;
        padding: 0 16px;
    }

    .cm__title--background {
        background-color: var(--student-primary);
        border-radius: 8px;
        margin: 0 auto;
        max-width: 1600px;
        padding: 32px 16px 20px;
    }

    .cm__title--h2 {
        color: var(--yellow-deep);
        font-family: var(--ud-mincho-font);
        font-size: var(--font-size-2xl);
        text-align: center;
        margin: 0 auto;
        width: 100%;
    }

    .cm__title--span {
        font-size: var(--font-size-3xl);
    }

    .cm--mask {
        background-color: color-mix(in srgb, var(--blue-primary), transparent 50%);
        border-radius: 8px;
        padding: 20px 16px 40px;
        margin: 24px auto 28px;
        max-width: 1600px;
        width: 100%;
    }

    .cm__image-text-1 {
        background-color: color-mix(in srgb, var(--white), transparent 10%);
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        gap: min(calc(32px + (100 - 32) * ((100vw - 1024px) / (1600 - 1024))), 40px);
        justify-items: center;
        margin: 0 auto 36px;
        max-width: 1200px;
        padding: 24px 0 0;
        width: 100%;
    }

    .cm__image--reverse {
        flex-direction: column-reverse;
    }


    .cm__conrtainer-1 {
        margin: auto 0;
        padding: 0;
        width: 100%;
    }

    .wao {
        background-color: var(--student-primary);
        margin: 0 auto;
        max-width: 1600px;
        padding: 40px 16px;
        position: relative;
        text-align: center;
        width: 100%;
    }

    .movie {
        background-color: var(--white);
        padding: 40px 16px 20px;
        text-align: center;
    }


    .movie__vertical--message {
        width: 80px;
    }

    .movie__vertical--p {
        padding: 0;
    }

    .board {
        background-color: var(--student-primary);
        padding: 130px 0 0;
        overflow: hidden;
        width: 100%;
    }

    .board__div::before {
        background-image: var(--picture-2);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        content: "";
        height: 70%;
        left: -25%;
        position: absolute;
        top: -36%;
        transform: translate(-50%, -50%);
        width: 145%;
        z-index: 0;
        transform: perspective(10000px) rotateX(35deg);
        opacity: 0.7;
    }

    .board__message {
        margin: 0 auto;
        max-width: calc(100% - 32px);
        text-align: center;
        width: 100%;
    }



    .board__introduce {
        margin: 0 auto;
        max-width: calc(100% - 32px);
        width: 100%;
    }

    .board__message--p {
        color: var(--white);
        font-size: var(--font-size-m);
        font-weight: var(--font-weight-medium);
        line-height: var(--line-height-relaxed);
        margin: 0 auto 36px;
    }


    .board__introduce-1 {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 0 auto 40px;
        width: 100%;
    }

    .board__introduce-2 {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
        margin: 0 auto 40px;
        width: 100%;
    }

    .board__introduce--picture {
        max-width: 100%;
        width: 100%;
    }

    .message {
        height: auto;
        text-align: center;
        padding: 40px 0;
        position: relative;
    }

    .message__message {
        margin: 0 auto 0;
        max-width: calc(100% - 32px);
        width: 100%;
    }

    .message__message--p {
        color: var(--blue-primary);
        font-size: var(--font-size-m);
        font-weight: var(--font-weight-medium);
        line-height: var(--line-height-relaxed);
        margin: 0 auto 36px;
        text-align: center;
        width: 100%;
    }


    .logo-item {
        margin: 0 4px;
        max-height: 84px;
    }

    .logo-item--img {
        display: block;
        height: 100%;
        max-width: 140px;
        object-fit: contain;
        width: 100%;
        border: #d0eff7 solid 0.25px;
        border-radius: 5px;
    }

    .logo-item--jpg {
    background-color: var(--white);
    border-radius: 5px;
    border: #d0eff7 solid 2px;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 8px;
    max-height: 84px;
    max-width: 141px;
}

.logo-item--jpg a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.logo-item--img-jpg{
    justify-content: center;
    align-items: center;
    margin: auto;
    max-width: 100px;
    max-height:50px;
}



}