
 @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;900&display=swap');
 *{
     margin: 0;
     padding: 0;
 }

/* トップスライド画像 */
.img img{
    width: 100vw;
    height: 650px;
    object-fit: cover;

}
.img{
    position: relative;
}
.slick-slide img{
    width: 100%;
}
.slick-track img{
    max-height: 700px !important;
    width: 100vw !important;
}
@media screen and (max-width: 768px){
    .img img{
        height: 250px;
    }
    .slideBox p{
        top: 35%;
        font-size: 25px !important;
        padding: 10px 15px !important;
        text-align: right;
    }
    .slideBox{
        top: 30% !important;
    }
    .img{
        padding-top: 55px;
    }
}
@media screen and (min-width:1500px){
    .img img{
        height: 950px;
    }
    .slideBox p{
        top: 35%;
        font-size: 50px !important;
        padding: 20px 70px !important;
        text-align: right;
    }
    .slideBox{
        top: 10% !important;
    }
}

/* news */
.crotchet{
    background-color: #F7F5F5;
    padding: 30px;
}
.text{
    border: dashed 2px #000000;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;

}
.news{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 40px;
    font-weight:900;
    text-align: center;
}
.textCenter{
    text-align: center;
}
.newsBox{
    width: 46%;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight:300;
    line-height: 2;
    /* display: inline-block; */
    display: flex;
    border-bottom: 1px solid #000000;
    margin: 0 auto;
    text-align: center;
    word-break: break-word;
}
.newsDay{
    text-align: left;
    min-width: 100px;
    margin-right: 1em;
}
.newsTitle{
    text-align: left;
}
/* .newsBox li{
    list-style: none;
    display: inline-block;
    margin-right: 10px;
} */
.moreTop{
    margin: 40px;
    text-align: center;

}
.more{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:900;
    font-size: 40px;
    border: 1px solid #000;
    width: 50%;
    margin: 0 auto;
    padding: 10px 30px;
}
.su{
    display:inline-block;
    letter-spacing:normal;
}
.su:nth-child(even) {
 margin-left:2%;
}
/* ボタンアニメーション */
.btn{
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
	overflow: hidden;
    /*アニメーションの指定*/
    transition: ease .2s;
}
/*ボタン内spanの形状*/
.btn span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
}
.btn:hover span{
	color:#000000;
}
/*== 背景が流れる（左から右） */
.bgleft:before {
 	content: '';
    /*絶対配置で位置を指定*/
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
    /*色や形状*/
 	background:#DCD5CF;/*背景色*/
 	width: 100%;
	height: 100%;
    /*アニメーション*/
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
}
/*hoverした際の形状*/
.bgleft:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}

@media screen and (max-width: 768px){
    .news{
        font-size: 30px;
    }
    .moreTop{
        margin: 40px 0;
    }
    .newsBox{
        width: 70vw;
        font-size: 15px;
    }
    .more{
        font-size: 30px;
        width: 70vw;
        margin: 0 auto;
    }
    .newsTitle{
        text-align: left;
        width: 500px;
    }

}

/* crotchet */
.textCrotchet{
    border:1px solid #000000;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.textCrotchet-1{
    max-width: 800px;
    margin: 0 auto;
}
.crotchetTitle{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 40px;
    font-weight:900;
    text-align: center;
}
.crotchetBody1{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight:300;
    display: inline-block;
    margin: 10px 0;
    line-height: 1.5;
}
.block{
    margin: 30px 0;
}
@media screen and (max-width: 768px){
    .crotchetTitle{
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 30px;
        font-weight:900;
        text-align: center;
    }
    .textCrotchet-1{
        width: 100%;
    }
    .crotchetBody1{
        font-size: 15px;
        font-weight:300;
        line-height: 2;
        margin: 7px 0;
    }
    .block{
        margin: 0;
    }
}

/* livereport */
.livereport{
    background-color: #DCD5CF;
    padding: 30px;
}
.livereportWitdch{
    width: 30%;
    border:1px solid #000000;
    margin-bottom: 30px;

}
.livereportBorder{
    padding: 20px;
}
.livereport-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}
.livereportTitle{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 40px;
    font-weight:900;
    text-align: center;
    padding-bottom: 20px;
}
.livereportIMG img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position:top;
}
.livereportContent1{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight:900;
    display: inline-block;
    margin: 10px 0;
    letter-spacing:3px;
}
.livereportContent2{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight:300;
    display: inline-block;
    margin: 5px 0;
    line-height: 1.5;
    letter-spacing:2px;
}
.morelivereport{
    margin: 40px 0;
    text-align: center;

}
.more2{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:900;
    font-size: 40px;
    border: 1px solid #000;
    width: 290px;
    margin: 0 auto;
    padding: 10px 30px;
}
.btn2{
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
	overflow: hidden;
    /*アニメーションの指定*/
    transition: ease .2s;
}
/*ボタン内spanの形状*/
.btn2 span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
}
.btn2:hover span{
	color:#000000;
}
/*== 背景が流れる（左から右） */
.bgleft2:before {
 	content: '';
    /*絶対配置で位置を指定*/
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
    /*色や形状*/
 	background:#F7F5F5;/*背景色*/
 	width: 100%;
	height: 100%;
    /*アニメーション*/
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
}
/*hoverした際の形状*/
.bgleft2:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}


@media screen and (max-width: 768px){
    .livereportWitdch{
        width: 100% !important;
    }
    .more2{
        width: 100%;
        font-size: 30px;
    }
    .livereportTitle{
        font-size: 30px;
    }
}


