@charset "UTF-8";

/*------------------------------------*\
    $CONTENTS
\*------------------------------------*/
/**
 * CONTENTS............目次
 * COMMON..............共通パーツ
 * FOOTER..............フッター
 * STYLES..............各種スタイル
 * 404.................404ERROR
 */





/*------------------------------------*\
    $COMMON
\*------------------------------------*/
.wrap { overflow-y: hidden }


a { transition: opacity .3s var(--easeOutQuart) }
a:hover { opacity: 0.8 }


.fluid { position: relative }

.fluid::before,
.fluid::after {
    content: "";
    position: absolute;
    animation-name: fluidrotate;
    animation-duration: 50s;
    animation-timing-function: var(--linear);
    animation-iteration-count: infinite;
}
.fluid::before {
    background-color: var(--primaryGreen-100);
}
.fluid::after {
    background-color: var(--primaryBlue-200-opacity30);
    animation-direction: reverse;
}

@keyframes fluidrotate {
    0%, 100% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }
    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }
    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }
    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }
    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }
    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }
    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }
}






/*------------------------------------*\
    $FOOTER
\*------------------------------------*/
.footer {
    position: relative;
    padding-inline: calc(100vw * (20 / 375));
    background-color: white;
}
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    .footer { padding-top: .32em }
    .footer::before {
        height: .32em;
        background-image: var(--multiColorSizeFixed);
        background-repeat: repeat-x;
        background-size: 40.8em;
        font-size: clamp(1.8rem, calc(100vw * (25 / 1920)), 2.5rem);
    }
}
@media screen and (max-width: 1023px) {
    .footer { padding-top: 4px }
    .footer::before {
        height: 4px;
        background-image: var(--multiColorSizeFixed);
        background-repeat: repeat-y;
        background-size: 100%;
    }
}

    .footer__inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        column-gap: 24px;
        row-gap: 30px;
        width: min(1200px, 100%);
        padding-top: clamp(30px, calc(100vw * (30 / 768)), 55px);
        padding-bottom: calc(128px - clamp(38px, calc(100vw * (38 / 768)), 75px));
        padding-bottom: 53px;
        margin-inline: auto;
    }

        .footer__title {
            margin-bottom: clamp(20px, calc(100vw * (20 / 768)), 29px);
            font-size: clamp(1.4rem, calc(100vw * (14 / 768)), 2.0rem);
            font-weight: 700;
            line-height: calc(20 / 14);
        }

        .footer__content {
            display: flex;
            flex-wrap: wrap;
            column-gap: 127px;
            row-gap: 21px;
            padding-left: calc(40px - clamp(20px, calc(100vw * (20 / 375)), 40px));
            font-size: clamp(1.4rem, calc(100vw * (14 / 768)), 1.5rem);
            line-height: calc(20 / 14);
        }

            .footer__row:not(:first-of-type) {
                border-top: clamp(12px, calc(100vw * (12 / 375)), 20px) solid transparent;
            }

                .footer__label { font-weight: 700 }
                @media screen and (orientation: landscape) {
                    .footer__label { min-width: calc(2em + 3px) }
                }
                @media screen and (orientation: portrait) {
                    .footer__label { width: 4em }
                }

                .footer__text { padding-left: clamp(7px, calc(100vw * (7 / 768)), 22px) }


            .footer__contact { font-weight: 700 }

            .footer__contacts { 
                display: flex; 
                flex-flow: column;
                gap: 8px;
            }

.return-top {
    position: fixed;
    bottom: 10%;
    right: clamp(10px, calc(100vw * (10 / 768)), 15px);
    z-index: 100;
    width: clamp(50px, calc(100vw * (50 / 768)), 70px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .9s var(--easeOutQuart);
}
.return-top.is-active {
    opacity: 1;
    pointer-events: visible;
}





/*------------------------------------*\
    $STYLES
\*------------------------------------*/
/**
 * Blocks
 */
.wrap { overflow: hidden }

@media screen and (orientation: landscape) {
    .main:not(.main-home) { padding-top: min(130px, calc(100vw * (130 / 1440))) }
}
@media screen and (orientation: portrait) {
    .main:not(.main-home) { padding-top: 30px }
    .single .main { padding-top: 10px }
}

.block {
    padding-inline: calc(100vw * (20 / 375));
    overflow: hidden;
}

    .block__inner {
        width: min(1200px, 100%);
        margin-inline: auto;
    }

    .block__inner--wide {
        padding-inline: max(10px, calc(100vw * (60 / 1920)));
        margin-inline: calc(-100vw * (20 / 375));
    }

    .block__inner--small {
        width: min(900px, 100%);
        margin-inline: auto;
    }



/**
 * Links
 */
.block-link { display: block }



/**
 * Hide contents
 */
/* Hide elements */
.hide {
    content-visibility: auto;
    display: none;
}

/* Hide scrollbar */
.non-scrollbar {
    -ms-overflow-style: none; /* Edge */
    scrollbar-width: none; /* Firefox */
}
.non-scrollbar::-webkit-scrollbar { /* Safari */
    content-visibility: auto;
    display: none;
}



/**
 * Title
 */
.content-title {
    position: relative;
    text-align: center;
}
.content-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: var(--multiColorSizeFixed);
    background-repeat: repeat-y;
    background-size: 100%;
}
@media screen and (orientation: landscape) {
    .content-title {
        padding-bottom: .6em;
        font-size: clamp(1.0rem, calc(100vw * (40 / 1920)), 4.0rem);
        line-height: 1.45;
    }
    .content-title::before {
        width: 4.25em;
        height: .1em;
    }
}
@media screen and (orientation: portrait) {
    .content-title {
        padding-bottom: 1em;
        font-size: clamp(1.0rem, calc(100vw * (22 / 375)), 2.2rem);
        line-height: calc(34 / 22);
    }
    .content-title::before {
        width: calc(1em * (85 / 22));
        height: calc(1em * (2 / 22));
    }
}

    .content-title span {
        font-size: max(1.0rem, calc(1em * (30 / 40)));
    }


.content-title--min {
    overflow: hidden;
    margin-bottom: clamp(40px, calc(100vw * (40 / 768)), 80px);
    color: var(--neutralColor-400);
    font-size: clamp(1.8rem, calc(100vw * (18 / 768)), 4.0rem);
    line-height: 1;
    text-align: center;
}

    .content-title--min span {
        position: relative;
        display: block;
        width: fit-content;
        padding-inline: clamp(7px, calc(100vw * (7 / 768)), 20px);
        margin-inline: auto;
    }
    .content-title--min span::before,
    .content-title--min span::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 50vw;
        height: 1px;
        background-color: var(--neutralColor-400);
    }
    .content-title--min span::before { right: 100% }
    .content-title--min span::after { left: 100%; }



/**
 * Text
 */
