@charset "UTF-8";

:root {
    --swiper-pagination-bullet-size: 16px;
    --swiper-pagination-bullet-border-radius: none;
    --swiper-pagination-bottom: -7px;
    --swiper-pagination-bullet-horizontal-gap: 3px;
    --swiper-pagination-bullet-inactive-opacity: 0.1;
}

@media screen and (max-width: 1000px) {
    :root {
        --swiper-pagination-bullet-size: 1.47vw;
        --swiper-pagination-bullet-border-radius: none;
        --swiper-pagination-bottom: -0.27vw;
        --swiper-pagination-bullet-horizontal-gap: 0.27vw;
        --swiper-pagination-bullet-inactive-opacity: 0.1;
    }
}

/*
 * Common
 */

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    font-family: 'Hiragino Sans','Meiryo','Hiragino Kaku Gothic ProN',sans-serif;
}

@media screen and (max-width: 1000px) {
    html,
    body {
        overflow-x: clip;
    }

    .wrapper {
        overflow-x: clip;
        width: 100%;
    }
}

h3 {
    font-size: 18px;
}

@media screen and (max-width: 1000px) {
    h3 {
        font-size: 1.87vw;
    }
}

picture {
    display: inline-block;
    vertical-align: bottom;
    line-height: 0;
}

img {
    width: 100%;
}

.inline-block {
    display: inline-block;
}

/* text */
.text-center {
    text-align: center;
}

.note {
    display: inline-flex;
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    text-align: left;
    font-feature-settings: "palt";
}

.note > span {
    display: inline-block;
    line-height: 1.4;
}

.list_table {
    display: flex;
}

.list_table > div:last-child{
    flex: 0 0 auto;
}

.list_table > div:last-child{
    flex: 1 1 auto;
}

/* margin */
.mt-0 {
    margin-top: 0 !important;
}

.mt-5 {
    margin-top: 0.5em;
}

.mt-15 {
    margin-top: 1.5em;
}

.mt-40 {
    margin-top: 4em;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: 0.2em;
}

.mb-5 {
    margin-bottom: 0.5em;
}

.mb-15 {
    margin-bottom: 1.5em;
}

@media screen and (max-width: 1000px) {
    .mt-0 {
        margin-top: 0;
    }

    .mt-5 {
        margin-top: 1.33vw;
    }
    
    .mt-15 {
        margin-top: 4vw;
    }

    .mt-40 {
        margin-top: 1em;
    }
}

/* button */
.btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 60px;
    margin: 0 auto;
    font-size: 28px;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    z-index: 1;
    background-color: #4d4d4d;
}

.btn_entry {
    /*background: linear-gradient(to bottom, #ffa061, #ff781e);*/
    color: #fff;
}

.btn_entry::before {
    background: linear-gradient(to bottom, #ff8755, #e04d10);
}

@media (hover: hover) {

    .btn:hover {
        opacity: 0.8;
    }
}

@media screen and (max-width: 1000px) {
    .btn {
        width: 80vw;
        height: 8vw;
        font-size: 3.7vw;
    }
}

/* responsive */
.is-pc {
    display: inline;
}

.is-pc-block {
    display: block;
}

.is-sp,
.is-sp-block {
    display: none;
}

@media screen and (max-width: 1000px) {
    .is-pc,
    .is-pc-block {
        display: none;
    }

    .is-sp {
        display: inline;
    }

    .is-sp-block {
        display: block;
    }
}

/* color */
.green {
    color: #529969;
}

/*
 * Header
 */
.header {
    height: 45px;
    text-align: center;
    background: #fff;
}

.header_logo {
    display: inline-block;
    width: 100px;
}

@media screen and (max-width: 1000px) {
    .header {
        height: 12vw;
    }
    .header_logo {
        width: 26.67vw;
    }
}

/*
 * Footer
 */
.footer {
    padding-bottom: 80px;
    text-align: center;
}

.footer_content {
    padding: 80px 0;
}

.footer_btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 72px;
    padding: 0 25px;
    border: 1px solid #909090;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    overflow: hidden;
    transition: color 0.5s ease;
}

.footer_btn::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 20px;
    margin-right: 25px;
    margin-left: -7px;
    background-color: #19a68a;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    transition: background-color 0.5s ease;
}

.footer_btn:after {
    content: '';
    position: absolute;
    display: block;
    width: calc(100% + 44px);
    height: 72px;
    background-color: #19a68a;
    clip-path: polygon(0 0, calc(100% - 44px) 0, 100% 50%, calc(100% - 44px) 100%, 0 100%);
    transition: transform 0.5s ease;
    transform: translateX(calc( -100% - 44px));
    z-index: -1;
}

@media (hover: hover) {
    .footer_btn:hover {
        color: #fff;
    }

    .footer_btn:hover::before {
        background-color: #fff;
    }

    .footer_btn:hover::after {
        transform: translateX(-25px);
    }
}

.footer_copy {
    font-size: 13px;
    letter-spacing: 0.04em;
}

@media screen and (max-width: 1000px) {
    .footer {
        padding-bottom: 36vw;
        text-align: center;
    }

    .footer_btn {
        display: flex;
        justify-content: center;
        margin: 0 auto;
        width: 76.53vw;
        height: 16.53vw;
        padding: 0;
        font-size: 4vw;
    }

    .footer_btn::before {
        position: absolute;
        left: 4.93vw;
        top: 50%;
        transform: translateY(-50%);
        width: 2.67vw;
        height: 3.07vw;
        margin-right: 8.8vw;
        margin-left: 0;
    }

    .footer_btn:after {
        display: none;
    }

    .footer_content {
        margin: 0;
        padding: 13.3vw 0 4.7vw;
    }

    .footer_copy {
        font-size: 2.67vw;
        letter-spacing: 0;
    }
}


/*
 * Fixed Navigation
 */
.fixed-nav {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    transform: translateY(-50%);
}

.fixed-nav-menu ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fixed-nav-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 204px;
    height: 46px;
    padding: 0 20px 0 24px;
    border: 2px solid #fff;
    border-right: none;
    border-radius: 999px 0 0 999px;
    background-color: #00a0e9;
    color: #fff;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    box-sizing: border-box;
}

.fixed-nav-menu a:hover,
.fixed-nav-cta-btn:hover {
    opacity: 0.85;
}

.fixed-nav-cta {
    margin-right: 15px;
}

.fixed-nav-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 205px;
    height: 205px;
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: #dc3232;
    color: #fff;
    text-decoration: none;
    box-sizing: border-box;
}

.fixed-nav-cta-pc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

.fixed-nav-cta-youtube {
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.fixed-nav-cta-live {
    display: inline-block;
    margin: 4px 0 8px;
    padding: 2px 10px;
    border-radius: 8px;
    background-color: #fff;
    color: #e60012;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.fixed-nav-cta-label {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
}

.fixed-nav-cta-arrow {
    position: relative;
    top: -4px;
    margin-left: 10px;
    font-size: 14px;
}

.fixed-nav-cta-period {
    display: none;
}

@media screen and (max-width: 1000px) {
    .fixed-nav {
        top: auto;
        right: auto;
        left: 0;
        bottom: 0;
        width: 100%;
        align-items: stretch;
        gap: 0;
        transform: none;
    }

    .fixed-nav-menu {
        background-color: #00a0e9;
        border-top: 0.13vw solid #fff;
        border-bottom: 0.13vw solid #fff;
        padding: 0 5.07vw;
    }

    .fixed-nav-menu ul {
        flex-direction: row;
        gap: 0;
    }

    .fixed-nav-menu li {
        position: relative;
        flex: 1;
    }

    .fixed-nav-menu li::before,
    .fixed-nav-menu li::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 0.13vw;
        height: 60%;
        background-color: #fff;
        transform: translateY(-50%);
        pointer-events: none;
    }

    .fixed-nav-menu li::before {
        left: 0;
    }

    .fixed-nav-menu li::after {
        right: 0;
    }

    .fixed-nav-menu a {
        min-width: 0;
        height: auto;
        min-height: 12vw;
        padding: 2vw 1vw;
        border: none;
        border-radius: 0;
        font-size: 3.2vw;
        font-weight: 500;
        white-space: normal;
    }

    .fixed-nav-cta {
        margin: 0;
        padding: 2.67vw 4vw 2.4vw;
        background-color: #ececec;
        text-align: center;
    }

    .fixed-nav-cta-btn {
        width: 100%;
        height: auto;
        min-height: 11.2vw;
        padding: 2.67vw 4vw;
        border: none;
        border-radius: 100vw;
        font-size: 4.8vw;
        font-weight: 600;
        line-height: 1.3;
    }

    .fixed-nav-cta-pc {
        display: none;
    }

    .fixed-nav-cta-sp {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 1.33vw;
    }

    .fixed-nav-cta-period {
        display: block;
    }

    .fixed-nav-cta-period-text {
        margin: 2vw 0 0;
        font-size: 2.7vw;
        line-height: 1.4;
        color: #4d4d4d;
        letter-spacing: 0.02em;
    }

    .fixed-nav-cta-sp .fixed-nav-cta-arrow {
        display: inline-block;
        flex-shrink: 0;
        width: 2.13vw;
        height: 2.13vw;
        margin: 1.07vw 0 0;
        border-top: 0.53vw solid #fff;
        border-right: 0.53vw solid #fff;
        transform: rotate(45deg);
        font-size: 0;
        line-height: 0;
    }
}

