@charset "UTF-8";
*{margin: 0;padding: 0;box-sizing: border-box;
font-family: "hiragino-mincho-pron", sans-serif;
font-weight: 300;
font-style: normal;
word-break: break-word;
line-height: 1.6em;
}

a{text-decoration: none;color: #666}
.img100{display: block;width: 100%;}

.pc-none{display: none}
.sp-none{display: block}
.pc-none2{display: none}

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	background:#6799bf;
	text-align:center;
	color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo svg{
    width:300px;
}

/*=============== SVGアニメーション内の指定 =================*/

/*アニメーション前の指定*/
#mask path {
		fill-opacity: 0;/*最初は透過0で見えない状態*/
		transition: fill-opacity .5s;/*カラーがつく際のアニメーション0.5秒で変化*/
		fill: none;/*塗りがない状態*/
		stroke: #fff;/*線の色*/
	}

/*アニメーション後に.doneというクラス名がで付与された時の指定*/
#mask.done path{
	  fill: #fff;/*塗りの色*/
	  fill-opacity: 1;/*透過1で見える状態*/
	  stroke: none;/*線の色なし*/
	}



/*========================================*/
/*--- 線から塗り（共通設定） ---*/

.btn05{
    /*線の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    display: inline-block;
    color: #333; 
    padding: 10px 20px;
    background:#eee;
    text-decoration: none;
    outline: none;
    /*アニメーションの指定*/
    transition: all .3s;
    transition-delay: .7s;/*0.7秒遅れてアニメーション*/
}

/*hoverした際の、ボタンの背景とテキスト色の変更*/
.btn05:hover{
	background:#333;
	color: #fff;
}

/*線の設定*/
.btn05 span{
    display: block;
}

/*横線の設定*/
.btn05::before,
.btn05::after{
    content:"";
    /*絶対配置で線の位置を決める*/   
    position: absolute;
    /*線の形状*/   
    width: 0;
    height: 1px;
    background: #333;
    /*アニメーションの指定*/
    transition: all 0.2s linear;
}

/*縦線の設定*/
.btn05 span::before,
.btn05 span::after{

    content:"";
    /*絶対配置で線の位置を決める*/   
    position: absolute;
    /*線の形状*/
    width:1px;
    height:0;
    background: #333;
    /*アニメーションの指定*/
    transition: all 0.2s linear;
}

/*hoverした際、線が縦横100%伸びる*/
.btn05:hover::before,
.btn05:hover::after{
    width: 100%;
}
.btn05:hover span::before,
.btn05:hover span::after{
    height: 100%;
}

/*== 左上と右下から枠線が伸びて塗りに */

/*右下から右上へ伸びる横線*/
.bordercircle3::after{
    right:0;
    bottom: 0;
    transition-duration: 0.4s;
}

/*右下から右上へ伸びる縦線*/
.bordercircle3 span::after{
    right:0;
    bottom: 0;
    transition-duration: 0.4s;
}

/*左上から右上へ伸びる横線*/
.bordercircle3::before{
    left: 0;
    top: 0;
    transition-duration: 0.4s;
}

/*左上から左下へ伸びる横線*/
.bordercircle3 span::before{
    left: 0;
    top: 0;
    transition-duration: 0.4s;
}
/*========================================*/

/*矢印が右に移動する*/
.btnarrow4{
    /*矢印と下線の基点とするためrelativeを指定*/
	position: relative;
    /*形状*/
	padding: 0 8%;
    color: #333;
    text-decoration: none;
    outline: none;
		display: block;
    width: 30%;
    margin-left: auto;
}

/*矢印と下線の形状*/
.btnarrow4::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
	position: absolute;
    bottom:-8px;
    left:15%;
    /*下線の形状*/    
    width: 85%;
    height: 1px;
	background:#333;
    /*アニメーションの指定*/
    transition: all .3s;
}

.btnarrow4::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    bottom:-3px;
    right:0;
    /*矢印の形状*/    
    width: 15px;
    height:1px;
	background:#333;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow4:hover::before{
    left:20%;
}

.btnarrow4:hover::after{
    right:-5%;
}
/*========================================*/

