@charset "UTF-8";

/********* common *********/
.df{display: flex;}
.jcc{justify-content: center;}
.aic{align-items: center!important;}

.tac{text-align: center;}
.tar{text-align: right;}

.fwb{font-weight: bold;}

/********* TOP *********/
.mv {
    position: relative;
}

.mv span{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    max-height: calc(100vw * 0.51);
    width: 100%;
    height: 100vh;
    display: block;
}

#video-area{
    background: #000;
    z-index: 0;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}
#video iframe {
    width: 100%;
    height: 100%;
}

#youtube-area{
    position: relative;
    z-index: 1;
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
    opacity: 0;    
    height: 95vh;
  }
  #youtube-area.appear {
    animation-name:pageanimetuika;
    animation-duration:.6s;
    animation-fill-mode:forwards;
  }
  @keyframes pageanimetuika{
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  #youtube {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 178vh;
    height: 56vw;
    min-height: 100%;
    min-width: 100%;
  }
  /*YouTubeクリック防止マスクエリア*/
  #youtube-mask{
      position: absolute;
      z-index: 2;
      top:0;
      width:100%;
      height: 100%;
  }


section.main_contents{
   background:linear-gradient(#fff, #c9d6df);
}

#bnr{
    width: 100%;
    margin: 0 0 0 auto;   
    padding-top: 47px;    
}

#bnr .slider img {
     width: auto;
    height: 10vw;
    max-height: 273px;
    min-height: 273px; 
    object-fit: cover;
    box-shadow: 0 0 5px 2px rgb(0 0 0 / 30%);    
}

#bnr .slick-initialized .slick-slide{
    margin: 15px 10px;
}

#movie .slider iframe {
    width: 705px;
    height: 10vw;
    max-height: 396px;
    min-height: 396px; 
    object-fit: cover;
    transform: scale(.8);
    transition: opacity .5s, transform .5s;
    position: relative;
    top: 41px;    
}    
    
#movie .slick-initialized .slick-slide{
    margin: 0 15px;
}
#movie .slick-initialized .slick-slide p{
    margin-top: 14px;    
    text-align: center;
    font-size: 1.6rem;    
}

#bnr .slick-center {
    position: relative;
    top: -15px;    
}   

#movie .slick-center iframe{
  opacity: 1;
  transform: scale(1);
    top: 0;
}


.slick-list {
  overflow: visible;
}

.slick-track {
    margin: 5px 0 0;
}

.slide-dots {
    margin: 9px 20px 0 0;
    padding: 0;
    text-align: center;
}
.slide-dots li {
  display: inline-block;
  margin: 0 10px;
}
.slide-dots li button {
  position: relative;
  text-indent: -9999px;
}
.slide-dots li button::before {
  background: #000;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  cursor: pointer;
    width: 24px;
  height: 6px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
}
#bnr .slide-dots li.slick-active button::before {
  background: #c9d6df;
}

#movie .slide-dots li.slick-active button::before {
  background: #fff;
}

button {
  background: none;
  border: none;
  outline: none;
  padding: 0 7px;
}


section#news .inner {
    width: 1100px;
    min-height: 250px;    
    margin: 0 auto 62px;  
    display: flex;
}

section#profile .inner {
    width: 1100px;
    min-height: 250px;    
    margin: 30px auto 62px;
}

section#profile .profile_wrap{
    max-width: 900px;
    margin: 0 auto;

}

section#profile .members_block {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
section#profile .members_block article{
    width: 32%;
    max-width: 290px;
    margin-bottom: 20px;
    position: relative;
}
section#profile .txt_block .logo {
    width: 300px;
    margin: 30px auto 20px;
}

section#profile .members_block article .txt_block {
    width: 100%;
    padding: 6px 0 3px;
    background: rgba(0,0,0,.4);
    position: absolute;
    bottom: 0;
    color: #fff;
    text-align: center;
}
section#profile .members_block article .txt_block p.e_name {
    font-size: 2.8rem;
    font-weight: 600;
    font-family: serif;
    line-height: 1;
    margin-bottom: 5px;
}


section#movie .ttl_block{
    width: 1100px;
    margin: 0 auto;    
    position: relative;
}

