* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

a {
    text-decoration: none;
}

@property --screen-width {
    syntax: '<length>';
    inherits: true;
    initial-value: 100vw;
}

@property --screen-height {
    syntax: '<length>';
    inherits: true;
    initial-value: 100vh;
}

:root {
    --10px_390: calc(10 / 390 * 100vw);
    --dynamic-top: min(calc(683 / 1024 * 8 * 1svh), 85px);
    --dynamic-top-mobile: min(calc(var(--10px_390) * 18), 180px);
    --mvHeight: calc(100svh - 160px);
    --mvWidth: calc(100vw - 115px);

    --screen-width-px: tan(atan2(var(--screen-width), 1px));
    --screen-height-px: tan(atan2(var(--screen-height), 1px));

    --widthRatio: calc(var(--screen-width-px) / 1440);
    --heightRatio: calc(var(--screen-height-px) / 1024);
    --minRatio: min(var(--widthRatio), var(--heightRatio));
    --scaleFactor: clamp(0.6, var(--minRatio), 1.2);

    --mobileWidthRatio: calc(var(--screen-width-px) / 390);
    --mobileHeightRatio: calc(var(--screen-height-px) / 844);
    --mobileMinRatio: min(var(--mobileWidthRatio), var(--mobileHeightRatio));
    --mobileScaleFactor: clamp(0.5, var(--mobileWidthRatio), 1.5);
}

@media screen and (max-width: 1440px) {
    :root {
        --mobileImageRatio: calc(40 / 98);
    }
}

body {
    font-family: 'Noto Sans JP', 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

@media screen and (max-width: 1024px) {
    body {
        width: 100dvw;
    }
}

.header {
    position: fixed;
    height: 80px;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left: 50px;
    z-index: 10;
}

@media screen and (max-width: 1024px) {
    .header {
        height: min(calc(var(--10px_390) * 4), 80px);
        padding-left: min(calc(var(--10px_390) * 2), 40px);
    }
}

.header a {
    display: contents;
}

.header::after {
    content: '';
    position: absolute;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #fff;

}

@media screen and (max-width: 1024px) {
    .header::after {
        height: min(calc(var(--10px_390) * 4), 80px);
    }
}

.header-logo {
    margin-right: 20px;
}

@media screen and (max-width: 1024px) {
    .header-logo {
        margin-right: calc(var(--10px_390) * 1);
        width: min(calc(var(--10px_390) * 16.2), 324px);
    }
}

.header-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 35px;
    font-weight: 900;
    color: #000;
    letter-spacing: 0.06em;
}

@media screen and (max-width: 1024px) {
    .header-subtitle {
        font-size: min(calc(var(--10px_390) * 1.8), 36px);
        letter-spacing: 0;
    }
}


.main {
    background: #F7F4F2;
    padding-top: 80px;
    margin-inline: 50px;
    overflow-x: hidden;
}

@media screen and (max-width: 1024px) {
    .main {
        padding-top: min(calc(var(--10px_390) * 4), 80px);
        margin-left: min(calc(var(--10px_390) * 2), 40px);
        margin-right: min(calc(var(--10px_390) * 2.5), 50px);
    }
}

.aside {
    position: fixed;
    top: 80px;
    width: 50px;
    height: calc(100svh - 80px);
    left: 0;
    z-index: 10;
}

@media screen and (max-width: 1024px) {
    .aside {
        --headerHeight: min(calc(var(--10px_390) * 4), 80px);
        top: min(calc(var(--10px_390) * 4), 80px);
        width: min(calc(var(--10px_390) * 2), 40px);
        height: calc(100svh - var(--headerHeight));
    }
}

.aside::before {
    content: '';
    position: fixed;
    top: 80px;
    width: 50px;
    height: calc(100svh - 80px);
    right: 0;
    background-color: #fff;
    z-index: 10;
}

@media screen and (max-width: 1024px) {
    .aside::before {
        --headerHeight: min(calc(var(--10px_390) * 4), 80px);
        top: min(calc(var(--10px_390) * 4), 80px);
        width: min(calc(var(--10px_390) * 2.5), 50px);
        height: calc(100svh - var(--headerHeight));
    }
}

.footer {
    display: grid;
    grid-template-rows: 50px 80px;
    margin-inline: 50px;
    place-items: center;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    .footer {
        --footerHight: min(calc(var(--10px_390) * 2.5), 50px);
        --paddingHeight: min(calc(var(--10px_390) * 4), 80px);
        display: grid;
        grid-template-rows: var(--footerHight) var(--paddingHeight);
    }
}

.footer-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    justify-self: center;
    align-self: center;
}

@media screen and (max-width: 1024px) {
    .footer-text {
        font-size: min(calc(var(--10px_390) * 1), 20px);
    }
}

.side-nav {
    position: fixed;
    top: 80px;
    width: 50px;
    height: calc(100svh - 160px);
    right: 0;
    z-index: 20;
}

@media screen and (max-width: 1024px) {
    .side-nav {
        --headerHeight: min(calc(var(--10px_390) * 4), 80px);
        top: min(calc(var(--10px_390) * 4), 80px);
        width: min(calc(var(--10px_390) * 2.5), 50px);
        height: calc(100svh - var(--headerHeight));
    }
}

.side-nav-active-indicator {
    position: absolute;
    background: #000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    right: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 100%;
    letter-spacing: 0.06em;
    width: 50px;
    height: 100px;
    top: 0;
}

@media screen and (max-width: 1024px) {
    .side-nav-active-indicator {
        width: min(calc(var(--10px_390) * 2.5), 50px);
        width: min(calc(var(--10px_390) * 2.5), 50px);
        font-size: min(calc(var(--10px_390) * 1.2), 24px);
        height: min(calc(var(--10px_390) * 8), 160px);
    }
}

.side-nav-active-indicator span {
    writing-mode: vertical-rl;
    white-space: nowrap;
}

.side-nav-link {
    display: block;
    width: 100%;
    height: 100%;
    width: 50px;
    height: 40px;
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (max-width: 1024px) {
    .side-nav-link {
        width: min(calc(var(--10px_390) * 2.5), 50px);
        height: min(calc(var(--10px_390) * 2), 40px);
    }
}

.side-nav-link::before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background-color: #D9D9D9;
    border-radius: 100%;
    z-index: 1;
}

@media screen and (max-width: 1024px) {
    .side-nav-link::before {
        width: min(calc(var(--10px_390) * .75), 15px);
        height: min(calc(var(--10px_390) * .75), 15px);
    }
}

.side-nav-link.active {
    height: 100px;
}

@media screen and (max-width: 1024px) {
    .side-nav-link.active {
        height: min(calc(var(--10px_390) * 8), 160px);
    }
}

.side-nav-link span {
    display: none;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 100%;
    letter-spacing: 0.06em;
    color: #fff;
}

.section-number {
    position: fixed;
    bottom: 30px;
    right: 30px;
    font-size: 2rem;
    font-weight: bold;
    z-index: 20;
    font-family: 'Lato', sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 25px;
    line-height: 100%;
    letter-spacing: 0.06em;
}

@media screen and (max-width: 1024px) {
    .section-number {
        bottom: min(calc(var(--10px_390) * 1.3), 26px);
        right: min(calc(var(--10px_390) * 1.8), 36px);
        font-size: min(calc(var(--10px_390) * 1.2), 24px);
    }
}

.page-top {
    position: fixed;
    bottom: 40px;
    right: 100px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    transition: transform 0.3s ease;
}

@media screen and (max-width: 1024px) {
    .page-top {
        bottom: min(calc(var(--10px_390) * 2), 40px);
        right: min(calc(var(--10px_390) * 3.65), 73px);
    }
}

.page-top-link {
    display: block;
    position: relative;
}

@media screen and (max-width: 1024px) {
    .page-top-image {
        width: min(calc(var(--10px_390) * 3.8), 76px);
    }
}

.page-top-image-arrow {
    position: absolute;
    top: 20px;
    right: 18px;
    transition: transform 0.3s ease;
}

@media screen and (max-width: 1024px) {
    .page-top-image-arrow {
        width: min(calc(var(--10px_390) * 1.3), 26px);
        top: min(calc(var(--10px_390) * 1.1), 22px);
        right: min(calc(var(--10px_390) * 1), 20px);
    }
}


.page-top:hover {
    transform: rotate(10deg);
}

.page-top:hover .page-top-image-arrow {
    transform: rotate(-10deg);
}

.page-top-image {
    transition: transform 0.3s ease;
}


#mv {
    display: grid;
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    #mv {
        display: block;
    }
}


/* MVセクション */
.mv-container {
    min-height: 516px;
    max-height: 1100px;
    height: calc(100svh - 160px);
    position: relative;
    width: calc(2385px * var(--scaleFactor));
    width: max(2385px, calc(2385px * var(--scaleFactor)));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
}

@media screen and (max-width: 1024px) {
    .mv-container {
        width: 100%;
        min-height: min(calc(var(--10px_390) * 76.2), 762px);
        height: calc(100svh - min(calc(var(--10px_390) * 8), 160px));
        max-height: 1020px;
        padding: 0;
        --length: min((calc(280 / 390 * 100vw)), (calc(280px * 1.5)));
        grid-template-columns: 100%;
        grid-template-rows: var(--dynamic-top-mobile) var(--length) var(--dynamic-top-mobile);
    }
}

.left-grid {
    grid-row: 1;
    grid-column: 1;
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: auto auto;
    justify-content: end;
}

.right-grid {
    grid-row: 1;
    grid-column: 3;
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: auto auto;
    justify-content: start;

}