/* promotion */
.promotion{
    background-color: #DCD5CF;
    padding: 30px;
}
.promotionWitdch{
    max-width: 1000px;
    margin: 0 auto;
}
.promotionTitle{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 40px;
    font-weight:900;
    text-align: center;
    padding-bottom: 20px;
}
.promotionBorder{
    border:1px solid #000000;
    padding: 20px;
    margin-bottom: 30px;
}
.promotionIMG img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.promotionContent1{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 25px;
    font-weight:400;
    display: inline-block;
    border-bottom: 1px solid #000000;
    margin: 10px 0;
    letter-spacing:3px;
}
.promotionContent2{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight:300;
    display: inline-block;
    margin: 10px 0;
    line-height: 2;
    letter-spacing:2px;
}
@media screen and (max-width: 768px){
    .promotionIMG img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    .promotionTitle{
        font-size: 30px;
    }
    .promotionContent1{
        margin: 0 0;
    }
}

/* schedule */
.schedule{
    background-color: #F7F5F5;
    padding: 30px;
}
.scheduleWidth{
    max-width: 1000px;
    margin: 0 auto;
}
.scheduleTitle{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 40px;
    font-weight:900;
    text-align: center;
    padding-bottom: 20px;
    padding-top: 20px;
}
.calendar iframe{
    text-align: center;
    margin-bottom: 10px;
    width: 100%;
}
@media screen and (max-width: 768px){
    .scheduleTitle{
        font-size: 30px;
    }
    .calendar iframe{
        height: 350px;
    }
}

/* sns */
.sns{
    background-color: #F7F5F5;
    padding-bottom: 50px;
}
.snsPlacement{
    display: flex;
    justify-content: center;
}
.snsTitle{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 40px;
    font-weight:900;
    text-align: center;
    padding-bottom: 20px;
}
/* ツイッター */
.p-twitter-box{
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, .2); */
    margin:2rem auto;
    max-width:300px;
    width:30%;
}
.p-twitter-box .p-twitter-title{
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 1em 2em;
    font-size: 12px;
}
.p-twitter-box{
    margin:10px;
}
.p-twitter-box p{
    display:none;
}
.p-twitter-box .p-twitter-blue{
      background: #1da1f2;
}
/* インスタ */
.p-instgrm-box{
    margin:2rem auto;
    min-width:270px;
    width:30vw;
}
.p-instgrm-box .p-instgrm-title{
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 1em 2em;
    font-size: 12px;
}
.p-instgrm-box{
    margin:10px;
}
.p-instgrm-box p{
    display:none;
}
.p-instgrm-box .p-instgrm-pink{
      background: #CF2E92;
}
/* ファイスブック */
.p-facebook-box{
    margin:2rem auto;
    max-width:300px;
}
.p-facebook-box .p-facebook-title{
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 1em 2em;
    font-size: 12px;
}
.p-facebook-box{
    margin:10px;
}
.p-facebook-box p{
    display:none;
}
.p-facebook-box .p-facebook-blue{
      background: #1877f2;
}
@media screen and (max-width: 1024px){
    #sb-instagram{
        width: 50%;
    }
}
@media screen and (max-width: 768px){
    .sns{
        padding: 10px;
    }
    .snsPlacement{
        flex-wrap: wrap;
    }
    .p-twitter-box{
        margin: 20px;
        width: 100%;
    }
    .p-instgrm-box{
        margin: 20px;
        width: 100%;
    }
     .p-facebook-box{
        margin: 20px;
        width: 100%;
     }
}

/* toptext アニメーション */

@-webkit-keyframes slideBar{
	0% {
		left: 0;
		right: auto;
		width: 0;
	}
	50% {
		left: 0;
		right: auto;
		width: 100%;
	}
	51% {
		left: auto;
		right: 0;
		width: 100%;
	}
	100% {
		left: auto;
		right: 0;
		width: 0;
	}
}
@keyframes slideBar{
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 100%;
		width: 0;
	}
}
@-webkit-keyframes slideText{
	0% { opacity: 0; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes slideText{
	0% { opacity:0; }
	50% { opacity:0; }
	100% { opacity:1; }
}

.slideBox{
    position: absolute;
    z-index:10;
    top: 10%;
    right: 0;
    margin: 0;
}
.passing .slideBar{
    position: relative;
	display: inline-block;
	-webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.passing .slideBar:before {
	content: '';
	display: inline-block;
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	/* 任意の値 */
	background: #000;
}
.passing .slideText {
	opacity: 0;
	transform: translate3d(0, 0, 0);
}
.passing .slid{
    -webkit-animation: slideText 0s ease .5s 1 normal forwards;
	animation:passing-txt 0s ease .5s 1 normal forwards;
}
.slideBox p{
    color: #000000;
    background: rgba(255, 255, 255, 0.8);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 40px;
    font-weight:300;
    line-height: 1;
    padding: 10px 35px;
    z-index:10;
}
.passing .slideBar:before {
 -webkit-animation: slideBar 1s ease 0s 1 normal forwards;
 animation: slideBar 1s ease 0s 1 normal forwards;
}
.passing .slideText {
 -webkit-animation: slideText 0s ease .5s 1 normal forwards;
 animation: slideText 0s ease .5s 1 normal forwards;
}

  /* スクロール時 */
  /* 画面外にいる状態 */
.fadein {
	opacity : 0;
	transform : translate(0, 50px);
	transition : all 500ms;
}

/* 画面内に入った状態 */
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}

/* ライブレポートが２件の時に左右に分かれないようにする */
.is-empty {
    width: 30%;
    height: 0;
}

@media screen and (max-width: 768px){
    .crotchet, .livereport, .schedule {
        padding: 20px;
    }
}

/* インスタ */
.instagram-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
}
.instagram-gallery li {
    list-style: none;
    width: 32.66666%;
    margin: 0.5% 0px;
}
.instagram-gallery li img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}