p.more_btn{
    margin: 18px 0 0 26px;
    font-size: 1.6rem;
    
    font-weight: 300;    
    display: flex;
    align-items: center;
}
p.more_btn:before{
    content: '■';
    margin-right: 1px;    
    display: block;
    color: #000;
}
p.more_btn:after{
    content: '';
    margin-left: 5px;    
    background: url(../img/icon_arrow.png)no-repeat;
    width: 15px;
    height: 11px;
    display: block;
}

.inner .ttl_block {
    width: 267px;
}

.inner ul.list_block{
    width: 900px;    
    margin-top: 38px;
    border-top: 1px solid #000;
}
.inner ul.list_block li{
    padding: 18px 0 21px;    
    border-bottom: 1px solid #000;
    display: flex;
    align-items: center;    
}

.inner .list_block span.date {
	width: 100px;
    font-weight: 500;
    font-size: 2.0rem;
    letter-spacing: -1px;
    line-height: 1;
    display: inline-block;
}
.inner .list_block span.cate {
    width: 120px;
    background: #52616b;
    margin: 0 10px;
    font-weight: 300;
    font-size: 1.4rem;   
    text-align: center;
    display: inline-block;
    letter-spacing: 0px;    
}
.inner .list_block span.cate a{
    width: 100%;
    display: block;
    color: #fff;    
}

.inner .list_block span.ttl{
	width: 600px;
    font-size: 1.6rem;
}
.page .inner .list_block span.ttl{
	width: 864px;
}

 ul.sns {
    margin: 80px 0 60px;
    padding: 15px 0;
    background: #1e2022;
    display: flex;
    justify-content: center;
    align-items: center;
}
 ul.sns li {margin: 0 15px;}
 ul.sns li img{
    filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(170deg) brightness(107%) contrast(101%);
}
 ul.sns li a img:hover{
    filter: invert(90%) sepia(27%) saturate(109%) hue-rotate(165deg) brightness(91%) contrast(92%);  
    transition: 0.5s;
    opacity: 1;
}


.home ul.sns_under{
    background: #c9d6df;
}

ul.sns_under{
    padding-top: 66px;
    padding-bottom: 39px;    
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.sns_under li{
    margin: 0 18px;  
    mix-blend-mode: multiply;    
}
ul.sns_under li a:hover{
    mix-blend-mode: darken;
    transition: 0.5s;
    opacity: 0.6;
}

@media screen and (max-width: 768px){
    .mv .inner{
        width: 100%;
        padding: 0;
    }

    #youtube-area{
        height: 360px;
    }

    #bnr {
        width: 98%;
        margin: 0 auto;
        padding-top: 6.3%;
    }
    
    section#news .inner,
    section#live .inner,
    section#profile > .inner{
        width: 100%;
        padding: 0 15px;
        display: block;
    }

    section#profile > .inner .inner{
        width: 100%;
        margin: 20px auto 32px;
    }
    section#profile .members_block article{
        width: 48%;
    }
    section#profile .members_block article .txt_block p.e_name{
        font-size: 2.1rem;
        margin-bottom: 1px;
    }

    section#profile .txt_block .logo{width: 180px;}
    
    #bnr .slider img{
        height: 17vh;
        min-height: auto;
        max-height: unset;
        object-fit: contain;    
    }
    
    #bnr .slick-center{
        top: 0;
    }
    
    #movie .slick-list{
        width: 98%;
        margin: 0 auto;
    }
    #movie #movie_block{
        width: 98%;
        margin: 0 auto;
        
    }
    #movie .slider iframe{
        width: 100%;
        height: 100%;
        max-height: unset;
        min-height: unset;
        object-fit: contain;    
        transform: scale(1);
        transition: opacity .5s, transform .5s;
        position: relative;
        top: 10px;
    }
    
    .inner .ttl_block{
        margin-bottom: 7%;    
        width: 50%;
        margin-left: 10px;  
        position: relative;
    }
    section#news .ttl_block .more_btn,
    section#live .ttl_block .more_btn,
    section#movie .ttl_block .more_btn{
        margin: 18px 0 0 26px;
        font-size: 1.5rem;
        position: absolute;
        bottom: 0;
        left: 180px;
        width: 100%;        
    }

    section#profile .members_block{
        max-width: 100%;
    }
    
    section#movie .ttl_block{
        width: 190px;    
        margin: 0 10px 7% 10px;    
        position: relative;
    }
    section#movie .ttl_block .more_btn{
        left: 130px;
    }
    
    .inner ul.list_block{
        width: 98%;
        margin: 0 auto;
    }
    
    .inner ul.list_block li {
        padding: 10px 0 12px;
        border-bottom: 1px solid #000;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    .inner .list_block span.date{
		width: 80px;
        font-size: 1.6rem;          
    }
    .inner .list_block span.cate{
        width: 120px;
        margin: 0 5px;   
        font-size: 1.6rem;    
    }
    .inner .list_block span.ttl,
	.page .inner .list_block span.ttl{
        width: 100%;
        margin-top: 5px;    
    }
    
    .slick-center{
        margin: 0 10px;
    }
    #movie .slick-initialized .slick-slide p{
        font-size: 1.4rem;
    }
    
    p.more_btn{
        font-size: 1.5rem;    
    }
}