/* contact */
.contact {
    padding: 34px 0;
    background-color: #ececec;
    text-align: center;
    color: #3c3c3c;
}

.contact .ttl {
    font-size: 28px;
    font-weight: 500;
}

.contact .note {
    font-size: 18px;
}

@media screen and (max-width: 1000px) {
    .contact {
        padding: 5.3vw 0;
    }

    .contact .ttl {
        margin-top: 0;
        font-size: 3.7vw;
    }

    .contact h3 {
        line-height: 1;
    }

    .contact p {
        margin-bottom: 0;
    }

    .contact .note {
        font-size: 2.7vw;
    }

}



/*
 * Section
 */
.section {
    position: relative;
}

.section .inner {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (max-width: 1000px) {
    .section .inner {
        width: auto;
        margin: 0 5.33vw;
        padding: 0;
    }
}

/* section-title */
.section-title {
    height: 900px;
    padding: 0;
    background: url("../img/main.jpg") center no-repeat;
    background-size: cover;
}

.section-title .inner {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1310px;
    margin: 0 auto;
}

.section-title h1 {
    margin: 0;
    text-align: center;
}

.section-title h1 picture {
    display: inline-block;
    width: 662px;
}

.section-title .copy {
    position: absolute;
    bottom: 20px;
    left: 50px;
    width: 692px;
    margin: 0;
}

.section-title .copy picture {
    display: block;
    margin-top: 0;
}

.section-title .copy picture img {
    width: 100%;
    height: auto;
}

.interview {
    position: absolute;
    right: 0;
    bottom: 40px;
    margin: 0;
}

.interview picture {
    display: block;
    width: 306px;
}

.interview picture img {
    width: 100%;
    height: auto;
}

/* fixed-navとかぶる幅: interviewを右に空ける */
@media screen and (max-width: 1723px) and (min-width: 1359px) {
    .interview {
        right: calc(230px - (100vw - 1310px) / 2);
    }
}

/* tablet: copy / interview を縦並び・左右中央 */
@media screen and (max-width: 1358px) and (min-width: 1001px) {
    .section-title {
        height: 1100px;
    }

    .section-title .copy {
        left: 0;
        right: 0;
        bottom: 351px;
        width: 626px;
        max-width: calc(100% - 40px);
        margin-left: auto;
        margin-right: auto;
    }

    .interview {
        left: 0;
        right: 0;
        bottom: 40px;
        width: 306px;
        margin-left: auto;
        margin-right: auto;
    }

    .interview picture {
        width: 100%;
    }
}

@media screen and (max-width: 1000px) {
    .section.section-title .inner {
        margin: 0;
    }

    .section-title {
        height: 133.33vw;
        padding: 0;
        background: url("../img/main_sp.jpg") center no-repeat;
        background-size: cover;
    }

    .section-title h1 {
        margin: 0;
    }

    .section-title h1 picture {
        width: 80.13vw;
    }

    .section-title .copy {
        width: 72.8vw;
        bottom: 3.2vw;
        left: 1.73vw;
        transform: none;
    }

    .interview {
        bottom: 6.67vw;
        right: 2.13vw;
        left: auto;
        transform: none;
        margin: 0;
    }

    .interview picture {
        width: 30.13vw;
    }

}


/* section present summary */
.section-present-summary {
    --present-bg-angle: -13.61deg;
    --present-bg-band: 140px;
    position: relative;
    padding: 100px 0 0;
    background-color: #ffffff;
    overflow: hidden;
}

.section-present-summary::before {
    content: "";
    position: absolute;
    width: 120%;
    z-index: 0;
    pointer-events: none;
    top: -164px;
    left: 0;
    height: calc(50% + 50vw * tan(13.61deg) + var(--present-bg-band) / 2);
    background-color: #f8f880;
    transform: skewY(var(--present-bg-angle));
    transform-origin: top left;
}

.section-present-summary .inner {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.present-summary-block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.present-summary-block-content {
    flex-shrink: 0;
    width: 372px;
    max-width: 28.5%;
}

.present-summary-title picture {
    display: block;
    width: 372px;
    max-width: 100%;
}

.present-summary-title picture img {
    width: 100%;
    height: auto;
}

.section-present-summary .note {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
}

.present-summary-item {
    flex-shrink: 0;
}

.present-summary-title {
    margin: 0 0 24px;
}

.present-summary-item:nth-child(2) {
    width: 494px;
    max-width: 37.8%;
}

.present-summary-item:nth-child(3) {
    width: 477px;
    max-width: 36.5%;
}

.present-summary-item picture {
    display: block;
}

.present-summary-item picture img {
    width: 100%;
    height: auto;
}

.present-summary-item-name {
    margin: 12px 0 0;
    font-size: 16px;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
    color: #333;
}

.present-summary-item-list {
    display: none;
}

.present-summary-cta {
    margin-top: 100px;
    text-align: center;
}

.present-summary-btn {
    display: inline-block;
    text-decoration: none;
}

.present-summary-btn:hover {
    opacity: 0.85;
}

.present-summary-btn picture {
    display: block;
    width: 728px;
    margin: 0 auto;
}

.present-summary-btn picture img {
    width: 100%;
    height: auto;
}

.present-summary-period {
    margin: 16px 0 0;
    font-size: 18px !important;
    color: #333;
}

@media screen and (max-width: 1000px) {
    .section-present-summary {
        --present-bg-band: 18.67vw;
        padding: 8.93vw 0 4.67vw;
    }

    .section-present-summary::before,
    .section-present-summary::after {
        width: 130%;
    }

    .section-present-summary::before {
        height: calc(42% + 50vw * tan(13.61deg) + var(--present-bg-band) / 2);
    }

    .section-present-summary::after {
        height: calc(42% + 50vw * tan(13.61deg) + var(--present-bg-band) / 2);
    }

    .section-present-summary .inner {
        padding: 0;
    }

    .present-summary-block {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2.13vw;
        margin-bottom: 4vw;
    }

    .present-summary-block-content {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .present-summary-title {
        margin: 0 0 4vw;
        text-align: center;
    }

    .present-summary-title picture {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .present-summary-item:nth-child(2),
    .present-summary-item:nth-child(3) {
        width: 45.6vw;
    }

    .present-summary-item {
        width: 100%;
        margin-left: -2.4vw;
    }

    .present-summary-item:nth-child(3) {
        width: 47.47vw;
    }

    .present-summary-item-list {
        display: block;
        margin: 0 0 4vw;
        padding: 0;
        list-style: none;
        font-size: 3.2vw;
        line-height: 1.6;
        font-weight: bold;
        color: #333;
    }

    .present-summary-item-list li {
        display: flex;
        align-items: flex-start;
        gap: 2.13vw;
        margin-bottom: 2.13vw;
    }

    .present-summary-item-list .num {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 5.33vw;
        height: 5.33vw;
        background-color: #00a0e9;
        color: #fff;
        font-size: 3.2vw;
        font-weight: bold;
    }

    .section-present-summary .note {
        margin-bottom: 4vw;
        font-size: 2.93vw;
        text-align: left;
    }

    .present-summary-cta {
        margin-top: 0;
    }

    .present-summary-btn picture {
        width: 83.73vw;
    }

    .present-summary-period {
        margin-top: 2.67vw;
        font-size: 2.93vw !important;
        line-height: 1.5;
    }
}


/* section-video */
.section-video {
    padding: 80px 0 60px;
    text-align: center;
 }

.video-block {
    position: relative;
    max-width: 750px;
    width: 90%;
    margin: 0 auto;
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
    background-color: #94b428;
    border-radius: 50%;
}

@media screen and (max-width: 1000px) {
    .section-video {
        padding: 8vw 0;
    }
}

/* section-event */
.section-event {
    --event-blue: #00a0e9;
    --event-blue-bg: #d9f1fc;
    --event-blue-line: #b3e4fa;
    color: #2c2c2c;
}

.section-event .inner {
    padding: 130px 0;
}

.section-event > h2 {
    padding: 170px 0 80px;
    text-align: center;
}

@media screen and (max-width: 1000px) {
    .section-event .inner {
        padding: 8vw 0;
    }

    .section-event > h2 {
        padding: 0;
        margin: 6.67vw 0 2.67vw;
        text-align: center;
    }

    .section-event > h2 img {
        width: auto;
        height: 9.33vw;
    }

}

.event-introduction,
.event-program,
.event-navigator,
.present-head-wrap,
.howto-head-wrap {
    --event-bg-angle: -13.61deg;
    --event-bg-angle2: 13.61deg;
    --event-bg-height: 500px;
    --event-section-padding-top: 100px;
    --event-inner-padding-top: 40px;
    --event-title-height: 96px;
    --event-title-center: calc(var(--event-section-padding-top) + var(--event-inner-padding-top) + var(--event-title-height) / 2);
    position: relative;
    overflow: visible;
}

.event-introduction {
    padding: 100px 0 60px;
}

.event-program,
.present-head-wrap {
    padding: 100px 0 40px;
}

.event-navigator,
.howto-head-wrap {
    position: relative;
    padding: 100px 0 0;
    z-index: 1;
}

.event-introduction::before,
.event-navigator::before,
.howto-head-wrap::before {
    content: "";
    position: absolute;
    top: 206px;
    left: 0;
    width: 100%;
    height: var(--event-bg-height);
    background-color: var(--event-blue-bg);
    transform: skewY(var(--event-bg-angle));
    transform-origin: top left;
    z-index: 0;
    pointer-events: none;
}

.event-introduction .inner,
.event-program .inner,
.event-navigator .inner,
.present-head-wrap .inner,
.howto-head-wrap .inner {
    position: relative;
    z-index: 1;
    padding-top: var(--event-inner-padding-top);
    padding-bottom: 0;
}

.event-program::before,
.present-head-wrap::before {
    content: "";
    position: absolute;
    top: -280px;
    left: 0;
    width: 100%;
    height: var(--event-bg-height);
    background-color: #fdfdd9;
    transform: skewY(var(--event-bg-angle2));
    transform-origin: top left;
    z-index: 0;
    pointer-events: none;
}

.event-program-head,
.present-head {
    text-align: center;
    margin-bottom: 0;
}

.event-program-title,
.present-title {
    margin: 0;
}

.event-introduction-head,
.event-navigator-head,
.howto-head {
    text-align: center;
    margin-bottom: 40px;
}

.event-introduction-title {
    width: 255px;
    margin: 0 auto 30px;
}

.event-navigator-title {
    width: 45.7rem;
    margin: 0 auto 30px;
}

.howto-title {
    width: 44.8rem;
    margin: 0 auto 30px;
}

@media screen and (max-width: 1000px) {
    .event-introduction::before {
        top: 1.6vw;
    }

    .event-program::before,
    .present-head-wrap::before {
        top: -16.6vw;
    }

    .howto-head-wrap::before {
        top: 9.6vw;
    }

    .event-navigator::before {
        top: 9.4vw;
    }

    .event-introduction-title {
        width: 40.27vw;
    }

    .event-navigator-title {
        width: 60.93vw;
    }

    .howto-title {
        width: 59.87vw;
    }
}

.event-program-title {
    width: 401px;
    margin: 0 auto 70px;
}

.present-title {
    width: 37rem;
    margin: 0 auto 70px;
}

.event-introduction-title picture,
.event-program-title picture,
.event-navigator-title picture,
.present-title picture,
.howto-title picture {
    display: inline-block;
}

.event-introduction-title picture img,
.event-program-title picture img,
.event-navigator-title picture img,
.present-title picture img,
.howto-title picture img {
    width: 100%;
    height: auto;
}

/* event-timeline */
.event-timeline {
    position: relative;
    z-index: 2;
    padding: 0;
}

.section-event .event-timeline-inner.inner {
    position: relative;
    max-width: 1310px;
    margin: 0 auto;
    padding: 40px 20px 0;
}

.event-timeline-item {
    display: grid;
    grid-template-columns: 168px 1fr;
    gap: 0 30px;
    align-items: stretch;
    position: relative;
    padding-bottom: 30px;
}

.event-timeline-item:last-child {
    padding-bottom: 0;
}

@media screen and (min-width: 1001px) {
    .event-timeline-item .event-timeline-label {
        grid-row: 1 / -1;
    }

    .event-timeline-item:not(:last-child):not(:nth-child(1))::after {
        content: "";
        position: absolute;
        left: 84px;
        bottom: 26px;
        width: 2px;
        height: 200px;
        background-color: #00a0e9;
        transform: translateX(-50%);
        z-index: 0;
    }
}

.event-timeline-label {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    padding-right: 24px;
    text-align: right;
}

.event-timeline-item:not(:last-child) .event-timeline-label::after {
    content: "";
    align-self: center;
    flex: 1 1 auto;
    width: 2px;
    margin-top: 22px;
    background-color: #00a0e9;
}

.event-timeline-item:last-child .event-timeline-label::after {
    display: none;
}

.event-timeline-label picture {
    display: block;
    width: 162px;
    margin-left: auto;
}

.event-timeline-label picture img {
    width: 100%;
    height: auto;
}

.program-chapter-book {
    position: absolute;
    top: 14px;
    right: 0;
    z-index: 1;
}

.program-chapter-book picture {
    display: block;
    width: 242px;
}

.program-chapter-book picture img {
    display: block;
    width: 100%;
    height: auto;
}

.event-timeline-item:has(.program-chapter-book) .program-heading,
.event-timeline-item:has(.program-chapter-book) .program-description {
    padding-right: 27.2rem;
}

.event-timeline-item:has(.program-chapter-book) .program-tags {
    width: 100%;
}

.program-header-bar {
    position: relative;
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 40px;
    background-color: var(--event-blue);
    clip-path: polygon(0 0, 100% 0, calc(100% - 36px) 100%, 0 100%);
}

.program-header-text {
    margin: 0;
    padding: 7px 50px 6px 24px;
    font-size: 25px;
    line-height: 1.5;
    color: #fff;
    white-space: nowrap;
}

.program-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.program-category {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0;
    border: 1px solid var(--event-blue);
    font-size: 23px;
    line-height: 1.6;
    color: var(--event-blue);
}

.program-title {
    flex: 1;
    min-width: 0;
    margin: 0;
    font-size: 39px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--event-blue);
}

.program-description {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.program-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.program-tags li {
    padding: 9px 30px;
    border: 1px solid var(--event-blue);
    border-radius: 999px;
    font-size: 16px;
    line-height: 1.4;
    color: var(--event-blue);
}

.program-opening-body {
    padding-top: 10px;
}

.program-opening-check {
    display: flex;
    align-items: center;
    gap: 24px;
}

.program-opening-check-badge {
    flex-shrink: 0;
    margin: 0;
}

.program-opening-check-badge picture {
    display: block;
}

.program-opening-check-badge picture img {
    width: 100%;
    height: auto;
}

.program-opening-check-text {
    flex: 1;
    min-width: 0;
    margin: 0;
}

.program-opening-check-text picture {
    max-width: 960px;
    display: block;
}

.program-opening-check-text picture img {
    width: 100%;
    height: auto;
}

.event-timeline-item--ending {
    padding-bottom: 80px;
}

.program-ending-title {
    margin: 0 0 40px;
    font-size: 39px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--event-blue);
}

.program-ending-cta {
    text-align: center;
}

.event-timeline .program-slide--fullbleed.slide_item_wrap {
    z-index: 2;
    grid-column: 1 / -1;
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin: 30px 0 100px -50vw;
}

.event-timeline .program-body {
    overflow: visible;
}

.event-timeline-content {
    overflow: visible;
    padding-bottom: 67px;
}

.event-timeline .program-slide {
    --program-slide-gap: 98px;
    --program-slide-width: 600px;
    --program-slide-arrow-offset: 60px;
}

.event-timeline .program-slide .slick-list {
    overflow: hidden;
}

.event-timeline .program-slide .slide_item .slick-slide {
    width: var(--program-slide-width);
    margin-right: var(--program-slide-gap);
    padding: 0;
    box-sizing: border-box;
}

.event-timeline .program-slide .slide_item .slick-slide img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    border-radius: 12px;
}

.event-timeline .program-slide .slick-prev {
    left: calc(50% - var(--program-slide-width) / 2 - 50px);
}

.event-timeline .program-slide .slick-next {
    right: calc(50% - var(--program-slide-width) / 2 - 50px);
}

.event-timeline .program-slide .slick-dots li button:before,
.event-timeline .program-slide .slick-dots li.slick-active button:before {
    color: var(--event-blue);
}

.event-introduction-lead {
    margin: 0;
    font-size: 18px;
    line-height: 2;
    color: #333;
    text-align: center;
}

@media screen and (max-width: 1170px) {
    .event-introduction-lead {
        display: flex;
    }
}

.event-introduction-main {
    position: relative;
    margin-bottom: 50px;
}

.event-introduction-digest {
    position: absolute;
    top: -143px;
    left: 0;
    z-index: 2;
    width: 240px;
}

@media (min-width: 1000px) and (max-width: 1170px) {
    .event-introduction-digest {
        position: relative;
        top: -61px;
        left: 0;
        z-index: 2;
    }
}

.event-introduction-digest picture {
    display: block;
}

.event-introduction-digest picture img {
    width: 100%;
    height: auto;
}

.event-introduction-slider {
    --intro-slide-gap: 98px;
    --intro-slide-width: 751px;
    position: relative;
    left: 50%;
    width: 100vw;
    margin: 0 0 60px -50vw;
    padding-top: 20px;
    line-height: 0;
}

.event-introduction-slider .slick-list {
    overflow: hidden;
}

.event-introduction-slider .slide_item .slick-slide {
    width: var(--intro-slide-width);
    margin-right: var(--intro-slide-gap);
    padding: 0;
    box-sizing: border-box;
}

.event-introduction-slider .slide_item .slick-slide img {
    display: block;
    width: 100%;
    margin: 0;
}

.event-introduction-slider .slick-prev {
    left: calc(50% - var(--intro-slide-width) / 2 - 52px);
}

.event-introduction-slider .slick-next {
    right: calc(50% - var(--intro-slide-width) / 2 - 50px);
}

.event-introduction-slider .slick-dots li button:before,
.event-introduction-slider .slick-dots li.slick-active button:before {
    color: var(--event-blue);
}

.event-introduction-preview {
    text-align: center;
    margin-bottom: 100px;
}

.event-introduction-preview-title {
    width: 502px;
    margin: 105px auto 25px;
}

.event-introduction-preview-title picture {
    display: inline-block;
    width: 520px;
    max-width: 100%;
}

.event-introduction-preview-title picture img {
    width: 100%;
    height: auto;
}

.event-introduction-preview .video-block {
    max-width: 750px;
    width: 90%;
    margin: 0 auto;
    border-radius: 30px;
    border: 5px solid #00a0e9;
    overflow: hidden;
}

.event-introduction-cta {
    margin-top: 0;
}

@media screen and (max-width: 1000px) {
    .event-introduction,
    .event-program,
    .event-navigator,
    .present-head-wrap,
    .howto-head-wrap {
        --event-bg-height: 46.67vw;
        --event-section-padding-top: 10.67vw;
        --event-inner-padding-top: 6.67vw;
        --event-title-width: 40.27vw;
        --event-title-height: calc(var(--event-title-width) * 96 / 255);
        --event-title-center: calc(var(--event-section-padding-top) + var(--event-inner-padding-top) + var(--event-title-height) / 2);
    }

    .event-introduction {
        padding: 0 0 8vw;
    }

    .event-program,
    .present-head-wrap {
        padding: 6.67vw 0 5.33vw;
    }

    .event-navigator,
    .howto-head-wrap {
        padding: 10.67vw 0 0;
    }

    .event-navigator {
        padding: 15.2vw 0 6.67vw;
    }

    .event-introduction-head {
        margin-bottom: 5.33vw;
    }

    .howto-head {
        margin-bottom: 10.13vw;
    }

    .event-navigator-head {
        margin-bottom: 37.33vw;
    }

    .event-introduction-title {
        margin-bottom: 4vw;
    }

    .event-navigator-title,
    .howto-title {
        margin-bottom: 4vw;
    }

    .present-title {
        width: 49.33vw;
        margin: 0 auto 9.33vw;
    }

    .event-introduction-title picture {
        width: 34.4vw;
    }

    .event-program-title picture {
        width: 53.6vw;
    }

    .event-introduction-main {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 0 4vw;
        margin-bottom: 6.67vw;
    }

    .event-introduction-digest {
        position: relative;
        width: 32vw;
        margin: 0;
        top: -7.87vw;
        flex-shrink: 0;
    }

    .event-introduction-lead {
        flex: 1;
        font-size: 3.33vw;
        line-height: 1.8;
        text-align: left;
        align-items: flex-end;
        gap: 2.4vw;
    }

    .event-introduction-slider {
        --intro-slide-gap: 0;
        --intro-slide-width: auto;
        left: auto;
        flex-basis: 100%;
        width: 100%;
        margin: 0 0 8vw;
        padding-top: 0;
    }

    .event-introduction-slider.slide_item_wrap {
        left: auto;
        margin-left: 0;
    }

    .event-timeline .program-slide--fullbleed.slide_item_wrap {
        grid-column: 1 / -1;
        left: auto;
        width: 100%;
        max-width: none;
        margin: 4vw 0 0;
    }

    .event-introduction-slider .slide_item .slick-slide {
        width: auto;
        margin-right: 0;
        padding: 0;
    }

    .event-introduction-slider .slide_item .slick-slide img {
        display: block;
        width: 90%;
        margin: 0 auto;
        margin-left: auto;
        margin-right: auto;
    }

    .event-introduction-slider .slick-prev {
        left: -1%;
    }

    .event-introduction-slider .slick-next {
        right: -1%;
    }

    .event-introduction-preview {
        margin-bottom: 6.67vw;
    }

    .event-introduction-preview-title {
        margin-bottom: 4vw;
    }

    .event-introduction-preview-title picture {
        width: 69.33vw;
    }

    .event-introduction-preview .video-block {
        width: 100%;
        max-width: 80vw;
        border: none;
        border-radius: 0;
    }

    .event-introduction-lead.is-pc-block {
        display: none;
    }

    .section-event .event-timeline-inner.inner {
        padding: 0 5.33vw;
    }

    .event-timeline-item {
        grid-template-columns: auto 1fr;
        column-gap: 2.67vw;
        align-items: start;
        padding-left: 0;
        padding-bottom: 10.67vw;
    }

    .event-timeline-label {
        grid-column: 1;
        grid-row: 1;
        display: block;
        padding: 0;
        text-align: left;
        align-self: center;
    }

    .event-timeline-content {
        display: contents;
    }

    .event-timeline-item:not(:last-child) .event-timeline-label::after {
        display: none;
    }

    .event-timeline-item:not(:last-child)::before,
    .event-timeline-item:not(:last-child)::after {
        content: "";
        position: absolute;
        left: calc(10.8vw - 0.13vw);
        width: 0.27vw;
        height: 5.33vw;
        background-color: #00a0e9;
    }

    .event-timeline-item:not(:last-child)::before {
        top: calc(11.47vw + 5.13vw);
    }

    .event-timeline-item:not(:last-child)::after {
        bottom: 3vw;
    }

    .event-timeline-label picture {
        width: 21.6vw;
        margin-left: 0;
    }

    .program-chapter-book {
        top: -26.67vw;
        right: 0;
        bottom: auto;
        grid-column: 1 / -1;
        grid-row: 2;
        position: absolute;
        justify-self: end;
        margin: 2.67vw 0 0;
    }

    .program-chapter-book picture {
        width: 30.93vw;
    }

    .event-timeline-item:has(.program-chapter-book) .program-heading,
    .event-timeline-item:has(.program-chapter-book) .program-description {
        padding-right: 0;
    }

    .event-timeline-item:has(.program-chapter-book) .program-tags {
        width: 100%;
    }

    .program-header-bar {
        grid-column: 2;
        grid-row: 1;
        display: block;
        width: calc(100% + 10.66vw);
        max-width: none;
        margin-right: -10.66vw;
        margin-bottom: 0;
        box-sizing: border-box;
        clip-path: none;
    }

    .program-header-text {
        padding: 1.07vw 1.33vw 1.07vw 4vw;
        font-size: 3.73vw;
        white-space: normal;
    }

    .program-opening-body,
    .program-body {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 10.53vw;
        padding-left: 4vw;
    }

    .program-body--ending {
        padding-left: 0;
        text-align: center;
    }

    .program-heading {
        gap: 2.67vw;
        margin-bottom: 2.67vw;
    }

    .program-category {
        background-color: #fff;
        width: 13.33vw;
        height: 13.33vw;
        font-size: 3.33vw;
    }

    .program-title {
        font-size: 4.8vw;
    }

    .program-description {
        margin-bottom: 4vw;
        font-size: 2.93vw;
        text-align: center;
    }

    .program-tags {
        gap: 2.13vw;
        margin-bottom: 4vw;
        justify-content: center;
    }

    .program-tags li {
        padding: 1.33vw 3.2vw;
        font-size: 2.67vw;
    }

    .program-opening-check {
        flex-direction: column;
        align-items: flex-start;
        gap: 4vw;
    }

    .program-opening-check-badge picture {
        width: 21.33vw;
    }

    .program-opening-check-text picture {
        width: 100%;
    }

    .event-timeline-item--ending {
        margin-top: 1vw;
        padding-bottom: 10.67vw;
    }

    .program-ending-title {
        margin-bottom: 12.33vw;
        font-size: 4.8vw;
        text-align: center;
    }

    .program-ending-title-marker {
        display: block;
        width: fit-content;
        margin-inline: auto;
        line-height: 1;
        background: linear-gradient(transparent 55%, #f6f666 60%);
    }

    .program-ending-title-marker + .program-ending-title-marker {
        margin-top: 2.2vw;
    }

    .event-timeline .program-slide {
        --program-slide-gap: 0;
        --program-slide-width: auto;
        --program-slide-arrow-offset: 0;
    }

    .event-timeline .program-slide .slide_item .slick-slide {
        width: auto;
        margin-right: 0;
        padding: 0;
    }

    .event-timeline .program-slide .slide_item .slick-slide img {
        display: block;
        width: 90%;
        margin: 0 auto;
        margin-left: auto;
        margin-right: auto;
        border-radius: 2.67vw;
    }

    .event-timeline .program-slide .slick-prev {
        left: -1%;
    }

    .event-timeline .program-slide .slick-next {
        right: -1%;
    }
}

.event-title {
    width: fit-content;
    margin: 0 auto;
}

@media screen and (max-width: 1000px) {
    .event-title {
        width: 50.4vw;
        height: 4vw;
        font-size: 1.87vw;
        text-align: center;
    }

    .event-title::before,
    .event-title::after {
        width: 1.33vw;
        border-width: 0.27vw;
    }
}

.event-title--summary {
    font-size: 27px;
    color: #00a0e9;
    font-weight: 500;
}

.event-summary {
    width: fit-content;
    margin: 60px auto 0;
    border-collapse: collapse;
}

.event-summary th,
.event-summary td {
    border-top: 10px solid #fff;
    border-bottom: 10px solid #fff;
    font-size: 28px;
    font-feature-settings: "palt";
}

.event-summary th {
    width: 250px;
    padding: 20px 30px;
    vertical-align: center;
    color: #00a0e9;
    background-color: #e6f6fd;
    font-weight: normal;
}

.event-summary td {
    padding: 20px 30px;
    text-align: left;
    vertical-align: center;
}

@media screen and (max-width: 1000px) {
    .event-summary {
        margin: 10.7vw 5vw 12vw;
    }

    .event-summary th,
    .event-summary td {
        padding: 0;
        height: 12vw;
        border-top: 2.7vw solid #fff;
        border-bottom: 2.7vw solid #fff;
        font-size: 3.33vw;
    }

    .event-summary th {
        width: 24vw;
    }

    .event-summary td {
        padding: 0 0 0 5.3vw;
    }
}


.event-container {
    position: relative;
}

.event-timetable-title {
    margin: 0;
    font-size: 28px;
    line-height: 1;
}

.event-timetable-text {
    font-size: 28px;
}

.event-timetable-title-bar {
    position: relative;
    display: inline-flex;
    left: 0;
    top: 0;
    width: auto;
    height: 60px;
    padding-left: calc(50% - 350px);
    align-items: center;
    color: #fff;
}

.event-timetable-color-bar {
    position: absolute;
    display: inline-flex;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    background: #00a0a0;
    color: #fff;
    z-index: 0;
}

.event-timetable-title-bar .event-timetable-title {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1;
    font-weight: normal;
    width: 358px;
    height: 100%;
}

.event-timetable-title-bar .event_minutes {
    position: relative;
    display: flex;
    right: -31px;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 100%;
    background-color: #f0f000;
    color: #00a0a0;
    font-size: 24px;
    clip-path: polygon(
    30px 0,
    100% 0,
    calc(100% - 30px) 100%,
    0 100%
  );
}

.slide_item_wrap {
    margin-top: 50px;
    margin-bottom: 60px;
    position: relative;
    margin-left: calc( 740px - 50vw );
    width: 100vw;
    line-height: 0;
}
@media screen and (max-width: 1480px) {
    .slide_item_wrap {
        margin-bottom: 0;
        margin-left: 0;
    }
}

@media screen and (min-width: 1001px) {
    .event-introduction-slider.slide_item_wrap,
    .event-timeline .program-slide--fullbleed.slide_item_wrap {
        left: 50%;
        margin-left: -50vw;
        margin-top: 0;
    }
}
.slide_item .slick-slide img {
    display: block;
    width: 89%;
    margin-left: 25.6%;
}
.slick-prev,
.slick-next {
  z-index: 1;
}
.slick-prev:hover,
.slick-next:hover {
  transition: opacity 0.2s;
  opacity: 0.7;
}
.slick-prev:before,
.slick-next:before {
  display: none;
}
.slick-dots li button:before,
.slick-dots li.slick-active button:before {
  color: #33b3ed;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
}
.slick-prev,
.slick-next {
    width: 24px;
    height: 48px;
    top: calc(50% - 15px);
}
.slick-prev picture,
.slick-next picture {
    display: block;
    height: 100%;
}
.slick-prev img,
.slick-next img {
    display: block;
    height: 100%;
    width: auto;
}
.slick-prev {
    transform: translateX(-50%);
    left: 25%;
}
.slick-next {
    transform: translateX(50%);
    right: 25%;
}
.slick-dots {
    bottom: -30px;
}
.slick-dots li {
    margin: 0;
}
.slick-dots li button:before {
    font-size: 10px;
}
.slick-dots li {
    width: 10px;
    height: 10px;
}
.slick-dots li + li {
    margin-left: 20px;
}
.slick-dots li button {
    width: 10px;
    height: 10px;
}

@media screen and (max-width: 1000px) {
    .event-timetable-title {
        font-size: 3.7vw;
    }

    .event-timetable-title-bar .event_minutes {
        width: 23.7vw;
        font-size: 3.2vw;
    }

    .event-timetable-text {
        margin: 0.5em 0 0;
        font-size: 3.7vw;
    }

    .event-timetable-title-bar {
        width: 54.3vw;
        height: 8vw;
        padding-left: 8vw;
        padding-right: 0;
    }


    .event-timetable-color-bar {
        height: 8vw;
    }

    .event-timetable-title-bar .event-timetable-title {
        width: 100%;
    }
    .event-timetable-title-bar .event-timetable-title img {
        width: 24.3vw;
    }

    .slide_item_wrap {
        width: 100%;
        margin-top: 4.7vw;
    }
    .slide_item .slick-slide {
        padding-right: 0;
      }
      .slide_item .slick-slide img {
        display: block;
        width: 90%;
        margin-left: 5%;
      }
      .slick-prev,
      .slick-next {
        top: calc(50% - 15.2vw / 2);
        width: auto;
        height: 15.2vw;
      }
      .slick-prev img,
      .slick-next img {
        height: 100%;
        width: auto;
      }
      .slick-prev picture,
      .slick-next picture {
        display: block;
        height: 100%;
      }
      .slick-prev {
        left: 1%;
      }
      .slick-next {
        right: 1%;
      }
      .slick-dots {
        bottom: -2vw;
      }
      .slick-dots li {
        margin: 0;
        width: 1.3vw;
        height: 1.3vw;
      }
      .slick-dots li button:before {
        font-size: 1.3vw;
      }
      .slick-dots li + li {
        margin-left: 2vw;
      }
}

/*.wave {
    width: 100%;
    background: #fff;
    clip-path: shape(
            from 0 0,
            line to 100% 0,
            line to 100% calc(100% - 25px),
            curve to 0 calc(100% - 25px)
            with 65% calc(100% + 60px) / 35% calc(100% - 110px),
            close
    );
}

@media screen and (max-width: 1000px) {
    .wave {
        clip-path: shape(
                from 0 0,
                line to 100% 0,
                line to 100% calc(100% - 2.67vw),
                curve to 0 calc(100% - 2.67vw)
                with 65% 100% / 35% calc(100% - 5.33vw),
                close
        );
    }
}*/

.opening,
.ending {
    z-index: 5;
}

.opening .event-opening,
.ending .event-ending {
    display: flex;
}

.ending {
    margin-top: 120px;
}

.opening .event-content,
.ending .event-content {
    padding: 0;
}

.opening .event-content,
.ending .event-content {
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-left: 66px;
}

.event-timetable-text {
    margin: 0 20px 0 0;
}

@media screen and (max-width: 1000px) {
    .opening {
        margin: 0;
    }

    .ending {
        margin-top: 13.5vw;
    }

    .opening .event-opening,
    .ending .event-ending {
        flex-direction: column;
    }

    .opening .inner {
        padding-top: 0;
    }

    .opening .event-content h4,
    .ending .event-content h4 {
        margin: -3em 0 0;
        line-height: 1;
    }

    .ending .event-content {
        text-align: center;
    }

}

.chapter {
}

.chapter .inner {
    padding: 0;
    max-width: 1480px;
}

.chapter:nth-child(odd) {
}

.chapter:nth-child(even) {
}

.chapter:nth-child(even) .wave {
    background-color: #e3f1e6;
}

.chapter .event-content h5 {
    margin: 38px 0 30px;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.4;
}

.chapter .event-content h5 .event-content-text-item-title {
    font-size: 31px;
}

.chapter .event-content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
}

.chapter .event-content .event-image-full,
.event-image-parallax {
    position: relative;
    margin-left: calc( 500px - 50vw );
    width: 100vw;
    line-height: 0;
}

.chapter .event-content .event-image-full {
    /*height: 40vw;*/
    overflow: hidden;
}

.event-image-parallax {
    overflow: hidden;
    filter: drop-shadow(0 30px 15px rgba(0, 0, 0, 0.1));
}

div:nth-child(1 of .chapter) {
    position: relative;
    margin-top: 100px;
    z-index: 4;
}

div:nth-child(1 of .chapter):before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 425px;
    background-color: #fefee6;
}

.event-content-text {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    left: 115px;
}

@media screen and (max-width: 1667px) {
    .event-content-text {
        left: 0;
    }
}

.event-content h5 {
    color: #000;
    text-align: center;
}

.chapter .event-content p.sub-title {
    margin-bottom: 13px;
    color: #dc3232;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
}

.chapter .event-content .event-content-text-item-sub-title {
    font-size: 21px;
}

.chapter .event-content p.content-text {
    margin: 0;
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
}

.chapter .event-content p.content-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 230px;
    border-radius: 50%;
    background-color: #f8f880;
    color: #00a0a0;
    font-size: 22px;
    text-align: center;
}

