@charset "UTF-8";
/* CSS Document */

body {
    margin: 0;
}

/*--------------------
loading
---------------------*/
.loading {
    width: 100%;
    height: 100vh;
}

#load {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--key-color);
    z-index: 2000;
}

#load .inner {
    position: var(--pos-r);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#load .inner .bg_logo {
    position: var(--pos-a);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#load .inner .bg_logo img {
    width: 100%;
}

#load .inner .map_dot_wrap {
    width: 591px;
    width: 33%;
    height: 655px;
    height: auto;
}

#load .inner .map_dot_wrap .map_dot_svg {
    /*
	width:591px;
	height:655px;
*/
}

.st0 {
    fill: #fff;
}

.dot {
    opacity: 0;
}

.dot.fadeIn {
    animation-name: fadeIn;
    animation-duration: 0.1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.center_logo {
    position: var(--pos-a);
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.center_logo > span {
    width: 52.6%;
    overflow: hidden;
    display: block;
}

span.smoothTextTrigger {
    transition: 0.8s ease-in-out;
    transform: translate3d(0, 100%, 0) skewY(12deg);
    transform-origin: left;
    display: block;
    opacity: 0;
}

span.btm.smoothTextTrigger {
    transition-delay: 0.5s;
    margin-top: 36px;
}

span.smoothTextTrigger.smoothTextAppear {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
}

@media (max-width: 1024px) {}

@media (max-width: 768px) {
    #load .inner .map_dot_wrap {
        width: 60%;
    }

    .center_logo > span {
        width: 80%;
        overflow: hidden;
        display: block;
    }
}

/*--------------------
MV
---------------------*/

.mv {
    width: 100%;
    padding: calc(60px + var(--basevw) * 60 * 2) 0 calc(var(--basevw) * 60);
}

.mv .mv-wrapper {
    display: flex;
    position: var(--pos-r);
    width: 100%;
    height: 100%;
    /* flex-flow: column; */
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;

    background-image: url(../img/mv.jpg);
    background-size: cover;
    background-position: center;
    height: 50vw;
}

@media screen and (max-width: 568px) {
    .mv {
        padding: calc(50px + var(--basevw) * 60 * 1) 0 calc(var(--basevw) * 30);
    }

    .mv .mv-wrapper {
        height: 65vw;
    }
}

.mv-text {
    width: 100%;
    margin-top: calc(var(--basevw) * 98);
    position: var(--pos-r);
}

.mv-text h1 {
    text-align: center;
    font-weight: var(--font-w-bl);
    letter-spacing: var(--letter-ll);
    margin-bottom: calc(var(--basevw) * 64);
    font-size: calc(3 * var(--b-f-size));
    line-height: 1;
}

.mv-text .mv_center_logo {
    width: 52.6%;
    margin: 0 auto;
    text-align: center;
}

.mv_logo,
#center_logo {
    width: 100%;
    fill: var(--key-color);
}

.center_date {
    width: 86%;
    margin: calc(var(--basevw) * 90) auto 0;
    line-height: 1;
}

.mv .btn_box {
    margin-top: calc(var(--basevw) * 140);
    margin-bottom: 30px;
}

.bg_mv_logo {
    position: var(--pos-a);
    left: 50%;
    transform: translateX(-50%);
    top: calc(var(--basevw) * 226 - (var(--basevw) * 60 + var(--basevw) * 60 * 2));
    width: 100%;
    max-width: 1920px;
}

.bg_mv_logo_t,
.bg_mv_logo_b {
    width: 100%;
    transition: 1s;
    opacity: 0;
}

.bg_mv_logo_t {
    margin-bottom: 7.23vw;
}

.slide-in-left.is_show {
    -webkit-animation: slide-in-left 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    animation: slide-in-left 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.slide-in-right.is_show {
    -webkit-animation: slide-in-right 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    animation: slide-in-right 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

/**
 * ----------------------------------------
 * animation slide-in-left
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-1000px);
        transform: translateX(-1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-1000px);
        transform: translateX(-1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

/**
 * ----------------------------------------
 * animation slide-in-right
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@media screen and (max-width: 568px) {
    .center_date {
        width: 80%;
        margin: calc(var(--basevw) * 40) auto 0;
    }

    .mv-text .mv_center_logo {
        width: 90%;
    }

    .mv-text {
        margin-top: 0;
        position: var(--pos-r);
    }

    .mv {
        width: 100%;
        height: 100%;
    }

    .mv .btn_box {
        margin-top: calc(var(--basevw) * 100);
        /* padding-bottom: 60px; */
        margin: 0;
    }

    .mv .btn_box a {
        max-width: 180px;
        font-size: calc(0.8*var(--b-f-size));
        height: calc(var(--basevw)*50);
        line-height: calc(var(--basevw)*50);
        margin-bottom: 10px;
    }
}

/*--------------------
whats
---------------------*/
#whats {
    padding-top: calc(var(--basevw) * 200);
    position: var(--pos-r);
}

#whats:before,
#session:before {
    content: '';
    width: 84.375%;
    height: 103%;
    position: absolute;
    right: 0;
    top: 0;
    background: #fff;
}