@media screen and (max-width: 1024px) {
    .left-grid {
        display: none;
    }

    .right-grid {
        display: none;
    }
}

.mv-container-heading {
    grid-row: 1;
    grid-column: 2;
    justify-self: center;
    align-self: center;
    margin-top: calc(var(--dynamic-top) * -1);
    min-width: calc(683px * 0.6);
    min-height: calc(683px * 0.6);
    --responsiveHeight: calc(683 / 864 * var(--mvHeight));
    --responsiveWidth: calc(683 / 1325 * var(--mvWidth));
    width: min(var(--responsiveWidth), var(--responsiveHeight));
    height: min(var(--responsiveWidth), var(--responsiveHeight));
    max-width: calc(683px * 1.2);
    max-height: calc(683px * 1.2);
    display: grid;
    flex-direction: column;
    opacity: 1;
    z-index: 2;
    font-family: 'Lato', sans-serif;
    line-height: 1;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
}

@media screen and (max-width: 1024px) {
    .mv-container-heading {
        grid-row: 2;
        grid-column: 1/-1;
        margin-top: 0;
        min-width: 280px;
        min-height: 280px;
        --length: min(calc(280 / 390 * 100vw), calc(280 / 844 * 100vh));
        --length: calc(280 / 390 * 100vw);
        width: var(--length);
        height: var(--length);
        max-width: calc(280px * 1.5);
        max-height: calc(280px * 1.5);
    }
}

.mv-container-heading img {
    opacity: 0;
    grid-row: 1;
    grid-column: 1 / -1;
    justify-self: center;
    align-self: center;
    width: calc(385 / 864 * var(--mvHeight));
    --responsiveHeight: calc(385 / 864 * var(--mvHeight));
    --responsiveWidth: calc(385 / 1325 * var(--mvWidth));
    width: min(var(--responsiveWidth), var(--responsiveHeight));
    height: min(var(--responsiveWidth), var(--responsiveHeight));
    max-width: calc(385px * 1.2);
    max-height: calc(385px * 1.2);
    min-width: calc(385px * 0.6);
    min-height: calc(385px * 0.6);
}

@media screen and (max-width: 1024px) {
    .mv-container-heading img {
        min-width: 168px;
        min-height: 168px;
        --length: min(calc(168 / 390 * 100vw), calc(168 / 844 * 100vh));
        --length: calc(168 / 390 * 100vw);
        width: var(--length);
        height: var(--length);
        max-width: calc(168px * 1.5);
        max-height: calc(168px * 1.5);
    }
}

.mv-circle-image-container {
    grid-row: 1;
    grid-column: 2;
    justify-self: center;
    align-self: center;
    margin-top: calc(var(--dynamic-top) * -1);
    min-width: calc(683px * 0.6);
    min-height: calc(683px * 0.6);
    --responsiveHeight: calc(683 / 864 * var(--mvHeight));
    --responsiveWidth: calc(683 / 1325 * var(--mvWidth));
    width: min(var(--responsiveWidth), var(--responsiveHeight));
    height: min(var(--responsiveWidth), var(--responsiveHeight));
    max-width: calc(683px * 1.2);
    max-height: calc(683px * 1.2);
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 1024px) {
    .mv-circle-image-container {
        grid-row: 2;
        grid-column: 1/-1;
        margin-top: 0;
        min-width: 280px;
        min-height: 280px;
        --length: calc(280 / 390 * 100vw);
        width: var(--length);
        height: var(--length);
        max-width: calc(280px * 1.5);
        max-height: calc(280px * 1.5);
    }
}

.mv-circle-image {
    position: absolute;
    opacity: 0;
}

.--circle12 {
    top: 42%;
    left: 93%;
    width: calc(98px * var(--scaleFactor));
}


.--circle11 {
    top: 60%;
    left: 90%;
    width: calc(114px * var(--scaleFactor));

}

.--circle10 {
    top: 74%;
    left: 78%;
    width: calc(98px * var(--scaleFactor));

}

.--circle09 {
    top: 86%;
    left: 65%;
    width: calc(97px * var(--scaleFactor));

}

.--circle08 {
    top: 89%;
    left: 47%;
    width: calc(101px * var(--scaleFactor));

}

.--circle07 {
    top: 89%;
    left: 25%;
    width: calc(112px * var(--scaleFactor));

}

.--circle06 {
    top: 80%;
    left: 9%;
    width: calc(109px * var(--scaleFactor));

}

.--circle05 {
    top: 63%;
    left: -1%;
    width: calc(98px * var(--scaleFactor));

}

.--circle04 {
    top: 45%;
    left: -5%;
    width: calc(76px * var(--scaleFactor));

}

.--circle03 {
    top: 22%;
    left: -2%;
    width: calc(77px * var(--scaleFactor));

}

.--circle02 {
    top: 4%;
    left: 8%;
    width: calc(124px * var(--scaleFactor));

}

.--circle01 {
    top: -3%;
    left: 27%;
    width: calc(88px * var(--scaleFactor));

}

.--circle16 {
    top: -6%;
    left: 46%;
    width: calc(112px * var(--scaleFactor));

}

.--circle15 {
    top: -4%;
    left: 67%;
    width: calc(82px * var(--scaleFactor));

}

.--circle14 {
    top: 3.5%;
    left: 81.5%;
    width: calc(84px * var(--scaleFactor));

}

.--circle13 {
    top: 24%;
    left: 90%;
    width: calc(76px * var(--scaleFactor));

}

@media screen and (max-width: 1024px) {
    .--circle12 {
        width: calc(98px * var(--mobileScaleFactor) * var(--mobileImageRatio));
    }

    .--circle11 {
        width: calc(114px * var(--mobileScaleFactor) * var(--mobileImageRatio));
    }

    .--circle10 {
        width: calc(98px * var(--mobileScaleFactor) * var(--mobileImageRatio));
    }

    .--circle09 {
        width: calc(97px * var(--mobileScaleFactor) * var(--mobileImageRatio));
    }

    .--circle08 {
        width: calc(101px * var(--mobileScaleFactor) * var(--mobileImageRatio));
    }

    .--circle07 {
        width: calc(112px * var(--mobileScaleFactor) * var(--mobileImageRatio));
    }

    .--circle06 {
        width: calc(109px * var(--mobileScaleFactor) * var(--mobileImageRatio));
    }

    .--circle05 {
        width: calc(98px * var(--mobileScaleFactor) * var(--mobileImageRatio));
    }

    .--circle04 {
        width: calc(76px * var(--mobileScaleFactor) * var(--mobileImageRatio));
    }

    .--circle03 {
        width: calc(77px * var(--mobileScaleFactor) * var(--mobileImageRatio));
    }

    .--circle02 {
        width: calc(124px * var(--mobileScaleFactor) * var(--mobileImageRatio));
    }

    .--circle01 {
        width: calc(88px * var(--mobileScaleFactor) * var(--mobileImageRatio));
    }

    .--circle16 {
        width: calc(112px * var(--mobileScaleFactor) * var(--mobileImageRatio));
    }

    .--circle15 {
        width: calc(82px * var(--mobileScaleFactor) * var(--mobileImageRatio));
    }

    .--circle14 {
        width: calc(84px * var(--mobileScaleFactor) * var(--mobileImageRatio));
    }

    .--circle13 {
        width: calc(76px * var(--mobileScaleFactor) * var(--mobileImageRatio));
    }
}


.mv-bg-container.--left {
    grid-row: 1;
    grid-column: 2;
    width: calc(326px * var(--scaleFactor));
    height: 100%;
    position: relative;
}

.mv-bg-container.--right {
    grid-row: 1;
    grid-column: 1;
    width: calc(326px * var(--scaleFactor));
    height: 100%;
    position: relative;
}

.mv-bg-image {
    position: absolute;
    opacity: 0;
}

.mv-bg-container.--large.--left img {
    opacity: 0;
}

.mv-bg-container.--large.--right img {
    opacity: 0;
}

@media screen and (max-width: 1024px) {
    .mv-bg-image {
        display: none;
    }
}

.--mvImage01 {
    top: 6%;
    left: 27%;
    width: calc(113px * var(--scaleFactor));
}

.--mvImage02 {
    top: 84%;
    left: 27%;
    width: calc(82px * var(--scaleFactor));
}

.--mvImage03 {
    top: 6%;
    left: 103%;
    width: calc(31px * var(--scaleFactor));
}

.--mvImage04 {
    top: 17.5%;
    left: 81%;
    width: calc(38px * var(--scaleFactor));
}

.--mvImage05 {
    top: 29%;
    left: 17%;
    width: calc(31px * var(--scaleFactor));
}

.--mvImage06 {
    top: 28.5%;
    left: 55%;
    width: calc(25px * var(--scaleFactor));
}

.--mvImage07 {
    top: 44%;
    left: 55%;
    width: calc(37px * var(--scaleFactor));
}

.--mvImage08 {
    top: 53%;
    left: 25%;
    width: calc(38px * var(--scaleFactor));
}

.--mvImage09 {
    top: 65.5%;
    left: 56%;
    width: calc(31px * var(--scaleFactor));
}

.--mvImage10 {
    top: 74%;
    left: 12%;
    width: calc(30px * var(--scaleFactor));
}

.--mvImage11 {
    top: 80%;
    left: 72%;
    width: calc(38px * var(--scaleFactor));
}

.--mvImage12 {
    top: 88.5%;
    left: 112%;
    width: calc(25px * var(--scaleFactor));
}

/* right */
.--mvImage13 {
    top: 2%;
    left: 39%;
    width: calc(87px * var(--scaleFactor));
}