.content-text {
    color: var(--neutralColor-500);
    text-align: center;
}
@media screen and (orientation: landscape) {
    .content-text {
        font-size: clamp(1.0rem, calc(100vw * (20 / 1920)), 2.0rem);
        line-height: 1.8;
    }
}
@media screen and (orientation: portrait) {
    .content-text {
        font-size: clamp(1.0rem, calc(100vw * (14 / 375)), 1.4rem);
        line-height: calc(24 / 14);
    }
}


.empty-msg {
    margin-block: 2em;
    font-size: clamp(1.6rem, calc(100vw * (16 / 768)), 2.0rem);
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}



/**
 * Button
 */
.content-button {
    display: block;
    width: fit-content;
    min-width: clamp(140px, calc(100vw * (140 / 768)), 220px);
    padding-inline: 2em;
    margin-inline: auto;
    border-radius: 99px;
    background-color: var(--primaryBlue-300);
    background-image: url(../images/icon-right-arrow.svg);
    background-repeat: no-repeat;
    color: white;
    font-size: clamp(1.6rem, calc(100vw * (16 / 375)), 2.0rem);
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}
@media screen and (orientation: landscape) {
    .content-button {
        padding-block: 7.5px;
        background-position: calc(100% - 19.6px) 50%;
        background-size: auto 10.88px;
    }
}
@media screen and (orientation: portrait) {
    .content-button {
        padding-block: 5px;
        background-position: calc(100% - 8.8px) 50%;
        background-size: auto 7.75px;
    }
}


.content-button--plus {
    background-image: url(../images/icon-plus.svg);
    background-size: clamp(10px, calc(100vw * (10 / 768)), 14px);
    background-position: calc(100% - clamp(9.5px, calc(100vw * (9.5 / 768)), 16.7px)) 50%;
}


.content-button--check {
    position: relative;
    z-index: 1;
    width: fit-content;
    min-width: min(500px, calc(100% - 20px));
    margin-inline: auto;
    filter: drop-shadow(2px 4px 0 var(--primaryBlue-100));
}
.content-button--check::after {
    content: "";
    position: absolute;
    left: -20px;
    width: 23.58px;
    height: 100%;
    background-image: url(../images/icon-button-check.svg?v=1);
    background-repeat: no-repeat;
    background-position: 0 0;
}
@media screen and (orientation: landscape) {
    .content-button--check {
        padding-block: 8.5px;
        padding-right: 47px;
        padding-left: 35px;
        background-position: calc(100% - 21.6px) 50%;
    }
    .content-button--check::after { top: -10.6px }
}
@media screen and (orientation: portrait) {
    .content-button--check {
        position: relative;
        transform: translateX(10px);
        padding-block: 9px;
        padding-right: 29px;
        padding-left: 20px;
        background-size: auto 11px;
    }
    .content-button--check::after { top: -5px }
}


.content-button--non-link {
    background-color: white;
    border: 2px solid var(--primaryBlue-300);
    color: var(--primaryBlue-300);
    line-height: 1.3;
    filter: none;
    pointer-events: none;
}



/* Wave */
.wave-up, .wave-down {
    position: relative;
    width: 100%;
    height: 56px;
}
.wave-up::before, .wave-down::before {
    content: "";
    position: absolute;
    width: 3840px;
    height: 60px;
    background-repeat: repeat-x;
    background-size: 1920px 60px;
    animation-duration: 7.5s;
    animation-timing-function: var(--linear);
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}
.wave-up::before {
    top: 0;
    left: 0;
    animation-name: waveUp;
}
.wave-down::before {
    bottom: 0;
    right: 0;
    animation-name: waveDown;
}
@keyframes waveUp {
    from { transform: translateX(0) }
    to { transform: translateX(-1920px) }
}
@keyframes waveDown {
    from { transform: translateX(0) }
    to { transform: translateX(1920px) }
}



/* Archive */
.archive {}

    .archive .block {
        padding-top: clamp(30px, calc(100vw * (30 / 768)), 60px);
        padding-bottom: clamp(48px, calc(100vw * (48 / 768)), 80px);
    }

        .archive .content-title { margin-bottom: clamp(40px, calc(100vw * (40 / 768)), 80px) }

        .archive__list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(min(clamp(240px, calc(100vw * (200 / 768)), 420px), 100%), 1fr));
            grid-column-gap: calc(100% * (60 / 1800));
            grid-row-gap: clamp(20px, calc(100vw * (40 / 768)), 60px);
        }

        .archive__list + .content-button { margin-top: clamp(40px, calc(100vw * (40 / 768)), 60px) }

            .archive__link {
                display: block;
            }

                .archive__image {
                    aspect-ratio: 560 / 373;
                    border-radius: clamp(10px, calc(100vw * (10 / 768)), 16px);
                    background-color: var(--neutralColor-300);
                    overflow: hidden;
                }
                .archive__image img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

                .archive__details {
                    position: relative;
                    width: calc(100% * (500 / 560));
                    margin-top: calc(-1 * clamp(26.2px, calc(100vw * (26.2 / 768)), 42px));
                    margin-inline: auto;
                }

                    .archive__bubble {
                        aspect-ratio: 64 / 80;
                        position: absolute;
                        bottom: calc(100% - clamp(3.76px, calc(100vw * (3.76 / 768)), 6px));
                        left: 0;
                        z-index: 10;
                        width: clamp(48px, calc(100vw * (48 / 768)), 64px);
                        padding-top: clamp(7.5px, calc(100vw * (7.5 / 768)), 13px);
                        background-repeat: no-repeat;
                        background-size: contain;
                        color: white;
                        font-size: clamp(1.2rem, calc(100vw * (12 / 768)), 1.4rem);
                        font-weight: 700;
                        line-height: 1.3;
                        text-align: center;
                    }

                    @media screen and (max-width: 767px) {
                        .archive__bubble.special-event {
                            font-size: clamp(1.1rem, calc(100vw * (12 / 768)), 1.1rem);
                        }
                    }

                    .archive__details__inner {
                        position: relative;
                        transform: translateX(0);
                        z-index: 1;
                        padding-top: clamp(10px, calc(100vw * (10 / 768)), 14px);
                        padding-inline: clamp(10px, calc(100vw * (10 / 768)), 20px);
                        padding-bottom: clamp(10px, calc(100vw * (10 / 768)), 20px);
                        border-radius: clamp(10px, calc(100vw * (10 / 768)), 16px);
                        background-color: white;
                        /*
                        filter: drop-shadow(
                            0
                            clamp(2px, calc(100vw * (2 / 768)), 3px)
                            clamp(6px, calc(100vw * (6 / 768)), 12px)
                            rgb(0 0 0 / .16)
                        );
                        */
                        box-shadow: 
                        0
                        clamp(2px, calc(100vw * (2 / 768)), 3px)
                        clamp(6px, calc(100vw * (6 / 768)), 12px) 
                        rgba(0,0,0,0.16);
                    }

                        .archive__title {
                            display: -webkit-box;
                            -webkit-box-orient: vertical;
                            -webkit-line-clamp: 2;
                            overflow: hidden;
                            margin-bottom: clamp(8.5px, calc(100vw * (8.5 / 768)), 17px);
                            font-size: clamp(1.4rem, calc(100vw * (14 / 768)), 2.0rem);
                            line-height: 1.5;
                        }
                        .archive__add-title + .archive__title { -webkit-line-clamp: 1 }
                        @media screen and (min-width: 768px) {
                            .archive__title { height: 3em }
                            .archive__add-title + .archive__title { height: 1.5em }
                        }

                        .archive__add-title {
                            height: 1.875em;
                            font-size: clamp(1.2rem, calc(100vw * (12 / 768)), 1.6rem);
                            line-height: 1.875;
                        }

                        .archive__status {
                            display: flex;
                            column-gap: clamp(5px, calc(100vw * (5 / 768)), 10px);
                        }
                        .archive__status:not(:last-child) { margin-bottom: 10px }

                            .archive__label {
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                width: clamp(54px, calc(100vw * (54 / 768)), 70px);
                                height: clamp(17px, calc(100vw * (17 / 768)), 26px);
                                border-radius: clamp(4px, calc(100vw * (4 / 768)), 6px);
                                font-size: clamp(1.0rem, calc(100vw * (10 / 768)), 1.4rem);
                                line-height: 1;
                            }

                            .archive__text {
                                flex-grow: 1;
                                width: 1px;
                                padding-block: calc(-5px + clamp(5px, calc(100vw * (5 / 768)), 10px));
                                font-size: 1.4rem;
                                line-height: calc(16 / 14);
                            }