#session:before {
    content: '';
    width: 100%;
    height: 103%;
    position: absolute;
    right: 0;
    top: 0;
    background: #fff;
}

.bg_scr_txt {
    width: 100%;
    position: var(--pos-a);
    left: 0;
    top: calc(var(--basevw) * 200 + (3.435 * var(--b-f-size)));
}

.bg_scr_txt img {
    width: 61.19%;
}

#whats .cont {
    justify-content: space-between;
}

#whats .cont .tit-box {
    width: 51%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

#whats .cont .cont-box {
    width: 49%;
    padding: calc(var(--basevw) * 80) 0;
}

#whats .cont .tit-box h2 {
    font-weight: var(--font-w-eb);
    color: var(--key-color);
    font-size: calc(6.875 * var(--b-f-size));
    line-height: 0.95;
    letter-spacing: 0.12em;
}

#whats .cont .tit-box h2 .eachTextAnime {
    text-align: center;
    justify-content: space-between;
}

#whats .bn_box {
    margin-top: calc(var(--basevw) * 60);
}

.topic-index-wrap {
    position: relative;
    z-index: 3;
    margin: calc(var(--basevw) * 60) 0 calc(var(--basevw) * 100);
    margin-right: calc(var(--basevw) * -20);
    margin-left: calc(var(--basevw) * -20);
}

.topic-index-wrap .column {
    padding: 0 calc(var(--basevw) * 20);
}

.topic-index-wrap .topic-box figure {
    border: 1px solid var(--key-color);
}

.topic-index-wrap .topic-box .txt-box {
    margin-top: calc(var(--basevw) * 20);
}

.topic-index-wrap .topic-box .txt-box h4 {
    font-size: calc(1.75 * var(--b-f-size));
    font-weight: var(--font-w-b);
}

.topic-index-wrap .topic-box .txt-box h4 + p {
    font-size: calc(1.31 * var(--b-f-size));
    margin-top: calc(var(--basevw) * 20);
    line-height: var(--lh-s);
}

@media screen and (max-width: 568px) {
    #whats {
        padding-top: calc(var(--basevw) * 50);
    }

    #whats .cont .tit-box h2 {
        font-size: calc(5 * var(--b-f-size));
        letter-spacing: 0.03em;
    }

    .bg_scr_txt {
        width: 100%;
        position: var(--pos-a);
        left: 0;
        top: calc(var(--basevw) * 100);
    }

    .bg_scr_txt img {
        width: 120%;
    }

    .topic-index-wrap {
        margin-top: 0;
    }

    .topic-index-wrap .column {
        margin-bottom: calc(var(--basevw) * 40);
    }

    .topic-index-wrap .topic-box .txt-box {
        margin-top: calc(var(--basevw) * 10);
    }

    .topic-index-wrap .topic-box .txt-box h4 {
        font-size: calc(1.5 * var(--b-f-size));
        font-weight: var(--font-w-b);
    }

    .topic-index-wrap .topic-box .txt-box h4 + p {
        font-size: calc(1.1 * var(--b-f-size));
        margin-top: calc(var(--basevw) * 10);
    }
}

/*--------------------
special guest
---------------------*/

#specialGuest .cont {
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem 1rem;
}

#specialGuest .topic-box {
    width: 23%;
}

#specialGuest .image {
    width: 8rem;
    height: 8rem;
    object-fit: cover;
    border-radius: 50%;
}

#specialGuest .txt-box {
    margin-top: 0;
    margin-left: 1.5rem;
    font-size: calc(1.31 * var(--b-f-size));
    line-height: var(--lh-s);
    align-self: center;
}

@media screen and (max-width: 768px) {
    #specialGuest .topic-box {
        width: 30%;
    }
}

@media screen and (max-width: 576px) {
    #specialGuest .image {
        width: 12rem !important;
        height: 12rem;
    }

    #specialGuest .cont {
        display: flex;
        flex-direction: column;
        padding: 0 calc(var(--basevw) * 20);
    }

    #specialGuest .topic-box {
        display: flex;
    }
}

/*--------------------
session
---------------------*/

#session {
    padding-top: calc(var(--basevw) * 240);
}

.mainsesstion_index {
    margin-top: calc(var(--basevw) * 85);
}

.mainsesstion_index .img-box {
    width: 51.9%;
}

.mainsesstion_index .cont-box {
    width: 48.1%;
    padding-left: calc(var(--basevw) * 64);
    padding-top: calc(var(--basevw) * 100);
}

.cont-tit {
    margin-bottom: calc(var(--basevw) * 30);
}

.cont-tit time {
    color: var(--key-color);
    font-weight: var(--font-w-b);
    line-height: var(--lh-s);
}

.cont-tit h4 {
    font-size: calc(1.93 * var(--b-f-size));
    font-weight: var(--font-w-b);
    margin-top: calc(var(--basevw) * 25);
    line-height: var(--lh-m);
}

.cont-tit .descript {
    font-size: calc(1.31 * var(--b-f-size));
    margin-top: calc(var(--basevw) * 30);
    line-height: var(--lh-s);
}