div:nth-child(1 of .chapter) .event-image-parallax {
    /*height: 23.4vw;*/
}

div:nth-child(2 of .chapter) {
    position: relative;
    margin-top: 140px;
    z-index: 3;
}

div:nth-child(2 of .chapter):before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 425px;
    background-color: #fefee6;
}

div:nth-child(3 of .chapter) {
    margin-top: 140px;
}

div:nth-child(3 of .chapter) .slide_item_wrap {
    position: relative;
    padding: 0 50px;
}

div:nth-child(3 of .chapter):before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 425px;
    background-color: #fefee6;
}

div:nth-child(3 of .chapter) .slide_item_wrap .slide_item {
    display: flex;
    justify-content: space-between;
}
div:nth-child(3 of .chapter) .slide_item_wrap .slide_item div {
    width: calc(50% - 10px);
}

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

    .chapter .inner {
        padding: 0 0 0;
    }

    .opening .event-content,
    .ending .event-content {
        display: block;
        margin: 6vw auto;
        padding: 0;
    }

    .chapter .event-content h5 {
        margin: 4.7vw 0;
        font-size: 5.3vw;
    }

    .chapter .event-content h5 .event-content-text-item-title {
        font-size: calc(6vw * .7);
    }

    .chapter .event-content p.sub-title {
        font-size: 4vw;
    }

    .chapter .event-content p.content-text {
        font-size: 2.9vw;
    }

    .chapter .event-content p.content-badge {
        position: relative;
        width: fit-content;
        height: auto;
        background: transparent;
        padding: 0 4.7vw;
        margin: 3.3vw auto 0;
        color: #00a0a0;
        font-size: 2.9vw;
    }

    .chapter .event-content p.content-badge::before {
        content: "//";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        letter-spacing: -.5vw;
        transform: scaleX(-1);
    }
    .chapter .event-content p.content-badge::after {
        content: "//";
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        letter-spacing: -.5vw;
    }

    .chapter .event-content .event-image-full,
    .event-image-parallax {
        margin-left: -4vw;
    }

    .event-image-parallax {
        height: 40vw;
        overflow: hidden;
        filter: drop-shadow(0 4vw 2vw rgba(0, 0, 0, 0.1));
    }

    div:nth-child(1 of .chapter) {
        margin-top: 4vw;
    }


    div:nth-child(2 of .chapter) {
        margin-top: 19.3vw;
    }

    div:nth-child(2 of .chapter) .event-content-background {
        left: auto;
        right: 4vw;
        width: 34vw;
        height: 170vw;
    }

    div:nth-child(2 of .chapter) .event-image-parallax {
        height: 53vw;
    }

    div:nth-child(3 of .chapter) {
        margin-top: 19.3vw;
    }

    .event-content-text {
        display: block;
        margin: 0 auto;
        text-align: center;
    }

    .chapter .event-content .event-content-text-item-sub-title {
        font-size: 2.8vw;
    }

    div:nth-child(3 of .chapter) .slide_item_wrap {
        padding: 0;
    }

    div:nth-child(3 of .chapter) .slide_item_wrap .slide_item {
        display: block;
    }

    div:nth-child(3 of .chapter) .slide_item_wrap .slide_item div {
        width: 100%;
    }

    div:nth-child(3 of .chapter) .slide_item_wrap .slide_item div.slick-arrow {
        width: fit-content;
    }
}

