*{
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 0;
}
a{
    text-decoration: none;
}
ul{
    padding: 0;
}
body{
    position: relative;
}
section{
    position: relative;
    z-index: 1;
    background: #f7f7f7;
}
/* ロード画面 */
.load-display{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: #000;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
/* display: none; */

}
.load-display.fade-out{
    opacity: 0;
    visibility: hidden;
    transition: all 1.5s;
}
.burdock-text-item{
    text-align: center;
    font-family: "Afacad Flux", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-variation-settings:
    "slnt" 0;
    color: #eaeaea;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 2s;
}
.burdock-text-item.is-active{
    opacity: 1;
    transform: translateY(-100%);
    transition: all 2s;
}
.burdock-text-item:nth-of-type(2).is-active{
    transition-delay: 0.2s;
}
.burdock-text-item:nth-of-type(3).is-active{
    transition-delay: 0.4s;
}
.burdock-text-item:nth-of-type(4).is-active{
    transition-delay: 0.6s;
}
.burdock-text-item:nth-of-type(5).is-active{
    transition-delay: 0.8s;
}
.burdock-text-item:nth-of-type(6).is-active{
    transition-delay: 1s;
}
.burdock-text-item:nth-of-type(7).is-active{
    transition-delay: 1.2s;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    /* background:rgb(43, 85, 43); */
}
.top-header{
    visibility: hidden;
    opacity: 0;
    transition: all 1s;
}
.header.header-active{
    visibility: visible;
    opacity: 1;
    transition: all 1s;
}
.header-main{
    position: relative;
    display: flex;
    justify-content:space-between;
    /* align-items: center; */
}
.calendar-back-btn{
    position: absolute;
    bottom: -500px;
    left: 10px;
    width: 70px;
    height: 70px;
    font-size: 30px;
    font-weight: bold;
    color: #333;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    transform: translateX(-200%);
    transition: all 1s;
}
.calendar-back-btn:hover{
    cursor: pointer;
}
@keyframes poyo {
	from, to { transform: none; }
	10% { transform: scale(1.2); }
	40% { transform: scale(.9); }
	60% { transform: scale(1.04); }
	80% { transform: scale(.98); }
}
.calendar-btn:hover{
    cursor: pointer;
    animation: poyo .6s;
}
.calendar-back-btn.calendar-active{
    transform: translateX(0%);
    transition: all 1s;
    transition-delay: 1s;
}
.calendar-btn{
    position: relative;
    width: 50px;
    height: 50px;
    background: #eaeaea;
    padding: 5px;
    border-radius: 10%;
    margin: 15px 10px 0 40px;
}
.calendar-btn::after{
    transform: rotate(-70deg);
    position: absolute;
    bottom: 10px;
    right: -5px;
    content: "";
    width: 8px;
    height: 15  px;
    background: #f8f8f8;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.calendar-item{
    position: absolute;
    top: -10px;
    left: -20px;
    right: 0px;
    width: 110%;
    height: 100vh;
    /* margin: 0 auto; */
    /* background: #000; */
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 1s;
}
.calendar-item.calendar-active{
    opacity: 1;
    transform: translateX(0%);
    transition: all 1s;
}
.calendar-btn img{
    width: 100%;
}
.calendar-img{
    width: 75%;
    /* margin: 0 auto; */
}
.header-left{
    width: 150px;
    margin-top: 15px;
}
.header-left img{
    width: 100%;
}
.school-wrapper{
    margin: 10px 0 0 0;
    padding: 0 15px;
    height: 60px;
    border: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
}
.school-wrapper:hover{
    opacity: 0.7;
}
.school-btn{
    font-weight: bold;
    color: #eaeaea;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-align: center;
}
.school-btn i{
    margin: 0 10px;
}
.header-info{
    margin: 0 40px 0 0;
}
.tel-number{
    color: #eaeaea;
    display: block;
    margin: 0 0 10px 10px;
    border-bottom: 2px solid #eaeaea;
}
.tel-number span{
    font-size: 25px;
}
.tel-number:hover{
    opacity: 0.7;
}
.center-text-box{
    margin-top: -5px;
}
.header-center-text{
    color: #eaeaea;
    font-size: 10px;
    text-align: center;
    /* padding-left: 25px; */
    margin: 0;
}
.header-center-text span{
    font-size: 13px;
    letter-spacing: 0.05em;
    font-weight: bold;
}
.header-right{
    display: flex;
    position: relative;
}
.hamburger{
    /* background: rgba(255, 255, 255, 0.5); */
    background: #eaeaea;
    width: 80px;
    height: 80px;
    margin: 0;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 10px;
    position: relative;
    z-index: 1;
}
.hamburger:hover{
    opacity: 0.7;
    cursor: pointer;
}
.hamburger-line{
    border-bottom: 3px solid #333;
    position: absolute;
    left: 10px;
}
.hamburger-line:nth-child(1){
    top: 10px;
    width: 60px;
    transition: all 0.5s;
}
.hamburger-line:nth-child(2){
    top: 22px;
    width: 50px;
    transition: all 0.5s;
}
.hamburger-line:nth-child(3){
    top: 34px;
    width: 40px;
    transition: all 0.5s;
}
.hamburger-text{
    margin-bottom: -2px;
    text-align: center;
    font-family: "Afacad Flux", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-variation-settings:
    "slnt" 0;
    font-size: 20px;
    letter-spacing: 0.1em;
    color: #333;
}
.hamburger-menu{
    position: absolute;
    top: 90px;
    right: -10px;
    /* background: #111; */
    /* background-image: url(./assets/menu-bg1.png); */
    /* background-image: url(./assets/menu-bg2.png); */
    background-image: url(./assets/menu-bg3.png);
    background-size: cover;
    /* background-position: 20% 50%; */
    height: calc(100vh - 100px);
    width: 500px;
    /* padding-top: 30px; */
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s;
}
.hamburger-menu.ham-active{
    opacity: 1;
    transform: translateX(0%);
    transition: all 1s;
}
.hamburger.ham-active .hamburger-line:nth-child(1){
    top: 23px;
    left: 13px;
    width: 50px;
    transform: rotate(315deg);
    transition: all 0.5s;
}
.hamburger.ham-active .hamburger-line:nth-child(2){
    opacity: 0;
    transition: all 0.5s;
}
.hamburger.ham-active .hamburger-line:nth-child(3){
    top: 23px;
    left: 13px;
    width: 50px;
    transform: rotate(-315deg);
    transition: all 0.5s;
}
.hamburger-list{
    margin: 0;
}
.hamburger-item{
    /* width: 300px; */
    width: 90%;
    margin: 20px auto;
    padding: 10px 0 15px 0;
    border-bottom: 1px solid #eaeaea;
}
#list-cal:hover,#footer-list-cal:hover{
    cursor: pointer;
}
.hamburger-item span{
    font-size: 15px;
    margin: 0 5px;
}
.hamburger-item:hover{
    opacity: 0.7;
}
.hamburger-item a{
    display: block;
    color: #eaeaea;
    font-size: 15px;
    letter-spacing: 0.07em;
    padding-left: 10px;
}
.menu-info{
    /* width: 300px; */
    width: 90%;
    border: 1px solid #eaeaea;
    /* margin: 20px 0 20px 50px; */
    margin: 50px auto 30px auto;
    position: relative;
}
.menu-info::after{
    content: "→";
    font-size: 20px;
    color: #333;
    position: absolute;
    top: 12px;
    right: 20px;
}
.menu-info-btn{
    display: block;
    font-size: 15px;
    letter-spacing: 0.07em;
    padding: 15px 0px;
    background: #eaeaea;
    text-align: center;
    color: #333;
}
.menu-info:hover{
    opacity: 0.7;
}
.sns-list{
    margin: 0 auto;
    /* width: 240px; */
    width: 90%;
    display: flex;
    justify-content: center;
    gap: 0 50px;
    position: relative;
}
.sns-list::after{
    content: "SNS";
    font-size: 10px;
    font-weight: bold;
    width: 50px;
    padding: 2px;
    position: absolute;
    top: -10px;
    text-align: center;
    left: 0px;
    background: #eaeaea;
    color: #333;
}
.sns-item a:hover{
    opacity: 0.7;
}
.sns-item{
    display: flex;
    align-items: center;
    justify-content: center;
}
.sns-item img{
    width: 60px;
}
.sns-item i{
    color: #eaeaea;
    font-size: 45px;
}
.hamburger-logo{
    width: 70px;
    margin: 30px auto 0 auto;
}
.hamburger-logo img{
    width: 100%;
}
/* fv-section */
.fv-section{
    width: 100%;
    height: 100vh;
}
.fv-empty{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100vh;
}
.fv-wrapper{
    /* z-index: 0; */
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background: #333;
}
.fv-logo{
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 4;
    opacity: 0;
}
.fv-logo.fade-anm{
    opacity: 1;
    transition: all 2s;
    transition-timing-function: ease;
}
/* ビデオの場合 */
.fv-video{
    /* display: flex; */
    /* align-items: center; */
    /* width: 100%; */
    /* height: 100vh; */
    /* overflow: hidden; */
    /* margin: 0 auto; */
}
.fv-video video{
    /* width: 100%; */
    /* object-fit: cover; */
    /* object-position: 50% 50%; */
}
.fv-video1,.fv-video2,.fv-video3,.fv-video4{
    display: none;
}