.sesstion-list-box .cont-tit .descript {
    font-size: calc(1.1 * var(--b-f-size));
    margin-top: calc(var(--basevw) * 10);
    line-height: var(--lh-s);
    color: var(--main-txt-color);
}

.sesstion-list-wrap {
    margin-top: calc(var(--basevw) * 80);
    width: 100%;
    padding-bottom: calc(var(--basevw) * 60);
}

.sesstion-list-wrap .sessionSwiper {
    width: 83.11%;
    max-width: 1280px;
    margin: 0 auto 0 0;
    overflow: hidden;
}

.sesstion-list-wrap .sessionSwiper .swiper-slide {
    min-height: 390px;
}

.sesstion-list-box {
    background: var(--bg-light-color);
    display: flex;
    flex-flow: column;
    min-height: 390px;
}

.sesstion-list-box h4,
.sesstion-list-box h4 p {
    color: var(--main-txt-color);
}

.sesstion-list-box .txt-box {
    padding: calc(var(--basevw) * 40);
}

.sesstion-list-box .txt-box .cont-tit {
    margin-bottom: calc(var(--basevw) * 20);
}

.sesstion-list-box .txt-box h4 {
    font-size: calc(1.3 * var(--b-f-size));
    margin-top: calc(var(--basevw) * 20);
}

.swiper-utilty {
    position: var(--pos-a);
    right: 0;
    top: 0;
    display: flex;
    width: 16.99%;
    height: 100%;
}

#session:after {
    /* content: ''; */
    width: 30.3%;
    height: calc(var(--basevw) * 572);
    position: var(--pos-a);
    background: var(--key-color);
    right: 0;
    bottom: 0;
}

.swiper-utilty .swiper-button-wrap {
    padding-left: calc(var(--basevw) * 80);
    display: flex;
    flex-flow: column;
}

.swiper-utilty .swiper-button-prev,
.swiper-utilty .swiper-button-next {
    position: var(--pos-r);
    margin-top: calc(var(--basevw) * 24);
    border: 1px solid #fff;
    border-radius: 50%;
    width: calc(var(--basevw) * 80);
    height: calc(var(--basevw) * 80);
    left: auto;
    right: auto;
    top: calc(var(--basevw) * 176);
    font-size: 0;
}

.swiper-utilty .swiper-button-prev:after {
    content: '';
    display: block;
    width: calc(var(--basevw) * 80);
    height: calc(var(--basevw) * 80);
    background: url('../img/arrow_rl.svg') center no-repeat;
    background-size: calc(var(--basevw) * 39) auto;
    margin: auto;
}

.swiper-utilty .swiper-button-next:after {
    content: '';
    display: block;
    width: calc(var(--basevw) * 80);
    height: calc(var(--basevw) * 80);
    background: url('../img/arrow_lr.svg') center no-repeat;
    background-size: calc(var(--basevw) * 39) auto;
    margin: auto;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: calc(var(--basevw) * 80);

    font-family: var(--font-en);
    font-weight: var(--font-w-bl);
}

.swiper-pagination.swiper-pagination-fraction.swiper-pagination-horizontal,
.swiper-pagination.swiper-pagination-fraction {
    color: transparent;
    padding: 1rem 0;
}

.swiper-pagination.swiper-pagination-fraction.swiper-pagination-horizontal:before,
.swiper-pagination.swiper-pagination-fraction:before {
    content: '';
    width: 1px;
    height: 100%;
    transform: translateX(-50%) rotate(45deg);
    background: #fff;
    position: var(--pos-a);
    left: 50%;
}

.swiper-pagination-current {
    font-size: calc(3.125 * var(--b-f-size));
    color: #fff !important;
    top: -1rem;
    position: var(--pos-r);
    line-height: 1;
}

.swiper-pagination-total {
    font-size: calc(1.5 * var(--b-f-size));
    color: #fff !important;
    bottom: -1rem;
    position: var(--pos-r);
    line-height: 1;
}

.swiper-button-lock,
.swiper-pagination-lock {
    display: block;
}

#session .sesstion-list-wrap {
    display: flex;
    flex-direction: column;
    gap: calc(var(--basevw)*60);
}

#session .txt-box {
    margin-top: 0;
    margin-left: 1.5rem;
    font-size: calc(1.31 * var(--b-f-size));
    line-height: var(--lh-s);
    align-self: center;
}

#session .topic-box {
    justify-content: space-between;
    flex-wrap: wrap;
}

#session .image {
    width: 50%;
    padding: 20px;
}

#session .access {
    margin-top: 1.5rem;
    text-align: center;
}

#session .txt-box h4 {
    font-size: calc(1.81 * var(--b-f-size));
    font-weight: bold;
}

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

    .swiper-utilty .swiper-button-prev,
    .swiper-utilty .swiper-button-next {
        top: 35%;
    }

    #session:after {
        height: 32%;
    }
}

@media screen and (max-width: 768px) {
    #session:after {
        height: 35%;
    }

    .sesstion-list-wrap .sessionSwiper .swiper-slide,
    .sesstion-list-box {
        min-height: 280px;
    }
}