h1.ttl,
h2.ttl3{
    margin: 0 auto 30px;
    padding-left: 28px;
    padding-top: 29px;
    font-family: "Almarai", sans-serif;
    font-weight: 300;
    font-style: normal;
    transform: scaleY(1.4);
    line-height: 0.85;
    font-size: 5.3rem;
    letter-spacing: 2px;
    position: relative;
}
h1.ttl:before {
    content: '';
    background: url(../img/ttl_bg.png);
    background-size: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    transform: scaleY(0.7);
}

h1.ttl.plus > span:after {
    content: '&';
    font-weight: 300;
    z-index: -1;
    position: absolute;
    top: 20px;
    right: 0;
    font-size: 8.1rem;
    color: #ccc;

}

h1.ttl span.fwb {
    font-weight: 400;
}
h1.ttl:first-letter,
h2.ttl3:first-letter {
    font-weight: 400;
}

h1.ttl span.miniTxt {
    display: block;
    margin-top: 4px;
    font-size: 1.2rem;
    transform: scaleY(0.7);
    letter-spacing: 0;
}

#top .overlay {
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    position: fixed;
    z-index: 9999;
    top: 0;
    overflow-y: scroll;
}
#top .btn_area {
    width: 500px;
    padding: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    text-align: center;
    z-index: 2;
}
#top .btn_area .ttl {
    font-weight: bold
}
#top .btn_area h2 {
    padding: 15px;
}
#top .btn_area button {
    display: block;
    margin: 15px auto 0;
    background: #333;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
}
#top .btn_area button:hover {
    background: #777
}

@media screen and (max-width: 768px){
    #top .btn_area{
        width: 90%;
        max-width: 500px;
    }
    #top .btn_area figure.img_block {
        width: 90%;
        margin: 0 auto;
    }

    h1.ttl{
        padding-left: 18px;
        padding-top: 19px;
        font-size: 3.4rem;
    }
    h1.ttl:before{
        width: 25px;
        height: 25px;
    }
    h1.ttl > span{width: 80%;}
    h1.ttl span.miniTxt{font-size: 1.0rem;}
}


.page-id-1078 main.level2 .inner li{
    font-size: 1.8rem;
    margin-bottom: 10px;

}
.page-id-1078 main.level2 .inner li > ol,
.page-id-1078 main.level2 .inner li > ul{
    margin-top: 10px;
    margin-left: 1em;
}


#about .member_benefits ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#about .member_benefits ul li{
    background: rgba(34, 30, 31, 0.05);
    padding: 2rem;
    width: calc(50% - 20px);
    margin: 0 0 25px;
}

#about .member_benefits ul li > span{
    margin-bottom: 10px;
    font-size: 2.0rem;
    font-weight: 500;
    color: #ed0077;
    text-align: center;
    display: block;    
}

#about .member_benefits .benefits_caption {
    display: flex;
    justify-content: space-between;    
    align-items: center;    
}

#about .member_benefits .benefits_caption figure{
    width: 30%;
    margin-right: 3%;    
}
#about .member_benefits .benefits_caption .caption{
    width: calc(70% - 3%);
}

#about .member_benefits .benefits_caption .caption p{
    font-size: 1.6rem;
    margin-bottom: 0;
}

#about .membership_fee > .text {
    font-size: 2.0rem;
    margin-top: 20px;
    margin-bottom: 50px;
}

