@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: 11px;
        --swiper-pagination-bullet-border-radius: none;
        --swiper-pagination-bottom: -2px;
        --swiper-pagination-bullet-horizontal-gap: 2px;
        --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;
}

h3 {
    font-size: 18px;
}

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

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: 12px;
    line-height: 1;
    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-40 {
        margin-top: 1em;
    }
}

/* button */
.btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 450px;
    height: 60px;
    border-radius: 30px;
    /*background: linear-gradient(to bottom, #dddddd, #c7c7c7);*/
    background: transparent;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #aaaaaa, #888888);
    z-index: -1;
}

.btn::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
    transform: translateX(-100%);
    z-index: -1;
}

.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::after {
        transform: translateX(0);
    }

    .btn_entry:hover {
    }
}

@media screen and (max-width: 1000px) {
    .btn {
        width: 80vw;
        height: 40px;
        border-radius: 20px;
        font-size: 18px;
    }
}

/* 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: 40px;
    }
}

/*
 * Footer
 */
.footer {
    padding-bottom: 120px;
    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 #19a68a;
    border-radius: 4px;
    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: 90px;
        text-align: center;
    }

    .footer_btn {
        height: 46px;
        padding: 0 12px;
        border-radius: 4px;
        font-size: 14px;
    }

    .footer_btn::before {
        width: 8px;
        height: 14px;
        margin-right: 6px;
        margin-left: 0;
    }

    .footer_btn:after {
        display: none;
    }

    .footer_content {
        margin: 0;
        padding: 20px 0 30px;
    }

    .footer_copy {
        font-size: 12px;
        letter-spacing: 0;
    }
}


/*
 * Fix Bottom
 */
.fix-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 110px;
    background-color: #fff9db;
    text-align: center;
    z-index: 100;
}

@media screen and (max-width: 1000px) {
    .fix-bottom {
        height: 80px;
    }

    .fix-bottom .note{
        display: flex;
        justify-content: center;
    }
}

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

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

    .contact h3 {
        line-height: 1;
        margin: 0;
    }

    .contact p {
        margin: 0.8em 0 0;
    }

    .contact .note {
        margin: 0;
    }

}


/*
 * Navigation
 */
.nav-fit-area {
    position: relative;
    width: 100%;
    padding-top: 80px;
    overflow-x: hidden;
    overflow-y: hidden;
}

.page-navigation {
    position: absolute;
    top: 0;
    width: 100%;
    height: 80px;
    padding: 20px 0 20px;
    font-size: 18px;
    z-index: 10;
    transition: all 0.3s ease;
}

.page-navigation.is-active {
    position: fixed;
}

.page-navigation::before,
.page-navigation::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
}

.page-navigation::before {
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
}

.page-navigation::after {
    left: -10%;
    width: 120%;
    height: 100%;
    box-shadow: 0 32px 32px rgba(175, 175, 175, 0.35);
    z-index: -2;
}

.page-navigation > ul {
    display: flex;
    width: 1000px;
    padding: 0;
    margin: 0 auto;
    border-left: 1px solid #000;
    list-style: none;
}

.page-navigation > ul > li {
    flex: 25%;
    border-right: 1px solid #000;
}

.page-navigation > ul > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    color: #000;
    text-decoration: none;
}

@media screen and (max-width: 1000px) {
    .nav-fit-area {
        padding-top: 40px;
    }

    .page-navigation {
        height: 40px;
        padding: 12px 0;
        font-size: 12px;
        font-feature-settings: "palt";
    }

    .page-navigation::after {
        left: -10%;
        width: 120%;
        height: 100%;
        box-shadow: 0 32px 32px rgba(175, 175, 175, 0.35);
        z-index: -2;
    }

    .page-navigation > ul {
        width: auto;
        margin: 0 4vw;
    }

    .page-navigation > ul > li {
        flex: 25%;
    }

    .page-navigation > ul > li > a {
        height: 18px;
    }
}

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

.section .inner {
    width: 1000px;
    margin: 0 auto;
}

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

/* section-title */
.section-title {
    height: 730px;
    padding: 30px 0 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0 30%, rgba(0, 0, 0, 0.3) 59%, rgba(0, 0, 0, 0) 84%), url("../img/main.jpg") center center no-repeat;
    background-size: cover;
}

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

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