@media screen and (max-width: 576px) {
    #session {
        padding-top: calc(var(--basevw) * 150);
    }

    .mainsesstion_index .cont-box {
        width: 48.1%;
        padding-left: 0;
        padding-top: calc(var(--basevw) * 50);
    }

    .cont-tit h4 {
        font-size: calc(1.6 * var(--b-f-size));
        margin-top: calc(var(--basevw) * 20);
    }

    .sesstion-list-wrap .sessionSwiper {
        width: 100%;
    }

    .swiper-utilty {
        position: var(--pos-r);
        right: 0;
        top: 0;
        display: flex;
        width: 100%;
        height: 100%;
    }

    #session:after {
        height: 30%;
        width: 100%;
    }

    .swiper-utilty .swiper-button-prev,
    .swiper-utilty .swiper-button-next {
        position: var(--pos-r);
        margin-top: calc(var(--basevw) * 24);
        border: 1px solid #fff;
        border-radius: 50%;
        width: calc(var(--basevw) * 80);
        height: calc(var(--basevw) * 80);
        left: auto;
        right: auto;
        top: 0;
        font-size: 0;
    }

    .swiper-utilty .swiper-button-wrap {
        padding-left: 0;
        display: flex;
        flex-flow: row-reverse;
        width: 100%;
        justify-content: center;
    }

    .swiper-utilty .swiper-button-wrap > * {
        margin: 0 1rem;
    }

    .swiper-utilty {
        position: var(--pos-r);
        right: auto;
        top: auto;
        display: flex;
        justify-content: flex-start;
        width: 100%;
        height: 100%;
        flex-flow: column;
        margin-top: 2rem;
    }

    .swiper-horizontal > .swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        position: relative;
        bottom: auto;
    }

    .sesstion-list-wrap {
        padding-bottom: calc(var(--basevw) * 50);
    }

    #session .topic-box {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    #session .cont {
        padding: 0 calc(var(--basevw) * 20);
    }

    #session .txt-box {
        font-size: calc(1.21 * var(--b-f-size));
        margin-left: 0;
    }
}

/*--------------------
schedule
---------------------*/

#schedule {
    padding-top: calc(var(--basevw) * 320);
}

/* #schedule:before {
    content: '';
    width: 84.375%;
    height: 30%;
    position: var(--pos-a);
    background: var(--key-color);
    right: 0;
    bottom: 0;
} */

#schedule .schedule-list-box {
    position: relative;
}

#schedule .schedule-content {
    width: 30%;
}

#schedule .date {
    position: relative
}

#schedule .tit-box {
    margin-bottom: calc(var(--basevw) * 80);
}

.schedule-list-wrap {
    margin-top: calc(var(--basevw) * 150);
    padding-bottom: calc(var(--basevw) * 200);
    overflow: hidden;
}

#schedule .schedule-list-box figure {
    z-index: -10;
}

#schedule .btn_box_2 {
    margin-top: 6rem;
}

.schedule-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8rem 4rem;
}

#schedule .cta_btn {
    color: #fea74c;
}

.schedule-list .swiper-slide {
    width: 22%;
    position: var(--pos-r);
    padding: calc(var(--basevw) * 50) calc(var(--basevw) * 30) 0 calc(var(--basevw) * 40);
}

.schedule-list > .swiper-slide:nth-of-type(even) {
    top: calc(var(--basevw) * 60);
}

.schedule-list-box .txt-box {
    /* display: flex; */
    justify-content: flex-start;
    padding-bottom: 0;
    position: absolute;
    right: calc(var(--basevw) * 30);
    top: 3.5em;
}

.schedule-list-box .info-box {
    background: rgba(255, 255, 255, 0.95);
    padding: calc(var(--basevw) * 30);
    position: absolute;
    right: 0;
    bottom: calc(var(--basevw) *-60);
    z-index: 5;
    width: 60%;
}

.schedule-list-box .txt-box h4 {
    text-align: right;
    font-size: calc(1.4 * var(--b-f-size));
    color: var(--key-color);
    font-weight: var(--font-w-b);
}

.schedule-list-box .date {
    position: var(--pos-a);
    left: calc(var(--basevw) * 10);
    top: 0;
    width: calc(var(--basevw) * 100);
    height: calc(var(--basevw) * 100);
    display: flex;
    justify-content: center;
    align-items: center;
}

.schedule-list-box .date:before {
    content: '';
    width: 1px;
    height: 70px;
    background: var(--key-color);
    transform: rotate(45deg) translateX(-50%);
    position: var(--pos-a);
    left: 45%;
    top: -0.5em;
}

.schedule-list-box .date * {
    font-family: var(--font-en);
    color: var(--key-color);
    font-weight: var(--font-w-bl);
    line-height: 1;
}

.schedule-list-box .date span.mon,
.schedule-list-box .date span.day {
    position: var(--pos-a);
    display: block;
}

.schedule-list-box .date span.mon {
    left: 0;
    top: 0;
    padding-bottom: 0.5em;
    font-size: calc(3 * var(--b-f-size));
}

