@charset 'UTF-8';
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap');

:root{
    --color-base:#000;
    --color-bg:#FFF;

    --color-orange:#f4a502;
    --color-green:#006837;
    --color-blue:#29abe2;

    --color-calblue:#008baa;

    --padding:20px;

    --transition:all .3s ease;
}

@media only screen and (min-width:1025px) and (max-width:1520px){
    :root{
        --padding:70px;
    }
}

a,a:hover{
    color:var(--color-base);
    text-decoration:none;
    transition:var(--transition);
}
p,h1,h2,h3,h4,h5,h6{
    margin:0;
    line-height:1.5;
}
ul.ls-none,ol.ls-none,dl,dt,dd{
    margin:0;
    padding:0;
}

.font-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.font-en {
  font-family: "Outfit", sans-serif;
}

.bg-black{
    color:#FFF;
    background-color:#000;
}


/* SYSTEM */

body{
    font-family: "Noto Sans JP", sans-serif;
    color:var(--color-base);
    background:#FFF;
}
body.page{
    margin:0;
}

.page-inner{
    width:100%;
    max-width:1520px;
    padding:0 var(--padding);
    margin:0 auto;
}

.ps-re{
    position:relative;
}

.ls-none{
    list-style:none;
}

.padding-tb{
    padding:80px 0;
}

.main-link a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:180px;
    padding-bottom:6px;
    color:#FFF;
    border-bottom:1px solid #FFF;
}
.main-link.center a{
    margin:0 auto;
}
.main-link.white a{
    color:#FFF;
    border-color:#FFF;
}

.main-title:not(:last-child){
    margin-bottom:60px;
}
.main-title__en{
    font-size:86px;
    font-weight:900;
    display:block;
    line-height:1;
    color:var(--color-orange);
}
.main-title__jp{
    display:block;
    margin-top:10px;
    font-size:31px;
    font-weight:900;
}
.main-title.center{
    text-align:center;
}
.main-title.right{
    text-align:right;
}
.main-title.white .main-title__jp{
    color:#FFF;
}


/* HEADER */
.main-header{
    position:fixed;
    z-index:9999;
    top:0;
    left:0;
    right:0;
    width:100%;
    pointer-events:none;
}
.main-header__wrapper{
    display:flex;
    justify-content:space-between;
    padding:28px 28px 0;
}

.main-header__logo{
    width:214px;
    pointer-events:all;
}


.menu-toggler{
    position:relative;
    display:block;
    width:70px;
    height:50px;
    pointer-events:all;
    cursor:pointer;
}
.menu-toggler span{
    display:block;
    position:absolute;
    left:0;
    width:100%;
    height:4px;
    background:var(--color-orange);
    border-radius:100vh;
    transition:var(--transition);
}
.menu-toggler span:nth-of-type(1){
    top:calc(30% - 2px);
}
.menu-toggler span:nth-of-type(2){
    top:calc(50% - 2px);
    opacity:1;
}
.menu-toggler span:nth-of-type(3){
    top:calc(70% - 2px);
}

.menu-toggler.open span:nth-of-type(1){
    top:calc(50% - 2px);
    transform:rotate(45deg);
}
.menu-toggler.open span:nth-of-type(3){
    top:calc(50% - 2px);
    transform:rotate(-45deg);
}
.menu-toggler.open span:nth-of-type(2){
    opacity:0;
}

/* ASIDE */
.main-aside{
    position:fixed;
    right:130px;
    top:28px;
    z-index:9998;
}

.main-aside__links{
    display:flex;
    gap:30px;
}
.main-aside__link a{
    display:flex;
    align-items:center;
    gap:20px;

    color:#FFF;
    background:var(--color-green);
    border:2px solid var(--color-base);
    padding:10px 24px;
    border-top-right-radius:28px;

    transition:var(--transition);
}
.main-aside__link.link02 a{
    background:var(--color-orange);
}
.main-aside__link__text{
    font-size:18px;
    font-weight:bold;
}
.main-aside__link__icon{
    width:18px;
    height:18px;
}

/* DRAWER */

.main-drawer{
    position:fixed;
    z-index:9997;
    top:0;
    right:0;
    bottom:0;
    background:#000;
    width:100%;
    height:100%;
    transform:translateY(-101%);
    opacity:0;
    transition:var(--transition);
}
.main-drawer.open{
    transform:translateY(0);
    opacity:1;
}
.main-drawer__inner{
    padding:150px 20px 50px;
    height:100%;
    overflow-y:scroll;
    display:flex;
    flex-direction:column;
    gap:40px;
    align-items:center;
    justify-content:center;

    -ms-overflow-style: none;
    scrollbar-width: none;
}
.main-drawer__inner::-webkit-scrollbar {
    display:none;
}

.main-drawer__menus{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px 60px;
}
.main-drawer__menu a,
.main-drawer__menu__sub a{
    color:#FFF;
}
.main-drawer__menu__title{
    font-size:28px;
    font-weight:bold;
}
.main-drawer__menu__sub .main-drawer__menu__title{
    padding-top:6px;
    font-size:22px;
}
.main-drawer__menu__en{
    font-size:18px;
    font-weight:700;
    color:var(--color-orange);
}
.main-drawer__snses{
    display:flex;
    gap:40px;
    justify-content:center;
    align-items:center;
}


/* FOOTER */

.main-footer{
    position:relative;
    background:#000;
    color:#FFF;
    padding-top:200px;
}
.main-footer::before{
    content:'';
    position:absolute;
    width:100%;
    max-width:1520px;
    left:50%;
    transform:translateX(-50%);
    top:150px;
    border-top:1px solid #FFF;
}

.main-footer__flex{
    display:flex;
    flex-wrap:wrap;
    flex-direction:row-reverse;
    justify-content:space-between;
    margin-bottom:40px;
}