.youtube-account {
    padding: 15px 0;
    margin: 0 20px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    text-align: center;
}

.youtube-account picture {
    width: 300px;
}

.section-title .tagline {
    margin: 25px 0 0 20px;
}

.section-title .tagline picture {
    display: block;
    margin-top: 16px;
}

.section-title .tagline picture img {
    width: auto;
    height: 25px;
}

.event-info {
    position: absolute;
    bottom: 40px;
    margin: 0 0 0 20px;
}

.event-info picture {
    width: 301px;
}

@media screen and (max-width: 1000px) {
    .section-title {
        height: 136vw;
        padding: 5vw 0 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0 30%, rgba(0, 0, 0, 0.3) 59%, rgba(0, 0, 0, 0) 84%), url("../img/main_sp.jpg") center bottom no-repeat;
        background-size: cover;
    }

    .section-title h1 {
        margin: 0 0 10px;
    }

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

    .youtube-account {
        padding: 2vw 0;
        margin: 0 4vw;
    }

    .youtube-account picture {
        width: 53.2vw;
    }

    .section-title .tagline {
        margin: 5vw 0 0 0;
    }

    .section-title .tagline picture {
        margin-top: 10px;
    }

    .section-title .tagline picture img {
        height: 17px;
    }

    .event-info {
        bottom: 4vw;
        margin: 0 0 0 -4vw;
    }

    .event-info picture {
        width: 57vw;
    }

}


/* section present summary */
.section-present-summary {
    padding: 20px 0;
    background-color: #ffefd7;
}

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

.present-summary-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.present-summary-title {
    width: 368px;
    margin: 0;
    color: #19a68a;
}

.present-summary-item {
    width: 276px;
    color: #3c3c3c;
}

.present-summary-item h3 {
    margin: 5px 0 0;
    font-size: 18px;
    line-height: 1.4;
}

@media screen and (max-width: 1000px) {
    .section-present-summary {
        padding: 4vw 0;
        /*background-color: #e3f1e6;*/
    }

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

    .present-summary-block {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 2vw 4vw;
    }

    .present-summary-title {
        width: 100%;
        margin: 0;
        color: #19a68a;
    }

    .present-summary-item {
        flex: 1 1 40%;
        width: 40%;
        color: #3c3c3c;
    }

    .present-summary-item h3 {
        font-size: 14px;
    }
}