.--mvImage14 {
    top: 67.5%;
    left: 45%;
    width: calc(112px * var(--scaleFactor));
}

.--mvImage15 {
    top: -0.5%;
    left: -48.5%;
    width: calc(38px * var(--scaleFactor));
}

.--mvImage16 {
    top: 4%;
    left: 6%;
    width: calc(37px * var(--scaleFactor));
}

.--mvImage17 {
    top: 13%;
    left: -3%;
    width: calc(38px * var(--scaleFactor));
}

.--mvImage18 {
    top: 19.5%;
    left: 43%;
    width: calc(25px * var(--scaleFactor));
}

.--mvImage19 {
    top: 30%;
    left: 33%;
    width: calc(31px * var(--scaleFactor));
}

.--mvImage20 {
    top: 37%;
    left: 60%;
    width: calc(38px * var(--scaleFactor));
}

.--mvImage21 {
    top: 51.5%;
    left: 34.5%;
    width: calc(31px * var(--scaleFactor));
}

.--mvImage22 {
    top: 82%;
    left: 2%;
    width: calc(38px * var(--scaleFactor));
}

.--mvImage23 {
    top: 88.5%;
    left: 32%;
    width: calc(32px * var(--scaleFactor));
}

.--mvImage24 {
    top: 91%;
    left: -29%;
    width: calc(31px * var(--scaleFactor));
}

.mv-bg-mobile-image {
    display: none;
}

@media screen and (max-width: 1024px) {
    .mv-bg-mobile-image {
        display: block;
        position: absolute;
    }

    .--mvMobileImage01 {
        top: 3.5%;
        left: 76%;
    }

    .--mvMobileImage02 {
        top: 10%;
        left: 51%;
    }

    .--mvMobileImage03 {
        top: 11%;
        left: 83%;
    }

    .--mvMobileImage04 {
        top: 15.5%;
        left: 40%;
    }

    .--mvMobileImage05 {
        top: 17%;
        left: 14%;
    }

    .--mvMobileImage06 {
        top: 23%;
        left: 22%;
    }

    .--mvMobileImage07 {
        top: 28%;
        left: 4%;
    }

    .--mvMobileImage08 {
        bottom: 48%;
        left: 10%;
    }

    .--mvMobileImage09 {
        top: 58%;
        left: 26%;
    }

    .--mvMobileImage10 {
        top: 63%;
        left: 57%;
    }

    .--mvMobileImage11 {
        top: 69.5%;
        left: 40%;
    }

    .--mvMobileImage12 {
        top: 78.5%;
        left: 23%;
    }

    /* right */
    .--mvMobileImage13 {
        top: 5.5%;
        left: 39%;
    }

    .--mvMobileImage14 {
        top: 12%;
        left: 21%;
    }

    .--mvMobileImage15 {
        top: 20%;
        left: 41%;
    }

    .--mvMobileImage16 {
        top: 22%;
        left: 82%;
    }

    .--mvMobileImage17 {
        top: 26%;
        left: 76%;
    }

    .--mvMobileImage18 {
        top: 57%;
        left: 80%;
    }

    .--mvMobileImage19 {
        top: 61%;
        left: 58%;
    }

    .--mvMobileImage20 {
        top: 64%;
        left: 21%;
    }

    .--mvMobileImage21 {
        top: 69%;
        left: -3%;
    }

    .--mvMobileImage22 {
        top: 72.5%;
        left: 32%;
    }
}

.mv-bg-container.--mobile {
    opacity: 0;
}

@media screen and (max-width: 1024px) {
    .mv-bg-container.--mobile {
        opacity: 1;
    }
}

.mv-bg-container.--mobile {
    display: none;
}

@media screen and (max-width: 1024px) {
    .mv-bg-container.--mobile.--top {
        display: block;
        grid-row: 1;
        grid-column: 1 / -1;
        width: 100%;
        max-width: 720px;
        height: 100%;
        margin-inline: auto;
        position: relative;
    }

    .mv-bg-container.--mobile.--bottom {
        display: block;
        grid-row: 3;
        grid-column: 1 / -1;
        width: 100%;
        max-width: 720px;
        height: 100%;
        margin-inline: auto;
        position: relative;
    }
}

.mv-bg-mobile-image {
    position: absolute;
    opacity: 1;
}

.--mvMobileImageTop01 {
    top: 13%;
    left: 7%;
    width: calc(46px * var(--mobileScaleFactor));
}

.--mvMobileImageTop02 {
    top: 55%;
    left: 81%;
    width: calc(36px * var(--mobileScaleFactor));

}

.--mvMobileImageTop03 {
    top: 16%;
    left: 39%;
    width: calc(16px * var(--mobileScaleFactor));

}

.--mvMobileImageTop04 {
    top: 24%;
    left: 71%;
    width: calc(11px * var(--mobileScaleFactor));

}

.--mvMobileImageTop05 {
    top: 42%;
    left: 26%;
    width: calc(15px * var(--mobileScaleFactor));



}

.--mvMobileImageTop06 {
    top: 50%;
    left: 42%;
    width: calc(13px * var(--mobileScaleFactor));



}

.--mvMobileImageTop07 {
    top: 55%;
    left: 61%;
    width: calc(13px * var(--mobileScaleFactor));



}

.--mvMobileImageTop08 {
    top: 69%;
    left: 20%;
    width: calc(11px * var(--mobileScaleFactor));


}

.--mvMobileImageTop09 {
    top: 77%;
    left: 6%;
    width: calc(13px * var(--mobileScaleFactor));


}

.--mvMobileImageTop10 {
    top: 90%;
    left: 72%;
    width: calc(16px * var(--mobileScaleFactor));



}

.--mvMobileImageTop11 {
    top: 100%;
    left: 11%;
    width: calc(13px * var(--mobileScaleFactor));



}

.--mvMobileImageTop12 {
    top: 97%;
    left: 93%;
    width: calc(15px * var(--mobileScaleFactor));



}

.--mvMobileImageTop13 {
    top: 123%;
    left: 2%;
    width: calc(16px * var(--mobileScaleFactor));


}

.--mvMobileImageTop14 {
    top: 115%;
    left: 89%;
    width: calc(16px * var(--mobileScaleFactor));



}

.--mvMobileImageBottom01 {
    top: 21%;
    left: 6%;
    width: calc(34px * var(--mobileScaleFactor));

}

.--mvMobileImageBottom02 {
    top: 41%;
    left: 74%;
    width: calc(46px * var(--mobileScaleFactor));

}

.--mvMobileImageBottom03 {
    top: -22%;
    left: 5%;
    width: calc(12px * var(--mobileScaleFactor));

}

.--mvMobileImageBottom04 {
    top: 3%;
    left: 12%;
    width: calc(11px * var(--mobileScaleFactor));

}

.--mvMobileImageBottom05 {
    top: -4%;
    left: 91%;
    width: calc(16px * var(--mobileScaleFactor));

}

.--mvMobileImageBottom06 {
    top: 14%;
    left: 80%;
    width: calc(13px * var(--mobileScaleFactor));

}

.--mvMobileImageBottom07 {
    top: 26%;
    left: 29%;
    width: calc(13px * var(--mobileScaleFactor));

}

.--mvMobileImageBottom08 {
    top: 29%;
    left: 62%;
    width: calc(16px * var(--mobileScaleFactor));

}

.--mvMobileImageBottom09 {
    top: 54%;
    left: 20%;
    width: calc(16px * var(--mobileScaleFactor));

}

.--mvMobileImageBottom10 {
    top: 51%;
    left: 49%;
    width: calc(13px * var(--mobileScaleFactor));

}

.--mvMobileImageBottom11 {
    top: 67%;
    left: 67%;
    width: calc(11px * var(--mobileScaleFactor));

}

.--mvMobileImageBottom12 {
    top: 93%;
    left: 11%;
    width: calc(15px * var(--mobileScaleFactor));

}

.mv-bg-container.--large {}

.mv-bg-container.--large.--left {
    grid-row: 1;
    grid-column: 1;
    width: 100%;
    width: 410px;
    width: calc(410px * var(--scaleFactor));
    left: 0;
    position: relative;
}

.mv-bg-container.--large.--right {
    grid-row: 1;
    grid-column: 2;
    width: 100%;
    width: calc(345px * var(--scaleFactor));
    width: 410px;
    width: calc(410px * var(--scaleFactor));
    left: auto;
    right: 0;
    position: relative;
}

@media screen and (max-width: 1024px) {
    .mv-bg-container.--large {
        opacity: 0;
        /* display: none; */
    }
}

.--mvLargeImageLeft01 {
    top: 4%;
    left: 7%;
    width: calc(87px * var(--scaleFactor));


}

.--mvLargeImageLeft02 {
    top: 69%;
    left: -3%;
    width: calc(112px * var(--scaleFactor));

}

.--mvLargeImageLeft03 {
    top: 2%;
    left: 88%;
    width: calc(39px * var(--scaleFactor));

}

.--mvLargeImageLeft04 {
    top: 67%;
    left: 84%;
    width: calc(37px * var(--scaleFactor));

}

.--mvLargeImageLeft05 {
    top: 93%;
    left: 74%;
    width: calc(30px * var(--scaleFactor));

}

.--mvLargeImageLeft06 {
    top: 38%;
    left: 66%;
    width: calc(37px * var(--scaleFactor));

}

.--mvLargeImageLeft07 {
    top: 6%;
    left: 45%;
    width: calc(37px * var(--scaleFactor));

}

.--mvLargeImageLeft08 {
    top: 14%;
    left: 52%;
    width: calc(39px * var(--scaleFactor));

}