.archive__top { margin-bottom: clamp(60px, calc(100vw * (60 / 768)), 80px) }
@media screen and (max-width: 767px) {
    .single .archive__top { margin-bottom: 0 }
}

    .archive__top__label {
        margin-bottom: calc(1em * (18 / 30));
        color: var(--neutralColor-400);
        font-size: clamp(1.6rem, calc(100vw * (16 / 768)), 3.0rem);
        line-height: 1.5;
    }

    .archive__top__title {
        min-height: 68px;
        margin-bottom: clamp(20px, calc(100vw * (20 / 768)), 40px);
        color: var(--neutralColor-400);
        font-size: clamp(2.2rem, calc(100vw * (22 / 768)), 5.0rem);
    }
    .archive__top__title.is-new {
        position: relative;
        max-width: calc(100% - clamp(80px, calc(100vw * (80 / 768)), 115px));
    }
    .archive__top__title.is-new::before {
        content: "";
        aspect-ratio: 1 / 1;
        position: absolute;
        top: calc(50px - clamp(42px, calc(100vw * (42 / 768)), 55px));
        left: calc(100% + 5px);
        width: clamp(66px, calc(100vw * (66 / 768)), 110px);
        background-image: url(../images/icon-new.svg);
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: contain;
    }
    @media screen and (min-width: 768px) {
        .archive__top__title { line-height: 1.44 }
        .archive__top__title.is-new { width: fit-content }
    }
    @media screen and (max-width: 767px) {
        .archive__top__title { line-height: calc(34 / 22) }
        .archive__top__title.is-new { width: calc(100% - 115px) }
    }

    .archive__top__details {
        display: flex;
        flex-wrap: wrap;
        column-gap: 20px;
        row-gap: 10px;
        margin-bottom: clamp(20px, calc(100vw * (20 / 768)), 40px);
    }

        .archive__top__block {
            display: flex;
            column-gap: clamp(7px, calc(100vw * (7 / 768)), 10px);
            font-size: clamp(1.4rem, calc(100vw * (14 / 768)), 1.6rem);
        }

            .archive__top__block__label {
                display: flex;
                justify-content: center;
                align-items: center;
                width: clamp(76px, calc(100vw * (76 / 768)), 90px);
                height: clamp(26px, calc(100vw * (26 / 768)), 32px);
                border-radius: 4px;
                color: white;
                font-weight: 700;
                line-height: 1;
                white-space: nowrap;
            }

            @media screen and (min-width: 768px) {
                .archive__top__block__text { line-height: 2 }
            }
            @media screen and (max-width: 767px) {
                .archive__top__block__text { line-height: calc(26 / 14) }
            }


    .archive__top__main {
        margin-bottom: clamp(36px, calc(100vw * (36 / 768)), 60px);
        filter: drop-shadow(
            0
            clamp(2px, calc(100vw * (2 / 768)), 3px)
            clamp(6px, calc(100vw * (6 / 768)), 12px)
            rgb(0 0 0 / .16)
        );
    }
    @media screen and (min-width: 768px) {
        .archive__top__main {
            width: min(1100px, 100%);
            margin-inline: auto;
        }
    }
    @media screen and (max-width: 767px) {
        .archive__top__main { margin-inline: calc(-100vw * (10 / 375)) }
    }
    
        .archive__top__main__inner {
            border-radius: clamp(10px, calc(100vw * (10 / 768)), 16px);
            background-color: white;
            overflow: hidden;
        }

            .archive__top__image img {
                aspect-ratio: 1200 / 800;
                width: 100%;
                object-fit: cover;
            }

            @media screen and (min-width: 1024px) {
                .archive__top__content { display: flex }
            }

                .archive__top__teacher {
                    display: flex;
                    min-width: min(100%, 360px);
                }
                @media screen and (min-width: 1024px) {
                    .archive__top__teacher {
                        flex-grow: 1;
                        width: min(482px, 50%);
                        min-width: min(100%, 360px);
                    }
                }
                @media screen and (max-width: 1023) {
                    .archive__top__teacher { width: 100% }
                }

                    .archive__top__teacher__image {
                        aspect-ratio: 4 / 5;
                        width: clamp(120px, calc(100vw * (120 / 768)), 190px);
                    }
                    .archive__top__teacher__image img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }

                    .archive__top__teacher__box {
                        position: relative;
                        flex-grow: 1;
                        width: 1px;
                        padding-top: clamp(14px, calc(100vw * (14 / 768)), 25px);
                        padding-inline: clamp(18px, calc(100vw * (18 / 768)), 29px);
                        padding-bottom: clamp(30px, calc(100vw * (30 / 768)), 70px);
                        color: white;
                        font-size: clamp(1.6rem, calc(100vw * (16 / 768)), 2.0rem);
                    }
                    .archive__top__teacher__box::before {
                        content: "";
                        aspect-ratio: 2 / 1;
                        position: absolute;
                        bottom: clamp(3.7px, calc(100vw * (3.7 / 768)), 5.2px);
                        right: clamp(4.4px, calc(100vw * (4.4 / 768)), 12.7px);
                        width: clamp(128.65px, calc(100vw * (128.65 / 768)), 209.3px);
                        background-image: url(../images/image-header-caption.svg);
                        background-repeat: no-repeat;
                        background-position: 0 100%;
                        background-size: contain;
                        opacity: 0.3;
                        pointer-events: none;
                    }
                    @media screen and (min-width: 1024px) {
                        .archive__top__content:not(:last-child) .archive__top__teacher__box {
                            background-image: linear-gradient(white, white);
                            background-repeat: no-repeat;
                            background-position: 0 100%;
                            background-size: 100% 1px;
                        }
                    }

                        .archive__top__teacher__label {
                            margin-bottom: clamp(9px, calc(100vw * (9 / 768)), 13px);
                            font-weight: 700;
                            line-height: 1.5;
                        }


                .archive__top__teacher-text {
                    width: calc(100% - min(482px, 50%));
                    min-width: min(428px, 100%);
                    padding-top: clamp(20px, calc(100vw * (20 / 768)), 24px);
                    padding-inline: clamp(20px, calc(100vw * (20 / 768)), 30px);
                    padding-bottom: calc(50px - clamp(10px, calc(100vw * (10 / 768)), 20px));
                    background-repeat: no-repeat;
                    background-position:
                        calc(100% - clamp(11.7px, calc(100% * (11.7 / 768)), 20.7px)) calc(100% - clamp(7px, calc(100vw * (7 / 768)), 8.8px)),
                        0 100%;
                    background-size:
                        clamp(68.28px, calc(100vw * (68.28 / 768)), 100.28px),
                        100% 1px;
                }
                .archive__top__teacher-text p {
                    font-size: clamp(1.4rem, calc(100vw * (14 / 768)), 1.6rem);
                }
                @media screen and (min-width: 768px) {
                    .archive__top__teacher-text p { line-height: 1.875 }
                }
                @media screen and (max-width: 767px) {
                    .archive__top__teacher-text p { line-height: calc(24 / 14) }
                }
                @media screen and (min-width: 1024px) {
                    .archive__top__teacher-text {
                        flex-grow: 1;
                        width: calc(100% - min(482px, 50%));
                        background-size:
                            clamp(68.28px, calc(100vw * (68.28 / 768)), 100.28px),
                            100% 1px;
                    }
                }
                @media screen and (max-width: 1023px) {
                    .archive__top__teacher-text {
                        width: 100%;
                        background-size:
                            clamp(68.28px, calc(100vw * (68.28 / 768)), 100.28px),
                            0px 0px;
                    }
                }



                .archive__under {}

                    .archive__under__list {
                        display: flex;
                        flex-direction: column;
                        row-gap: clamp(20px, calc(100vw * (20 / 768)), 40px);
                        width: 100%;
                    }

                        .archive__under__item {
                            /*
                            filter: drop-shadow(
                                0
                                clamp(2px, calc(100vw * (2 / 768)), 3px)
                                clamp(6px, calc(100vw * (6 / 768)), 12px)
                                rgb(0 0 0 / .16)
                            );
                            */
                        }


                            .archive__under__link {
                                padding-top: calc(20px - clamp(2px, calc(100vw * (2 / 768)), 4px));
                                padding-inline: calc(20px - clamp(2px, calc(100vw * (2 / 768)), 4px));
                                padding-bottom: clamp(16px, calc(100vw * (16 / 768)), 26px);
                                border: clamp(2px, calc(100vw * (2 / 768)), 4px) solid white;
                                border-radius: clamp(10px, calc(100vw * (10 / 768)), 16px);
                                background-color: white;
                                box-shadow: 0 clamp(2px, calc(100vw * (2 / 768)), 3px) clamp(6px, calc(100vw * (6 / 768)), 12px) rgba(0, 0, 0, 0.16);
                            }
                            @media screen and (min-width: 768px) {
                                .archive__under__link {
                                    display: grid;
                                    grid-template-columns: 1fr 139px;
                                    grid-column-gap: min(128px, calc(100vw * (128 / 1920)));
                                    align-items: center;
                                    padding-right: min(80px, calc(100vw * (80 / 1920)));
                                    background-repeat: no-repeat;
                                    background-position: calc(100% - min(24.6px, calc(100vw * (24.6 / 1920)))) 50%;
                                    background-size: min(13px, calc(100vw * (13 / 1920)));
                                }
                            }

                                .archive__under__details {
                                    display: flex;
                                    flex-wrap: wrap;
                                    row-gap: 10px;
                                }
                                @media screen and (min-width: 768px) {
                                    .archive__under__details { grid-row: 2 / 3 }
                                }
                                @media screen and (max-width: 767px) {
                                    .archive__under__details { margin-bottom: 20px }
                                }

                                @media screen and (min-width: 768px) {
                                    .archive__under__image {
                                        grid-row: 2 span;
                                    }
                                }
                                @media screen and (max-width: 767px) {
                                    .archive__under__image {
                                        width: 139px;
                                        margin-inline: auto;
                                    }
                                }

                                    .archive__under__details .archive__text { width: auto }


                    .archive__under__list + .content-button { margin-top: clamp(40px, calc(100vw * (40 / 768)), 60px) }