/* 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 {
    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: 60px 0;
    }

    .section-event > h2 {
        padding: 0;
        margin: 50px 0 20px;
        text-align: center;
    }

    .section-event > h2 img {
        width: auto;
        height: 70px;
    }

}

.event-introduction {
    padding: 50px;
    background-color: #f8f3e6;
    font-size: 18px;
    line-height: 2;
    text-align: center;
    color: #41380e;
}

.event-introduction > p {
    margin: 0;
}

@media screen and (max-width: 1000px) {
    .event-introduction {
        padding: 40px 0 40px;
        font-size: 14px;
    }
}

.event-title {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 270px;
    height: 60px;
    margin: 0 auto;
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #3c3c3c;
}

.event-title::before,
.event-title::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    width: 22px;
    height: 100%;
    border: 5px solid #3c3c3c;
    box-sizing: border-box;
}

.event-title::before {
    left: 0;
    border-right: none;
}

.event-title::after {
    right: 0;
    border-left: none;
}

@media screen and (max-width: 1000px) {
    .event-title {
        width: 140px;
        height: 30px;
        font-size: 14px;
    }

    .event-title::before,
    .event-title::after {
        width: 10px;
        border-width: 2px;
    }
}

.event-summary {
    width: 100%;
    margin-top: 60px;
    border-collapse: collapse;
    color: #3c3c3c;
}

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

.event-summary th {
    width: 250px;
    padding: 20px 30px;
    text-align: left;
    vertical-align: center;
    background-color: #f8f3e6;
}

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

@media screen and (max-width: 1000px) {
    .event-summary {
        margin-top: 30px;
        margin-bottom: 50px;
    }

    .event-summary th,
    .event-summary td {
        border-top: 3px solid #fff;
        border-bottom: 3px solid #fff;
        font-size: 14px;
    }

    .event-summary th {
        width: 100px;
        padding: 4px 6px;
        vertical-align: top;
    }

    .event-summary td {
        padding: 4px 6px;
    }
}


.event-container {
    position: relative;
}

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

.event_minutes {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 25px;
    top: -3px;
    padding: 0 5px;
    margin-left: 10px;
    border: 2px solid #000;
    font-size: 16px;
}

.event-timetable-text {
    margin: 1em 0 0;
    font-size: 18px;
}

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

.event-timetable-color-bar {
    position: absolute;
    display: inline-flex;
    left: 0;
    top: 0;
    width: 100%;
    height: 45px;
    background: linear-gradient(60deg, #ab8867 0%, #c2a687 100%);
    border-radius: 0 23px 23px 0;
    box-shadow: 0 33px 40px rgba(175, 175, 175, 0.35);
    color: #fff;
    z-index: 0;
}

.event-timetable-title-bar .event-timetable-title {
    position: relative;
    top: 2px;
    z-index: 1;
}

.event-timetable-title-bar .event_minutes {
    border-color: #ffffff;
    border-width: 1px;
}

@media screen and (max-width: 1000px) {
    .event-container {
        filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.1));
    }

    .event-timetable-title {
        font-size: 14px;
    }

    .event_minutes {
        justify-content: center;
        width: 50px;
        height: 16px;
        top: -1px;
        padding: 0;
        margin-left: 3px;
        font-size: 12px;
    }

    .event-timetable-text {
        margin: 0.5em 0 0;
        font-size: 16px;
    }

    .event-timetable-title-bar {
        width: 89vw;
        height: 24px;
        padding-left: 4vw;
        padding-right: 0;
    }


    .event-timetable-color-bar {
        height: 24px;
        border-radius: 0 12px 12px 0;
    }

    .event-timetable-title-bar .event-timetable-title {
        top: 1px;
    }
}

.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% - 20px),
                curve to 0 calc(100% - 20px)
                with 65% 100% / 35% calc(100% - 40px),
                close
        );
    }
}

.opening {
    z-index: 5;
    filter: drop-shadow(0 30px 15px rgba(0, 0, 0, 0.1));
}

.ending {
    margin-top: 120px;
}

.opening .inner,
.ending .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

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

.ending .inner {
    padding: 0;
}

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

    .ending {
        margin-top: 13.5vw;
    }

    .opening .inner,
    .ending .inner {
        display: block;
    }

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

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

}

.chapter {
}

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

.chapter:nth-child(odd) {
}

.chapter:nth-child(even) {
}

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

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

.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) {
    padding-top: 120px;
    z-index: 4;
}

div:nth-child(1 of .chapter) .event-content h5 {
    color: #623d12;
}

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

div:nth-child(2 of .chapter) {
    padding-top: 190px;
    z-index: 3;
}

div:nth-child(2 of .chapter) .event-timetable-color-bar {
    background: linear-gradient(60deg, #7ab9e5 0%, #97cbf0 100%);
}

div:nth-child(2 of .chapter) .event-content h5 {
    color: #193649;
}

div:nth-child(2 of .chapter) .event-content-background {
    position: absolute;
    left: calc(50% - 40px);
    width: 350px;
    height: 1400px;
    background: linear-gradient(60deg, #add1ea 0%, #badaf0 100%);
}

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


.event-group-01,
.event-group-02,
.event-group-03{
    position: relative;
}

.event-group-01 .event-image {
    position: absolute;
    width: 430px;
    left: 50%;
    top: 50px;
}

.event-group-01 .event-text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 480px;
    height: 770px;
    margin-left: 40px;
    background: linear-gradient(60deg, #d0c5ad 0%, #e3dbcb 100%);
}

.event-group-02 {
    padding-bottom: 410px;
    margin-top: 40px;
}

.event-group-02 .event-image {
    position: absolute;
    width: 800px;
    left: 340px;
    top: 60px;
}

.event-group-02 .event-text {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 616px;
    height: 110px;
    margin-left: -90px;
    background: linear-gradient(60deg, #9ab8c6 0%, #a6c1cd 100%);
    color: #fff;
    z-index: 1;
}

.event-group-03{
    position: relative;
    padding-top: 40px;
    padding-bottom: 90px;
    margin-top: 40px;
}

.event-group-03 .event-image {
    position: absolute;
    width: 800px;
    left: -140px;
}

.event-group-03 .event-text {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 616px;
    height: 110px;
    margin-left: 380px;
    margin-top: 440px;
    background: linear-gradient(60deg, #9ab8c6 0%, #a6c1cd 100%);
    color: #fff;
    z-index: 1;
}

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

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

    .chapter .event-content h5 {
        margin: 10px 0 8px;
        font-size: 18px;
    }

    .chapter .event-content p {
        font-size: 15px;
        line-height: 1.6;
    }

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

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

    div:nth-child(1 of .chapter) {
        padding-top: 30px;
    }


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

    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;
    }

    .event-group-01 .event-image {
        width: 45vw;
        left: 47vw;
        top: 12vw;
    }

    .event-group-01 .event-text {
        width: 52vw;
        height: 93vw;
        margin-left: -2vw;
        padding: 0 4vw 0 3vw;
    }

    .event-group-02 {
        padding-bottom: 48vw;
        margin-top: 5vw;
    }

    .event-group-02 .event-image {
        width: 71vw;
        left: auto;
        right: -4vw;
        top: 16vw;
    }

    .event-group-02 .event-text {
        width: 73vw;
        height: 25vw;
        margin-left: -4vw;
        padding: 0 4vw
    }

    .event-group-03{
        padding-top: 1px;
        padding-bottom: 8.3vw;
        margin-top: 0;
    }

    .event-group-03 .event-image {
        width: 71vw;
        left: -4vw;
        top: 0;
    }

    .event-group-03 .event-text {
        width: 74vw;
        height: 38vw;
        margin-left: 22vw;
        margin-top: 36vw;
        padding: 0 4vw;
    }
}


/* section-present */
.section-present {
    padding: 130px 0;
    background-color: #ffefd7;
}