.--mvLargeImageLeft09 {
    top: 59.5%;
    left: 55%;
    width: calc(25px * var(--scaleFactor));

}

.--mvLargeImageLeft10 {
    top: 84%;
    left: 48%;
    width: calc(39px * var(--scaleFactor));

}

.--mvLargeImageLeft11 {
    top: 21%;
    left: 19%;
    width: calc(25px * var(--scaleFactor));
}

.--mvLargeImageLeft12 {
    top: 32%;
    left: 25%;
    width: calc(32px * var(--scaleFactor));

}

.--mvLargeImageLeft13 {
    top: 54%;
    left: 25%;
    width: calc(31px * var(--scaleFactor));

}

.--mvLargeImageLeft14 {
    top: 91%;
    left: 26%;
    width: calc(32px * var(--scaleFactor));

}

.--mvLargeImageLeft15 {
    top: 39%;
    left: 2%;
    width: calc(39px * var(--scaleFactor));
}


.--mvLargeImageRight01 {
    top: 6%;
    left: 43%;
    width: calc(112px * var(--scaleFactor));

}

.--mvLargeImageRight02 {
    top: 85%;
    left: 52%;
    width: calc(82px * var(--scaleFactor));

}

.--mvLargeImageRight03 {
    top: 6%;
    left: 4%;
    width: calc(31px * var(--scaleFactor));

}

.--mvLargeImageRight04 {
    top: 37%;
    left: 5%;
    width: calc(31px * var(--scaleFactor));

}

.--mvLargeImageRight05 {
    top: 58%;
    left: 2%;
    width: calc(37px * var(--scaleFactor));


}

.--mvLargeImageRight06 {
    top: 89%;
    left: -1%;
    width: calc(25px * var(--scaleFactor));

}

.--mvLargeImageRight07 {
    top: 17%;
    left: 20%;
    width: calc(39px * var(--scaleFactor));

}

.--mvLargeImageRight08 {
    top: 81%;
    left: 27%;
    width: calc(39px * var(--scaleFactor));

}

.--mvLargeImageRight09 {
    top: 29.5%;
    left: 43%;
    width: calc(25px * var(--scaleFactor));
}

.--mvLargeImageRight10 {
    top: 44%;
    left: 40%;
    width: calc(37px * var(--scaleFactor));

}

.--mvLargeImageRight11 {
    top: 66%;
    left: 40%;
    width: calc(32px * var(--scaleFactor));
}

.--mvLargeImageRight12 {
    top: 29%;
    left: 71%;
    width: calc(31px * var(--scaleFactor));
}

.--mvLargeImageRight13 {
    top: 54%;
    left: 64%;
    width: calc(39px * var(--scaleFactor));

}

.--mvLargeImageRight14 {
    top: 75%;
    left: 76%;
    width: calc(31px * var(--scaleFactor));

}


/* スクロールダウン */
.mv-scroll {
    display: grid;
    width: 100px;
    height: 120px;
    height: calc(120px * var(--scaleFactor));
    opacity: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -59px;
    bottom: calc(-59px * var(--scaleFactor));
}

.mv-scroll span {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    font-size: calc(16px * var(--scaleFactor));
    line-height: 100%;
    text-align: center;
}

.mv-scroll::after {
    animation: scroll 2s infinite;
    background-color: #000;
    content: "";
    height: 100px;
    height: calc(100px * var(--scaleFactor));
    left: 0;
    margin: auto;
    width: 1px;
    margin-top: 10px;
}

@media screen and (max-width: 1024px) {
    .mv-scroll {
        /* --bottom: min(calc(var(--10px_390) * 2.2), 44px);
        --bottom: min(calc(240 / 390 * 100vw), 480px);
        --bottom: 50px;
        bottom: calc(var(--bottom) * -1);
        bottom: min(calc(50 / 844 * 100vh), 100px);
        bottom: auto; */
        bottom: min(calc(50 / 844 * 100vh), 100px);
    }

    .mv-scroll span {
        font-size: min(calc(var(--10px_390) * 1), 16px);
    }

    .mv-scroll::after {
        bottom: -105px;
        height: 105px;
        width: 1px;
    }
}

@keyframes scroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    51% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}


.lead-container {
    margin-top: 236px;
    display: grid;
    grid-template-columns: min(14.5vw, 210px) 1fr min(14.5vw, 210px);
    padding-inline: min(4.16vw, 60px);
    width: min(calc(100vw - 100px), 1340px);
    height: 732px;
    margin-inline: auto;
}

@media screen and (max-width: 1024px) {
    .lead-container {
        margin-top: min(calc(var(--10px_390) * 16.5), 320px);
        grid-template-columns: 50% 50%;
        width: 100%;
        height: auto;
        padding-bottom: min(calc(var(--10px_390) * 10), 200px);

    }
}

.lead-human-image {
    width: min(6vw, 87px);
}

.lead-object-image {
    width: min(2.7vw, 40px);
}

.lead-container-left-image {
    grid-row: 1/-1;
    grid-column: 1;
    position: relative;
    width: 100%;
    height: 100%;
}

.lead-container-left-image>* {
    position: absolute;
    /* width: auto;
    height: auto; */
}

.lead-object-image-mobile {
    display: none;
}

@media screen and (max-width: 1024px) {
    .lead-container-left-image>* {
        /* width: min(calc(var(--10px_390) * 2), 40px);
        height: min(calc(var(--10px_390) * 2), 40px); */
    }

    .lead-object-image {
        display: none;
    }

    .lead-object-image-mobile {
        display: block;
    }
}

.--leadHuman01 {
    top: 0;
    left: 16%;
}

.--leadHuman02 {
    top: 16%;
    left: 50%;
    width: min(8.3vw, 120px);
}

.--leadHuman03 {
    top: 34%;
    left: 0;
    width: min(5.4vw, 78px);
}

.--leadHuman04 {
    top: 52%;
    left: 55%;
    width: min(5.4vw, 78px);
}

.--leadHuman05 {
    top: 80%;
    left: 6%;
    width: min(8.3vw, 120px);

}

.--leadImage01 {
    top: 1%;
    left: 78%;
}

.--leadImage02 {
    top: 15%;
    left: -7%;
}

.--leadImage03 {
    top: 23%;
    left: 21%;
    width: min(2.2vw, 32px);
}

.--leadImage04 {
    top: 42%;
    left: 53%;
    width: min(1.9vw, 28px);
}

.--leadImage05 {
    top: 66%;
    left: 18%;
    width: min(2.2vw, 32px);

}

.--leadImage06 {
    top: 76%;
    left: -7%;
    width: min(2.2vw, 32px);
}

@media screen and (max-width: 1024px) {
    .--leadHuman01 {
        top: -18%;
        left: 26%;
        width: min(calc(var(--10px_390) * 4.4), 88px);
    }

    .--leadHuman02 {
        display: none;
    }

    .--leadHuman03 {
        display: none;

    }

    .--leadHuman04 {
        display: none;

    }

    .--leadHuman05 {
        top: 103%;
        left: 38%;
        width: min(calc(var(--10px_390) * 5.5), 110px);

    }

    .--mobileleadImage01 {
        top: -9%;
        left: 78%;
        width: min(calc(var(--10px_390) * 1.5), 30px);
    }

    .--mobileleadImage02 {
        top: 3%;
        left: 15%;
        width: min(calc(var(--10px_390) * 2), 40px);

    }

    .--mobileleadImage03 {
        top: 27%;
        left: 13%;
        width: min(calc(var(--10px_390) * 2), 40px);

    }

    .--mobileleadImage04 {
        top: 52%;
        top: 67%;
        left: 8%;
        width: min(calc(var(--10px_390) * 1.2), 24px);

    }

    .--mobileleadImage05 {
        top: 75%;
        top: 85%;
        left: 15%;
        width: min(calc(var(--10px_390) * 1.6), 32px);


    }

    .--mobileleadImage06 {
        top: 104%;
        left: 5%;
        width: min(calc(var(--10px_390) * 1.5), 30px);
    }
}


.lead-container-right-image {
    grid-row: 1/-1;
    grid-column: 3;
    position: relative;
    width: auto;
    height: auto;
}



@media screen and (max-width: 1024px) {
    .lead-container-right-image {
        grid-row: 1/-1;
        grid-column: 2;
    }
}

.lead-container-right-image>* {
    position: absolute;
}

.--leadHuman06 {
    top: -4%;
    left: -12%;
}

.--leadHuman07 {
    top: 18%;
    left: 29%;
    width: min(6.9vw, 100px);
}

.--leadHuman08 {
    top: 32%;
    left: -12%;
    width: min(7.6vw, 110px);

}

.--leadHuman09 {
    top: 55%;
    left: 28%;
    width: min(8.3vw, 120px);

}

.--leadHuman10 {
    top: 78%;
    left: -7%;
    width: min(6.9vw, 100px);

}

.--leadImage07 {
    top: 0%;
    left: 71%;
    width: min(2.36vw, 34px);

}

.--leadImage08 {
    top: 7%;
    left: 41%;
    width: min(2.2vw, 32px);

}

.--leadImage09 {
    top: 42%;
    left: 67%;
    width: min(2.2vw, 32px);

}

.--leadImage10 {
    top: 52%;
    left: 0%;
    width: min(2.2vw, 32px);

}

.--leadImage11 {
    top: 66%;
    left: -7%;
    width: 26px;
    width: min(1.8vw, 26px);

}

.--leadImage12 {
    top: 75%;
    left: 61%;
}

.--leadImage13 {
    top: 89%;
    left: 72%;
    width: min(2.2vw, 32px);

}