.main-footer__titlesec{
    display:flex;
    gap:50px;
}
.main-footer__titlesec__icon{
    width:190px;
}
.main-footer__logo{
    width:400px;
    padding-top:50px;
    margin-bottom:50px;
}
.main-footer__tel__link{
    font-size:35px;
    font-weight:bold;
    display:block;
}
.main-footer__tel__address{
    font-size:14px;
}

.main-footer__logotext{
    margin-top:40px;
    font-size:12px;
}

.main-footer__menus{
    width:100%;
    max-width:345px;
}
.main-footer__menu:not(:last-child){
    margin-bottom:20px;
}
.main-footer__menu__link{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:82px;
    border:3px solid #251e1c;
    border-top-right-radius:30px;
    padding:0 30px;
    color:#FFF;
    background:var(--color-green);
}
.main-footer__menu__link.link02{
    background:var(--color-orange);
}
.main-footer__menu__link__text{
    color:#FFF;
    font-size:26px;
    font-weight:bold;
}

.main-footer__copyright{
    padding:20px 40px;
    text-align:right;
    font-size:9px;
}




/* TOP */

.top-mv{
    padding-top:120px;
    background:linear-gradient(to bottom, #000, #000, transparent);
}
.top-mv__mainimg{
    text-align:center;
    padding:0 var(--padding);
}
.top-mv__mainimg img{
    width:100%;
    max-width:1670px;
}

.top-gallery{
    margin-top:-10vw;
}
.top-gallery__head__titles .main-title__en{
    font-size:174px;
}
.top-gallery__head__titles .main-title__jp{
    font-size:36px;
    margin-top:1em;
}

.top-about{
    padding:60px 0;
    background:linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent)
}
.top-about__title{
    margin-bottom:40px;
    font-size:174px;
    font-weight:900;
    color:var(--color-orange);
}

.top-about__box{
    display:flex;
}
.top-about__box__line{
    width:60px;
    background:repeat-y center/contain url('./img/top/img-about-belt.webp');
}
.top-about__box__container{
    position:relative;
    width:calc(100% - 60px);
    color:#FFF;
}
.top-about__box__container__bg{
    line-height:1;
}
.top-about__box__container__flex{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    display:flex;
    flex-direction:row-reverse;
    justify-content:space-between;
    padding:50px;
}
.top-about__text{
    font-size:17px;
    line-height:2;
}
.top-about__boxtitle{
    color:var(--color-orange);
    font-size:62px;
    font-weight:900;
    letter-spacing:-0.05em;
    line-height:1;
    transform-origin:bottom left;
    transform:rotate(-12deg);
}

.top-about__policysec{
    margin-top:70px;
    color:#FFF;

    display:flex;
    justify-content:space-between;
}
.top-about__policysec__title{
    width:180px;
}
.top-about__policysec__maintitle__jp{
    font-size:32px;
    font-weight:900;
    display:block;
}
.top-about__policysec__maintitle__en{
    font-size:10px;
    font-weight:900;
    display:block;
    color:var(--color-orange);
    margin-top:20px;
}
.top-about__policies{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    width:100%;
    max-width:1100px;
}
.top-about__policy{
    display:flex;
    gap:20px;
}
.top-about__policy__num{
    display:block;
    font-size:50px;
    font-weight:900;
    color:var(--color-orange);
    width:70px;
}
.top-about__policy__title{
    font-size:22px;
    font-weight:bold;
    color:var(--color-orange);
    margin-bottom:0.8em;
}
.top-about__policy__text{
    line-height:2;
    font-size:14px;
}




.top-gallery{
    padding:120px 0 80px;
}

.top-gallery__head{
    margin-bottom:80px;
}
.top-gallery__head__hv01{
    position:absolute;
    top:-160px;
    right:0;
}
.top-gallery__head__hv02{
    position:absolute;
    left:0;
    top:0;
}

.top-gallery__sls{
    overflow:hidden;
}
.top-gallery__slwrapper{
    margin-bottom:24px;
}
.top-gallery__slide{
    padding-right:24px;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}


.top-strength{
    padding:200px 0;
    overflow:hidden;
}
.top-strength .page-inner{
    padding: 0 50px;
}
@media only screen and (min-width:1025px){
.top-strength__rotate{
    transform-origin:left bottom;
    transform:rotate(-4deg);
}
}
.top-strength__head,
.top-strength__box{
    max-width:unset;
    width: 104%;
}
.top-strength__box{
    position:relative;
    background:repeat-x center/cover url('./img/top/bg-strength.webp');
    padding-bottom:70px;
}
.top-strength__title__en{
    font-size:100px;
    font-weight:900;
    color:var(--color-orange);
    line-height:0.75;
}
.top-strength__box__head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
}
.top-strength__title__jp{
    font-size:90px;
    font-weight:900;
    color:#FFF;
    line-height:0.8;
    letter-spacing:-0.02em;
    background:var(--color-orange);
}
.top-strength__head__text{
    font-size:17px;
    line-height:1.8;
    width:300px;
    margin-top:80px;
    background:var(--color-orange);
}
@media only screen and (min-width:1025px){
    .top-strength__head__text{
        transform-origin:left top;
        transform:rotate(4deg);
    }
}

.top-strength__box__points{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}
.top-strength__box__point__num{
    font-size:100px;
    font-weight:900;
    line-height:0.8;
}
.top-strength__box__point__container{
    padding:20px 30px;
    border-radius:14px;
    background:var(--color-orange);
}
.top-strength__box__point__title{
    font-size:40px;
    font-weight:900;
    margin-bottom:20px;
}