.present-title {
    margin: 0 0 60px;
    text-align: center;
}

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

.present-block {
    margin-top: 40px;
    background-color: #fff;
    box-shadow: 0 11px 16px rgba(175, 175, 175, 0.35);
    font-size: 18px;
}

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

.present-block > h3 {
    margin: 0;
    box-shadow: 0 11px 16px rgba(175, 175, 175, 0.35);
}

.present-block-content {
    padding: 20px;
}

.present-items {
    display: flex;
    gap: 20px;
}

.present-item-name {
    margin: 10px 0 0;
    font-size: 26px;
    line-height: 1.4;
    color: #3c3c3c;
}

.present-text {
    margin: 0;
}

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

/* 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-present {
        padding: 60px 0 50px;
    }

    .present-title {
        margin: 0 0 60px;
    }

    .present-title img {
        width: auto;
        height: 70px;
    }

    .present-tagline {
        margin: 0 0 12px;
        line-height: 1;
    }

    .present-tagline img {
        width: 183px;
        height: auto;
    }

    .present-block {
        margin-top: 20px;
        margin-bottom: 40px;
        box-shadow: 0 4px 6px rgba(175, 175, 175, 0.35);
        font-size: 14px;
    }

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

    .present-block > h3 {
        margin: 0;
        box-shadow: 0 4px 6px rgba(175, 175, 175, 0.35);
    }

    .present-block-content {
        padding: 2vw;
    }

    .present-items {
        gap: 4px;
    }

    .present-item {
        width: 50%;
        flex: 1 1 50%;
    }

    .present-item-name {
        margin: 4px 0 0;
        font-size: 14px;
        line-height: 1.2;
    }

    .present-topic {
        margin-bottom: 4px;
        padding: 7px 0 5px;
        border-width: 4px;
        font-size: 14px;
    }

    .present-topic p {
        margin: 0;
    }

    .present-topic em {
        font-size: 18px;
        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;
    }


    /* 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 {
    padding: 130px 0 0;
    font-size: 18px;
}

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

.howto-steps {
    display: flex;
    gap: 20px;
    margin-top: 80px;
    margin-bottom: 60px;
    padding: 0;
    list-style: none;
}

.howto-step {
    position: relative;
    flex: 33%;
    padding: 30px 30px 10px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.27);
}

.howto-step::after {
    content: "";
    display: block;
    position: absolute;
    right: -27px;
    top: 50%;
    width: 32px;
    height: 30px;
    margin-top: -15px;
    background-color: #529969;
    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: 30px;
    line-height: 1;
}

.howto-step-text {
    line-height: 1.8;
    text-align: left;
}

.howto-list {
    padding-left: 1.5em;
}


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

    .howto-title {
    }

    .howto-title img {
        width: auto;
        height: 70px;
    }

    .howto-steps {
        flex-direction: column;
        gap: 33px;
        margin-top: 24px;
        margin-bottom: 14px;
    }

    .howto-step {
        flex: 33%;
        padding: 4vw;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.27);
    }

    .howto-step::after {
        right: 50%;
        top: 100%;
        width: 34px;
        height: 16px;
        margin-top: 10px;
        margin-right: -17px;
        clip-path: polygon(0 0, 100% 0, 50% 100%);
    }

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


    .howto-step-image {
        width: 81px;
    }

    .howto-step-title {
        margin: 14px 0;
        font-size: 20px;
        line-height: 1;
    }

    .howto-step-text {
        margin: 0;
        line-height: 1.6;
    }

    .howto-list {
        margin: 0;
        padding-left: 1.5em;
    }
}


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

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

@media screen and (max-width: 1000px) {
    .section-faq {
        padding: 60px 0;
        font-size: 14px;
    }

    .faq-title {
    }

    .faq-title img {
        width: auto;
        height: 70px;
    }
}


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

.terms-title {
    position: relative;
    padding-bottom: 85px;
    margin: 0 0 40px;
    font-size: 40px;
    line-height: 1;
    text-align: center;
}

.terms-title::after {
    content: "";
    position: absolute;
    display: block;
    width: 100px;
    height: 10px;
    left: 50%;
    bottom: 0;
    margin-left: -50px;
    background-color: #529969;
}

.terms-block {
    position: relative;
    padding: 20px;
    border-radius: 30px;
    background-color: #f2ecd2;
}

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

.terms-block-inner h3 {
    margin: 0;
    font-size: 18px;
}

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

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

.terms-block-inner h4 + h5 {
    margin-top: 0;
}

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

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

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

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

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

    .terms-title {
        padding-bottom: 1em;
        margin: 0 0 1em;
        font-size: 27px;
    }

    .terms-title::after {
        width: 32px;
        height: 3px;
        margin-left: -16px;
    }

    .terms-block {
        padding: 10px;
        border-radius: 20px;
        background-color: #f2ecd2;
    }

    .terms-block-inner {
        height: 193px;
        padding: 4vw;
        font-size: 14px;
    }

    .terms-block-inner h3 {
        font-size: 14px;
    }

    .terms-block-inner h4 {
        font-size: 14px;
    }

    .terms-block-inner h5 {
        font-size: 14px;
    }

    .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 {
    padding: 0;
    list-style: none;
}

.tab-content {
    display: none;
}

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


/* tab-navigater */
.tab-navigater {
    margin-bottom: 130px;
}