@media screen and (max-width: 1024px) {
    .--leadHuman06 {
        top: -15%;
        left: 61%;
        width: min(calc(var(--10px_390) * 4.1), 82px);
    }

    .--leadHuman07 {
        display: none;
    }

    .--leadHuman08 {
        display: none;


    }

    .--leadHuman09 {
        display: none;


    }

    .--leadHuman10 {
        top: 112%;
        left: 34%;
        width: min(calc(var(--10px_390) * 4.8), 96px);


    }



    .--mobileleadImage07 {
        top: -6%;
        left: 28%;
        width: min(calc(var(--10px_390) * 1.5), 30px);
    }

    .--mobileleadImage08 {
        top: 18%;
        left: 84%;
        width: min(calc(var(--10px_390) * 1.6), 32px);
    }

    .--mobileleadImage09 {
        top: 30%;
        left: 70%;
        width: min(calc(var(--10px_390) * 1.5), 30px);
    }

    .--mobileleadImage10 {
        top: 50%;
        top: 64%;
        left: 68%;
        width: min(calc(var(--10px_390) * 1.2), 24px);
        width: min(calc(var(--10px_390) * 1.4), 28px);
    }

    .--mobileleadImage11 {
        top: 77%;
        top: 87%;
        left: 77%;
        width: min(calc(var(--10px_390) * 2), 40px);
    }

    .--mobileleadImage12 {
        top: 108%;
        left: 15%;
        width: min(calc(var(--10px_390) * 1.2), 24px);
    }

    .--mobileleadImage13 {
        top: 118%;
        left: -8%;
        width: min(calc(var(--10px_390) * 1.5), 30px);
    }
}

.lead-text-container {
    grid-column: 2;
    /* Zen Maru Gothic */
    font-weight: 700;
    font-weight: bold;
    font-size: clamp(20px, 10.120px + 0.964vw, 24px);
    line-height: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-top: 40px;
}

@media screen and (max-width: 1024px) {
    .lead-text-container {
        grid-row: 1/-1;
        grid-column: 1/-1;
        gap: min(calc(var(--10px_390) * 3), 60px);
        font-style: Bold;
        font-size: min(calc(var(--10px_390) * 1.2), 24px);
        font-size: min(calc(var(--10px_390) * 1.15), 22px);
        line-height: calc(30/12);
        z-index: 1;
    }
}

.mobile-only {
    display: none;
}

@media screen and (max-width: 1024px) {
    .mobile-only {
        display: block;
    }
}


.section-heading {
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    font-size: 50px;
    line-height: 100%;
    letter-spacing: 0.05em;
    transform: translateX(1px);
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .section-heading {
        font-weight: 800;
        font-size: min(calc(var(--10px_390) * 2.5), 50px);
    }
}

/* メッセージセクション */
/* .section#message {
    margin-top: 148px;
}

@media screen and (max-width: 1024px) {
    .section#message {
        margin-top: min(calc(var(--10px_390) * 7), 140px);
    }
} */

#subMessage {
    margin-top: 148px;
}

@media screen and (max-width: 1024px) {
    #subMessage {
        margin-top: min(calc(var(--10px_390) * 7), 140px);
    }
}

.message-container {
    width: min(100%, 1340px);
    height: auto;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 60% 1fr;
    grid-auto-flow: column;
    margin-inline: auto;
}

.message-container.--first {
    margin-top: 56px;
}

@media screen and (max-width: 1024px) {
    .message-container {
        width: 100%;
        grid-template-columns: 100%;
        grid-auto-flow: row;
        gap: 0;
    }

    .message-container.--first {
        margin-top: min(calc(var(--10px_390) * 2.5), 50px);
    }
}

.message-container.--second {
    margin-top: 55px;
    grid-template-columns: 1fr 60%;
    align-items: end;
}

@media screen and (max-width: 1024px) {
    .message-container.--second {
        margin-top: min(calc(var(--10px_390) * 3), 60px);
        width: 100%;
        grid-template-columns: 100%;
        padding-left: 0;
    }
}

.message-image.--first {
    --mLeft: min(7.6vw, 110px);
    margin-left: calc(var(--mLeft) * -1);
    width: min(35.3vw, 509px);
    margin-top: 100px;
}

@media screen and (max-width: 1024px) {
    .message-image.--first {
        grid-row: 1;
        width: min(calc(var(--10px_390) * 25.4), 508px);
        margin-inline: auto;
        margin-top: min(calc(var(--10px_390) * 1), 20px);
    }
}

.message-image.--second {
    width: min(35.3vw, 509px);
    --mRight: min(8.68vw, 125px);
    transform: translateX(var(--mRight));
}

@media screen and (max-width: 1024px) {
    .message-image.--second {
        transform: translateX(0);
        width: min(calc(var(--10px_390) * 25), 500px);
        margin-inline: auto;
    }
}

.text-container {
    width: 100%;
    height: 645px;
    background: #fff;
    padding: 10.5% 21.2% 11.2% 15%;
    border-radius: 16px;
    height: fit-content;
}

.text-container.--second {
    /* padding: 10% 21.2% 11.2% 15%;
    padding-left: min(12vw, 174px);
    padding-top: 75px;
    padding-left: 170px;
    padding-right: 200px;
    padding-bottom: 87px; */

    width: min(calc(880 / 1440 * 100vw), 880px);
    padding-top: min(calc(75 / 1440 * 100vw), 75px);
    padding-left: min(calc(170 / 1440 * 100vw), 170px);
    padding-right: min(calc(200 / 1440 * 100vw), 200px);
    padding-bottom: min(calc(87 / 1440 * 100vw), 87px);


}

@media screen and (max-width: 1455px) {
    .text-container.--first {
        border-radius: 0 16px 16px 0;
    }

    .text-container.--second {
        border-radius: 16px 0 0 16px;
    }
}

@media screen and (max-width: 1024px) {
    .text-container {
        width: min(calc(var(--10px_390) * 29), 580px);
        margin-inline: auto;
        padding: 0;
        padding-top: min(calc(var(--10px_390) * 4.3), 86px);
        padding-inline: min(calc(var(--10px_390) * 3), 60px);
        padding-bottom: min(calc(var(--10px_390) * 3), 60px);

    }

    .text-container.--first {
        margin-top: -22px;
        border-radius: min(calc(var(--10px_390) * 1), 20px);
    }

    .text-container.--second {
        width: min(calc(var(--10px_390) * 29), 580px);
        margin-inline: auto;
        padding: 0;
        padding-top: min(calc(var(--10px_390) * 4.3), 86px);
        padding-inline: min(calc(var(--10px_390) * 3), 60px);
        padding-bottom: min(calc(var(--10px_390) * 3), 60px);
        border-radius: min(calc(var(--10px_390) * 1), 20px);
    }

    .--second .text-container {
        --mt: min(calc(var(--10px_390) *8), 160px);
        margin-top: calc(var(--mt) * -1);
        z-index: 2
    }
}

@media screen and (max-width: 780px) {
    .text-container.--first {
        margin-top: calc(var(--10px_390) * -1.2);
    }

    .text-container.--second {
        --mt: min(calc(var(--10px_390) *8), 160px);
        margin-top: calc(var(--mt) * -1);
        z-index: 2
    }
}



.text-container-heading {
    font-weight: 700;
    font-style: Bold;
    font-size: min(2.08vw, 30px);
    line-height: calc(28/30);
    display: grid;
}

@media screen and (max-width: 1024px) {
    .text-container-heading {
        text-align: center;
        font-weight: 700;
        font-size: min(calc(var(--10px_390) * 1.5), 30px);
        line-height: 1;
        /* margin-bottom: min(calc(var(--10px_390) * 3), 60px); */
    }
}

.text-container-heading-sub {
    display: block;
    font-weight: 700;
    font-size: min(1.66vw, 24px);
    line-height: calc(28/24);
    padding-top: 10px;
}

@media screen and (max-width: 1024px) {
    .text-container-heading-sub {
        font-weight: 700;
        font-size: min(calc(var(--10px_390) * 1.2), 24px);
        line-height: calc(14/12);
    }
}


.text-container-desc {
    font-weight: 400;
    margin-top: 30px;
    font-size: min(1.1vw, 1rem);
    line-height: calc(28/16);
    letter-spacing: 0.01em;
}

@media screen and (max-width: 1024px) {
    .text-container-desc {
        font-weight: 400;
        font-size: min(calc(var(--10px_390) * 1), 20px);
        line-height: calc(21/10);
        margin-top: min(calc(var(--10px_390) * 1.6), 32px);
        letter-spacing: 0;

    }
}

.text-container-author {
    font-weight: 700;
    font-size: min(1.66vw, 24px);
    line-height: calc(28/24);
    text-align: right;
    margin-top: 15px;
}

.text-container-author-sub {
    font-weight: 700;
    font-size: min(1.1vw, 1rem);
    line-height: calc(28/16);
    margin-right: min(1.66vw, 24px);
}

@media screen and (max-width: 1024px) {
    .text-container-author {
        font-size: min(calc(var(--10px_390) * 1.2), 24px);
        line-height: calc(14/12);
        margin-top: min(calc(var(--10px_390) * .8), 16px);
    }

    .text-container-author-sub {
        font-size: min(calc(var(--10px_390) * 1), 20px);
        line-height: calc(14/10);
        margin-right: min(calc(var(--10px_390) * 1), 20px);
    }
}


/* ヒストリーセクション */