.section .inner.navigater {
    position: relative;
    z-index: 6;
    margin-top: 0;
    padding-bottom: 0;
}

/* section-present */
.section-present {
    padding: 0;
}

.section-present-background {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.present-tagline {
    margin: 0 0 40px;
    text-align: center;
}

.present-block {
    margin-top: 60px;
    font-size: 24px;
}

.present-block:first-of-type {
    margin-top: 0;
}

.present-block > h3 {
    width: fit-content;
    margin: 0 0 46px 40px;
}

.present-block-content {
}

.present-items {
    position: relative;
    left: -25px;
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 58px;
}

.present-item {
    width: calc(50% - 12.5px);
    position: relative;
}

.present-item-name {
    margin: -33px 0 0;
    font-size: 30px;
    line-height: 1.4;
    color: #3c3c3c;
    text-align: center;
    font-weight: 500;
}

.present-item-name + p {
    margin: 1em 0;
}

.present-item-name span {
    font-size: 24px;
}

.present-text {
    margin: 0;
}

.present-items ~ .present-text {
    margin: 1em 0 0;
}

.present-note {
    margin: 40px 0;
    padding: 20px;
    border: 2px solid #00a0a0;
    background-color: #fff;
    text-align: center;
    color: #00a0a0;
}

.present-text-highlight {
    background: linear-gradient(transparent 60%, #f8f880 60%);
}

.section-present .note {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    font-size: 20px;
    text-align: center;
}

/* present-event */
.present-event {
    display: flex;
    gap: 20px;
    padding: 10px;
    margin-bottom: 10px;
}
.present-event-image {
    flex: 0 0 auto;
}

@media screen and (max-width: 1000px) {
    .section .inner.navigater {
        margin: 0;
    }

    .section-event .inner.navigater {
        padding-top: 0;
    }

    .section-present {
        padding: 0;
    }

    .section-present-background {
        padding: 0;
    }

    .present-block-content {
        padding: 0;
        text-align: center;
    }

    .present-tagline {
        margin: 0 0 8.67vw;
        line-height: 1;
    }

    .present-tagline img {
        width: 69.7vw;
        height: auto;
    }

    .present-block {
        margin-top: 10.7vw;
        font-size: 1.87vw;
    }

    .present-block:first-of-type {
        margin-top: 0;
        margin-bottom: 0;
    }

    .present-block > h3 {
        width: 81.2vw;
        margin: 0 auto 7.33vw;
    }

    .present-block:last-of-type > h3 {
        width: 77.2vw;
    }

    .present-block-content {
        font-size: 3.2vw;
    }

    .present-items {
        flex-direction: column;
        gap: 6.27vw;
        left: -3.66vw;
        margin-bottom: 6.93vw;
    }

    .present-item {
        width: 100%;
    }

    .present-item-name {
        margin: -3.5vw 0 0;
        font-size: 4vw;
        line-height: 1.2;
    }
    .present-item-name span {
        font-size: calc(4vw * .8);
    }

    .present-note {
        margin: 6.4vw 0 4.4vw;
        padding: 2.9vw;
    }

    .present-topic {
        margin-bottom: 0.53vw;
        padding: 0.93vw 0 0.67vw;
        border-width: 0.53vw;
        font-size: 1.87vw;
    }

    .present-topic p {
        margin: 0;
    }

    .present-topic em {
        font-size: 2.4vw;
        font-style: normal;
        font-weight: 600;
        color: #ff7a23;
    }

    .present-topic strong {
        font-size: 1.6em;
        font-weight: 600;
        line-height: 1;
    }

    .present-text {
        margin: 0.5em 0;
    }

    .section-present .note {
        font-size: 2.7vw;
    }


    /* present-event */
    .present-event {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 4vw;
        padding: 4vw 0 0;
        margin-bottom: 0;
    }

    .present-event-image {
        width: 58vw;
    }

}

/* section-howto */
.section-howto {
    --event-blue: #00a0e9;
    --event-blue-bg: #d9f1fc;
    --event-blue-line: #b3e4fa;
    padding: 0;
    font-size: 18px;
}

.howto-steps {
    position: relative;
    display: flex;
    gap: 49px;
    margin-top: 80px;
    margin-bottom: 60px;
    padding: 0;
    list-style: none;
    z-index: 2;
}

.howto-step {
    position: relative;
    flex: 33%;
    padding: 30px 30px 10px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #00a0e9;
    background: #fff;
}

.howto-step::after {
    content: "";
    display: block;
    position: absolute;
    right: -42px;
    top: 50%;
    width: 30px;
    height: 60px;
    transform: translateY(-50%);
    background-color: #00a0e9;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.howto-step:last-of-type::after {
    display: none;
}


.howto-step-image {
}

.howto-step-title {
    margin: 20px 0;
    font-size: 28px;
    line-height: 1;
    font-weight: 500;
    color: #00a0e9;
}

.howto-step-text {
    line-height: 1.8;
    font-size: 20px;
}

.howto-step-text .inline-block {
    font-size: 26px;
    color: #00a0e9;
}

.howto-step .note {
    font-size: 18px;
    text-align: left;
}

.howto-list {
    padding-left: 1.5em;
    font-size: 20px;
}


@media screen and (max-width: 1000px) {
    .section-howto {
        padding: 0;
        font-size: 1.87vw;
    }

    .howto-steps {
        flex-direction: column;
        gap: 15.6vw;
        margin: 0 auto 5.3vw;
    }

    .howto-step {
        flex: 33%;
        padding: 5.2vw 0;
        border-radius: 1.33vw;
        text-align: center;
    }

    .howto-step::after {
        left: 50%;
        transform: translateX(-50%);
        top: 100%;
        width: 7.7vw;
        height: 4vw;
        clip-path: polygon(0 0, 100% 0, 50% 100%);
        margin-top: 6vw;
    }

    .howto-step:last-of-type::after {
        display: none;
    }


    .howto-step-image {
        width: 16vw;
    }

    .howto-step-title {
        margin: 2.7vw 0 4.3vw;
        font-size: 3.7vw;
        line-height: 1;
    }

    .howto-step-text {
        margin: 0;
        line-height: 1.6;
        font-size: 2.9vw;
    }

    .howto-step-text .inline-block {
        font-size: 3.5vw;
    }

    .howto-step .note {
        margin-top: 3.2vw;
        font-size: 2.4vw;
    }

    .howto-list {
        margin: 0;
        padding-left: 1.5em;
        font-size: 2.7vw;
    }
}


/* section-faq */
.section-faq {
    padding: 130px 0;
    font-size: 18px;
}

.faq-title {
    text-align: center;
}

@media screen and (max-width: 1000px) {
    .section-faq {
        padding: 12vw 0;
    }

    .faq-title {
        width: 25.7vw;
        margin: 0 auto 9.6vw;
    }

    .faq-title img {
        width: 100%;
    }
}


/* section-terms */
.section-terms {
    padding: 0 0 130px;
}

.section-terms p {
    font-size: 22px;
}

.terms-title {
    position: relative;
    margin: 0 0 40px;
    font-size: 28px;
    line-height: 1;
    text-align: center;
    font-weight: 500;
    color: #00a0e9;
}

.terms-block {
    position: relative;
    margin: 40px 0;
    padding: 20px;
    border: 4px solid #00a0e9;
    background-color: #fff;
}

.terms-block-inner {
    height: 360px;
    padding: 40px;
    background-color: #fff;
    line-height: 1.8;
    letter-spacing: 0.05em;
    overflow-y: scroll;
    font-feature-settings: "palt";
    font-size: 22px;
}

.terms-block-inner h3 {
    margin: 0;
    font-size: 22px;
    font-weight: normal;
}

.terms-block-inner h4 {
    margin: 1em 0 0;
    font-size: 22px;
    font-weight: normal;
}

.terms-block-inner h5 {
    margin: 1em 0 0;
    font-size: 22px;
    font-weight: normal;
}

.terms-block-inner .note {
    font-size: 22px;
}

.terms-block-inner ul,
.terms-block-inner ol {
    margin: 0;
    padding-left: 1.4em;
}
.terms-block-inner h4 + h5 {
    margin-top: 0;
}

.terms-block-inner p {
    margin: .5em 0;
}

.terms-block-inner ul,
.terms-block-inner ol {
    margin: 0;
    padding-left: 1.4em;
}
.terms-block-inner ul li + li,
.terms-block-inner ol li + li {
    margin-top: .5em;
}
.terms-block-inner h3 {
    margin-bottom: .7em;
}
.terms-block-inner h4,
.terms-block-inner h5 {
    margin-bottom: .5em;
}

.terms-block-inner .note {
    display: flex;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.list-table th {
    font-weight: normal;
    text-align: left;
}

@media screen and (max-width: 1000px) {
    .section-terms {
        padding: 0 0 13.3vw;
    }

    .terms-title {
        margin: 0 0 4vw;
        font-size: 3.7vw;
    }

    .section-terms p {
        font-size: 3.33vw;
        margin-bottom: 4.27vw;
    }

    .terms-block {
        margin: 4.5vw 0 12.67vw;
        padding: 4.3vw;
    }

    .terms-block-inner {
        height: 32.07vw;
        padding: 0;
        font-size: 3.7vw;
    }

    .terms-block-inner ol {
        padding-left: 2em;
    }

    .terms-block-inner ul {
        padding-left: 1.2em;
    }

    .terms-block-inner h3 {
        font-size: 3.7vw;
    }

    .terms-block-inner h4 {
        font-size: 3.7vw;
    }

    .terms-block-inner h5 {
        font-size: 3.7vw;
    }

    .terms-block-inner .note {
        font-size: 3.7vw;
    }

    .list-table, .list-table tbody, .list-table tr, .list-table th, .list-table td {
        display: block;
    }

    .list-table th, .list-table td {
        display: inline;
    }

    .list-table td:last-child {
        display: block;
        word-break: break-all;
    }
}

/*
 * Components
 */

/* .tabs */
.tab-container {
    position: relative;
}

.tabs {
    display: flex;
    padding: 0;
    list-style: none;
}

.tab {
    cursor: pointer;
}

.tab-contents {
    width: 1285px;
    margin-left: -137px;
    padding: 0;
    list-style: none;
}

@media screen and (max-width: 1300px) {
    .tab-contents {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        padding: 0;
    }
}

@media screen and (max-width: 1000px) {
    .tab-contents {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }
}

.tab-content {
    display: none;
}

.tab-content.is-active {
    display: block;
}


/* navigator-profiles */
.navigator-profiles {
    position: relative;
    width: 100%;
    max-width: 1286px;
    margin: 60px auto 130px;
}

.navigator-profiles-badge {
    position: absolute;
    top: -100px;
    left: -100px;
    z-index: 2;
    width: 304px;
    line-height: 0;
}

.navigator-profiles-badge picture {
    display: block;
}

.navigator-profiles-badge picture img {
    display: block;
    width: 100%;
    height: auto;
}

.navigator-profiles-inner {
    position: relative;
    padding: 70px 50px 50px;
    border: 4px solid var(--event-blue);
    border-radius: 20px;
    background-color: #fff;
}

.navigator-profiles-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 40px;
    align-items: start;
}

.navigator-profile {
    line-height: 0;
}

.navigator-profile--lead {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 68rem;
    padding-left: 160px;
}

.navigator-profile picture {
    display: block;
}

.navigator-profile picture img {
    display: block;
    width: 100%;
    height: auto;
}

.navigator-profiles .slick-prev,
.navigator-profiles .slick-next {
    display: none;
}

/* badgeのleft:-100pxが切れないよう余白を確保 */
@media screen and (max-width: 1471px) and (min-width: 1001px) {
    .navigator-profiles {
        padding: 0 100px;
        box-sizing: border-box;
    }

    .navigator-profiles-badge {
        left: 0;
    }
}

@media screen and (max-width: 1000px) {
    .navigator-profiles {
        max-width: none;
        margin: 0 auto 13.33vw;
        padding: 0 8vw;
    }

    .navigator-profiles-badge {
        top: -10.53vw;
        left: 50%;
        width: 80.3vw;
        transform: translate(-50%, -40%);
    }

    .navigator-profiles-inner {
        padding: 14.67vw 6.67vw 8vw;
        border-width: 0.5vw;
        border-radius: 4vw;
    }

    .navigator-profiles-list {
        display: block;
        width: 100%;
    }

    .navigator-profiles-list.slick-slider,
    .navigator-profiles-list .slick-list,
    .navigator-profiles-list .slick-slide > div {
        width: 100%;
    }

    .navigator-profiles-list .slick-list {
        overflow: hidden;
    }

    .navigator-profile {
        box-sizing: border-box;
    }

    .navigator-profile--lead {
        max-width: none;
        padding-left: 0;
    }

    .navigator-profile--lead picture {
        width: 67.07vw;
        margin: 0 auto;
    }

    .navigator-profile--02 picture {
        width: 52.27vw;
        margin: 0 auto;
    }

    .navigator-profile--03 picture {
        width: 53.47vw;
        margin: 0 auto;
    }

    .navigator-profiles .slick-prev,
    .navigator-profiles .slick-next {
        position: absolute;
        display: block;
        width: 5.3vw;
        height: 15.2vw;
        top: 50%;
        left: auto;
        right: auto;
        padding: 0;
        border: none;
        background: transparent;
        transform: translateY(-50%);
        z-index: 2;
        cursor: pointer;
    }

    .navigator-profiles .slick-prev {
        left: -8.2%;
    }

    .navigator-profiles .slick-next {
        right: -8.2%;
    }

    .navigator-profiles .slick-prev::before,
    .navigator-profiles .slick-next::before {
        display: none;
    }

    .navigator-profiles .slick-prev picture,
    .navigator-profiles .slick-next picture,
    .navigator-profiles .slick-prev img,
    .navigator-profiles .slick-next img {
        display: block;
        width: 100%;
        height: 100%;
    }
}


/* tab-faq */
.tab-faq {
    margin-top: 80px;
    font-size: 24px;
}

.tab-faq > .tabs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding: 0;
    border-right: 1px solid #00a0e9;
}

.tab-faq > .tabs > .tab {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    border: 1px solid #00a0e9;
    border-right: none;
    font-feature-settings: 'palt';
    letter-spacing: 0.02em;
    color: #00a0e9;
    text-align: center;
}

.tab-faq > .tabs > .tab.is-active {
    background-color: #00a0e9;
    color: #fff;
}

@media (hover: hover) {
    .tab-faq > .tabs > .tab:hover {
        background-color: #00a0e9;
        color: #fff;
    }
}

.tab-faq > .tab-contents  {
    width: 100%;
    margin-left: 0;
    margin-top: 60px;
    word-break: break-all;
    font-feature-settings: 'palt';
    letter-spacing: 0.05em;
}


.tab-faq .note {
    display: flex;
    margin: .4em 0
}

.tab-faq p {
    margin: 1em 0 0;
}

.tab-faq ul,
.tab-faq ol {
    margin: 0;
    padding-left: 1.4em;
}

@media screen and (max-width: 1000px) {
    .tab-faq {
        margin-top: 2.93vw;
        font-size: 3.33vw;
    }

    .tab-faq > .tabs {
        display: flex;
        flex-direction: column;
        gap: 1.2vw;
        border: none;
    }

    .tab-faq > .tabs > .tab {
        height: 6.9vw;
        border-radius: 0.27vw;
        letter-spacing: 0;
        border-right: 0.13vw solid #00a0a0;
    }

    .tab-faq > .tabs > .tab:first-child {
        grid-column: 1 / 3;
    }

    .tab-faq > .tabs > .tab.is-active {
        border-width: 0.27vw;
    }

    .tab-faq > .tab-contents  {
        margin-top: 4vw;
    }

    .tab-faq .note {
        font-size: 2.93vw;
    }
}


/*
 * Accordion
 */

.accordion {
    padding: 0;
    border: 1px solid #00a0e9;
}

.accordion > dt,
.accordion > dd {
    margin: 0;
}

.accordion > dt {
    position: relative;
    display: flex;
    padding: 25px;
    background-color: #00a0e9;
    cursor: pointer;
    color: #fff;
}

@media (hover: hover) {
    .accordion > dt:hover {
        opacity: 0.8;
    }
}

.accordion > dt {
    position: relative;
  }
  
  .accordion-icon{
    position: absolute;
    right: 20px;
    top: 50%;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: translateY(-50%);
  }
  
  .accordion-icon::after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 2px;
    background: #fff;
    transform: translate(-50%, -50%);
  }
  
  /* 縦線 */
  .accordion-icon::before{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 20px;
    background: #fff;
    transform: translate(-50%, -50%);
  }
  
  /* 開いたらマイナス */
  .accordion.active .accordion-icon::before{
    opacity: 0;
  }
  