.schedule-list-box .date span.day {
    right: 0;
    bottom: 0;
    padding-top: 0.5em;
    font-size: calc(4.375 * var(--b-f-size));
    letter-spacing: -0.1em;
}

.schedule-list-box .date span.day.keta1 {
    right: 0.25em;
}

.schedule-list-box .date .wek {
    position: var(--pos-a);
    right: -1.5em;
    top: 0.5em;
    font-size: calc(1.25 * var(--b-f-size));
}

.scheduleSwiper .swiper-utilty {
    position: var(--pos-r);
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: calc(var(--basevw) * 180);
}

.scheduleSwiper .swiper-utilty .swiper-button-prev,
.scheduleSwiper .swiper-utilty .swiper-button-next {
    top: 0;
    margin: 0 calc(var(--basevw) * 20);
}

@media screen and (max-width: 768px) {
    .schedule-list-box .date:before {
        height: 40px;
    }
}

@media (max-width: 576px) {
    #schedule {
        padding-top: calc(var(--basevw) * 150);
    }

    /* #schedule:before {
        content: '';
        width: 100%;
        height: 30%;
        position: var(--pos-a);
        background: var(--key-color);
        right: 0;
        bottom: 0;
    } */

    #schedule .schedule-list-box figure {
        margin-top: 1rem;
    }

    #schedule .schedule-content {
        width: 100%;
    }

    #schedule .btn_box_2 {
        margin-top: 4rem;
    }

    .schedule-list-box .txt-box {
        top: 3rem;
    }

    .schedule-list {
        flex-direction: column;
    }

    .schedule-list .swiper-slide {
        padding: calc(var(--basevw) * 80) calc(var(--basevw) * 10) 0 calc(var(--basevw) * 40);
    }

    .scheduleSwiper .swiper-utilty {
        flex-flow: row;
    }

    .schedule-list-box .date {
        position: var(--pos-a);
        left: calc(var(--basevw) * 10);
        top: 0;
        width: calc(var(--basevw) * 80);
        height: calc(var(--basevw) * 80);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .schedule-list-box .date:before {
        content: '';
        width: 1px;
        height: 70px;
        background: var(--key-color);
        transform: rotate(45deg) translateX(-50%);
        position: var(--pos-a);
        left: 50%;
        top: 0;
    }

    .schedule-list-box .date span.day.keta1,
    .schedule-list-box .date span.day {
        right: -0.5em;
        line-height: 1;
        bottom: -0.5em;
    }

    .schedule-list-box .date span.day.keta1 {
        right: 0;
    }

    .schedule-list-box .date .wek {
        right: -2em;
    }

    .schedule-list-box .info-box {
        padding: calc(var(--basevw) * 24);
        bottom: calc(var(--basevw) *-40);
        width: 80%;
    }
}

/*--------------------
city
---------------------*/

#city {
    padding-top: calc(var(--basevw) * 200);
}

#city:before {
    content: '';
    width: 84.375%;
    height: 30%;
    position: var(--pos-a);
    background: var(--key-color);
    right: 0;
    top: 0;
}

#city:after {
    content: '';
    width: 84.375%;
    height: 45%;
    background: #fff;
    position: var(--pos-a);
    left: 0;
    top: 0;
    z-index: 1;
}

#city .cont-box {
    position: var(--pos-r);
    width: 49.5%;
    margin-left: calc(var(--basevw) * -70);
    z-index: 2;
}

#city .cont-box h3 {
    margin-bottom: calc(var(--basevw) * 58);
}

#city .cont-box p.lead {
    margin-bottom: calc(var(--basevw) * 40);
}

#city .btn_box {
    position: var(--pos-r);
    z-index: 2;
    margin-top: calc(var(--basevw) * 120);
}

.city-img {
    position: var(--pos-r);
    z-index: 2;
    width: 94.2%;
    margin: calc(var(--basevw) * 70) auto calc(var(--basevw) * 120) 0;
}

@media (max-width: 576px) {
    #city {
        padding-top: calc(var(--basevw) * 120);
    }

    #city h3.outline {
        font-size: calc(3.9 * var(--b-f-size));
        letter-spacing: 0.01em;
    }

    #city .cont-box {
        margin-top: calc(var(--basevw) * 40);
        width: 100%;
        margin-left: 0;
    }

    #city .cont-box h3 {
        margin-bottom: calc(var(--basevw) * 40);
    }

    .city-img {
        margin: calc(var(--basevw) * 60) auto calc(var(--basevw) * 80) 0;
    }
}

/*--------------------
training
---------------------*/

#training {
    padding: calc(var(--basevw) * 240) 0;
}

#training .tit-box {
    padding-bottom: calc(var(--basevw) * 110);
}

#training .bg-white-wrap {
    position: var(--pos-r);
    padding-bottom: calc(var(--basevw) * 200);
}

#training .bg-white-wrap:before {
    content: '';
    width: 84.375%;
    height: 100%;
    background: #fff;
    position: var(--pos-a);
    left: 0;
    top: 0;
    z-index: 1;
}