.section#history {
    width: 100%;
    margin-inline: auto;
    position: relative;
    box-sizing: border-box;
    z-index: 0;
    padding: 0;
    margin-top: 350px;
    --widthRatio: calc(var(--screen-width-px) / 1300);
    --heightRatio: calc(var(--screen-height-px) / 1100);
    --minRatio: min(var(--widthRatio), var(--heightRatio));
    --scaleFactor: clamp(0.6, var(--minRatio), 1);
    height: calc(942px * var(--scaleFactor));
}

@media screen and (max-width: 1024px) {
    .section#history {
        width: 100%;
        /* height: min(calc(var(--10px_390) * 75), 1300px); */
        height: auto;
        margin-top: min(calc(var(--10px_390) * 7), 140px);
        padding: min(calc(1.8 * var(--base-size-sp)), 36px) 0 min(calc(5.4 * var(--base-size-sp)), 108px);
    }
}


@media screen and (max-width: 1024px) {
    :root {
        --base-size-sp: calc(10 / 390 * 100vw);
    }
}

.history-inner {
    position: relative;
    max-width: 1300px;
    margin-inline: auto;
    transform-origin: top;
    scale: var(--scaleFactor);
}

@media screen and (max-width: 1024px) {
    .history-inner {
        scale: unset;
    }
}

.history-title {
    text-align: center;
    color: #fff;
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
    font-size: 50px;
    letter-spacing: 0.05em;
    margin-bottom: 135px;
    position: relative;
    z-index: 10;
}

@media screen and (max-width: 1024px) {
    .history-title {
        font-size: min(calc(2.5 * var(--base-size-sp)), 50px);
        margin-bottom: calc(1.5 * var(--base-size-sp));
    }
}

/* スライダー */
.swiper {
    max-width: 500px;
    padding: 0 min(calc(300 / 1300 * 100vw), 300px) 0;
    box-sizing: content-box;
    overflow: visible;
}

@media screen and (max-width: 1024px) {
    .swiper {
        max-width: min(calc(25 * var(--base-size-sp)), 500px);
        padding: 0 0 min(calc(11 * var(--base-size-sp)), 220px);
    }
}

.swiper.swiper-cards {
    overflow: hidden;
}

.swiper-slide {
    background-color: #ccc;
    border-radius: 16px;
    overflow: hidden;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
}

/* 年代のテキスト */
.year-txt-wrap {
    position: absolute;
    top: -145px;
    left: 0;
}

.year-txt-wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 432px;
    height: 2px;
    background-color: #fff;
}

.year-txt {
    position: relative;
    display: block;
    font-family: "Lato", sans-serif;
    font-size: 180px;
    font-weight: 800;
    color: #fff;
    text-shadow: 10px 10px 0 rgb(0 0 0 / 0.2);
    line-height: 1.2;
    z-index: 10;
}

.year-txt[data-year="1980"]::after,
.year-txt[data-year="1990"]::after,
.year-txt[data-year="2000"]::after,
.year-txt[data-year="2010"]::after {
    content: "’s";
}

@media screen and (max-width: 1024px) {
    .year-txt-wrap {
        position: static;
        margin-bottom: max(calc(-3.2 * var(--base-size-sp)), -64px);
    }

    .year-txt-wrap::after {
        display: none;
    }

    .year-txt {
        text-align: center;
        font-size: min(calc(9 * var(--base-size-sp)), 180px);
        text-shadow: min(calc(0.5 * var(--base-size-sp)), 10px) min(calc(0.5 * var(--base-size-sp)), 10px) 0 rgb(0 0 0 / 0.2);
    }
}

/* スライドテキスト */
.slide-txt-wrap {
    position: absolute;
    display: block;
    top: 50%;
    right: -5%;
    z-index: 100;
    width: min(100%, 372px);
    translate: 0 -50%;
}

.slide-txt-list {
    display: grid;
    list-style: none;
    padding: 0;
}

.slide-txt-list li {
    grid-area: 1 / 1;
    background-color: #fff;
    box-shadow: 10px 10px rgb(0 0 0 / 0.2);
    padding: min(calc(44 / 1300 * 100vw), 44px) 50px min(calc(44 / 1300 * 100vw), 44px) min(calc(50 / 1300 * 100vw), 50px);
    border-radius: 16px;
    opacity: 0;
    translate: 0 -10%;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: calc(28 / 16);
    height: 0;
    pointer-events: none;
    text-align: justify;
}

.slide-txt-list li.--wide {
    padding-inline: 40px;
}


.slide-txt-list li.is-active {
    opacity: 1;
    translate: 0 0;
    transition: opacity 0.7s, translate 0.7s;
    height: auto;
    pointer-events: visible;
}

@media screen and (max-width: 1024px) {
    .slide-txt-wrap {
        top: unset;
        right: unset;
        bottom: 0;
        left: 50%;
        translate: -50% 0;
        width: min(calc(29 * var(--base-size-sp)), 580px);
        z-index: 0;
    }

    .slide-txt-list li {
        padding: min(calc(2.5 * var(--base-size-sp)), 50px);
        font-size: min(calc(1 * var(--base-size-sp)), 20px);
        box-shadow: min(calc(0.5 * var(--base-size-sp)), 10px) min(calc(0.5 * var(--base-size-sp)), 10px) rgb(0 0 0 / 0.2);
    }
    .slide-txt-list li.--wide {
    padding-inline: min(calc(2.5 * var(--base-size-sp)), 50px);
}

    .slide-txt-list li.--first {
        transform: translateY(-18%);
    }
}


/* ページネーションとスライド送りボタン */
.swiper-controls {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, auto);
    margin: 30px auto 0;
    max-width: 1250px;
}

@media screen and (max-width: 1024px) {
    .swiper-controls {
        grid-template-columns: repeat(2, auto);
        row-gap: min(calc(2.5 * var(--base-size-sp)), 50px);
        margin: min(calc(4 * var(--base-size-sp)), 80px) auto 0;
    }
}

/* prev/next */
.swiper-button-prev {
    position: static;
    width: auto;
    order: 1;
}

.swiper-button-prev::after {
    content: "";
    display: block;
    background: url(/assets/image/SVG/history_icon_prev.svg) no-repeat center / contain;
    width: 154px;
    height: 128px;
    transition: scale 0.3s;
}

.swiper-button-next {
    position: static;
    width: auto;
    order: 3;
}

.swiper-button-next::after {
    content: "";
    display: block;
    background: url(/assets/image/SVG/history_icon_next.svg) no-repeat center / contain;
    width: 154px;
    height: 128px;
    transition: scale 0.3s;
}

@media (any-hover: hover) {

    .swiper-button-prev:hover::after,
    .swiper-button-next:hover::after {
        scale: 1.1;
    }
}

@media screen and (max-width: 1024px) {
    .swiper-button-prev {
        order: 1;
        width: min(calc(7.725 * var(--base-size-sp)), 154.5px);
        height: min(calc(6.4 * var(--base-size-sp)), 128px);
        margin-right: min(calc(4.83 * var(--base-size-sp)), 96px);
        justify-self: end;
    }

    .swiper-button-next {
        order: 2;
        width: min(calc(7.725 * var(--base-size-sp)), 154.5px);
        height: min(calc(6.4 * var(--base-size-sp)), 128px);
        margin-left: min(calc(4.83 * var(--base-size-sp)), 96px);

    }
}


/* pagination */
.swiper-pagination {
    position: relative;
    display: flex;
    column-gap: min(calc(35 / 1300 * 100vw), 35px);
    align-items: center;
    justify-content: center;
    width: auto;
    order: 2;
}

.swiper-pagination-bullet {
    background-color: transparent;
    display: block;
    width: fit-content;
    height: 100%;
    border-radius: 0;
    position: relative;
    opacity: 1;
    position: relative;
}

.swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25em;
    width: 100%;
    height: 3px;
    background-color: rgb(0 0 0 / 0);
    transition: background-color 0.3s;
}

.swiper-pagination-bullet-txt {
    color: #fff;
    font-family: "Lato", sans-serif;
    font-size: 25px;
    font-weight: 700;
    transition: color 0.3s;
}

.swiper-pagination-bullet-active .swiper-pagination-bullet-txt {
    color: #000;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    background-color: rgb(0 0 0 / 1);
}

.swiper-pagination-bullet:hover .swiper-pagination-bullet-txt {
    color: #000;
}

.swiper-pagination-bullet:hover::before {
    background-color: rgb(0 0 0 / 1);
}

@media screen and (max-width: 1024px) {
    .swiper-pagination {
        order: 3;
        grid-column: span 2;
        column-gap: min(calc(1.6 * var(--base-size-sp)), 32px);
        margin-inline: auto;
    }

    .swiper-pagination-bullet {
        margin: 0 !important;
    }

    .swiper-pagination-bullet-txt {
        font-size: min(calc(1.25 * var(--base-size-sp)), 25px);
    }

    .swiper-pagination-bullet::before {
        bottom: -0.2em;
        height: min(calc(0.2 * var(--base-size-sp)), 2px);
    }
}


/* スライドのイラスト */
.deco-area {
    position: absolute;
    inset: 0;
}

.deco-area-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.deco-item {
    position: absolute;
    inset: 0;
}