.tab-navigater > .tabs {
    gap: 20px;
    padding-bottom: 60px;
    margin: 75px 0 0;
}

.tab-navigater > .tabs > .tab {
    position: relative;
    display: flex;
    flex: 33%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0 35px;
    border: 1px solid #c2c2c2;
    border-radius: 30px;
}

.tab-navigater > .tabs > .tab.is-active {
    border: 4px solid #529969;
}

.tab-navigater > .tabs > .tab.is-active::after {
    content: "";
    position: absolute;
    display: block;
    width: 43px;
    height: 22px;
    bottom: -50px;
    background-color: #529969;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.tab-navigater > .tabs > .tab > picture {
    width: 232px;
    height: 232px;
    border-radius: 50%;
    overflow: hidden;
}

.tab-navigater > .tabs >.tab > h4 {
    margin: 0;
    font-size: 18px;
}

.tab-navigater > .tabs > .tab > p {
    margin: 1em 0 0;
    font-size: 14px;
}

.tab-navigater > .tab-contents > .tab-content {
    font-size: 18px;
    line-height: 1.8;
}

@media screen and (max-width: 1000px) {
    .tab-navigater {
        margin-bottom: 60px;
    }

    .tab-navigater > .tabs {
        gap: 4px;
        padding-bottom: 20px;
        margin: 26px 0 0;
    }

    .tab-navigater > .tabs > .tab {
        padding: 8px 0 6px;
        border-radius: 10px;
    }

    .tab-navigater > .tabs > .tab.is-active {
        border-width: 2px;
    }

    .tab-navigater > .tabs > .tab.is-active::after {
        width: 14px;
        height: 8px;
        bottom: -14px;
    }

    .tab-navigater > .tabs > .tab > picture {
        width: 77px;
        height: 77px;
        border-radius: 50%;
        overflow: hidden;
    }

    .tab-navigater > .tabs >.tab > h4 {
        margin: 2px 0 0;
        font-size: 14px;
        line-height: 1;
    }

    .tab-navigater > .tabs > .tab > p {
        margin: 4px 0 0;
        font-size: 12px;
        line-height: 1;
    }

    .tab-navigater > .tab-contents {
        margin: 0;
    }

    .tab-navigater > .tab-contents > .tab-content {
        font-size: 14px;
        line-height: 1.6;
    }

}


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