#training .cont {
    flex-flow: row-reverse;
}

#training .cont .trainig-img {
    position: var(--pos-r);
    top: calc(var(--basevw) * -124);
    margin-right: -2.5%;
    margin-left: -2.5%;
    width: 50%;
}

#training .cont-box {
    width: 55%;
    padding-top: calc(var(--basevw) * 200);
}

#training .cont-box .w_btn-box {
    display: flex;
    margin-top: calc(var(--basevw) * 64);
}

#training .cont-box .w_btn-box .btn_white {
    margin-right: calc(var(--basevw) * 40);
}

#training .btn_box {
    margin-top: calc(var(--basevw) * 64);
}

.ex-box-wrap.columns {
    display: flex;
    margin: calc(var(--basevw) * 64) calc(var(--basevw) * -10) calc(var(--basevw) * 32);
}

.ex-box-wrap .column {
    padding: 0 calc(var(--basevw) * 10);
    width: 50%;
}

.ex-box-wrap .ex-box {
    display: flex;
    padding: calc(var(--basevw) * 24);
    background: var(--bg-light-color);
    height: 100%;
}

.ex-box-wrap .ex-box figure {
    width: 33%;
}

.ex-box-wrap .ex-box .txt {
    width: 67%;
    padding-left: calc(var(--basevw) * 24);
}

.ex-box-wrap .ex-box .txt h6 {
    font-size: calc(1.1 * var(--b-f-size));
    font-weight: var(--font-w-b);
}

.ex-box-wrap .ex-box .txt h6 + p {
    font-size: calc(0.9 * var(--b-f-size));
    margin-top: 1em;
}

@media (max-width: 768px) {
    .ex-box-wrap .ex-box {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .ex-box-wrap .ex-box figure {
        width: 50%;
    }

    .ex-box-wrap .ex-box .txt {
        padding-left: 0;
        padding-top: 1em;
        width: 100%;
    }
}

@media (max-width: 576px) {
    #training {
        padding: calc(var(--basevw) * 150) 0;
    }

    #training .cont-box {
        width: 100%;
        padding-top: 0;
    }

    #training .cont-box .w_btn-box {
        display: flex;
        justify-content: center;
    }

    #training .cont-box .w_btn-box .btn_white {
        margin: 0 calc(var(--basevw) * 10);
    }

    #training .cont-box .btn_box.ta_l a {
        margin: 0 auto;
    }

    #training .bg-white-wrap {
        position: var(--pos-r);
        padding-bottom: calc(var(--basevw) * 80);
    }

    #training .cont .trainig-img {
        top: 0;
    }

    .ex-box-wrap .ex-box {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .ex-box-wrap .ex-box .txt {
        padding-left: 1em;
    }

    .ex-box-wrap.columns {
        display: block;
        margin: calc(var(--basevw) * 32) 0;
    }

    .ex-box-wrap .column {
        margin: calc(var(--basevw) * 20) auto 0;
        padding: 0;
        width: 100%;
    }
}

/*--------------------
sponsor
---------------------*/

#sponsor {
    padding: calc(var(--basevw) * 200) 0;
    background: #fff;
}

#sponsor .tit-box {
    margin-bottom: calc(var(--basevw) * 80);
}

#sponsor .columns {
    display: flex;
    flex-flow: wrap;
    margin-top: calc(var(--basevw) * 110);
    margin-right: -10px;
    margin-left: -10px;
    gap: 3rem;
}

#sponsor .columns .column {
    width: calc((100% - 100px) / 9);
    /* margin-right: 10px;
    margin-left: 10px; */
}

#sponsor .btn_box {
    margin-top: calc(var(--basevw) * 80);
}

@media (max-width: 576px) {
    #sponsor {
        padding: calc(var(--basevw) * 120) 0;
    }

    #sponsor .columns {
        display: flex;
        flex-flow: wrap;
        margin-top: calc(var(--basevw) * 70);
        gap: 3rem 0;
    }

    #sponsor .columns .column {
        width: calc((100% - 60px) / 3);
        margin-right: 10px;
        margin-left: 10px;
    }
}

/*--------------------
apply
---------------------*/

#apply {
    padding: calc(var(--basevw) * 240) 0;
}

#apply .btn_box {
    margin-top: calc(var(--basevw) * 40);
}

#apply .btn_box .cta_btn {
    margin: 0 auto;
}

.apply-btn-wrap {
    margin: calc(var(--basevw) * 60) auto 0;
    width: 85%;
}

.apply-btn-wrap .columns {
    margin: 0 calc(var(--basevw) * -25) 0 calc(var(--basevw) * -25);
    width: 100%;
}

.apply-btn-wrap .column {
    padding: 0 calc(var(--basevw) * 25);
    flex: 1;
    width: 50%;
}

.apply-btn-wrap .column p {
    text-align: center;
}

@media (max-width: 768px) {
    .apply-btn-wrap {
        margin: calc(var(--basevw) * 60) auto 0;
        width: 100%;
    }

    .apply-btn-wrap .column p {
        text-align: left;
    }
}