.deco-item>* {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.deco-item.is-active>* {
    opacity: 1;
    transition: opacity 0.7s;
    pointer-events: visible;
}

.deco-item>*:nth-child(1) {
    top: -20%;
    right: 10%;
}

.deco-item>*:nth-child(2) {
    top: 50%;
    left: 8%;
    translate: 0 -40%;
}

@media screen and (max-width: 1024px) {
    .deco-area {
        z-index: 1;
        pointer-events: none;
    }

    .deco-item>*:nth-child(1) {
        height: auto;
    }

    .deco-item>*:nth-child(2) {
        height: auto;
        translate: 0 0;
    }

    .deco-item.deco-item01>*:nth-child(1) {
        width: min(calc(4.85 * var(--base-size-sp)), 97px);
        top: min(calc(10 * var(--base-size-sp)), 200px);
        right: max(calc(-3 * var(--base-size-sp)), -60px);
    }

    .deco-item.deco-item01>*:nth-child(2) {
        width: min(calc(5.5 * var(--base-size-sp)), 110px);
        top: min(calc(22.5 * var(--base-size-sp)), 450px);
        left: max(calc(-3.5 * var(--base-size-sp)), -70px);
    }

    .deco-item.deco-item02>*:nth-child(1) {
        width: min(calc(3.75 * var(--base-size-sp)), 75px);
        top: min(calc(21.5 * var(--base-size-sp)), 430px);
        right: max(calc(-4 * var(--base-size-sp)), -110px);
    }

    .deco-item.deco-item02>*:nth-child(2) {
        width: min(calc(3.75 * var(--base-size-sp)), 75px);
        top: min(calc(12 * var(--base-size-sp)), 240px);
        left: max(calc(-3 * var(--base-size-sp)), -60px);
    }

    .deco-item.deco-item03>*:nth-child(1) {
        width: min(calc(9 * var(--base-size-sp)), 180px);
        top: min(calc(11 * var(--base-size-sp)), 220px);
        right: max(calc(-6.2 * var(--base-size-sp)), -124px);
    }

    .deco-item.deco-item03>*:nth-child(2) {
        width: min(calc(5.5 * var(--base-size-sp)), 110px);
        top: min(calc(25 * var(--base-size-sp)), 500px);
        left: max(calc(-4.5 * var(--base-size-sp)), -116px);
    }

    .deco-item.deco-item04>*:nth-child(1) {
        width: min(calc(8 * var(--base-size-sp)), 160px);
        top: min(calc(24 * var(--base-size-sp)), 480px);
        right: max(calc(-5.8 * var(--base-size-sp)), -130px);
    }

    .deco-item.deco-item04>*:nth-child(2) {
        width: min(calc(4.85 * var(--base-size-sp)), 97px);
        top: min(calc(13 * var(--base-size-sp)), 260px);
        left: max(calc(-4 * var(--base-size-sp)), -80px);
    }

    .deco-item.deco-item05>*:nth-child(1) {
        width: min(calc(4.35 * var(--base-size-sp)), 87px);
        top: min(calc(11 * var(--base-size-sp)), 220px);
        right: max(calc(-4 * var(--base-size-sp)), -80px);
    }

    .deco-item.deco-item05>*:nth-child(2) {
        width: min(calc(4.1 * var(--base-size-sp)), 82px);
        top: min(calc(24.5 * var(--base-size-sp)), 490px);
        left: max(calc(-3.5 * var(--base-size-sp)), -70px);
    }

    .deco-item.deco-item06>*:nth-child(1) {
        width: min(calc(3.75 * var(--base-size-sp)), 75px);
        top: min(calc(23.5 * var(--base-size-sp)), 470px);
        right: max(calc(-4 * var(--base-size-sp)), -90px);
    }

    .deco-item.deco-item06>*:nth-child(2) {
        width: min(calc(5 * var(--base-size-sp)), 100px);
        top: min(calc(12.5 * var(--base-size-sp)), 250px);
        left: max(calc(-4 * var(--base-size-sp)), -80px);
    }
}


/* 背景の円 */
.history-bg {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.history-bg-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.history-bg-circle {
    width: 130px;
    height: 130px;
    background-color: #ff6666;
    border-radius: 50%;
    scale: 10;
    z-index: -1;
}

@media screen and (max-width: 1024px) {
    .history-bg {
        position: absolute;
        top: min(calc(17 * var(--base-size-sp)), 340px);
    }

    .history-bg-circle {
        width: min(calc(7.5 * var(--base-size-sp)), 150px);
        height: min(calc(7.5 * var(--base-size-sp)), 150px);
    }
}


/* coming soon */
.history-coming-txt {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 4px;
    margin-top: 65px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
}

.history-coming-txt::before {
    content: "";
    display: block;
    width: 2px;
    height: 1em;
    background-color: #000;
    rotate: -15deg;
}

.history-coming-txt::after {
    content: "";
    display: block;
    width: 2px;
    height: 1em;
    background-color: #000;
    rotate: 15deg;
}

@media screen and (max-width: 1024px) {
    .history-coming-txt {
        column-gap: min(calc(0.3 * var(--base-size-sp)), 60px);
        margin-top: min(calc(1.5 * var(--base-size-sp)), 30px);
        font-size: min(calc(1.2 * var(--base-size-sp)), 24px);
    }

    .history-coming-txt::before {
        width: min(calc(0.1 * var(--base-size-sp)), 20px);
        rotate: -15deg;
    }

    .history-coming-txt::after {
        width: min(calc(0.1 * var(--base-size-sp)), 20px);
        height: 1em;
    }
}


/* ダイジェスト版を見るリンク */
.history-link {
    color: #fff;
    border-radius: 100vh;
    background-color: #d0d0d0;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    max-width: 400px;
    margin: 6px auto 0;
    position: relative;
    z-index: 1;
}

.history-link.disabled {
    pointer-events: none;
}

.history-link__inner {
    display: inline-grid;
    grid-template-columns: 1fr auto 1fr;
    column-gap: 1em;
    align-items: center;
}

.history-link__inner::before {
    content: "";
}

.history-link__inner::after {
    content: "";
    background: url(/assets/image/SVG/history_icon_pdf.svg) no-repeat center / contain;
    width: 15.71px;
    height: 19.3px;
}

@media screen and (max-width: 1024px) {
    .history-link {
        font-size: min(calc(0.9 * var(--base-size-sp)), 18px);
        padding: min(calc(0.7 * var(--base-size-sp)), 14px) min(calc(1.2 * var(--base-size-sp)), 24px);
        max-width: min(calc(20 * var(--base-size-sp)), 400px);
        margin: min(calc(0.3 * var(--base-size-sp)), 6px) auto 0;
    }

    .history-link__inner {
        column-gap: min(calc(2.4 * var(--base-size-sp)), 48px);
    }

    .history-link__inner::after {
        width: min(calc(0.79 * var(--base-size-sp)), 15.8px);
        height: min(calc(0.97 * var(--base-size-sp)), 19.4px);
    }
}

/* ロゴセクション */
.section#logo {
    margin-top: 350px;
}

@media screen and (max-width: 1024px) {
    .section#logo {
        margin-top: min(calc(var(--10px_390) * 10), 200px);
    }
}

.logo-lead {
    /* Zen Maru Gothic */
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 50px;
    letter-spacing: 0em;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .logo-lead {
        font-size: min(calc(var(--10px_390) * 1.2), 24px);
        line-height: calc(25/12);

    }
}



.logo-section-heading {
    z-index: 10;
    transform: translateY(26px);
    margin-top: 166px;
}

@media screen and (max-width: 1024px) {
    .logo-section-heading {
        transform: translateY(26px);
    }
}

@media screen and (max-width: 780px) {
    .logo-section-heading {
        --translateY: calc(var(--10px_390) * 1.3);
        transform: translateY(var(--translateY));
        margin-top: min(calc(var(--10px_390) * 10), 200px);
    }
}

.logo-container {
    width: min(83.3vw, 1200px);
    height: 650px;
    height: auto;
    border-radius: 20px;
    margin: 0 auto;
    background: #fff;
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 50% 50%;
    grid-template-columns: 1fr 51%;
    grid-template-rows: auto auto;
    align-items: center;
    justify-content: center;
    padding-inline: 50px;
    padding-top: 90px;
    padding-bottom: 60px;
    row-gap: 60px;

}

@media screen and (max-width: 1024px) {
    .logo-container {
        width: min(calc(var(--10px_390) * 29), 580px);
        height: auto;
        border-radius: 20px;
        padding-inline: min(calc(var(--10px_390) * 3), 60px);
        padding-bottom: min(calc(var(--10px_390) * 3), 60px);
        padding-top: 0;
        grid-template-columns: 100%;
        grid-auto-flow: row;
        border-radius: min(calc(var(--10px_390) * 1), 20px);
    }
}

.logo-container-image {
    grid-row: 1/3;
    grid-column: 1;
    justify-self: center;
    align-self: center;
    width: min(23.6vw, 340px);

}

@media screen and (max-width: 1024px) {
    .logo-container-image {
        grid-row: 1;
        grid-column: 1/-1;
        width: min(calc(var(--10px_390) * 17), 340px);
        margin-top: min(calc(var(--10px_390) * 7), 140px);
    }
}

.logo-text-container {
    grid-row: 1;
    grid-column: 2;
    justify-self: start;
    align-self: start;
}

.logo-text-container.--first {
    grid-row: 1;
    grid-column: 2;
    justify-self: start;
    align-self: start;
    /* padding-top: min(4.16vw, 60px); */


}

.logo-text-container.--second {
    grid-row: 2;
    grid-column: 2;
    justify-self: start;
    align-self: start;
    /* padding-top: 110px;
    padding-top: min(7.63vw, 110px); */
}

@media screen and (max-width: 1024px) {
    .logo-text-container.--first {
        grid-row: 2;
        grid-column: 1/-1;
    }

    .logo-text-container.--second {
        grid-row: 3;
        grid-column: 1/-1;
    }
}