.archive-bnr {}

    .archive-bnr img {
        height: auto;
    }





/*------------------------------------*\
    $404
\*------------------------------------*/
.fs-404 {
    padding-top: clamp(22px, calc(100vw * (22 / 375)), 50px);
    padding-bottom: calc(100px - clamp(40px, calc(100vw * (40 / 375)), 60px));
    text-align: center;
}

    .fs-404__title { line-height: 1.5 }
    h1.fs-404__title {
        color: var(--primaryBlue-500);
        margin-bottom: 20px;
        font-size: clamp(2.2rem, calc(100vw * (22 / 375)), 5.0rem);
    }
    h2.fs-404__title {
        color: var(--primaryBlue-300);
        margin-bottom: clamp(27px, calc(100vw * (27 / 768)), 40px);
        font-size: clamp(2.0rem, calc(100vw * (20 / 375)), 4.0rem);
        font-weight: 300;
    }

    .fs-404__description {
        margin-bottom: clamp(44px, calc(100vw * (44 / 768)), 56px);
        font-size: clamp(1.4rem, calc(100vw * (14 / 768)), 2.0rem);
        line-height: calc(24 / 14);
    }

    .fs-404 .content-button { min-width: min(360px, calc(100% - 20px)) }

/*------------------------------------*\
    $award
\*------------------------------------*/

.page-award h1{
    text-align: center;
    font-size: clamp(2.1rem,2.6vw,5rem);
    color: var(--primaryBlue-500);
    font-weight: bold;
    text-align: center;
    padding-bottom: 6rem;
}

.page-award h1 span {
    position: relative;
    display: inline-block;
}

.page-award h1 span::before,
.page-award h1 span::after {
    content: "";
    height: 100%;
    width: 64px;
    position: absolute;
    top: calc(100vw * 0.008);
    background: url(../images/award-title-decoration-left.svg) 0 0/contain no-repeat ;
}

.page-award h1 span::before {
    height: 100%;
    left: calc(100vw * -0.07);
}

.page-award h1 span::after {
    transform: scale(-1,1);
    right: calc(100vw * -0.08);
}

.award__list__container {
    background: #f0f7fc;
    padding: calc(100vw * 0.021) 10px 80px;
}