@media (max-width: 576px) {
    #apply {
        padding: calc(var(--basevw) * 120) 0;
    }

    .apply-btn-wrap {
        margin: calc(var(--basevw) * 60) auto 0;
        width: 100%;
    }

    .apply-btn-wrap .columns {
        margin: 0;
        width: 100%;
    }

    .apply-btn-wrap .column {
        padding: 0 0 calc(var(--basevw) * 30);
        width: 100%;
    }

    .apply-btn-wrap .column p {
        text-align: center;
    }
}


/*.content h2 {
	margin-top: 300px;
}*/

/*規約*/
.content_terms {
    /*	text-align: center;*/
    width: 75%;
    margin: 0 auto;

}

.content_terms h2 {
    margin: 100px 0;
    text-align: center;
    line-height: 1.4em;
    font-size: calc(4.875 * var(--b-f-size));
    padding-top: 50px;
}

.content_terms h3 {
    font-size: calc(2.875 * var(--b-f-size));
}

.content_terms p {
    font-size: calc(1.6 * var(--b-f-size));
    /*	line-height: 40px;*/
}

.content_terms p span {
    font-size: calc(1.6 * var(--b-f-size));
}

@media (max-width: 768px) {
    .content_terms {
        /*text-align: center;*/
        width: 90%;
        margin: 0 auto;
    }

    .content_terms h2 {
        margin: 20px 0;
        /*padding: 20px;*/
        font-size: calc(1.91 * var(--b-f-size));
    }

    .content_terms h3 {
        font-size: calc(1.41 * var(--b-f-size));
    }

    .content_terms p {
        font-size: calc(0.9 * var(--b-f-size));
    }

    .content_terms p span {
        font-size: calc(0.7 * var(--b-f-size));
    }
}

/*--------------------
exhibition
---------------------*/
#exhibition {
    padding: calc(var(--basevw) * 80) 0;
}

#exhibition .tit-box,
#exhibition .lead-bottom {
    margin-bottom: calc(var(--basevw) * 80);
}

#exhibition .access-content {
    margin-bottom: calc(var(--basevw) * 60);
}

.exhibi-img {
    width: 30%;
    margin-right: 4%;
}

.flex-img {
    display: flex;
    justify-content: space-between;
    width: 39%;
}

.flex-img img {
    width: 48%;
}

/*--------------------
企業紹介
---------------------*/
#page {
    padding-top: calc(var(--basevw) * 150);
}

#page main {
    padding: calc(var(--basevw) * 100) 0 0;
}

#page .tit-box {
    margin-bottom: calc(var(--basevw) * 80);
}

#intro {
    padding-bottom: calc(var(--basevw) * 100);
}

#guide {
    background: #FFF;
    padding: calc(var(--basevw) * 100) 0;
}

#guide .container {
    width: 75%;
    padding-bottom: calc(var(--basevw) * 80);
}

#guide .corp-box-wrap.columns {
    display: flex;
    margin: calc(var(--basevw) * 64) calc(var(--basevw) * -20) calc(var(--basevw) * 32);
}

#guide .corp-box-wrap.columns .column {
    padding: 0 calc(var(--basevw) * 20);
    width: 50%;
}

#guide .corp-box-wrap .corp-box {
    padding: calc(var(--basevw) * 40);
    background: var(--bg-light-color);
    height: 100%;
}

#guide .corp-box-wrap .corp-box figure.logo {
    max-width: 240px;
    margin: 0 auto;
}

#guide .corp-box-wrap .corp-box h4 {
    font-size: calc(1.75 * var(--b-f-size));
    margin-bottom: calc(var(--basevw) * 20);
    margin-top: 20px;
}

#guide .corp-box-wrap .corp-box h4 small {
    display: block;
}

#guide .corp-box-wrap .corp-box h4 .small {
    font-size: 0.8em;
}

#guide .corp-box-wrap .corp-box dl dt {
    color: var(--key-color);
}

#guide .corp-box-wrap .corp-box .btn-box {
    margin: calc(var(--basevw)*40) auto 0;
    text-align: center;
}

.cta_btn.small_btn {
    display: inline-block;
    width: auto;
    height: calc(var(--basevw)*60);
    padding: 0 calc(var(--basevw)*60);
    border-radius: calc((var(--basevw)*500)/2);
    line-height: calc(var(--basevw)*60);
    font-size: calc(1.2*var(--b-f-size));

}

#page .corp-index-wrap .tit-box {
    display: flex;
    margin-bottom: calc(var(--basevw)*40);
}

.corp-index-wrap .tit-box figure {
    width: 30%;

}

.corp-index-wrap .tit-box figure.people {
    width: 36%;
}

.corp-index-wrap .tit-box figure.logo img {
    border: 1px solid var(--key-color);
    padding: 2rem;
}

.corp-index-wrap .tit-box h4 {
    font-size: calc(1.75 * var(--b-f-size));
    margin-bottom: calc(var(--basevw) * 20);
    font-weight: 900;
}

.corp-index-wrap .tit-box h4 small {
    display: block;
}