@media screen and (max-width: 1024px) {
    .logo-text-container:first-of-type {
        margin-top: min(calc(var(--10px_390) * 5), 100px);
    }

    .logo-text-container:last-of-type {
        margin-top: 0;
    }
}

.logo-text-container-heading {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 18px;
    font-size: min(1.25vw, 18px);
    line-height: 100%;
    color: #001655;
    display: grid;
    grid-auto-flow: column;
    justify-content: start;
    margin-bottom: 17px;
}

.logo-text-container-heading::before {
    content: "";
    display: block;
    width: min(.7vw, 10px);
    height: min(.7vw, 10px);
    border-radius: 100%;
    background-color: #D31C30;
    margin-right: min(.48vw, 7px);
    align-self: end;
}

@media screen and (max-width: 1024px) {
    .logo-text-container-heading {
        font-size: min(calc(var(--10px_390) * 1.2), 24px);
    }

    .logo-text-container-heading::before {
        width: min(calc(var(--10px_390) * .5), 10px);
        height: min(calc(var(--10px_390) * .5), 10px);
        margin-right: min(calc(var(--10px_390) * .35), 7px);
    }
}

.logo-text-container-desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: min(1.1vw, 1rem);
    line-height: calc(28/16);
}

.logo-text-container-desc+.logo-text-container-desc {
    margin-top: 30px;
    margin-top: 1em;
}

@media screen and (max-width: 1024px) {
    .logo-text-container-desc {
        margin-top: min(calc(var(--10px_390) * 1.7), 34px);
        font-size: min(calc(var(--10px_390) * 1), 20px);
        line-height: calc(17/10);
    }

    .logo-text-container-desc+.logo-text-container-desc {
        margin-top: min(calc(var(--10px_390) * 1), 20px);
    }
}

/* ムービーセクション */

.section#movie {
    margin-top: 115px;
}

@media screen and (max-width: 1024px) {
    .section#movie {
        margin-top: min(calc(var(--10px_390) * 7), 140px);
    }
}

.movie-container {
    height: min(75.4vw, 1087px);
    padding-top: min(9.02vw, 130px);
    background-image: url('/assets/image/SVG/movie_back.svg');
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
}

@media screen and (max-width: 1024px) {
    .movie-container {
        height: min(calc(var(--10px_390) * 43), 860px);
        padding-top: min(calc(var(--10px_390) * 6.5), 130px);
    }
}

.movie-section-heading {}

@media screen and (max-width: 1024px) {
    .movie-section-heading {}
}

.movie-lead {
    /* Zen Maru Gothic */
    font-weight: 700;
    font-style: Bold;
    font-size: clamp(20px, 10.120px + 0.964vw, 24px);
    line-height: calc(50/24);
    letter-spacing: 0em;
    text-align: center;
    margin-top: 30px;
}

@media screen and (max-width: 1024px) {
    .movie-lead {
        font-size: min(calc(var(--10px_390) * 1.2), 24px);
        line-height: calc(25/12);
        margin-top: min(calc(var(--10px_390) * 1.5), 30px);
    }
}

.sp-only {
    display: none;
}

@media screen and (max-width: 1024px) {
    .sp-only {
        display: block;
    }
}

.movie-embed {
    margin: 0 auto;
    margin-top: clamp(20px, -4.699px + 2.41vw, 30px);
    background: #D9D9D9;
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    --width: calc(1100 / 1440 * 100vw);
    --movieScaleFactor: clamp(0.6, var(--minRatio), 1);
    min-width: 780px;
    width: calc(var(--width) * var(--movieScaleFactor));
    max-width: 1100px;
    aspect-ratio: 16 / 9;

}

@media screen and (max-width: 1024px) {
    .movie-embed {
        margin-top: min(calc(var(--10px_390) * 4), 80px);
        min-width: auto;
        width: min(calc(var(--10px_390) * 29), 580px);
        height: min(calc(var(--10px_390) * 16.3), 326px);
        border-radius: min(calc(var(--10px_390) * 1), 20px);
    }
}

.movie-embed p {
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    --base_fz: min(calc(100 / 1440 * 100vw), 100px);
    --movieScaleFactor: clamp(0.6, var(--minRatio), 1);
    --fz: calc(var(--base_fz) * var(--movieScaleFactor));
    font-size: clamp(71px, var(--fz), 100px);
    line-height: 100%;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff;
}

@media screen and (max-width: 1024px) {
    .movie-embed p {
        font-size: min(calc(var(--10px_390) * 2.5), 50px);
    }
}



/* スライダーセクション */
#slider {
    margin-top: 133px;
    flex-direction: column;
}

@media screen and (max-width: 1024px) {
    #slider {
        margin-top: min(calc(var(--10px_390) * 8.4), 168px);
    }
}

/* 無限スクロールスライダー */
.infinite-slider {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.slider-track {
    display: inline-flex;
    animation: slideLeft 20s linear infinite;
    animation: slideLeft 40s linear infinite;
}

.slide {
    flex: 0 0 auto;
    margin-right: 20px;
}

.slide img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

@media screen and (max-width: 1024px) {
    .slide img {
        width: min(calc(var(--10px_390) * 20), 400px);
        height: min(calc(var(--10px_390) * 15), 300px);
        border-radius: min(calc(var(--10px_390) * 1), 20px);
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* future */
.section#future {
    margin-top: 100px;
    padding-bottom: 115px;
}

@media screen and (max-width: 1024px) {
    .section#future {
        margin-top: min(calc(var(--10px_390) * 6), 120px);
        padding-bottom: min(calc(var(--10px_390) * 6.2), 124px);
    }
}

/* .future-lead{
    display: grid;
} */

.future-lead img {
    display: block;
    width: min(calc(650 / 1440 * 100vw), 650px);
    margin-inline: auto;
}

@media screen and (max-width: 1024px) {
    .future-lead img {
        width: min(45.1vw, 650px);
        width: min(calc(240 / 390 * 100vw), 480px);
    }
}


.future-container {
    margin-top: min(calc(70 / 1440 * 100vw), 70px);
    margin-top: min(calc(100 / 1440 * 100vw), 100px);
    margin-inline: auto;
    width: min(63.8vw, 920px);
    width: min(83.3vw, 1200px);
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: 1fr auto;
    padding-inline: min(calc(63 / 1440 * 100vw), 63px);
    column-gap: min(calc(78 / 1440 * 100vw), 78px);
}

@media screen and (max-width: 1024px) {
    .future-container {
        margin-top: min(calc(var(--10px_390) * 4.2), 84px);
        width: min(calc(var(--10px_390) * 29), 580px);
        grid-template-rows: repeat(2, auto);
        grid-template-columns: 100%;
        grid-auto-flow: row;
        padding-inline: 0;
    }
}

.future-container-image {
    grid-row: 1/-1;
    grid-column: 1;
    width: min(calc(322 / 1440 * 100vw), 322px);
    justify-self: end;
    align-self: center;
}

@media screen and (max-width: 1024px) {
    .future-container-image {
        grid-row: 1;
        grid-column: 1/-1;
        width: min(calc(var(--10px_390) * 20.5), 510px);
        margin-inline: auto;
    }
}

.future-container-text {
    grid-row: 1;
    grid-column: 2;
    /* Zen Maru Gothic */
    font-weight: 500;
    font-size: 24px;
    font-size: clamp(18px, 3.181px + 1.446vw, 24px);
    line-height: calc(50/24);
    text-align: center;
    align-self: start;
    margin-top: -10px;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 1024px) {
    .future-container-text {
        grid-row: 2;
        grid-column: 1/-1;
        margin-top: min(calc(var(--10px_390) * 3.5), 70px);
        font-size: min(calc(var(--10px_390) * 1.2), 24px);
        line-height: calc(25/12);
    }
}

.future-container-link {
    grid-row: 2;
    grid-column: 2;
    justify-self: center;
    align-self: center;
    background: #D62937;
    color: #fff;
    text-decoration: none;
    padding-inline: 1rem;
    display: grid;
    grid-auto-flow: column;
    place-items: center;
    border-radius: min(3.47vw, 50px);
    width: min(34.7vw, 500px);
    height: min(5.5vw, 80px);
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 3.181px + 1.446vw, 24px);
    line-height: 100%;
    letter-spacing: 0em;
    text-align: center;
    transition-duration: .4s;
    align-self: end;

}

@media screen and (max-width: 1024px) {
    .future-container-link {
        grid-row: 3;
        grid-column: 1/-1;
        width: min(calc(var(--10px_390) * 20), 400px);
        height: min(calc(var(--10px_390) * 4), 80px);
        font-size: min(calc(var(--10px_390) * 1.2), 24px);
        margin-top: min(calc(var(--10px_390) * 2), 40px);
        margin-inline: auto;
        border-radius: min(calc(var(--10px_390) * 2.5), 50px);

    }
}

.future-container-link-text {
    position: relative;

}

.future-container-link-icon {
    position: absolute;
    --right: min(2.9vw, 42px);
    top: 0;
    right: calc(var(--right) * -1);
    /* margin-left: var(--right); */
    width: clamp(18px, 3.181px + 1.446vw, 24px);
    height: clamp(18px, 3.181px + 1.446vw, 24px);
}

@media screen and (max-width: 1024px) {
    .future-container-link-icon {
        right: -44px;
        width: min(calc(var(--10px_390) * 1.2), 24px);
        height: min(calc(var(--10px_390) * 1.2), 24px);
        background-size: contain;
    }
}

@media screen and (max-width: 780px) {
    .future-container-link-icon {
        right: calc(var(--10px_390) * -2.2);
    }
}

.future-container-link:hover {
    transform: scale(1.1);
}