.pc-nav{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

h2{
	font-family: "bebas-neue-pro", sans-serif;
	font-weight: 100;
	font-style: normal;
	text-align: center;
	padding: 0% 0 5%;
	font-size: 60px;
}
header{background-color: #fff}
.sp-nav{display: none;}


.PC-main {
	position: relative;
}
.PC-main .topic{
	position: absolute;
	bottom:0;
}




.pc-nav nav ul{text-align: center}

.pc-nav nav ul li, footer ul li{min-width: 12vw}
.nav-logo {display: flex;justify-content: center;}


.wrp{width: 1200px;margin: 0 auto;padding: 5% 0}

.BG-1{background-color: #98d3d0a3;}
.BG-2{background-color: #94c9a094;}
.BG-3{background-color: #c8dd7e94;}
.BG-4{background-color: #f7e47c94;}
.BG-5{background-color: #ef998d;}
.BG-0{background: url(../img/dust_scratches.png);opacity: 0.7;}

.C-1{color: #b79dc9;}
.C-2{color: #5cb3af;}
.C-3{color: #f8bf92;}
.C-4{color: #ef998d;}


 .header-logo{
		display: block;
		width: 30%;
		margin: 1% auto;
	}

.logo-BG{
	background: url(../img/bg-img.png);
	background-attachment: fixed;
	background-position: right;
	background-repeat: no-repeat;
	background-size: 30%;
}

.card{
	background-color: #fff;
	padding: 2% 3%;
	display: flex;
	margin-bottom: 4%;
	width: 80%;
	align-items: center;
}




.date{
display: flex;width: 20%;
}
.date div{width: 50%}
.sub-category{text-align: center}

#LIVE .LIVE-box{
	background-color: #fff;
	padding: 0;
	display: flex;
	margin-bottom: 4%;
	width: 80%;
	align-items: center;

}

#LIVE .LIVE-box .entry-title a{
	/*アニメーションの指定*/
    transition: all .3s;
    transition-delay: .7s;/*0.7秒遅れてアニメーション*/
}
#LIVE .LIVE-box:hover{
	background:#333;
	/*アニメーションの指定
    transition: all 0.2s linear;*/
}
#LIVE .LIVE-box:hover .entry-title a{
	background:#333;
	color: #fff!important;
	/*アニメーションの指定
    transition: all 0.2s linear;*/
}

.em-event .entry-title{width: 100%;}
.em-event .entry-title a{display: block;}


.LIVE-box li{display: block;}
.LIVE-box li a{display: block}
.entry-date{width: 20%;text-align: center}
.entry-title{width: 80%;}
#LIVE .entry-title a{padding: 3%;color: #000!important}

#NEWS,#LIVE{min-height: 300px;}


#BIOGRAPHY{text-align: center;}
#BIOGRAPHY p{font-size: 20px;padding: 2% 0;}
.bioBox{display: flex;align-items: center}
.bioBox img{width: 50%;z-index: 1}
.bioInner{padding: 7% 0;margin-left: -3%;}

.memberBox{display: flex;}
#MEMBER a{display: block;width: 25%;color: #000;text-align: center;transition: 0.5s; }
#MEMBER a:hover h3{color: #fff!important;background-color: #5cb3af}
#MEMBER img{display: block;width: 100%; filter: grayscale(100%);transition: 0.5s; }
#MEMBER img:hover{filter: grayscale(0%);}
#MEMBER h3{color: #5cb3af ; padding: 3% 0% 5%;transition: 0.5s;}





.singleWrp{display: flex}
.postBox{width:80%;padding-right: 3%;}
.postList{width: 20%}
.postBox h2{
	text-align: left;
	font-size: 30px;
	font-family: "hiragino-mincho-pron", sans-serif;
	font-weight: 300;
	font-style: normal;
	word-break: break-word;
}
.postList li{display: block;margin-bottom: 10%;}
.contentsBox{border-top: 1px solid #ccc;border-bottom: 1px solid #ccc;padding: 5% 0%;}

.page-pn{display: flex}
.page-pn>div{width: 50%;padding: 2%;}
.previous{text-align: left}
.next{text-align: right}

.postList h3{margin-bottom: 9%; font-size: 25px;}
#container .singleWrp .em.pixelbones a{color: #000!important;}
main{min-height: 90vh;}

.pan{width: 1200px;margin: 2% auto}
.snsWrp{width: 1200px;margin: 0 auto}
.snsBox{display: flex;justify-content: center;padding-top: 1%;}
.snsBox a{margin: 1%;}
.snsBox a img{transition: 0.5s;}
.snsBox a:hover img{transform: scale(0.9);}

.copy{text-align: center}
#container .singleWrp .em-event-add-to-calendar{display: none}



.n2-ss-no-bga-fixed{width: 100%!important}

.memberBox{display: flex;}
.picture{width: 80%;}

		
	.profileBox{display: flex;flex-direction: column;align-items: center;}
	
/*	.profileBox table{width: 56%; margin: 0 auto;}

		.profileBox h2{font-size: 45px;padding: 0;}
		
		
		
	.profileBox .snsBox{margin-top: 5%}	
		
		
		
	*/
				.profileBox img{width: 100%;}
	.profileBox .snsBox {padding: 6% 0 0;}
		.profileBox tr td:first-of-type{text-align: right}	
		.profileBox tr td:last-of-type{text-align: left}	
#MemberPage .profileWrp h2{font-size: 45px;padding: 0;}

.MemberBG{background-color: #5cb3af;}


/*.profile h2{font-size: 36px;padding: 7% 0 5%;font-weight: 200;}
*/
.F-nav{margin: 8% 0}

.F-nav img{width: 50%;margin: 0 auto;display: block}
.F-nav .menu-link{text-align: center;padding: 2% 0}



.contentsBox a{
    background-color: #b79dc9;
    padding: 2%;
    color: #fff;
    border-radius: 15px;
    border: 1px solid #b79dc9;
		transition: 0.5s;
}
.contentsBox a:hover{
    background-color: #fff;
		    color: #b79dc9;
    border: 1px solid #b79dc9;

}

#LIVE #container .em-event-content a{
    background-color: #5cb3af!important;
    padding: 2%;
    color: #fff!important;
    border-radius: 15px;
    border: 1px solid #5cb3af;
		transition: 0.5s;
}
#LIVE #container .em-event-content a:hover{
    background-color: #fff!important;
		    color: #5cb3af!important;
    border: 1px solid #5cb3af;

}

/*form*/

div#wpcf7-f8-o1,div#wpcf7-f40-o1 {
    background: #fff;
}

div.wpcf7 dt input, div.wpcf7 dt textarea, div.wpcf7 dt select {
    border: 1px solid #ccc;
    padding: 0.5rem;
}
.wpcf7-text{width: 100%}
div.wpcf7 dt textarea {
    width: 80%;
    height: 7rem;
    max-height: 40rem;
    resize: vertical;
}

div.wpcf7 dl {
    display: table;
    width: 80%;
    padding: 2rem 0;
    margin: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

div.wpcf7 dl span.required {
    font-size: 90%;
    padding: 0 0.4rem;
    color: #FD3D3D;
}

div.wpcf7 dd {
    display: table-cell;
    width: 30%;
    vertical-align: middle;
}

div.wpcf7 input.wpcf7-submit {
    display: block;
    margin: 5% auto 0%;
    padding: 8px 16px;
    width: 50%;
    color: #FFF;
    background:#4B4D51;
    border: none;
    transition: all .3s 0s ease;
}


div.wpcf7 input.wpcf7-submit:hover {
    background: #FD3D3D;
}







@media screen and (max-width: 1200px) {
.wrp{width: 100%;margin: 0 auto;padding: 5% 4%;}
.pan{width: 92%;margin: 4%;}
.card,#LIVE .LIVE-box {width: 100%;}
.infomation{width: 80%}
.snsWrp{width: 100%}

}
@media screen and (max-width: 1000px) {
.card{display: block}
#LIVE .LIVE-box{display: block}
.entry-title { width: 100%;}
#LIVE .entry-title a {padding: 0 3% 1.5%;}
.entry-date{padding: 1.5% 3% 0;width: 100%;text-align: left;}
.infomation {width: 100%;    word-break: break-word;}
.date{width: 100%}
.date div {width: auto;}
.sub-category {padding: 0 5%;}
.pc-none2{display: block}


.profile h2 {font-size: 3vw;}

#MemberPage .bioBox{display: block}

.picture{width: 100%}

#MemberPage .bioInner {margin: 0}

#MemberPage .profileWrp{display: flex;align-items: center;}
#MemberPage .profileWrp>div{width: 50%}
.profileBox{flex-direction: column;}
.profileBox table{width: 100%;}
.profileWrp h2 {font-size: 5.5vw;}


}

@media screen and (max-width: 640px) {
.pc-none{display: block}
.sp-none{display: none}




.wrp {padding: 15% 4%;}

.sp-header a{display: block;width: 50%;}
    
.btnarrow4 {width: 54%;text-align: center;}
.bioBox{display: block}
.bioBox img {width: 90%;}

.bioInner {padding: 30% 0 10%;margin: -25% 0 0;}

.card{margin-bottom: 7%;}
#BIOGRAPHY p {padding: 5%;}
.memberBox {flex-wrap: wrap;justify-content: space-between;}
#MEMBER a {width: 48%;margin-bottom: 3%;}
#MEMBER h3 {line-height: 1;	}
#MEMBER img {filter: grayscale(0%);}	

.singleWrp{display: block}
.postBox{width: 100%}
.logo-BG { background-size: 80%;}

.postBox h2 {font-size: 8vw;line-height: 1.2em}
.postList{width: 100%;margin-top: 10%}
.snsBox {padding: 5% 0 0;}

.postList li {margin-bottom: 5%;}


#LIVE .postList h3 {
    background-color: #5cb3af;
    color: #fff;
    text-align: center;
}
#NEWS .postList h3 {
    background-color: #b79dc9;
    color: #fff;
    text-align: center;
}


#LIVE .postList {margin-bottom: 10%;	border-bottom: 2px solid #5cb3af;}
#NEWS .postList {margin-bottom: 10%;	border-bottom: 2px solid #b79dc9;}

    #MemberPage .profileWrp {display: block;}
#MemberPage .profileWrp>div { width: 100%;}
#MemberPage .bioInner {padding: 10% 0;}
#MemberPage .bioBox .profileWrp div>img { width: 50%;}
    .profileWrp h2 {font-size: 7.5vw;}

.logo-BG{
	background-attachment:scroll;
	background-position: right;
}

/*form*/
	div.wpcf7 dd {display: block;width: 100%}
	div.wpcf7 dt input, div.wpcf7 dt textarea, div.wpcf7 dt select {
    width: 100%;}
	.wpcf7-validates-as-number{
		width: 85%!important;
		margin-right: 0.5em!important;
	}
input,textarea{font-size: 16px;}


}



/* 各リンクのCSS */

div.wp-pagenavi a{	

	border: 1px solid #2296DF;
	color: #2296DF;
	padding:8px 8px;
	margin: 0 4px;
	text-decoration: none;
	background:#FFF;
	border-radius: 3px;
	-border-radius: 3px;
	-webkit-border-radius: 3px;
		font-size: 1.5rem;
@media screen and (max-width:767px) {

		font-size: 1.3rem;

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

		padding:5px;
		margin: 0 3px;
		font-size: 1.0rem;

    }
	}

/* 各リンクのCSS(マウスオーバー時) */

div.wp-pagenavi a:hover{
	
	background:#2296DF;
	border: 1px solid #2296DF;	
	color: #fff;
		}

	/* 総ページ数のCSS */

div.wp-pagenavi span.pages{
	
	border: 1px solid #2296DF;
	color: #2296DF;
	padding:8px 8px;
	margin: 0 4px;
	background:#FFF;
	border-radius: 3px;
	-border-radius: 3px;
	-webkit-border-radius: 3px;
		font-size: 1.5rem;
   @media screen and (max-width: 767px) {
        display: none;
    }
	}

/* 現在のページのCSS */
div.wp-pagenavi span.current{
	
	border:1px solid #2296DF;
	color: #FFF;
	padding:8px 8px;
	margin: 0 4px;
	background:#2296DF;
	border-radius: 3px;
	-border-radius: 3px;
	-webkit-border-radius: 3px;
		font-size: 1.5rem;
@media screen and (max-width:767px) {

		font-size: 1.3rem;

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

		padding:5px;
		margin: 0 3px;
		font-size: 1.0rem;

    }
}

//...のところ
div.wp-pagenavi span.extend{
		display: none;
	}