/* 画像の場合 */
.fv-video{
    position: relative;
    width: 100%;
    height: 100vh;
    /* overflow: hidden; */
}
.fv-img1{
    width: 400px;
    position: absolute;
    top: 100px;
    left: 130px;
    z-index: -3;
    opacity: 0;
    transform: translate3d(-100px,100px,100px);
}
.fv-img1.fade-anm{
    opacity: 1;
    transform: translate3d(0px,0px,0px);
    transition: all 1.5s;
    transition-timing-function: ease-out;
    /* animation: fade-left 2s ease; */
    /* animation-delay: 1s; */
}
.fv-img2{
    width: 400px;
    position: absolute;
    top: 180px;
    left: 500px;
    z-index: -2;
    opacity: 0;
    transform: translate3d(0px,100px,-100px);
}
.fv-img2.fade-anm{
    opacity: 1;
    transform: translate3d(0px,0px,0px);
    transition: all 1.5s;
    transition-timing-function: ease;
    /* animation: fade-btm 2s ease; */
    /* animation-delay: 1.5s; */
}
.fv-img3{
    width: 400px;
    position: absolute;
    top: 130px;
    right: 150px;
    z-index: -1;
    opacity: 0;
    transform: translate3d(100px,0px,0px);
}
.fv-img3.fade-anm{
    opacity: 1;
    transform: translate3d(0px,0px,0px);
    transition: all 1.5s;
    transition-timing-function: ease;
    /* animation: fade-right 2s ease; */
    /* animation-delay: 2s; */
}
@keyframes fade-left {
    0% {
        opacity: 0;
        transform: translate3d(-50px,50px,50px);
    }
    100% {
        opacity: 1;
        transform: translate3d(0,0,0);
    }
}
@keyframes fade-btm {
    0% {
        opacity: 0;
        transform: translate3d(0,50px,0px);
    }
    100% {
        opacity: 1;
        transform: translate3d(0,0,0);
    }
}
@keyframes fade-right {
    0% {
        opacity: 0;
        transform: translate3d(50px,50px,-50px);
    }
    100% {
        opacity: 1;
        transform: translate3d(0,0,0);
    }
}