.award__list {
    background: #fff;
    min-width: 33.5rem;
    max-width: 110rem;
    margin: 0 auto;
    border-radius: 2rem;
    box-shadow: 0 0.3rem 1.2rem rgba(0,0,0,0.16);
    padding: calc(100vw * 0.016);
}

.award__item {
    position: relative;
    background: #FFFAE6;
    padding: calc(100vw * 0.016) calc(100vw * 0.016) calc(100vw * 0.052);
    border-radius: calc(100vw * 0.0104);
    background: 
    url(../images/icon-award-decoration.svg) right calc(100vw * 0.0521)  bottom calc(100vw * 0.0208)/auto calc(100vw * 0.0234) no-repeat #FFFAE6
    ;
}

.award__item + .award__item {
    margin-top: 40px;
}

.award__item__title {
    font-size: clamp(1.8rem, 1.46vw, 2.5rem);
    font-weight: bold;
    padding-left: 15rem;
}

.award__item__title dt {
    font-size: clamp(1.8rem, 1.46vw, 2.5rem);
    color: #C09B58;
}

.award__item__title dd {
    color: var(--primaryBlue-500);
    margin-top: 1.5rem;
}

.award__item__title h2 {
    font-size: clamp(1.8rem, 1.46vw, 2.5rem);
}

.award__item__text {
    font-size: 1.6rem;
    line-height: 1.8;
}

.award__item__text a {
    text-decoration: underline;
    color: var(--primaryBlue-500)
}

.award__item__text a:hover {
    text-decoration: none;
}