.top-team{
    margin-top:-12vw;
    padding-top:3vw;
    padding-bottom:200px;
    background:linear-gradient(to bottom, transparent, #000 10%, #000 80%, transparent);
}
.top-team__flex{
    display:flex;
    justify-content:space-between;
}
.top-team__flex__title{
    width:210px;
}
.top-team__title{
    color:var(--color-orange);
    font-size:230px;
    font-weight:900;
    line-height:0.9;
}
@media only screen and (min-width:1024px){
    .top-team__title{
        -ms-writing-mode: tb-rl;
        writing-mode:vertical-rl;
    }
}
.top-team__flex__container{
    width:1200px;
    max-width:calc(100% - 240px);
}

.top-team__article{
    border-top:1px solid #FFF;
    padding:50px 0;
    color:#FFF;

    display:flex;
    justify-content:space-between;
}
.top-team__article:last-child{
    border-bottom:1px solid #FFF;
}
.top-team__article__image{
    width:55%;
}
.top-team__article__head{
    position:relative;
    width:360px;
    margin-bottom:30px;
}
.top-team__article__title__en{
    font-size:110px;
    font-weight:900;
    color:var(--color-orange);
    line-height:0.9;
}
.top-team__article__title{
    position:absolute;
    right:0;
    top:50%;
    transform:translate(100%,-50%);
}
.top-team__article__text:not(:last-child){
    margin-bottom:20px;
}
.top-team__article__text{
    font-size:14px;
}


.top-coach{
    margin-top:-18vw;
    padding-bottom:60px;
}
.top-coach__title{
    margin-bottom:70px;
}
.top-coach__title__en{
    display:block;
    font-size:230px;
    font-weight:900;
    color:var(--color-orange);
    line-height:1;
}
.top-coach__title__jp{
    display:block;
    font-size:36px;
    font-weight:900;
    color:var(--color-base);
}

.top-coach__slider__wrapper{
    position:relative;
    overflow:hidden;
}

.top-coach__slide__container{
    display:flex;
    justify-content:space-between;
    gap:100px;
    width:100%;
    max-width:830px;
    margin:0 auto;
}
.top-coach__slide__left{
    width:250px;
}
.top-coach__slide__right{
    width:480px;
}

.top-coach__slide__img img{
    border-radius:100vh;
    aspect-ratio:246/350;
    object-fit:cover;
    width:100%;
    height:auto;
    margin-bottom:40px;
}
.top-coach__slide__teams{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px 40px;
}
.top-coach__slide__team{
    color:var(--color-orange);
    border:1px solid var(--color-orange);
    border-radius:50%;
    width:100px;
    height:100px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    font-weight:900;
}

.top-coach__names{
    color:var(--color-orange);
    margin-bottom:24px;
}
.top-coach__name__en{
    font-weight:900;
    font-size:76px;
    line-height:1.1;
}
.top-coach__name__jp{
    font-size:18px;
    font-weight:bold;
}
.top-coach__nickname{
    font-size:25px;
    font-weight:bold;
    width:200px;
    position:relative;
    text-align:center;
    margin-bottom:24px;
    color:var(--color-orange);
}
.top-coach__nickname::before{
    content:'{';
    position:absolute;
    top:0;
    left:0;
}
.top-coach__nickname::after{
    content:'}';
    position:absolute;
    top:0;
    right:0;
}
.top-coach__info dl{
    display:flex;
    flex-wrap:wrap;
    font-size:14px;
    line-height:1.8;
}
.top-coach__info dl dt{
    position:relative;
    font-weight:normal;
    text-align:justify;
    text-align-last: justify;
    width:3.5em;
    padding:0 1em;
    white-space:nowrap;
}
.top-coach__info dl dt::before{
    content:'【';
    position:absolute;
    top:0;
    left:0;
}
.top-coach__info dl dt::after{
    content:'】';
    position:absolute;
    top:0;
    right:0;
}

.top-coach__prev,
.top-coach__next{
    position:absolute;
    z-index:9;
    width:100px;
    top:calc(50% - 106px);
    cursor:pointer;
}
.top-coach__prev{
    left:0;
}
.top-coach__next{
    right:0;
}

.top-coach__pagination {
    display: flex;
    justify-content:center;
    margin:30px 0;
    gap: 8px;
}

.swiper-pagination-bullet.dot {
    width: 28px;
    height: 6px;
    background: #a7a7a8;
    border-radius:0;
}
.swiper-pagination-bullet.dot.swiper-pagination-bullet-active {
    background: var(--color-orange);
}




.top-topics{
    position:relative;
    padding-top:180px;
    background:linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
}
.top-topics__mvslider__wrapper{
    overflow:hidden;
    margin-bottom:80px;
}
.top-topics__mvslide{
    padding-right:20px;
}
.top-topics__flex{
    display:flex;
    flex-wrap:wrap;
}
.top-topics__flex__title{
    width:350px;
}
.top-topics__flex__content{
    width:calc(100% - 350px);
}
.top-topics__flex__content .main-link{
    margin-top:80px;
}
.top-topics__belt img{
    width:100%;
}
.top-topics-link{
    margin-top:60px;
}

.top-trial{
    position:relative;
    background:repeat-y center/cover url('./img/top/bg-trial.webp');
    padding:20vw 0 0;
}
.top-trial__headimg{
    position:absolute;
    top:0;
    left:0;
    width:85%;
}
.top-trial .page-inner{
    position:relative;
    z-index:2;
}
.top-trial__contents{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:60px;
    padding:0 60px !important;
    margin-top:40px !important;
}
.top-trial__content{
    position:relative;
}
.top-trial__content:nth-of-type(1)::before{
    content:'';
    width:60px;
    height:132px;
    background:no-repeat center/contain url('./img/top/icon-slash.svg');
    position:absolute;
    right:100%;
    top:0;
}
.top-trial__content::after{
    content:'';
    width:60px;
    height:132px;
    background:no-repeat center/contain url('./img/top/icon-slash.svg');
    position:absolute;
    left:100%;
    top:0;
}
.top-trial__content__text{
    color:#FFF;
    text-align:center;
    font-size:28px;
    font-weight:bold;
    padding:20px;
    line-height:1.6;
}

.top-trial__caltitle{
    margin-top:100px;
    margin-bottom:40px;
}
.top-trial__caltitle .main-title__en{
    color:#FFF;
    font-size:60px;
    font-weight:bold;
}

.top-trial__reservebtn{
    transform:translateY(50%);
}
.top-trial__reservebtn a{
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    max-width:635px;
    height:160px;
    color:#FFF;
    background:linear-gradient(to right,#ceb11e, #e3d37f, #ceb11e);
    border-top-right-radius:60px;
    padding:0 50px;
}
.top-trial__reservebtn__text{
    font-size:36px;
    font-weight:bold;
}
.top-trial__belt{
    position:absolute;
    left:0;
    bottom:-100px;
    width:26%;
}

.top-trial__reservelinks{
    transform:translateY(50%);
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:100px;

    width:100%;
    max-width:940px;
    margin:0 auto;
}
.top-trial__reservelink a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    height:130px;
    color:#FFF;
    background:linear-gradient(to right,#ceb11e, #e3d37f, #ceb11e);
    border-top-right-radius:60px;
    padding:0 30px;
}
.top-trial__reservelink.line a{
    background:#06C755;
}
.top-trial__reservelink .top-trial__reservebtn__text{
    font-size:22px;
    font-weight:bold;
}
@media only screen and (max-width:1440px){
    .top-trial__reservelinks{
        gap:50px;
    }
}
@media only screen and (max-width:767px){
    .top-trial__reservelinks{
        gap:30px;
        padding:50px 0;
        grid-template-columns:1fr;
        transform:none;
    }
    .top-trial__reservelink a{
        height:100px;
    }
    .top-trial__reservelink .top-trial__reservebtn__text{
        font-size:19px;
    }
}


.top-supporters{
    margin-top:-100px;
    padding-bottom:160px;
}
.top-supporters .page-inner{
    max-width:1200px;
}

.top-supporters__articles{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:120px;
    margin-bottom:120px;
}
.top-supporters__article{
    background:var(--color-orange);
    padding:60px 60px;
    border-radius:30px;
}
.top-supporters__article__title{
    font-size:40px;
    font-weight:900;
    margin-bottom:0.8em;
}
.top-supporters__article__text{
    font-size:14px;
    line-height:1.8;
}

.top-supporters__banners{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}


.top-csr{
    color:#FFF;
    background:linear-gradient(to bottom, transparent, #000 40%, #000);
    padding-top:140px;
}
.top-csr__flex{
    display:flex;
    flex-wrap:wrap;
    gap:40px 0;
    justify-content:space-between;
}
.top-csr__flex__title{
    width:280px;
}
.top-csr__flex__contents{
    width:calc(100% - 320px);
    max-width:1200px;
}
.top-csr__flex__content{
    border-top:1px solid #FFF;
    padding:60px 0;

    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
}
.top-csr__flex__content:last-child{
    border-bottom:1px solid #FFF;
}
.top-csr__flex__content__main{
    width:calc(100% - 500px);
}
.top-csr__flex__content__image{
    width:400px;
}
.top-csr__content__title{
    font-size:30px;
    font-weight:900;
    margin-bottom:1em;
}
.top-csr__content__text{
    font-size:14px;
    line-height:1.8;
}


.top-company{
    padding:150px 0 0;
}
.top-company__flex{
    display:flex;
    flex-wrap:wrap;
    flex-direction:row-reverse;
    justify-content:space-between;
}
.top-company__flex__content{
    width:630px;
}
.top-company__flex__image{
    width:calc(100% - 630px - 100px);
}
.top-company__flex__image img{
    max-width:unset;
    width:calc(100% + 20px);
    position:relative;
    left:-20px;
    border-top-right-radius:30px;
    border-bottom-right-radius:30px;
}
@media only screen and (min-width:1481px){
    .top-company__flex__image img{
        width:calc(100% + ((100vw - 1480px) / 2));
        left:calc((100vw - 1480px) / 2 * -1);
    }
}
.top-company__title{
    margin-bottom:40px;
}
.top-company__maintext{
    font-size:14px;
    line-height:1.8;
}

.top-company__info{
    margin-top:40px;
}
.top-company__info dl{
    display:flex;
    justify-content:space-between;
    font-size:14px;
    line-height:2;
}
.top-company__info dl dt{
    width:5em;
    text-align:justify;
    text-align-last:justify;
}
.top-company__info dl dd{
    width:calc(100% - 6.5em);
}



/* CALENDAR */
.calendar-wrapper{
    margin:0 auto;
    max-width:940px;
}
.calendar{
    padding:20px;
    background:#FFF;
}
.calendar__head{
    position:relative;
    padding:0;
}
.calendar__head__month{
    text-align:center;
    padding:0 80px;
    font-size:18px;
    font-weight:bold;
}
.calendar__head__anker{
    position:absolute;
    top:0;
}
.calendar__head__anker a{
    color:var(--color-calblue);
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
}
.calendar__head__anker a:hover{
    text-decoration:underline;
}
.calendar__head__anker.prev{
    left:0;
}
.calendar__head__anker.next{
    right:0;
}
.calendar__body{
    margin-top:12px;
}

.calendar__tr{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:1px;
    background:#CCC;
    padding:1px 1px 0;
}
.calendar__tr:last-child{
    padding-bottom:1px;
}
.calendar__th,
.calendar__td{
    position:relative;
}
.calendar__th{
    padding:8px;
    color:#FFF;
    text-align:center;
    font-size:16px;
    font-weight:bold;
    background:var(--color-calblue);
}
.calendar__td{
    padding:14px;
    min-height:80px;
    background:#FFF;
}
.calendar__td.close{
    color:#FFF;
    background:#BBB;
}

.calendar__classes{
    padding:0;
    margin:0;
    list-style:none;
    margin-top:0.3em;
}
.calendar__classes li:not(:last-child){
    margin-bottom:10px;
}
.calendar__classes li a{
    font-size:14px;
    font-weight:bold;
    color:var(--color-orange);
    text-decoration:underline;
    word-break:break-all;
}
.calendar__classes li a.class01{
    color:var(--color-orange);
}
.calendar__classes li a.class02{
    color:var(--color-green);
}
.calendar__classes li a.class03{
    color:var(--color-blue);
}






/* TOPICS */

.archive__head{
    margin-bottom:60px;
}

.topics-archive a:first-child{
    border-top:1px solid #FFF;
}
.topics-archive a{
    display:block;
    color:#FFF;
    padding:28px 28px;
    border-bottom:1px solid #FFF;
}
.topics-archive__wrapper{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:8px 0;
}
.topics-archive__date{
    font-size:14px;
    width:6em;
}
.topics-archive__cat{
    padding:0 10px;
    margin-right:20px;
}
.cattag{
    display:flex;
    justify-content:center;
    align-items:center;
    white-space:nowrap;
    width:90px;
    height:18px;
    color:#FFF;
    font-size:10px;
    font-weight:bold;
    background:var(--color-blue);
    letter-spacing:-0.1em;
}
.cattag.event{
    background:var(--color-orange);
}
.cattag.trial{
    background:var(--color-green);
}
.topics-archive__title{
    font-size:18px;
    font-weight:normal;
}

.archive_pagenavi{
    margin-top:50px;
}
.archive_pagenavi .wp-pagenavi{
    display:flex;
    gap:6px;
    align-items:center;
    justify-content:center;
}
.wp-pagenavi a, .wp-pagenavi span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:30px;
    height:30px;
    border:1px solid var(--color-orange) !important;
}
.wp-pagenavi span{
    color:#FFF;
    background:var(--color-orange);
}



/* PAGE/SINGLE */

main.page{
    padding:150px 0 0;
    margin:0;
}

main.page .page-inner{
    max-width:1000px;
}

.page-header{
    padding-bottom:60px;
}
.page-header__title{
    font-size:36px;
    font-weight:900;
}
.topics__metas{
    margin-top:16px;
    display:flex;
    justify-content:space-between;
    gap:20px;
}

.page-mainlink{
    margin-top:70px;
}

.editor-content>*:not(:last-child){
    margin-bottom:24px;
}
.editor-content h1{
    font-size:36px;
    font-weight:bold;
}
.editor-content h2{
    font-size:28px;
    font-weight:bold;
}
.editor-content h3{
    font-size:22px;
    font-weight:bold;
}
.editor-content h4{
    font-size:18px;
    font-weight:bold;
}
.editor-content h5{
    font-size:16px;
    font-weight:bold;
}
.editor-content h6{
    font-size:14px;
    font-weight:bold;
}
.editor-content p{
    font-size:16px;
    line-height:2;
}

.editor-content ul,
.editor-content ol{
    margin-left:0;
    padding-left:1.5em;
}
.editor-content a{
    color:#FFF;
    text-decoration:underline;
}



/* CONTACT */

.form_dls dl{
    display:flex;
    flex-wrap:wrap;
    gap:10px 40px;
}
.form_dls dl:not(:last-child){
    margin-bottom:20px;
}
.form_dls dl dt{
    width:240px;
    position:relative;
    font-size:16px;
    font-weight:bold;
}
.form_dls dl dt span.must{
    position:absolute;
    top:3px;
    right:0;
    font-size:14px;
    font-weight:bold;
    padding:2px 6px;
    color:#FFF;
    background:var(--color-orange);
}
.form_dls dl dd{
    width:calc(100% - 280px);
    font-size:18px;
}

.form_dls input.dble{
    pointer-events:none;
}

.form_dls input[type="text"],
.form_dls input[type="tel"],
.form_dls input[type="email"],
.form_dls select,
.form_dls textarea{
    padding:6px 18px;
}

.form-submitbtns{
    margin-top:60px;
    text-align:center;
}
.form-submitbtns input{
    font-size:24px;
    font-weight:900;
    color:#FFF;
    background:var(--color-orange);
    padding:20px 60px;
    border-radius:10px;
    border:0;
    margin:0;
}
.wpcf7-spinner{
    display:none!important;
}



/* ANIMATION */
.fadein {
    opacity : 0.1;
    transform : translate(0, 50px);
    transition : all 800ms;
}
.fadeinr {
    opacity : 0.1;
    transform : translate(50px, 0);
    transition : all 800ms;
}
.fadeinb {
    opacity : 0.1;
    transform : translate(0, 50px);
    transition : all 800ms;
}
.fadeint {
    opacity : 0.1;
    transform : translate(0, -50px);
    transition : all 800ms;
}
.fadeinl {
    opacity : 0.1;
    transform : translate(-50px, 0);
    transition : all 800ms;
}
.fadeino {
    opacity : 0.1;
    transition : all 800ms;
}

.fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeint.scrollin, .fadeinl.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}
.fadeino.scrollin {
   opacity : 1;
}

@supports (-ms-ime-align:auto) {
.fadein {
    opacity : 1;
    transform : inherit;
    transition : inherit;
}
.fadeinr {
    opacity : 1;
    transform : inherit;
    transition : inherit;
}
.fadeinb {
    opacity : 1;
    transform : inherit;
    transition : inherit;
}
.fadeint {
    opacity : 1;
    transform : inherit;
    transition : inherit;
}
.fadeinl {
    opacity : 1;
    transform : inherit;
    transition : inherit;
}
.fadeino {
    opacity : 1;
    transition : inherit;
}

.fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeint.scrollin, .fadeinl.scrollin {
    opacity : 1;
    transform : inherit;
}
.fadeino.scrollin {
   opacity : 1;
}
}/* @ supports end */

@media only screen and (max-width:1280px){
/* ANIMATION */
.fadein,
.fadeinr,
.fadeinl,
.fadeinb,
.fadeint{
    opacity : 0.1;
    transform : translate(0, 50px);
    transition : all 800ms;
}
}/* fade animation wrap over */



.clear_from_top.ef,
.inner-clear_from_top.ef>*{
	-webkit-clip-path: inset(0 0 100% 0);
	clip-path: inset(0 0 100% 0);
	transition:all .8s ease;
}
.clear_from_bottom.ef,
.inner-clear_from_bottom.ef>*{
	-webkit-clip-path: inset(100% 0 0 0);
	clip-path: inset(100% 0 0 0);
	transition:all .8s ease;
}
.clear_from_left.ef,
.inner-clear_from_left.ef>*{
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
	transition:all .8s ease;
}
.clear_from_right.ef,
.inner-clear_from_right.ef>*{
	-webkit-clip-path: inset(0 0 0 100%);
	clip-path: inset(0 0 0 100%);
	transition:all .8s ease;
}
.clear_from_lefttop.ef,
.inner-clear_from_lefttop.ef>*{
	-webkit-clip-path: inset(0 100% 100% 0);
	clip-path: inset(0 100% 100% 0);
	transition:all .8s ease;
}
.clear_from_righttop.ef,
.inner-clear_from_righttop.ef>*{
	-webkit-clip-path: inset(0 100% 0 100%);
	clip-path: inset(0 100% 0 100%);
	transition:all .8s ease;
}
.clear_from_leftbottom.ef,
.inner-clear_from_leftbottom.ef>*{
	-webkit-clip-path: inset(100% 100% 0 0);
	clip-path: inset(100% 100% 0 0);
	transition:all .8s ease;
}
.clear_from_rightbottom.ef,
.inner-clear_from_rightbottom.ef>*{
	-webkit-clip-path: inset(100% 0 0 100%);
	clip-path: inset(100% 0 0 100%);
	transition:all .8s ease;
}
.clear_from_top.ef.scrollin,
.clear_from_bottom.ef.scrollin,
.clear_from_left.ef.scrollin,
.clear_from_right.ef.scrollin,
.inner-clear_from_top.ef.scrollin>*,
.inner-clear_from_bottom.ef.scrollin>*,
.inner-clear_from_left.ef.scrollin>*,
.inner-clear_from_right.ef.scrollin>*,
.clear_from_lefttop.ef.scrollin,
.clear_from_righttop.ef.scrollin,
.clear_from_leftbottom.ef.scrollin,
.clear_from_rightbottom.ef.scrollin,
.inner-clear_from_lefttop.ef.scrollin>*,
.inner-clear_from_righttop.ef.scrollin>*,
.inner-clear_from_leftbottom.ef.scrollin>*,
.inner-clear_from_rightbottom.ef.scrollin>*{
	-webkit-clip-path: inset(0);
	clip-path:inset(0);
}




/* RSP 1520px */
@media only screen and (max-width:1520px){
    /* TOP */
    .top-gallery__head__titles .main-title__en{
        font-size:132px;
    }
    .top-about__title{
        font-size:132px;
    }
    .top-about__boxtitle{
        font-size:46px;
    }
    .top-strength__title__jp{
        font-size:72px;
    }
    .top-strength__head__text{
        margin-top:40px;
        margin-bottom:40px;
    }
    .top-strength__box__point__num{
        font-size:82px;
    }
    .top-team__title{
        font-size:180px;
    }
    .top-coach__title__en{
        font-size:180px;
    }
    .top-trial__content__text{
        font-size:22px;
    }
}


/* RSP 1280px */
@media only screen and (max-width:1280px) and (min-width:1025px){
    body{
        min-width:1280px;
    }
}


/* RSP 1024px */
@media only screen and (max-width:1024px){

    /* HEADER */
    .main-header__wrapper{
        padding:10px 10px 0;
    }
    .sitelogo{
        width:90px;
    }
    .main-aside{
        top:10px;
        right:100px;
    }
    .main-aside__links{
        gap:10px;
    }
    .main-aside__link a{
        padding:8px 18px;
    }

    /* DRAWER */
    .main-drawer__inner{
        padding:100px 20px 50px;
    }
    .main-drawer__menus{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }
    .main-drawer__menu__title{
        font-size:22px;
    }
    .main-drawer__menu__sub .main-drawer__menu__title{
        font-size:18px;
    }
    .main-drawer__snses{
        gap:20px;
    }
    .main-drawer__sns a img{
        width:50px;
    }

    /* FOOTER */
    .main-footer__flex{
        gap:40px;
        justify-content:center;
    }
    .main-footer__titlesec{
        width:100%;
        gap:30px;
    }
    .main-footer__tel__link{
        font-size:30px;
    }
    .main-footer__menu:not(:last-child){
        margin-bottom:14px;
    }
    .main-footer__menu__link{
        height:70px;
    }
    .main-footer__menu__link__text{
        font-size:20px;
    }


    /**/
    .main-title__en,
    .top-trial__caltitle .main-title__en{
        font-size:42px;
    }
    .main-title__jp,
    .top-trial__caltitle .main-title__jp{
        font-size:20px;
    }



    /* TOP */
    .top-gallery__head__titles .main-title__en{
        font-size:100px;
    }
    .top-gallery__head__titles .main-title__jp{
        font-size:28px;
    }

    .top-gallery__slide{
        padding-right:10px;
    }
    .top-gallery__slwrapper{
        margin-bottom:10px;
    }

    .top-about{
        padding-bottom:150px;
    }
    .top-about__title{
        font-size:100px;
    }
    .top-about__box__container__flex{
        flex-wrap:wrap;
        gap:30px;
        position:relative;
        padding:30px;
    }
    .top-about__box__container__main{
        width:100%;
    }
    .top-about__box__container__hv{
        width:100%;
    }
    .top-about__boxtitle{
        font-size:50px;
        transform:none;
    }

    .top-about__policysec{
        flex-wrap:wrap;
        gap:40px;
    }
    .top-about__policies{
        grid-template-columns:1fr;
    }

    .top-strength{
        padding-top:40px;
    }

    .top-strength .page-inner{
        padding:0 20px;
    }
    .top-strength__title__jp{
        font-size:60px;
    }
    .top-strength__head, .top-strength__box{
        width:100%;
    }
    .top-strength__box__head{
        flex-wrap:wrap;
        gap:30px;
    }
    .top-strength__head__text{
        margin:0;
        width:100%;
    }
    .top-strength__box__points{
        margin-top:40px;
        grid-template-columns:1fr;
    }
    .top-strength__box__point__num{
        font-size:40px;
    }
    .top-strength__box__point__title{
        font-size:30px;
    }
    .top-strength__box__point__container{
        padding:0;
    }

    .top-team__flex{
        flex-wrap:wrap;
        gap:40px;
    }
    .top-team__flex__title{
        width:100%;
    }
    .top-team__title{
        font-size:100px;
    }
    .top-team__flex__container{
        width:100%;
        max-width:100%;
    }

    .top-team__article{
        flex-wrap:wrap;
        gap:40px;
    }
    .top-team__article__head{
        width:100%;
    }
    .top-team__article__content{
        width:100%;
        max-width:520px;
        margin:0 auto;
    }
    .top-team__article__image{
        width:100%;
        text-align:center;
    }
    .top-team__article__image img{
        width:100%;
        max-width:520px;
    }
    .top-team__article__title{
        position:relative;
        transform:none;
    }

    .top-team__hv01{
        display:none;
    }

    .top-coach__title__en{
        font-size:100px;
    }
    .top-coach__title__jp{
        font-size:28px;
    }

    .top-coach__slider__wrapper{
        padding:0 50px;
    }
    .top-coach__slider__wrapper::before,
    .top-coach__slider__wrapper::after{
        content:'';
        position:absolute;
        top:0;
        height:100%;
        width:50px;
        background:#FFF;
        z-index:4;
    }
    .top-coach__slider__wrapper::before{
        left:0;
    }
    .top-coach__slider__wrapper::after{
        right:0;
    }
    .top-coach__prev, .top-coach__next{
        width:40px;
    }
    .top-coach__slide__container{
        gap:40px;
    }
    .top-coach__name__en{
        font-size:50px;
    }
    .top-coach__slide__img img{
        margin-bottom:20px;
    }
    .top-coach__slide__teams{
        gap:10px;
    }

    .top-trial__contents{
        grid-template-columns:1fr;
        gap:30px;
    }
    .top-trial__content::before,
    .top-trial__content:nth-of-type(1)::before{
        content: '';
        width: 30px;
        height: 66px;
        background: no-repeat center / contain url(./img/top/icon-slash.svg);
        position: absolute;
        right: 100%;
        top: 0;
        margin:20px 0;
    }
    .top-trial__content::after{
        width: 30px;
        height: 66px;
        margin:20px 0;
    }

    .top-trial__reservebtn a{
        height:100px;
        max-width:480px;
    }
    .top-trial__reservebtn__text{
        font-size:24px;
    }
    .top-trial__reservebtn__icon{
        width:32px;
    }

    .top-topics__flex{
        gap:30px;
    }
    .top-topics__flex__title{
        width:100%;
    }
    .top-topics__flex__content{
        width:100%;
    }

    .top-supporters{
        padding-bottom:100px;
    }
    .top-supporters__articles{
        gap:20px;
        margin-bottom:40px;
    }
    .top-supporters__article{
        padding:24px;
    }
    .top-supporters__article__title{
        font-size:28px;
    }

    .top-csr{
        padding-top:50px;
        background: linear-gradient(to bottom, transparent, #000 10%, #000);
    }
    .top-csr__flex__title{
        width:100%;
    }
    .top-csr__flex__contents{
        width:100%;
    }
    .top-csr__flex__content{
        gap:30px;
    }
    .top-csr__flex__content__main{
        width:100%;
    }
    .top-csr__flex__content__image{
        width:100%;
        text-align:center;
    }
    .top-csr__flex__content__image img{
        width:400px;
    }

    .top-company{
        padding-top:80px;
    }
    .top-company__flex{
        gap:30px;
    }
    .top-company__flex__content{
        width:100%;
    }
    .top-company__flex__image{
        width:100%;
    }

}



/* RSP 767px */
@media only screen and (max-width:767px){

    /* HEADER */
    .sitelogo{
        width:70px;
    }
    .menu-toggler{
        width:50px;
        height:45px;
    }

    /* DRAWER */
    .main-drawer__inner{
        display:block;
        padding-top:80px;
        padding-bottom:80px;
    }
    .main-drawer__menus{
        margin-top:20px !important;
        gap:20px 10px;
    }
    .main-drawer__menu__title{
        font-size:16px;
    }
    .main-drawer__menu__en{
        font-size:12px;
    }
    .main-drawer__menu__sub .main-drawer__menu__title{
        font-size:14px;
    }
    .main-drawer__snses{
        margin-top:40px !important;
    }

    /* ASIDE */
    .main-aside{
        width:100%;
        bottom:0;
        top:unset;
        left:0;
        transform:none;
    }
    .main-aside__links{
        flex-direction:row;
        gap:0;
    }
    .main-aside__link{
        width:50%;
    }
    .main-aside__link a{
        flex-direction:row;
        justify-content:space-between;
        gap:10px;
        border-radius:0;
        border:2px solid var(--color-base);
        border-bottom:0;
        padding:14px 30px;
    }
    .main-aside__link.link01 a{
        border-left:0;
        border-right:0;
    }
    .main-aside__link.link02 a{
        border-right:0;
    }
    .main-aside__link a{
        padding:12px 10px;
    }
    .main-aside__link__text{
        font-size:16px;
    }


    /* FOOTER */
    .main-footer{
        padding-top:100px;
    }
    .main-footer::before{
        top:60px;
    }
    .main-footer__titlesec{
        flex-wrap:wrap;
        gap:0px;
        justify-content:center;
    }
    .main-footer__logo{
        padding:0;
        width:100%;
        margin-bottom:20px;
    }
    .main-footer__logo img{
        width:100%;
        max-width:300px;
    }
    .main-footer__tel__link{
        font-size:24px;
    }


    /* CALENDER */
    .calendar__body{
        overflow-x:scroll;
    }
    .calendar__tr{
        width:100%;
        min-width:440px;
    }
    .calendar__th{
        font-size:12px;
    }
    .calendar__td{
        font-size:12px;
        padding:6px;
        min-height:60px;
    }
    .calendar__classes li a{
        font-size:12px;
    }
    .calendar__head__anker a{
        font-size:14px;
    }


    /* TOP */
    .top-mv{
        padding-top:80px;
    }

    .top-gallery{
        padding-bottom:40px;
    }
    .top-gallery__head{
        margin-bottom:20px;
    }
    .top-gallery__head__titles .main-title__en{
        font-size:60px;
    }
    .top-gallery__head__titles .main-title__jp{
        font-size:18px;
    }

    .top-about__title{
        font-size:60px;
        line-height:1;
        margin-bottom:20px;
    }
    .top-about__box__line{
        width:30px;
    }
    .top-about__box__container{
        width:calc(100% - 30px);
    }
    .top-about__box__container__flex{
        padding:20px 0 20px 20px;
    }
    .top-about__boxtitle{
        font-size:32px;
    }
    .top-about__text{
        font-size:14px;
    }

    .top-about{
        padding-top:0;
        padding-bottom:50px;
    }
    .top-about__policysec{
        gap:20px;
    }
    .top-about__policysec__maintitle__en{
        margin-top:10px;
    }
    .top-about__policy__num{
        font-size:28px;
    }
    .top-about__policy__title{
        font-size:20px;
    }

    .top-strength{
        padding-bottom:50px;
    }
    .top-strength__title__en{
        font-size:40px;
    }
    .top-strength__title__jp{
        font-size:40px;
    }
    .top-strength__box__point__text{
        font-size:14px;
    }
    .top-strength__box__point__num{
        font-size:28px;
    }
    .top-strength__box__point__title{
        font-size:24px;
    }

    .top-team{
        margin-top:0;
        padding-top:0px;
        padding-bottom:80px;
    }
    .top-team__title{
        font-size:60px;
    }
    .top-team__article{
        padding:30px 0;
    }
    .top-team__article__title__en{
        font-size:80px;
    }

    .top-coach{
        margin-top:0;
    }
    .top-coach__title{
        margin-bottom:30px;
    }
    .top-coach__title__en{
        font-size:60px;
    }
    .top-coach__title__jp{
        font-size:18px;
    }
    .top-coach__slider__wrapper{
        padding:0 20px;
    }
    .top-coach__slider__wrapper::before,
    .top-coach__slider__wrapper::after{
        width:20px;
    }
    .top-coach__prev, .top-coach__next{
        width:12px;
    }
    .top-coach__slide__container{
        flex-wrap:wrap;
        gap:20px;
    }
    .top-coach__slide__left{
        width:100%;
    }
    .top-coach__slide__img{
        text-align:center;
    }
    .top-coach__slide__img img{
        max-width:150px;
    }
    .top-coach__slide__team{
        width:60px;
        height:60px;
        font-size:20px;
    }
    .top-coach__name__en{
        font-size:24px;
    }

    .top-trial__contents{
        gap:10px;
        margin-top:20px !important;
        padding:0 30px !important;
    }
    .top-trial__content__text{
        padding:20px;
        font-size:18px;
    }

    .top-trial__reservebtn a{
        padding:0 20px;
        height:70px;
        border-top-right-radius:20px;
    }
    .top-trial__reservebtn__text{
        font-size:20px;
    }
    .top-trial__reservebtn__icon{
        width:24px;
    }

    .top-topics{
        padding-top:100px;
    }

    .topics-archive a{
        padding:20px 0;
    }
    .topics-archive__title{
        font-size:16px;
    }

    .top-supporters__articles{
        grid-template-columns:1fr;
        gap:10px;
    }
    .top-supporters__article__title{
        font-size:22px;
    }

    .top-supporters__banners{
        grid-template-columns:repeat(2,1fr);
    }

    .top-csr__flex__content{
        padding:30px 0;
    }
    .top-csr__content__title{
        font-size:22px;
    }


    /* COMMON */
    main.page{
        padding:100px 0;
    }
    .page-header__title{
        font-size:24px;
    }

    .topics-archive__title{
        font-size:16px;
    }

    .editor-content h1{
        font-size:32px;
    }
    .editor-content h2{
        font-size:22px;
    }
    .editor-content h3{
        font-size:20px;
    }
    .editor-content h4{
        font-size:18px;
    }
    .editor-content h5{
        font-size:16px;
    }
    .editor-content h6{
        font-size:14px;
    }


    /* FORM */
    .form_dls dl{
        flex-wrap:wrap;
        gap:12px;
    }
    .form_dls dl dt,
    .form_dls dl dd{
        width:100%;
        font-size:16px;
    }
    .form_dls dl dt{
        padding-left:46px;
    }
    .form_dls dl dt span.must{
        right:unset;
        top:1px;
        left:0;
        font-size:12px;
    }
    .form_dls input[type="text"], .form_dls input[type="tel"], .form_dls input[type="email"], .form_dls select, .form_dls textarea{
        width:100%;
    }
    .form-submitbtns input{
        font-size:20px;
    }


    /* SCROLL MARGIN TOP */
    #about,
    #strengths,
    #team,
    #coach,
    #trial,
    #csr,
    #company{
        scroll-margin-top: 50px;
    }


}


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

    /* HEADER */

    .sitelogo{
        width:50px;
    }
    .main-drawer__menus{
        margin-top:10px !important;
        gap: 20px 0;
    }
    .main-drawer__menu__title{
        font-size:14px;
    }

    /* TOP */

    .top-gallery__head__titles,
    .top-gallery__sls{
        opacity: 1 !important;
        transform: translate(0, 0) !important;
    }
    .top-about__boxtitle{
        font-size:24px;
    }
}