.scroll-img{
    position: absolute;
    bottom: 10px;
    left: 50px;
    /* left: 0; */
    /* right: 0; */
    /* margin: 0 auto; */
    width: 50px;
    /* height: 100px; */
    animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
    opacity: 0;
}
.scroll-img img{
    width: 100%;
    transition: all 1s;
}
.scroll-img.fade-in{
    opacity: 1;
    transition: all 2s;
}
@keyframes floating-y {
    0% {
        transform: translateY(-5%);
    }
    100% {
        transform: translateY(5%);
    }
}
/* info-section */
.info-section{
    z-index: 1;
}
.title-wrapper{
    padding: 60px 0 30px 0;
}
.main-title{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-bottom: 10px;
    overflow: hidden;
}
.main-title-item{
    font-family: "Afacad Flux", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-variation-settings:
    "slnt" 0;
    font-size: 40px;
    letter-spacing: 0.05em;
    font-weight: bold;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
}
.main-title::after{
    content: "";
    width: 50px;
    margin: 0 auto;
    border-bottom: 2px solid #000;
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    opacity: 0;
}
.sub-title{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    overflow: hidden;
}
.sub-title-item{
    text-align: center;
    font-size: 20px;
    letter-spacing: 0.05em;
    font-weight: bold;
    opacity: 0;
    transform: translateY(-50px);
}
.title-wrapper.fade-in .main-title-item{
    opacity: 1;
    transform: translateY(0);
    transition: all 1.5s;
    transition-delay: 1s;
}
.title-wrapper.fade-in .sub-title-item{
    opacity: 1;
    transform: translateY(0);
    transition: all 1.5s;
    transition-delay: 1s;
}
.title-wrapper.fade-in .main-title::after{
    opacity: 1;
    transition: all 5s;
}

.form-title-wrapper.fade-in .main-title-item{
    opacity: 1;
    transform: translateY(0);
    transition: all 1.5s;
    /* transition-delay: 1s; */
}
.form-title-wrapper.fade-in .sub-title-item{
    opacity: 1;
    transform: translateY(0);
    transition: all 1.5s;
    /* transition-delay: 1s; */
}
.form-title-wrapper.fade-in .main-title::after{
    opacity: 1;
    transition: all 2s;
}