.award__item__content {
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.award__item__image {
    min-width: 480px;
    padding-top: 10px;
}

.award__item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.award__list__container {
    padding-bottom: 40px;
}

.award__date {
    position: absolute;
    left: -17px;
    top: -10px;
    width: 175px;
    height: 155px;
    background: url(../images/icon-award-date.svg) 0 0/181px no-repeat;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding: 25px 0;
}

br.less-580 {
    display: none;
}

br.over-580 {
    display: inline;
}

@media screen and (max-width: 1100px) {
    .award__item__content {
        flex-flow: column;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
    }

    .award__item__image {
        min-width: 100%;
        padding-top: 0;
    }

    .award__item__image img {
        min-width: 100%;
    }

    .award__item__text {
        font-size: 1.4rem;
    }

    .award__date {
        width: 123px;
        height: 123px;
        background-size: 130px;
        font-size: 12px;
        padding: 16px 0;
        top: 10px;
        left: -7px;
    }

    .award__item__title {
        padding-left: 10.5rem;
    }

    .award__item__title dd {
        margin-top: 5px;
    }

    .page-award span::before {
        left: 10px;
    }

    .page-award span::after {
        right: 10px;
    }

    .page-award span {
        display: block;
    }

    .page-award h1 {
        padding-bottom: 30px;
    }

    .award__item {
        background: #fff;
        box-shadow: 0 0.3rem 1.2rem rgba(0,0,0,0.16);
        padding: 10px;
        border-radius: 10px;
    }

    .award__item__inner {
        background: url(../images/icon-award-decoration.svg) center  bottom 30px /auto 32px no-repeat #FFFAE6;
        padding: 10px 10px 70px;
        border-radius: 10px;
    }

    .award__list {
        background: none;
        box-shadow: none;
        padding-left: 0;
        padding-right: 0;
    }

    .award__item + .award__item {
        margin-top: 30px;
    }

}

@media screen and (max-width: 580px) {
    br.less-580 {
        display: inline;
    }
    br.over-580 {
        display: none;
    }

    .award__item__inner {
        background: url(../images/icon-award-decoration-sp.svg) center  bottom 30px /auto 32px no-repeat #FFFAE6;
    }
}


.archive__top__support {
    margin-top: -24px;
    margin-bottom: 24px;
    font-size: clamp(1.4rem, calc(100vw * (14 / 768)), 1.6rem);
}

@media screen and (max-width: 1000px) {
    .archive__top__support {
        margin-top: -10px;
        margin-bottom: 16px;
    }
}

.year-selector-sub {
    font-size: 16px;
    margin: calc(100vw * -0.028) auto calc(100vw * 0.03);
    color: #fff;
    display: block;
    border-radius: 100px;
    height: 32px;
    width: 114px;
    line-height: 30px;
    padding: 0 20px 0 14px;
    background: url(../images/select-arrow.svg) center right 12px/ 10px no-repeat var(--primaryBlue-300);
    font-weight: 300;
    font-family: var(--font);
}

.archive__list + .content-button {
    margin-bottom: 12px;
}

.content-button--check {
    background-color: #0e4ea2;
    filter: drop-shadow(2px 4px 0 #9DBEE5);
}

/*20240328*/


.fs-form__label-note span {
    display: block;
    font-size: clamp(1.4rem, calc(100vw * (14 / 768)), 1.6rem);
    margin-top: 16px;
}

.fs-form__label-note span br {
    /*display: none;*/
}

.fs-form__concent__text.color,
.fs-form__concent__main input[type=checkbox]:checked + span {
    color:  #3799DD;
}

.header__nav__list--child.contact {
    border-color: #194EA2;
    background-color: #E7EFFA;
    left: auto;
    right:  0;
    top: 3.3em;
}

@media screen and (max-width: 1400px) {
    .header__nav__list--child.contact {
        top: 3.8em;
    }
}

.header__nav__list--child.contact .header__nav__link--child::after {
    background-image: url(../images/nav-arrow-blue.svg);
}

.header__nav__contact:hover .header__nav__list--child {
    display: flex;
    animation-name: navChildOpen;
    animation-duration: .3s;
    animation-timing-function: var(--easeOutQuart);
    animation-fill-mode: both;
}

.header__nav__contact {
    position: relative;
    padding: 0 0 1.2em;
    margin:  0 0 -1.2em;
}

.sp-only {
    display: none;
}

.pc-only {
    display: block;
}

.header__nav__contact:hover .header__nav__list--child {
    opacity: 1;
    pointer-events: visible;
}

.text-link {
    color: #1581CC;
    text-decoration: underline;
}

:root {
    --color-env: #57B19F;
    --color-env-pale: #EAF7F4;
    --color-health: #E5987B;
    --color-health-pale: #FFEDE6;
    --color-diversity: #50B8C6;
    --color-diversity-pale: #E2F6F8;
    --color-skin: #EF9B9E;
}

.env .fs-theme-head,
.env .fs-theme-list-item-title::before {
    background-color: var(--color-env);
}

.env .fs-theme-body-heading {
    color:var(--color-env);
}

.env,
.env .fs-theme-icons {
    border-color:var(--color-env);
}

.env .fs-theme-body-title-text {
    background-color: var(--color-env-pale);
}

.health .fs-theme-head,
.health .fs-theme-list-item-title::before {
    background-color: var(--color-health);
}

.health .fs-theme-body-heading {
    color:var(--color-health);
}

.health,
.health .fs-theme-icons {
    border-color:var(--color-health);
}

.health .fs-theme-body-title-text {
    background-color: var(--color-health-pale);
}

.diversity .fs-theme-head,
.diversity .fs-theme-list-item-title::before {
    background-color: var(--color-diversity);
}

.diversity .fs-theme-body-heading {
    color:var(--color-diversity);
}

.diversity,
.diversity .fs-theme-icons {
    border-color:var(--color-diversity);
}

.diversity .fs-theme-body-title-text {
    background-color: var(--color-diversity-pale);
}

.skin .fs-theme-head,
.skin .fs-theme-list-item-title::before {
    background-color: var(--color-skin);
}

.skin .fs-theme-body-heading {
    color:var(--color-skin);
}

.skin,
.skin .fs-theme-icons {
    border-color:var(--color-skin);
}


.fs-themes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.fs-theme {
    grid-template-rows: subgrid;
    display: grid;
    grid-row: span 3;
    border-width: 2px;
    border-style: solid;
    gap: 0;
    border-radius: 6px;
}
@media screen and (min-width: 1024px) {
    .fs-theme.skin {
        grid-column: 2 span;
        grid-row: 2 span;
        grid-template-columns: 1fr 106px;
    }
}

.fs-theme-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 500;
    padding: 18px 18px 20px;
    white-space: nowrap;
}
@media screen and (max-width: 1023px) {
    .fs-theme-head {
        padding: 8px 20px 10px;
    }
}
@media screen and (min-width: 1024px) {
    .fs-theme.skin .fs-theme-head {
        grid-column: 2 span;
    }
}


.fs-theme-head label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fs-theme-head > p {
    display: block;
    padding: 7px 10px 7px 18px;
    border-radius: 6px;
    background-color: #FFE8E9;
    color: var(--neutralColor-600);
    font-size: 1.6rem;
    line-height: 1.5;
}
@media screen and (max-width: 1023px) {
    .fs-theme-head > p {
        padding: 7px 4px 6px 8px;
        font-size: 1.1rem;
        line-height: calc(17 / 11);
    }
}

.common-checkbox {
    cursor: pointer;
}

.common-checkbox input[type=radio],
.common-checkbox input[type=checkbox],
.fs-theme-head input[type=checkbox] {
    border-radius: 6px;
    width: 40px;
    height: 40px;
    max-width: 40px;
    background: #fff;
    border: 0;
    outline: none;
    /*appearance: none;*/
    padding: 0;
    background-position: center;
    background-size: 21px;
    background-color: #fff;
    background-repeat: no-repeat;
}

.common-checkbox input[type=radio],
.common-checkbox input[type=checkbox] {
    border: 2px solid #333;
    cursor: pointer;
    margin: 0;
}

.env .fs-theme-head input[type=checkbox]:checked {
    background-image: url(../images/icon-check-env.svg)!important;
}

.health .fs-theme-head input[type=checkbox]:checked {
    background-image: url(../images/icon-check-health.svg)!important;
}

.diversity .fs-theme-head input[type=checkbox]:checked {
    background-image: url(../images/icon-check-diversity.svg)!important;
}

.skin .fs-theme-head input[type=checkbox]:checked {
    background-image: url(../images/icon-check-skin.svg)!important;
}

.common-checkbox input[type=radio]:checked,
.common-checkbox input[type=checkbox]:checked {
    background-image: url(../images/icon-check-black.svg)!important;
}

.common-checkbox label {
    align-items: center;
    display: flex;
    gap: 12px;
    font-size: 20px;
}

.fs-theme-body-heading {
    font-size: 20px;
    font-weight: 600;
}

.fs-theme-body {
    padding: 24px 20px;
}

.fs-theme-icons {
    margin: 0 20px;
    padding: 28px 0;
}
@media screen and (min-width: 1024px) {
    .fs-theme.skin .fs-theme-icons {
        margin: 20px 0 28px;
        padding: 0 28px 0 29px;
    }
}


.fs-theme-list {
    padding: 0;
    margin: 0;
}

.fs-theme-list > li {
    counter-increment: fs-theme-list-item;
    list-style: none;
}

.fs-theme-list > li  + li {
    margin-top: 12px;
}

.fs-theme-list-item-title {
    display: flex;
    gap: 10px;
    font-size: 20px;
    line-height: calc(34, 20);
}
.fs-theme-list-item-title span {
    font-size: 14px;
}
label.fs-theme-list-item-title {
    cursor: pointer;
}
@media screen and (max-width: 1023px) {
    .fs-theme-list-item-title {
        gap: 5px;
        font-size: 18px;
        line-height: calc(34, 18);
    }
}

.fs-theme-list-item-title .wpcf7-list-item-label {
    display: none;
}

.fs-theme-list-item-title input[type=radio],
.fs-theme-list-item-title input[type=checkbox] {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 4px;
    border: 2px solid white;
    background-color: white;
}
.env .fs-theme-list-item-title input[type=radio],
.env .fs-theme-list-item-title input[type=checkbox] {
    border-color: var(--color-env);
}
.env .fs-theme-list-item-title input[type=radio]:checked,
.env .fs-theme-list-item-title input[type=checkbox]:checked {
    background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22radio%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2031%2031%22%3E%3Cdefs%3E%3Cstyle%3E.st0%7Bfill%3A%2357b19f%3B%7D%3C/style%3E%3C/defs%3E%3Cpath%20id%3D%22arrow%22%20class%3D%22st0%22%20d%3D%22M13.6%2C24l-7.5-6.8%2C2-2.2%2C5.2%2C4.7%2C9.7-11.9%2C2.3%2C1.9-11.7%2C14.4Z%22/%3E%3C/svg%3E");
}
.health .fs-theme-list-item-title input[type=radio],
.health .fs-theme-list-item-title input[type=checkbox] {
    border-color: var(--color-health);
}
.health .fs-theme-list-item-title input[type=radio]:checked,
.health .fs-theme-list-item-title input[type=checkbox]:checked {
    background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22radio%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2031%2031%22%3E%3Cdefs%3E%3Cstyle%3E.st0%7Bfill%3A%23E5987B%3B%7D%3C/style%3E%3C/defs%3E%3Cpath%20id%3D%22arrow%22%20class%3D%22st0%22%20d%3D%22M13.6%2C24l-7.5-6.8%2C2-2.2%2C5.2%2C4.7%2C9.7-11.9%2C2.3%2C1.9-11.7%2C14.4Z%22/%3E%3C/svg%3E");
}
.diversity .fs-theme-list-item-title input[type=radio],
.diversity .fs-theme-list-item-title input[type=checkbox] {
    border-color: var(--color-diversity);
}
.diversity .fs-theme-list-item-title input[type=radio]:checked,
.diversity .fs-theme-list-item-title input[type=checkbox]:checked {
    background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22radio%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2031%2031%22%3E%3Cdefs%3E%3Cstyle%3E.st0%7Bfill%3A%2350B8C6%3B%7D%3C/style%3E%3C/defs%3E%3Cpath%20id%3D%22arrow%22%20class%3D%22st0%22%20d%3D%22M13.6%2C24l-7.5-6.8%2C2-2.2%2C5.2%2C4.7%2C9.7-11.9%2C2.3%2C1.9-11.7%2C14.4Z%22/%3E%3C/svg%3E");
}
.skin .fs-theme-list-item-title input[type=radio],
.skin .fs-theme-list-item-title input[type=checkbox] {
    border-color: var(--color-skin);
}
.skin .fs-theme-list-item-title input[type=radio]:checked,
.skin .fs-theme-list-item-title input[type=checkbox]:checked {
    background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22radio%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2031%2031%22%3E%3Cdefs%3E%3Cstyle%3E.st0%7Bfill%3A%23EF9B9E%3B%7D%3C/style%3E%3C/defs%3E%3Cpath%20id%3D%22arrow%22%20class%3D%22st0%22%20d%3D%22M13.6%2C24l-7.5-6.8%2C2-2.2%2C5.2%2C4.7%2C9.7-11.9%2C2.3%2C1.9-11.7%2C14.4Z%22/%3E%3C/svg%3E");
}
@media screen and (min-width: 1024px) {
    .fs-theme-list-item-title input[type=radio],
    .fs-theme-list-item-title input[type=checkbox] {
        width: 35px;
        height: 35px;
        border-radius: 6px;
    }
}

/* .fs-theme-list-item-title::before {
    content: counter(fs-theme-list-item);
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    display: grid;
    place-items: center;
    border-radius: 30px;
    font-weight: 600;
} */

.fs-theme-icons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    padding-top: 20px;
    border-top-style: solid;
    border-top-width: 1px;
}
@media screen and (min-width: 1024px) {
    .fs-theme.skin .fs-theme-icons {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        border-top: none;
        border-left-style: solid;
        border-left-width: 1px;
    }
}