.tab-faq > .tabs {
    display: grid;
    gap: 3px;
    grid-template-columns: 1fr 1fr;
    padding: 0;
}

.tab-faq > .tabs > .tab {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    border: 1px solid #19a68a;
    border-radius: 4px;
    font-feature-settings: 'palt';
    letter-spacing: 0.02em;
}

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

.tab-faq > .tabs > .tab.is-active {
    border: 4px solid #529969;
    background-color: #e3f1e9;
}

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

.tab-faq > .tab-contents  {
    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: 22px;
        font-size: 14px;
    }

    .tab-faq > .tabs {
        gap: 3px;
    }

    .tab-faq > .tabs > .tab {
        height: 47px;
        border-radius: 2px;
        letter-spacing: 0;
    }

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

    .tab-faq > .tabs > .tab.is-active {
        border-width: 2px;
    }

    .tab-faq > .tab-contents  {
        margin-top: 30px;
    }
}


/*
 * Accordion
 */

.accordion {
    padding: 0;
    border: 4px solid #529969;
    border-radius: 4px;
}

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

.accordion > dt {
    position: relative;
    display: flex;
    padding: 30px;
    background-color: #e3f1e9;
    cursor: pointer;
}

@media (hover: hover) {
    .accordion > dt:hover {
        background-color: #a8ccb4;
    }
}

.accordion > dt::before {
    content: "";
    position: absolute;
    display: block;
    right: 20px;
    top: 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #529969;
    transform: translateY(-50%);
}

.accordion > dt::after {
    content: "";
    position: absolute;
    display: block;
    right: 20px;
    top: 50%;
    width: 18px;
    height: 18px;
    margin: 0 6px;
    background: #fff;
    transform: translateY(-50%);
    clip-path: polygon(0 7px, 7px 7px, 7px 0, 11px 0, 11px 7px, 18px 7px, 18px 11px, 11px 11px, 11px 18px, 7px 18px, 7px 11px, 0 11px);
    z-index: 1;
}

.accordion.active > dt::after {
    clip-path: polygon(0 7px, 18px 7px, 18px 11px, 0 11px);
}

.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 {
    border-top: 4px solid #529969;
    display: flex;
    padding: 30px;
}

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

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


    .accordion {
        border-width: 2px;
        border-radius: 2px;
    }

    .accordion > dt {
        padding: 4vw;
    }

    .accordion > dt::before {
        right: 10px;
        width: 19px;
        height: 19px;
        margin: 0;
        border-radius: 50%;
    }

    .accordion > dt::after {
        right: 10px;
        width: 11px;
        height: 11px;
        margin: 0 4px;
        clip-path: polygon(0 4px, 4px 4px, 4px 0, 7px 0, 7px 4px, 11px 4px, 11px 7px, 7px 7px, 7px 11px, 4px 11px, 4px 7px, 0 7px);

    }

    .accordion.active > dt::after {
        clip-path: polygon(0 4px, 11px 4px, 11px 7px, 0 7px);
    }

    .accordion > dd {
    }

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

}

/*
 * 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;
}