#about .membership_fee > .text span{
    color: #ed0077;    
    font-size: 2.4rem;
}
#about .membership_fee > .text strong{
    font-weight: 500;
}
#about .fee {
    justify-content: center;
    display: flex;
}
#about .fee_item{
    width: 45%;
    margin: 0 1.5rem;
    border-bottom: 1px solid #ed0077;
}

#about .fee_item p {
    font-size: 3.5rem;
    line-height: 1;
    text-align: center;
    padding-bottom: 0;
}
#about .fee_item p span {
    font-size: 1.8rem;
    color: #ed0077; 
    padding-right: 1rem;
}
#about .fee_item p small {
    font-size: 1.8rem;
}

#about .fee_list{
    display: flex;
    justify-content: center;
    margin: 30px 0 50px;
}
#about .fee_list ul li{
    font-size: 1.8rem;
    margin-bottom: 10px;
}

#about .admission_fee{
    width: 92%;
    margin: 0 auto 1.5rem;
    border-bottom: 1px solid #ed0077;    
}
#about .admission_fee p.text {
    font-size: 3.5rem;
    line-height: 1;
    text-align: center;
    padding-bottom: 0;
}
#about .admission_fee p span {
    font-size: 1.8rem;
   color: #ed0077; 
    padding-right: 1rem;
}
#about .admission_fee p small {
    font-size: 1.8rem;
}


#about .os_block,
#about .browser_block{
    margin: 0 30px 20px;
}

#about .benefits_caption_first{  
    background: rgba(34, 30, 31, 0.05);
    padding: 2rem;
    margin: 0 0 25px;       
}
#about .benefits_caption_first > div{   
    display: flex;      
    align-items: center;     
}

#about .benefits_caption_first .benefits_caption .caption {
    width: 100%;
    display: flex;
    justify-content: center;
}


#about .benefits_caption_first figure{
    width: 30%;
    margin: 0 3%;
}
#about .benefits_caption_first .benefits_caption{
    display: block;
    width: calc(70% - 3%);    
}

#about .benefits_caption_first .benefits_caption .caption span.fontS{
    font-size: 1.4rem;
    color: #999;
    margin-top: 10px;
    display: inline-block;
    line-height: 1.4;    
}

#about .benefits_caption_first h3 {
    font-size: 2.0rem;
    font-weight: 500;
    color: #ed0077;
    text-align: center;
    display: block;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px){
    #about .member_benefits ul{
        display: block;
    }
    #about .member_benefits ul li{
        width: 100%;
        padding: 2rem 1rem;
    }
    #about .member_benefits ul li > span{
        font-size: 1.8rem;
    }
    
    #about .member_benefits span.fontS{
        font-size: 1.4rem;
        color: #999;
        margin-top: 10px;
        display: inline-block;
        line-height: 1.4;    
    }
    
    #about .membership_fee > .text{
        font-size: 1.8rem;
        margin-top: 10px;
        margin-bottom: 30px;
    }
    
    #about .fee_item{
        margin: 0px 1rem;    
    }
    
    #about .fee_item p{
        font-size: 3.0rem;
        padding-bottom: 0;
        margin-bottom: 12px;
        line-height: 1.3;
        
    }
    #about .fee_item p span{
        font-size: 1.6rem;
        padding-right: 0;
        display: block;
        margin-bottom: 5%;
    }
    #about .fee_item p small{
        font-size: 1.6rem;
    }
    #about .fee_list ul li{
        font-size: 1.6rem;
    }
    
    #about .admission_fee p span{
        font-size: 1.6rem;
        padding-right: 0;
        display: block;
        margin-bottom: 5%;        
    }
    #about .admission_fee p.text{
        font-size: 3.0rem;
        text-align: center;
        padding-bottom: 0;    
         margin-bottom: 12px;
        line-height: 1.3;        
    }
    
    #about .os_block,
    #about .browser_block {
    margin: 0 10px 20px;
    }
    
    #about .benefits_caption_first{
        width: 100%;
        padding: 2rem 1rem 1px;
    }
    
    #about .benefits_caption_first .benefits_caption{
        width: 94%;
        margin: 0 auto;        
    }
    
    #about .benefits_caption_first > div{
        flex-wrap: wrap-reverse;
    }
    
    #about .benefits_caption_first figure{
        width: 94%;
        margin: 2% auto 0;
    }
    #about .benefits_caption_first p{
        width: 100%;
    }
    #about .benefits_caption_first h3{
        font-size: 1.8rem;
    }
    

}


