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

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

.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: #3c3c3c;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #dddddd, #c7c7c7);
    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, #ffa061, #ff781e);
}

@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-sp {
    display: none;
}

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

    .is-sp {
        display: inline;
    }
}

/* 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: 10px;
    text-align: center;
}

.footer_content {
    padding: 0 0 80px;
}

.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 {
        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: 0 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: 60px 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 10px;
    text-align: center;
}

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

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

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

.section-title .tagline {
    margin: 55px 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: 7vw 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: 7vw 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: #e3f1e6;
}

.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: #f3ffef;
    font-size: 14px;
    line-height: 2;
    text-align: center;
    color: #0e411e;
}

.event-introduction > p {
    margin-top: 1.5em;
    margin-bottom: 0;
}

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

.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: #e3f1e9;
}

.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;
    margin-top: -50px;
    filter: drop-shadow(0 30px 15px rgba(0, 0, 0, 0.1));
}

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

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

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

@media screen and (max-width: 1000px) {
    .event-container {
        margin-top: -40px;
        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;
    }
}

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

.ending {
    box-shadow: 0 32px 32px rgba(175, 175, 175, 0.35);
    filter: none;
}

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

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

.ending .inner {
    padding-bottom: 100px;
}

.opening .event-timetable-deco img {
    width: 391px;
}

.ending .event-timetable-deco img {
    width: 320px;
}

.opening .event-timetable-title,
.ending .event-timetable-title {
    color: #0e411e;
}

.opening .event_minutes,
.ending .event_minutes{
    border-color: #0e411e;
}

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

    .ending {
        box-shadow: 0 10px 10px rgba(175, 175, 175, 0.35);
    }

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

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

    .ending .inner {
        padding-bottom: 30px;
    }

    .event-timetable-deco img {
        height: 92px;
    }

    .opening .event-timetable-deco img,
    .ending .event-timetable-deco img {
        width: auto;
    }

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

}

.chapter {
}

.chapter .wave {
    position: relative;
    background-color: #f8f3e6;
}

.chapter .inner {
    padding: 220px 0 180px;
}

.chapter:nth-child(odd) {
    --swiper-pagination-color: #623d12;
}

.chapter:nth-child(even) {
    --swiper-pagination-color: #0e411e;
}

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

.chapter:nth-child(odd) .wave .event-timetable-color-bar,
.chapter:nth-child(even) .wave .event-timetable-color-bar {
    position: absolute;
    display: block;
    top: 100px;
    width: calc(50% + 40px);
    height: 160px;
    box-shadow: 0 32px 32px rgba(175, 175, 175, 0.35);
    z-index: -1;
}

.chapter:nth-child(odd) .wave .event-timetable-color-bar {
    right: 0;
    background: linear-gradient(60deg, #C2AF87 0%, #CEBD97 100%);
}

.chapter:nth-child(even) .wave .event-timetable-color-bar {
    left: 0;
    background: linear-gradient(60deg, #66c083 0%, #8dd7a5 100%);
}

.chapter .event-content {
    display: flex;
    gap: 20px;
}

.chapter .event-content .event-timetable-deco {
    margin-left: -20px;
}

.chapter:nth-child(even) .event-content .event-timetable-deco {
    margin-right: -20px;
}

.chapter .event-content h4 {
    margin: -1.8em 0 0;
    font-size: 26px;
    line-height: 1;
}

.chapter .event-content h5 {
    margin: 10px 0 0;
    font-size: 30px;
    line-height: 1.4;
}

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

.chapter:nth-child(odd) h4,
.chapter:nth-child(odd) h5 {
    color: #623d12;
}

.chapter:nth-child(odd) .event_minutes {
    border-color: #623d12;
}

.chapter:nth-child(even) h4,
.chapter:nth-child(even) h5 {
    color: #0e411e;
}

.chapter:nth-child(even) .event_minutes {
    border-color: #0e411e;
}


div:nth-child(1 of .chapter) {
    z-index: 4;
}

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

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

@media screen and (max-width: 1000px) {
    .chapter .inner {
        padding: 80px 0 80px;
    }

    .chapter:nth-child(odd) .wave .event-timetable-color-bar,
    .chapter:nth-child(even) .wave .event-timetable-color-bar {
        top: 50px;
        width: calc(96vw - 260px);
        height: 67px;
        box-shadow: 0 10px 10px rgba(175, 175, 175, 0.35);
    }

    .chapter:nth-child(odd) .wave .event-timetable-color-bar {
    }

    .chapter:nth-child(even) .wave .event-timetable-color-bar {
        left: auto;
        right: 0;
    }

    .chapter .event-content {
        position: relative;
        display: block;
    }

    .chapter .event-content .event-timetable-deco {
        margin-left: 0;
    }

    .chapter:nth-child(even) .event-content .event-timetable-deco {
        margin-right: 0;
    }

    .chapter .event-content .event-timetable-deco img {
        width: auto;
        height: 92px;
    }

    .chapter .event-content h4 {
        margin: -2.4em 0 0;
        font-size: 14px;
    }

    .chapter .event-content h5 {
        margin: 0 0 0;
        font-size: 27px;
    }

    .chapter .event-content p {
        margin: calc(61.3vw + 30px) 0 0;
        font-size: 16px;
    }

}


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

.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: 28px;
    line-height: 1.4;
    color: #3c3c3c;
}

.present-topic {
    padding: 20px 0 16px;
    border: 12px solid #ffa367;
    font-size: 28px;
    font-weight: 600;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
    line-height: 1.4;
    text-align: center;
}

.present-topic p {
    margin: 0;
}

.present-topic em {
    font-style: normal;
    color: #ff7a23;
}

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

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

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

}

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


/*
 * swiper
 */
.swiper {
    flex: 0 0 600px;
    width: 600px;
    height: 425px;
}

.swiper-pagination {
    text-align: left;
    margin-left: -3px;
}

@media screen and (max-width: 1000px) {
    .swiper {
        position: absolute;
        width: 92vw;
        height: 61.3vw;
        padding-bottom: 20px;
        top: 115px;
        box-sizing: content-box;
    }

    .chapter:nth-child(1 of .chapter) .swiper {
        top: 155px;
    }

    .swiper-pagination {
        margin-left: -2px;
    }

}


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

@media screen and (max-width: 1000px) {
    .slide-in-left.is-animate {
        animation: slideInRight 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;
}


/*
 * Event End
 */

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

.event-end-01 {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: calc(100% + 181px);
}

.event-end-text {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: rgba(0, 155, 90, 0.8);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #fff;
}

.event-end-02 .event-end-text,
.event-end-03 .event-end-text {
    width: 100vw;
    margin-left: calc(-50vw + 500px);
}

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

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

    .event-end-02 .event-end-text,
    .event-end-03 .event-end-text {
        width: 100vw;
        margin-left: -4vw;
    }
}