.accordion > dd {
    display: none;
    height: 0;
    overflow: hidden;
    box-sizing: border-box;
    transition: height 0.6s ease;
}

.accordion.active > dd {
    border-top-width: 4px;
}

.accordion > dd > div {
    display: flex;
    padding: 30px;
}

.accordion > dt > div,
.accordion > dd > div > div {
    margin-right: 1em;
}

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


    .accordion {
        border-radius: 0.27vw;
    }

    .accordion > dt {
        padding: 4vw 6.9vw 4vw 4vw;
    }

    .accordion-icon {
        width: 5.3vw;
        height: 5.3vw;
        right: 4vw;
        top: 50%;
        transform: translateY(-50%);
    }

    .accordion-icon::before {
        height: 2.7vw;
    }

    .accordion-icon::after {
        width: 2.7vw;
    }

    .accordion > dd {
    }

    .accordion > dd > div {
        border-top-width: 0.27vw;
        display: flex;
        padding: 4vw;
    }

    .accordion > dd > .is-sp-block {
        padding: 4vw 4vw 0;
    }

    .accordion > dd > .is-sp-block + div {
        padding-top: 2.67vw;
    }

}

/*
 * Animation
 */
.fade-up {
    opacity: 0;
}

.fade-up.is-animate {
    animation: fadeUp 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.fade-up:nth-child(1).is-animate {

}
.fade-up:nth-child(2).is-animate {
    animation-delay: 0.2s;
}
.fade-up:nth-child(3).is-animate {
    animation-delay: 0.4s;
}
.fade-up:nth-child(4).is-animate {
    animation-delay: 0.6s;
}
.fade-up:nth-child(5).is-animate {
    animation-delay: 0.8s;
}

@keyframes fadeUp {
    0% {
        transform: translate(0, 60px);
        opacity: 0;
    }
    100% {
        transform: translate(0,0);
        opacity: 1;
    }
}

.slide-in-right {
    opacity: 0;
}

.slide-in-right.is-animate {
    animation: slideInRight 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes slideInRight {
    0% {
        opacity: 1;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    opacity: 0;
}

.slide-in-left.is-animate {
    animation: slideInLeft 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes slideInLeft {
    0% {
        opacity: 1;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-word {
    overflow: hidden;
}

.slide-word > * {
    opacity: 0;
}

.slide-word.is-animate > * {
    animation: slideInLeft 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.slide-word.is-animate > *:nth-child(2) {
    animation-delay: 0.2s;
}
.slide-word.is-animate > *:nth-child(3) {
    animation-delay: 0.4s;
}


/* video */
.vjs-vertical {
    padding-top: 177.6% !important;
}

/*
 * Event End
 */

.event-end-02,
.event-end-03 {
    position: relative;
    z-index: 5;
    width: 100%;
}

.event-end-01 {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    height: calc(100% + 300px);
    z-index: 5;
}

.event-end-text {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    margin: 0 0 0 -50vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 160, 233, 0.8);
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    box-sizing: border-box;
}

/* タイムライン内はラベル列分だけ左へ補正 */
.event-timeline .event-end-text {
    margin-left: calc(-50vw - (168px + 30px) / 2);
}

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

    .event-end-text {
        font-size: 4vw;
    }

    .event-end-01 {
        height: calc(100% + 35vw);
    }

    .event-timeline .event-end-text {
        margin-left: -50vw;
    }
}