.fs-themes-icons li {
    aspect-ratio: 1/1;
}

.fs-theme-list-item-example {
    margin: 0;
    padding: 0;
}

.fs-theme-list-item-example li {
    list-style: none;
    padding: 0;
    margin: 0;
}


.fs-theme-list-item-example-container {
    display: flex;
    margin-top: 10px;
    font-size: 14px;
}

.fs-theme-list-item-example li {
    display: flex;
}

.fs-theme-list-item-example li::before  {
    content: "・"
}

.fs-theme-body-title-text {
    font-size: 23px;
    text-align: center;
    padding: 20px 0;
    margin-top: 8px;
    margin-bottom: 20px;
    border-radius: 6px;
}
.wpcf7-form-control.wpcf7-radio,
.wpcf7-form-control.wpcf7-checkbox {
    display: flex;
    height: 100%;
}

.wpcf7-list-item.first.last,
.fs-theme .wpcf7-list-item {
    margin-left: 0;
}

.fs-theme-free-write-textarea textarea {
    height: 240px;
    margin-top: 8px;
}

.fs-theme .common-checkbox input[type=checkbox] {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid #333;
}

.fs-theme .common-checkbox input[type=checkbox]:checked {
    background: url(../images/check-black.svg);
}

.fs-theme-undefined {
    margin-top: 40px;
    cursor: pointer;
}

.fs-theme-undefined label {
    display: flex;
    gap: 10px; 
}

.fs-theme-free-write {
    margin-top: 40px;
}

.fs-theme-head .wpcf7-form-control.wpcf7-checkbox,
.fs-theme-head .wpcf7-list-item.first.last {
    width: 100%;
}

.fs-people-input {
    display: flex;
    align-items: center;
    gap: 16px;
}

.fs-people-input input {
    width: 210px!important;
}

.fs-people-input small {
    font-size: 23px;
}

.fs-date {
    display: flex;
    gap: 40px;
    align-items: center;
}

.fs-date + .fs-date {
    margin-top: 30px;
}

.fs-date label {
    font-size: 23px;
}

.fs-date input {
    width: 400px!important;
}

.fs-date input[type="date"]{
    width: 200px;
      
    /*忘れずに書きましょう。*/
    position: relative;
}

.fs-date input[type=date]::-webkit-calendar-picker-indicator {
    position: absolute;
    width: 100%;
    height: 100%;
}

.fs-date input[type=date]::-webkit-calendar-picker-indicator {
    opacity: 0;
}

.fs-time-length,
.time-defined,
.time-undefined {
    display: flex;
    align-items: center;
}

.fs-theme .wpcf7-not-valid-tip {
    display: none;
}

.time-defined select {
    width: 235px!important;
    gap: 20px;
}

.fs-form__input input[type=date],
.fs-form__input input[type=number],
.fs-form__input select {
    height: 60px!important;
}

.time-undefined {
    margin-top: 40px;
    column-gap: 60px;
}

.time-undefined input[type=number] {
   width: 150px!important; 
   margin: 0 20px;
}

.wpcf7-form-control.wpcf7-checkbox {
    display: flex;
}

.fs-times {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1em 1fr;
    align-items: center;
    grid-column-gap: 15px;
    margin-left: 20px;
}
@media screen and (max-width: 768px) {
    .fs-times {
        grid-column-gap: 10px;
    }
}

.fs-times .wpcf7-form-control-wrap {
    flex: 1;
}

.fs-times .wpcf7-form-control-wrap select {
    width: 100%!important;
}

input[name="date-first-candidate"] {
    margin-left: -28px;
}

@media screen and (max-width: 1400px) {
    .fs-times {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-top: 10px;
        gap: 10px;
        margin-left: 0;
    }

    .fs-times input {
        width: 150px;
    }

    .time-defined, .time-undefined {
        flex-flow: column;
        align-items: flex-start;
    }

    .fs-time-length {
        margin-top: 10px;
    }

    .time-defined select {
        width: 150px!important;
        margin: 0;
        flex: 1;
    }
}

.fs-form__block:has(#date-undefined:checked) input[type=date] {
    opacity: 0.5;
    pointer-events: none;
}

.fs-form__block:has(#date-undefined:disabled) .common-checkbox {
    opacity: 0.5;
    pointer-events: none;
}

.time-undefined:not(:has([name=is-time-defined]:checked)) .wpcf7-not-valid-tip,
.time-defined:not(:has([name=is-time-defined]:checked)) .wpcf7-not-valid-tip {
    display: none;
}

.fs-form__block:has([name=is-time-defined][value=ご希望の時間が決まっている場合]:checked) .fs-time-length {
    pointer-events: none;
    opacity: 0.5;
}

.fs-form__block:has([name=is-time-defined][value=時間帯が決まっていない場合]:checked) #time-start,
.fs-form__block:has([name=is-time-defined][value=時間帯が決まっていない場合]:checked) #time-end {
    pointer-events: none;
    opacity: 0.5;
}

#wpcf7cpcnf tr:has(p:empty) {
    display: none;
}

.fs-theme-2row-text {
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.3;
    flex-wrap: wrap;
}

.header-contact-icon {
    pointer-events: none;
}