.corp-index-wrap .tit-box h4 .small {
    font-size: 0.8em;
}

.corp-index-wrap .tit-box .txt {
    padding-left: 6%;

}

.corp-index-wrap dl dt {
    color: var(--key-color);
    font-weight: 900;
}

.corp-index-wrap dl dd {
    font-size: calc(1.3 * var(--b-f-size));
    font-weight: 700;
}

.btn-box {
    margin: calc(var(--basevw)*20) auto 0;
}

.corp-index-wrap .tit-box .cta_btn.small_btn {
    width: 200px;
    margin: 0 1rem;
    margin-top: 1%;
}

.corp-index-wrap .cont-box h5 {
    color: var(--key-color);
    margin-top: calc(var(--basevw)*30);
    font-weight: 900;
}

.corp-index-wrap .cont-box h5:first-child {
    margin-top: 0;
}

.corp-index-wrap .cont-box table th {
    padding-right: 2em;
}

@media (max-width: 576px) {
    #guide .corp-box-wrap.columns {
        display: block;
    }

    #guide .corp-box-wrap.columns .column {
        width: 100%;
        margin-bottom: calc(var(--basevw) * 40);
        padding: 0;
    }

    #page .corp-index-wrap .tit-box {
        margin-bottom: calc(var(--basevw)*30);
    }

    .corp-index-wrap .tit-box .txt {
        width: 44%;

    }

    .corp-index-wrap .tit-box figure.logo {
        width: 32%;
    }

    .corp-index-wrap .tit-box figure.logo + .txt {
        width: 68%;
    }

    .corp-index-wrap .tit-box figure.people {
        width: 56%;
    }

    .corp-index-wrap .tit-box h4 {
        font-size: calc(1.4 * var(--b-f-size));
    }

    .corp-index-wrap .tit-box h4 .small,
    #guide .corp-box-wrap .corp-box h4 .small {
        display: block;
    }

    .corp-index-wrap dl dd {
        font-size: calc(1.2 * var(--b-f-size));
        font-weight: 700;
    }

    .corp-index-wrap .sp dl,
    .corp-index-wrap dl.sp {
        margin-bottom: calc(var(--basevw)*30);
    }

    .corp-index-wrap .btn-box.sp {
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .corp-index-wrap .btn-box.sp * {
        margin: 0 1rem;
        padding: 0 calc(var(--basevw) * 20);
        width: 150px;
    }

    .modaal-container {
        width: 84%;
    }

    .pc-br {
        display: none;
    }
}

.coming-soon {
    text-align: center;
    font-size: calc(2.375*var(--b-f-size));
    margin-top: 30px;
}

.form-main {
    background-color: transparent;
    margin-top: 100px;
}

.text1 {
    font-size: 40px;
    text-align: center;
    line-height: 1.5;
    font-weight: bold;
}

form {
    padding: 4em 0 0 0;
    max-width: 600px;
    margin: 0 auto;
}

form div {
    margin-bottom: 3em;
}

form div label {
    font-size: 1.6em;
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

form input,
form textarea {
    width: 100%;
    padding: 0.75em 1.25em;
    background: #fff;
    border: var(--border_color2) solid 1px;
    border-radius: 4px;
    font-size: 1.5em;
    border: 1px solid #CCC;
    background: #fff;
    box-shadow: 0px 0px 0px #fff inset;
    border-radius: 4px;
}

.CMS-FORM-GROUP {
    width: 100%;
}

.CMS-FORM-SELECT {
    padding: 0.5em 0.5em;
    border: 1px solid #CCC;
    background: #fff;
    box-shadow: 0px 0px 0px #fff inset;
    border-radius: 4px;
    box-sizing: border-box;
    width: 100%;
}

form input[type="submit"] {
    transition: all .3s;
}

form input[type="submit"] {
    border: 0px;
    width: 50%;
    background: var(--main-color);
    color: #fff;
    font-size: 1.625em;
    font-weight: 600;
    padding: 1.25em 0;
    margin: 0 25%;
    text-align: center;
}

@media (max-width: 576px) {
    .text1 {
        font-size: 20px;
    }

    form {
        max-width: 90%;
    }
}

.markerobo-form-label {
    font-size: 1.6em;
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.markerobo-form-row {
    display: block;
    margin-bottom: 20px;
}

.markerobo-form-helpmessage {
    display: block;
    margin-bottom: 3px;
    font-size: 1.4rem;
}

.markerobo-form-checkboxgrp-label {
    font-weight: normal;
}

input[type=checkbox],
input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}

.markerobo-form-checkboxgrp-checkbox {
    width: auto;
}

.thanx-page {
    margin: 100px 0 150px;
    background-color: #fff;
}

.text2 {
    text-align: center;
    margin-top: 30px;
    font-size: 16px;
}

.thanx_wrap {
    width: 90%;
    margin: 0 auto;
}

#schedule {
    padding-top: calc(var(--basevw) * 320);
}

.text2 a {
    color: #0099A0;
}

@media (max-width: 576px) {

    .text2 {
        font-size: 14px;
    }
}