.calendar{
    width: 70%;
    margin: 0 auto;
}
.calendar img{
    width: 100%;
}
.info-section{
    background: #f7f7f7;
}
.info-slide-list{
    width: 90%;
    margin: 20px auto;
}
.slide{
    display: block;
    border-radius: 10px;
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin: 0 5px 40px 5px;
}
.slide img{
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.info-text-list{
    width: 90%;
    padding: 50px 0;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.info-text-item{
    width: 100%;
    /* width: 1200px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: end;
    margin: 0px 0;
    padding: 20px 0;
    border-bottom: 1px solid #999;
}
.info-text-item:hover{
    opacity: 0.7;
    /* transition: all 0.5s; */
}
.info-inner{
    margin-right: 50px;
}
.info-date{
    margin-left: 50px;
}
.info-date a{
    font-size: 15px;
    color: #444;
    padding-right: 10px;
}
.info-inner a{
    font-size: 20px;
    letter-spacing: 0.08em;
    color: #444;
    /* font-weight: bold; */
    padding-left: 10px;
}
.fa-clipboard{
    margin-right: 10px;
}
.info-text-btm{
    opacity: 1;
    display: flex;
    align-items: center;
    width: 200px;
    margin: 80px 100px 50px auto;
    /* animation: floating-y-second 1.8s ease-in-out infinite alternate-reverse; */
    /* transition: all 0s; */
}
@keyframes floating-y-second {
    0% {
        transform: translateY(-15%);
    }
    100% {
        transform: translateY(15%);
    }
}
.info-text-btm.fade-in{
    /* opacity: 1; */
    /* transition: all 3s; */
}
.info-text-btm:hover{
    opacity: 0.5;
    transition: all 0s;
}
.info-text-btm p{
    flex-shrink: 0;
    margin-right: 10px;
    /* font-weight: 600; */
    color: #777;
}
.info-text-img{
    width: 200px;
}
.info-slider-wrapper{
    padding-bottom: 50px;
}

/* youtube-section */
.youtube-section{
    /* background: #c4c4c4; */
    background: #282828;
    /* padding-bottom: 50px; */
}
.youtube-wrapper{
    position: relative;
    margin-top: -20px;
    padding-bottom: 50px;
}
.has-fixed-layout{
    width: 95%;
    margin: 20px auto;
}
.yrc-core{
    display: flex;
    gap: 20px;
    margin: 20px;
}
.yrc-name span:hover{
    opacity: 0.7;
}
.yt-check{
    width: 60px;
    height: 60px;
    position: absolute;
    top: 40px;
    left: 160px;
    border-radius: 50%;
    background: #fff;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: poyoyon2 2.5s ease-in-out infinite forwards;
    animation-delay: 1s;
}
  @keyframes poyoyon2 {
    0%  {
      transform: scale(1.0, 1.0) translate(0, 0);
    }
    15% {
      transform: scale(0.98, 0.9) translate(0, 5px);
    }
    30% {
      transform: scale(1.02, 1.0) translate(0, 8px);
    }
    50% {transform: scale(0.98, 1.05) translate(0, -8px);
    }
    70% {
      transform: scale(1.0, 0.9) translate(0, 5px);
    }
    100% {
      transform: scale(1.0, 1.0) translate(0, 0);
    }
    0%, 100% {
      opacity: 1;
    }
  }
.yt-check-text{
    font-family: "Afacad Flux", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-variation-settings:
    "slnt" 0;
    color: #777;
    font-size: 15px;
    position: relative;
}
.yt-check-text::after{
    transform: rotate(40deg);
    position: absolute;
    bottom: -23px;
    left: -5px;
    content: "";
    background: #fff;
    width: 8px;
    height: 15px;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.yrc-video-date,.yrc-video-title,.write-white{
    color: #fff;
}
.yrc-name-date{
    margin: 20px 0 !important;
}
.main-title.write-white::after{
    content: "";
    width: 50px;
    margin: 0 auto;
    border-bottom: 2px solid #fff;
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
}
/* school-section */
.school-section{
    background: #f7f7f7;
}
.school-coach-btn{
    display: block;
    background: #000;
    color: #fff;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 20px;
    transform: translateX(100%);
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
}
.school-coach-btn.fade-in{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: all 0.5s;
}
.school-coach-btn:hover{
    opacity: 0.7;
}
.school-section-wrapper{
    margin-top: 100px;
    padding-bottom: 100px;
    width: 100%;
    /* background-image: url(./assets/school-bg1.png); */
    /* filter: blur(5px); */
    background-size: cover;
    background-attachment: fixed;
    opacity: 0;
    visibility: hidden;
}
.school-section-wrapper.fade-in{
    opacity: 1;
    visibility: visible;
    transition: all 2s;
}
.school-inner-wrapper{
}
.school-container{
    padding-top: 300px;
    /* margin: 0 auto; */
    width: 100%;
    display: flex;
}
.second-container{
    flex-direction: row-reverse;
}
.school-content{
    width: 700px;
    height: 500px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 1.5s;
}
.school-content.is-active{
    opacity: 1;
    transform: translateY(0%);
    transition: all 1.5s;
}
.first-container{
}
.first-content-left{
    width: 900px;
    height: 600px;
    overflow: hidden;
    margin-left: 0px;
}
.first-content-left img{
    width: 100%;
    object-fit: cover;
}
.second-content-left{
    margin: 0 0px 0 0;
}
.school-slide{
    width: 900px;
    height: 600px;
}
.school-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content-title{
    width: 480px;
    margin: 0 auto;
}
.content-title-top{
    /* text-align: center; */
    color: #555;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.08em;
    font-family: "Afacad Flux", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-variation-settings:
    "slnt" 0;
}
.content-title-bottom{
    color: #555;
    font-weight: bold;
    font-size: 18px;
    padding: 15px 0 15px 0px;
    /* margin: 0px 0 20px 0; */
    /* letter-spacing: 0.08em; */
}
.first-content-title-bottom{
}
.content-text{
    margin: 50px auto 0 auto;
    width: 375px;
    /* width: 500px; */
}
.content-text-title{
    color: #555;
    font-size: 20px;
    /* letter-spacing: 0.08em; */
    padding: 10px 0 5px 0px;
}
.content-text-inner{
    color: #666;
    font-size: 22px;
    /* letter-spacing: 0.08em; */
    line-height: 45px;
    padding: 0 0 10px 0;
}
.content-text-inner span{
    font-size: 35px;
    padding: 0 5px;
}
.content-text-price{
    /* color: #555; */
    /* font-size: 25px; */
    /* letter-spacing: 0.08em; */
}
.school-content-btm{
    position: relative;
}
.school-content-btn{
    width: 150px;
    padding: 10px 0;
    background: #fff;
    font-size: 14px;
    color: #333;
    display: flex;
    padding-left: 20px;
    /* justify-content: center; */
    align-items: center;
    position: absolute;
    bottom: 15px;
    right: 100px;
    border: 1px solid #333;
}
.school-content-btn::before{
    position: absolute;
    bottom: -2px;
    right: -35px;
    /* right: 0px; */
    content: "";
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    transform: scale(0);
    transition: all 1s;
}
.school-content-btn::after{
    content: "→";
    color: #333;
    font-size: 20px;
    position: absolute;
    bottom: 5px;
    right: 20px;
    /* right: 50px; */
    transition: all 1s;
}
.school-content-btn:hover.school-content-btn::before{
    transform: scale(1);
    transition: all 1s;
}
.school-content-btn:hover.school-content-btn::after{
    transform: translateX(20px);
    transition: all 1s;
}
.footer{
    background: #333;
    position: relative;
    z-index: 1;
    padding: 30px 30px 0px 30px;
}
.footer-main{
    display: flex;
    padding-bottom: 30px;
}
.footer-left{
    margin: 0px auto;
    width: 250px;
    display: flex;
    flex-wrap: wrap;
}
.footer-img{
    display: flex;
    flex-shrink: 0;
    /* justify-content: center; */
    align-items: center;
}
.footer-img img{
    width: 200px;
}
.footer-name{
    width: 100%;
    /* text-align: center; */
    color: #fff;
}
.footer-address{
    width: 100%;
    /* text-align: center; */
    color: #fff;
}
.footer-number{
    /* text-align: center; */
    color: #fff;
    transition: all 1s;
}
.footer-number:hover{
    border-bottom: 1px solid #fff;
    transition: all 1s;
}
.footer-right{
    width: 60%;
    display: flex;
}
.footer-main-list{
    margin: 0 100px 0 0;
    padding: 0 50px;
    border-left: 1px solid #fff;
}
.footer-sub-list{
    padding-left: 50px;
    position: relative;
}
.footer-sub-list::after{
    content: "";
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    border-left: 1px solid #fff;
}
.footer-item{
    margin: 5px 0;
}
.footer-item i{
    margin-right: 5px;
}
.footer-link{
    color: #fff;
}
.footer-link:hover{
    border-bottom: 1px solid #fff;
}
.footer-btm-text{
    color: #fff;
    font-family: "Afacad Flux", sans-serif;
    font-optical-sizing: auto;
    font-variation-settings:
    "slnt" 0;
    text-align: center;
    padding: 10px 0;
    margin: 0 20px;
    /* border-top: 2px solid #fff; */
}

/* 問い合わせフォーム */
.form-wrapper{
    padding: 100px 0;
}
.form-content{
    width: 80%;
    padding: 50px 0;
    margin: 50px auto 0 auto;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 7px 7px 7px 0px #999;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transform:translateY(100%) ;
}
.form-content.fade-in{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 1.5s;
}
.form-content::after{
    /* content: ""; */
    color: #fff;
    background: #5c8ea2;
    width: 250px;
    padding: 20px 0;
    border-radius: 10px 10px 0 0;
    text-align: center;
    position: absolute;
    top: -40px;
    left: 0;
}
.form-content p{
    font-size: 18px;
    margin: 20px 0;
    line-height: 30px;
    /* letter-spacing: 0.08em; */
}
.form-content label{
    color: #5c8ea2;
}
.no-js{
    width: 80%;
}
.form-content input,textarea{
    border-radius: 10px;
    padding: 15px 10px;
    font-size: 20px;
    color: #5c8ea2;
    margin: 10px 0;
    width: 100%;
    border: 2px solid #5c8ea2;
}
.form-content input[type=submit]{
    color: #5c8ea2;
    background: #fff;
    font-weight: bold;
    transition: all 0.5s;
}
.number input{
    width: 100px;
    margin-right: 10px;
}
select{
    padding: 15px 10px;
    margin: 10px 0;
    border-radius: 10px;
    color: #5c8ea2;
    font-size: 15px;
    border: 2px solid #5c8ea2;
}
.form-content input[type=submit]:hover{
    cursor: pointer;
    background: #5c8ea2;
    color: #fff;
    transition: all 0.5s;
}
.introduction-section{
    position: relative;
    z-index: 2;
}
.introduction-wrapper{
    padding: 100px 0;
}
.introduction-btn{
    background: #000;
    color: #fff;
    position: fixed;
    bottom: 90px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    padding: 20px 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(150%);
    transition: all 0.1s;
}
.introduction-btn.fade-in{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: all 1s;
    z-index: 2;
}
.introduction-btn-second{
    background: #5c8ea2;
    color: #fff;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    padding: 20px 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(150%);
}
.introduction-btn-second.fade-in{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: all 1s;
    transition-delay: 0.2s;
    transition-property: transform;
    z-index: 2;
}
.introduction-btn:hover{
    color: #333;
    background: #fff;
    transition: all 0.1s;
}
.introduction-btn-second:hover{
    color: #333;
    background: #fff;
    transition: all 0.1s;
}
.introduction-container{
    width: 800px;
    margin: 0 auto;
}
.introduction-img{
    /* border-radius: 10px; */
    width: 100%;
}
.introduction-img img{
    width: 100%;
    border-radius: 10px;
}
.introduction-text-area{
    position: relative;
}
.title-dotted{
    position: absolute;
    top: -15px;
    left: 0;
    width: 200px;
    font-size: 30px;
    color: #dd6700;
}
.introduction-text-title{
    color: #555;
    font-size: 30px;
    border-bottom: 2px solid #777;
    padding: 20px 0;
    margin: 40px 0 20px 0;
}
.introduction-text{
    color: #555;
    font-size: 20px;
    letter-spacing: 0.08em;
    line-height: 40px;
    padding: 10px;
}
.introduction-text span{
    font-size: 23px;
}
.introduction-text a{
    text-decoration-line: underline;
    color: #555;
}
.introduction-text a:hover{
    opacity: 0.7;
}
.shop-text-title{
    position: relative;
    opacity: 1;
    overflow: hidden;
}
.shop-text-title::after{
    content: "";
    width: 200px;
    /* border-bottom: 10px dotted #d3e954; */
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 1;
}


/* parts.php */
.tags{
    position: fixed;
    top: 100px;
    left: -20px;
    z-index: 1;
}
.tag{
    margin: 10px 0;
}
.tag-item{
    display: block;
    background: #5c8ea2;
    clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%, 0 50%);
    margin: 10px 0;
    padding: 10px;
    width: 220px;
    text-align: center;
    position: relative;
    transition: all 0.5s;
}
.tag-sp,.tag-back-btn{
    display: none;
}
.tag-item:hover{
    transform: translateX(20px);
    transition: all 0.5s;
    cursor: pointer;
    background: #555;
}
.tag-item{
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.05em;
    /* font-weight: bold; */
}
.page-info-section{
    padding: 100px 0;
}
/* archive */
.archive-container{
    padding: 50px 0;
}
.archive-content{
    padding: 40px 20px;
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.archive-content:hover{
    opacity: 0.7;
}
.archive-content::after{
    content: "";
    width: 100%;
    height: 1px;
    border-bottom: 2px solid #555;
    position: absolute;
    bottom: 0;
    left: 0;
}
.archive-text{}
.archive-date{}
.archive-text a{
    color: #555;
    font-size: 20px;
    letter-spacing: 0.08em;
}
.archive-date a{
    color: #555;
    font-size: 20px;
    letter-spacing: 0.08em;
}
.pagination{
    margin: 100px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-numbers{
    border: 2px solid #555;
    margin: 0 5px;
    width: 50px;
    color: #fff;
    background: #555;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-numbers:hover{
    opacity: 0.7;
}
.current{
    color: #555;
    background: #fff;
}
.current:hover{
    opacity: 1;
}
/* single */
.single-section{
    padding: 100px 0;
    position: relative;
    z-index: 3;
}
.single-container{
    width: 80%;
    margin: 0 auto;
}
.single-title{
    display: flex;
    /* background: #ececec; */
    /* background: #5c8ea2; */
    padding: 20px 0;
    width: auto;
    justify-content: center;
    font-size: 35px;
    letter-spacing: 0.08em;
    text-align: center;
    margin: 40px 0 0 0;
    color: #fff;
    color: #5c8ea2;
    /* border-left: 3px solid #5c8ea2; */
    /* border-right: 3px solid #5c8ea2; */
    border-bottom: 3px dashed #5c8ea2;
    /* border-top: 3px solid #5c8ea2; */
}
.single-date{
    font-size: 18px;
    color: #777;
    /* width: 150px; */
    text-align: right;
    margin: 30px 0px 100px 0;
}
.fa-clock{
    margin-right: 5px;
}
.single-img{
    width: 700px;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    object-fit: cover;
}
.single-img img{
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.single-text-area{
    margin: 50px;
}
.single-text-area p{
    font-size: 20px;
    margin: 20px 0;
    color: #555;
    /* text-align: center; */
    line-height: 50px;
    letter-spacing: 0.08em;
}
.sns-share{
    padding: 50px 0 0 50px;
}
.sns-share a{
    /* display: flex; */
    padding: 10px;
    display: block;
}
.sns-share div{
    padding: 10px;
}
.back-btn{
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #000;
    color: #fff;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(150%);
}
.back-btn.fade-in{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: all 1s;
}
.back-btn:hover{
    cursor: pointer;
    opacity: 0.7;
}
@media screen and (min-width:1441px) {
    .fv-video{
        max-width: 1440px;
        margin: 0 auto;
    }
}

@media screen and (max-width:1439px) {
    .fv-img1{
    }
    .fv-img2{
        left: 30%;
    }
    .fv-img3{
    }
    .school-slide{
        width: 500px;
    }
    .school-content-btn{
        bottom: -60px;
    }
}

@media screen and (max-width:1200px) {
    .tag-item{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .tag-item{
        width: 180px;
        height: 60px;
    }
    .tag-item span{
        display: block;
    }
}

@media screen and (max-width:1024px) {
    .fv-img1{
        width: 300px;
        left: 10%;
    }
    .fv-img2{
        width: 300px;
        left: 35%;
    }
    .fv-img3{
        width: 300px;
        right: 10%;
    }
    .school-section-wrapper{
        padding-bottom: 0;
        margin-top: 0;
    }
    .school-container{
        display: block;
        padding: 100px 0;
        /* padding-top: 0px; */
    }
    .school-content{
        width: 80%;
        height: auto;
        margin: 0px auto;
    }
    .school-text-content{
        padding-top: 50px;
    }
    .content-title{
        width: 100%;
    }
    .content-text{
        width: 100%;
        margin-top: 20px;
        /* margin: 0 auto; */
    }
    .school-content-btn{
        right: 0;
        bottom: 15px;
    }
    .footer-left{
        width: 300px;
    }
    .footer-main-list{
        margin-right: 50px;
        padding-right: 0;
    }
}
@media screen and (max-width:900px) {
    .school-wrapper,.calendar-btn,.header-info{
        display: none;
    }
    .calendar-btn{
        margin: 15px 40px 0 40px;
    }
    .fv-img1{
        width: 250px;
        left: 10%;
    }
    .fv-img2{
        width: 250px;
        left: 35%;
    }
    .fv-img3{
        width: 250px;
        right: 10%;
    }
    .school-container{
        padding: 70px 0;
    }
    .footer-main-list,.footer-sub-list{
        padding-left: 20px;
    }

    .archive-text a{}
    .archive-date a{
        font-size: 15px;
    }

    .introduction-container{
        width: 90%;
        margin: 0 auto;
    }

    .form-content{
        width: 95%;
        margin-top: 0px;
    }

    .tag-sp{
        position: fixed;
        z-index: 10;
        top: 110px;
        left: 0;
        display: block;
        background: #444;
        background: #888;
        color: #fff;
        font-size: 12px;
        /* clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%, 0 50%); */
        margin: 10px 0;
        padding: 10px;
        width: 180px;
        text-align: center;
        transition: all 0.5s;
    }
    .tag-back-btn{
        /* clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%, 0 50%); */
        display: block;
        z-index: 10;
        position: fixed;
        top: 400px;
        left: 0;
        background: #000;
        color: #fff;
        font-size: 12px;
        padding: 10px;
        width: 65px;
        text-align: center;
        transition: all 0.5s;
        transform: translateX(-100%);
    }
    .tag-sp.is-active{
        display: none;
    }
    .tag-item{
        transform: translateX(-100%);
    }
    .tag-item.is-active{
        transform: translateX(0);
    }
    .tag-back-btn.is-active{
        transform: translateX(0);
    }

    .single-img{
        width: 100%;
        height: 400px;
    }
}
@media screen and (max-width:768px) {
    .scroll-img{
        /* width: 30px; */
    }
    .fv-img1{
        display: none;
    }
    .fv-img2{
        display: none;
    }
    .fv-img3{
        display: none;
    }
    .fv-logo{
        display: none;
    }
    .scroll-img{
        left: 10px;
    }
    .fv-video1,.fv-video2,.fv-video3,.fv-video4{
        display: block;
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: top 60% left 50%;
    }
    .info-inner a{
        font-size: 15px;
    }
    .info-date a{
        font-size: 12px;
    }
    .info-text-list{
        margin-bottom: 0;
    }
    .info-text-btm{
        margin: 0px 30px 0px auto;
    }
    .yrc-core{
        display: block;
    }
    .first-content-left{
        height: 300px;
    }
    .school-slide{
        height: 300px;
    }
    .footer-item{
        font-size: 12px;
    }

    .archive-content{
        width: 90%;
    }
    
    .single-title{
        font-size: 30px;
    }
}

@media screen and (max-width:650px) {
    .hamburger-menu{
        width: 100vw;
        right: -10px;
    }
    .hamburger-item{
        padding: 5px 0;
    }
    .sns-list{
        padding-top: 15px;
    }
    .menu-info{
        margin-top: 30px;
    }
    .info-text-list{
        margin-top: 0;
        padding-top: 0;
    }
    .info-inner{
        margin-left: 0;
    }
    .info-inner a{
        font-size: 14px;
    }
    .info-date{
        margin-right: 0;
    }
    .info-text-img{
        width: 100px;
    }
    .info-text-btm{
        justify-content:right;
    }
    .school-content-btn{
        bottom: -50px;
    }
    .footer-main{
        display: block;
        padding-bottom: 0;
    }
    .footer-left{
        /* width: 200px; */
    }
    .footer-img{
        width: 200px;
        margin: 0 auto;
    }
    .footer-number{
        display: block;
        width: 100%;
    }
    .footer-name,.footer-address,.footer-number{
        text-align: center;
    }
    .footer-right{
        width: 100%;
        padding: 10px 0;
        margin: 10px auto;
        justify-content: center;
        /* display: block; */
        /* border-top: 1px solid #fff; */
        /* border-bottom: 1px solid #fff; */
    }
    .footer-main-list{
        border: none;
        margin: 0 20px;
        padding: 0;
        /* list-style: circle; */
        color: #fff;
    }
    .footer-sub-list{
        padding: 0;
        margin: 0 20px;
    }
    .footer-sub-list li{
        /* border: 1px solid #fff; */
        padding: 10px 15px;
        background: #fff;
        text-align: center;
    }
    .footer-sub-list a{
        color: #333;
    }
    .footer-sub-list::after{
        display: none;
    }
    .footer-item{
        font-size: 15px;
        margin: 10px 0;
    }
    
    .archive-container{
        padding: 0;
    }
    .archive-text a{
        font-size: 16px;
        letter-spacing: 0;
        font-weight: bold;
    }
    .archive-date a{
        letter-spacing: 0;
        font-size: 12px;
    }
    .introduction-btn-second{
        bottom: 25px;
    }
    .introduction-btn,.introduction-btn-second{
        width: 150px;
        font-size: 12px;
    }

    .single-section{
        padding-bottom: 30px;
    }
    .single-date{
        margin-bottom: 50px;
    }
    .single-img{
        height: 300px;
    }
    .single-text-area{
        margin: 0;
    }
}
@media screen and (max-width:550px) {
    tbody{
        width: 100%;
    }
    .info-text-item{
        padding: 20px;
        flex-wrap: wrap;
    }
    .info-inner{
        width: 100%;
        text-align: left;
        margin-right: 0px;
    }
    .info-date{
        width: 100%;
        margin-left: 0px;
    }
    .info-inner a{
        font-size: 14px;
        padding: 0;
    }
    .info-date a{
        font-size: 10px;
        padding: 0;
    }
    .school-coach-btn{
        font-size: 12px;
        padding: 15px;
        bottom: 10px;
        right: 10px;

    }
    .footer-main-list{
        margin: 0 10px;
    }
    .footer-sub-list{
        margin: 0 10px;
    }

    .archive-content{
        display: block;
        padding-bottom: 30px;
    }
    .archive-date{
        margin-top: 10px;
    }

    .title-dotted{
        font-size: 25px;
        top: -5px;
    }
    .introduction-text-title{
        font-size: 25px;
    }
    .introduction-text span{
        display: block;
    }

    .single-img{
        height: 250px;
    }
}
@media screen and (max-width:450px) {
    .main-title-item{
        font-size: 35px;
    }
    .sub-title-item{}
    .content-title-top{
        font-size: 30px;
    }
    .content-text-inner{
        font-size: 18px;
        line-height: 40px;
    }
    .content-text-inner span{
        font-size: 30px;
    }
    .info-inner{
        margin: 0;
    }
    .info-date{
        margin: 0;
    }
    .footer-link span{
        display: block;
    }
    .footer-sub-list li{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer-item{
        font-size: 14px;
    }
    .footer-item i{
        width: 100%;
    }

    .archive-text a{
        font-size: 14px;
    }

    .title-dotted{
        font-size: 20px;
        top: -5px;
    }
    .introduction-text-title{
        font-size: 20px;
    }
    .introduction-text{
        font-size: 16px;
    }

    .form-content p{
        font-size: 14px;
    }

    .single-img{
        height: 200px;
    }
    .single-title{}
}