@media screen and (max-width: 1023px) {
    .header-contact-icon {
        pointer-events: auto;
    }

    .header__nav__list--child.contact {
        background: none;
    }

    .header__nav__list--child.contact .header__nav__link--child::after {
        background-image: url(../images/nav-arrow.svg);
    }

    .header__nav__contact .header__nav__list--child {
        display: block!important;
        animation: none!important;
    }

    .sp-only {
        display: block;
    }

    .pc-only {
        display: none;
    }

    .fs-themes {
        grid-template-columns: 1fr;
    }

    .fs-theme-icons {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 15px;
        row-gap: 10px;
        padding-bottom: 16px;
    }

    .fs-theme-list-item-example br {
        display: none;
    }

    .fs-theme-body-title-text {
        font-size: 20px;
        padding: 14px 0;
    }

    .fs-theme-list-item-title {
        font-size: 18px;
    }

    .fs-theme-head {
        font-size: 1.8rem;
        gap: 10px;
    }

    .fs-theme-body {
        padding: 16px 20px;
    }

    .common-checkbox input[type=radio],
    .common-checkbox input[type=checkbox],
    .fs-theme-head input[type=checkbox] {
        width: 32px;
        height: 32px;
        background-size: 17px;
    }



    .common-checkbox input[type=radio]:checked,
    .fs-theme-head input[type=radio]:checked,
    .fs-theme-head input[type=checkbox]:checked {
        background-size: 17px;
    }


    .fs-theme-free-write-textarea textarea {
        height: 170px;
    }

    .common-checkbox label,
    .wpcf7-list-item-label {
        font-size: 16px;
    }
    .fs-theme .wpcf7-list-item-label {
        font-size: 1.8rem;
    }

    .fs-people-input small {
        font-size: 16px;
    }

    .fs-people-input input {
        width: 140px!important;
    }

    .fs-date {
        flex-flow: column;
        gap: 8px;
        align-items: flex-start;
    }

    .fs-date-input input,
    .fs-date-input {
        width: 100%!important;
    }

    .fs-date label {
        font-size: 16px;
    }

    .fs-theme-undefined {
        margin-top: 20px;
    }

    .fs-form__label label {
        font-size: 16px;
    }

    .fs-form__label-note span {
        margin-top: 10px;
    }

    input[name="date-first-candidate"] {
        margin-left: 0;
    }

    .fs-theme-free-write-title {
        font-size: 16px;
    }

    .fs-form__concent {
        padding-bottom: 40px!important;
        padding-top: clamp(20px, calc(100vw*(20 / 375)), 60px)!important;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1400px) {
    .fs-theme-body-title-text {
        font-size: calc(100vw * 0.015);
    }

    /* .fs-theme-list-item-example-container,
    .fs-theme-list-item-title {
        font-size: calc(100vw * 0.012);
    } */
    .fs-theme-list-item-example-container {
        font-size: calc(100vw * 0.012);
    }

    .fs-theme-list-item-example-container::before,
    .fs-theme-list-item-example li {
        font-size: calc(100vw * 0.01);
    }

    .fs-theme-body-heading {
        font-size: calc(100vw * 0.015);
    }

    .fs-theme-head {
        font-size: calc(100vw * 0.015);
    }

    /* .fs-theme-list-item-title span {
        font-size: calc(100vw * 0.010);
    } */

    /* .fs-theme-list-item-example br {
        display: none;
    } */

 }

.header__nav__link {
    white-space: nowrap;
}



/*
 * Add 2025
 */
.header__info {
    display: grid;
    grid-template-columns: calc((152.5 / 562) * 100%) 1fr;
    grid-column-gap: calc((13.5 / 562) * 100%);
    border: max(1px, calc(100vw * (4 / 1920))) solid #F0A348;
    border-radius: calc(100vw * (10 / 1920));
    width: calc(100vw * (590 / 1920));
    padding: calc(100vw * (8 / 1920)) calc(100vw * (10 / 1920)) calc(100vw * (11 / 1920)) calc(100vw * (10 / 1920));
    margin-top: calc(100vw * (73 / 1920));
    margin-left: auto;
    margin-right: auto;
    background-color: #FFF8F8;
    color: #333;
    font-size: calc(100vw * (18 / 1920));
    font-weight: 700;
    text-align: left;
}
@media screen and (orientation: portrait) {
    .header__info {
        grid-template-columns: calc(100% * (146.53 / 355)) 1fr;
        grid-column-gap: calc((7.5 / 355) * 100%);
        width: calc(355 / 375 * 100%);
        padding: calc(100vw * (10 / 375)) calc(100vw * (6 / 375)) calc(100vw * (11 / 375)) calc(100vw * (6 / 375));
        border-width: max(1px, calc(100vw * (4 / 375)));
        border-radius: calc(100vw * (10 / 375));
        font-size: calc(100vw * (15 / 375));
    }
}
.header__info__img img {
    display: block;
    width: 100%;
}
@media screen and (orientation: portrait) {
    .header__info__img {
        margin-top: calc(100vw * (18 / 375));
    }
}

.header__info__content {
    padding-right: calc(100vw * (15 / 1920));
}
.header__info__content h3 {
    color: #F45354;
    font-size: calc(100vw * (20 / 1920));
    line-height: 1.5;
}
.header__info__content p {
    line-height: calc(32 / 18);
}
.header__info__content p > strong {
    color: #0073C3;
}
@media screen and (orientation: portrait) {
    .header__info__content {
        padding-right: calc(100vw * (10 / 375));
    }
    .header__info__content h3 {
        font-size: calc(100vw * (15 / 375));
        line-height: calc(22.5 / 15);
    }
    .header__info__content p {
        margin-top: calc(100% * (3 / 375));
        line-height: calc(22.5 / 15);
    }
}

.header__info__nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: calc((174 / 530.5) * 100%) 1fr;
    column-gap: calc((20 / 530.5) * 100%);;
    align-items: center;
    width: calc((530.5 / 562) * 100%);
    padding-top: calc((8 / 562) * 100%);
    margin-top: calc((11 / 562) * 100%);
    margin-right: auto;
    margin-left: auto;
    border-top: 1px dashed #F0A348;
}
.header__info__nav__label {
    color: #C53A82;
    line-height: calc(32 / 18);
}
.header__info__nav__main {
    font-weight: 400;
    line-height: 2;
}
.header__info__nav__main a {
    display: block;
    text-decoration: underline;
}
@media screen and (orientation: portrait) {
    .header__info__nav {
        display: block;
        width: calc(315 / 355 * 100%);
        padding-top: calc((11 / 355) * 100%);
        margin-top: calc((11 / 355) * 100%);
    }
    .header__info__nav__label {
        font-size: calc(100vw * (14 / 375));
        line-height: calc(20 / 14);
    }
    .header__info__nav__main {
        margin-top: calc((4 / 315) * 100%);
    }
    .header__info__nav__main a {
        font-size: calc(100vw * (16 / 375));
        line-height: calc(34 / 16);
    }
}