@charset "utf-8";

/*---リンク---*/
a{text-decoration: none;
}

/*----------全体----------*/
body{
font-family:"Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans","ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, Osaka, "MS Pゴシック", MS PGothic, sans-serif;
color:#000000;
font-size:15px;
margin: auto;
text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;/* Safari */
}
.img-alltop{
width:100%;
position:relative;
z-index:1;	
}
.top-space{
width:100%;
height:50px;
opacity: 0;
}
.hrstyle{
	margin-top: 50px;
	width: 90%;
}
section.pc-display{
display:block;
}
section.mp-display{
display:none;
}

/*----------ヘッダー----------*/
header{
width:100%;
background-color:#17217A;
height:50px;
position:fixed;
z-index:23;	
font-weight: bold;
}
.header-inner1{
margin: 15px 0 0 100px;
float:left;
}
.header-inner2{
margin: 15px 0 0 150px;
float:left;
position:absolute;
z-index:25;
}
/* Global Menu */
.header-inner3{
margin: -7.5px 0 0 170px;
position:absolute;
z-index:24;
}
.header-inner3 ul li ul{
    display: none;
}
.header-inner3 ul li:hover ul{
    display: block;
}
.header-inner3 ul > li{
    display: inline-block;
}
.header-inner3 ul > li > a{
    padding: 5px 10px 5px 15px;
    display: block;
}
.header-inner3 ul > li:hover > a{
    background-color: #17217A;
    color: #ff0000;
} 
/* Submenu */ 
.header-inner3 ul li ul{
position:relative;
	top:-8px;
    right:100px;
	text-align: center;
}
.header-inner3 ul li ul li{
    display:block;
}
.header-inner3 ul li ul li a{
    background-color: #efefef;
    color: #444;
}
.header-inner3 ul li ul li a:hover{
    background-color: #ddd;
}
.header-inner4{
margin: 15px 0 0 320px;
float:left;
position:absolute;
z-index:25;
}
.header-inner5{
margin: 15px 0 0 390px;
float:left;
position:absolute;
z-index:25;
}
.header-inner6{
margin: 12px 0 0 500px;
float:left;
position:absolute;
z-index:25;
}
.header-inner7{
margin: 12px 0 0 680px;
float:left;
position:absolute;
z-index:25;
}
.header-inner8{
margin: 15px 0 0 850px;
float:left;
position:absolute;
z-index:25;
}
.header-inner9{
margin: 13px 0 0 950px;
float:left;
position:absolute;
z-index:25;
}
.header-inner9 .X_icon{
width: 5%;
}

/*----------フッダー----------*/
.linkitem{
	font-size: 30px;
	font-weight: bold;
	color: #000000;
	text-align: center;
}
.footer-link{
	margin: -10px auto 30px auto;
	width: 90%;	
}
.footer-link td{
	width: 33%;
	padding: 5px;
	text-align: center;
	text-decoration:underline;
}
.link-color a{
	color: #000000;
}
.Copyright{
	font-size: 12px;
	text-align: center;
}

/*----------TOPページ----------*/
/*----------カルーセルスライドショー----------*/
.carousel{
position: relative;
width:100%;
margin: 0 auto;
background:#ffffff;
}
.img-index{
width:100%;
position:relative;
opacity: 0;
}
.in img{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: .5s;
    z-index: 0;
}
img{
    display: block;
    width: 100%;
    height: auto;
}
input{
    display: none;
}
.in{
    display: flex;
    justify-content: center;
}
label span{
    display: block;
    width: 15px;
    height: 15px;
    padding: 7px;
    margin: -40px 0 0;
    border-radius: 100%;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
label span::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #4287f5;
    opacity: 0.5;
    border-radius: 100%;
}            
input:nth-of-type(1):checked ~ .in label:nth-of-type(1) span::before,
input:nth-of-type(2):checked ~ .in label:nth-of-type(2) span::before,
input:nth-of-type(3):checked ~ .in label:nth-of-type(3) span::before{
    background: #ff0000;
    opacity: 1;
}
label span::before{
    animation: slidebutton 16.5s infinite;
}
@keyframes slidebutton{
0%{opacity: 0.5; background: #4287f5;}
3%{opacity: 1; background: #ff0000;}/* b÷x×100=y */
33.3%{opacity: 1; background: #ff0000;}/* 100÷c=z */
36.3%{opacity: 0.5; background: #4287f5;}/* y+z */
100%{opacity: 0.5; background: #4287f5;}
}           
label:nth-of-type(2) span::before,label:nth-of-type(2) img{
    animation-delay: 5.5s;
}            
label:nth-of-type(3) span::before,label:nth-of-type(3) img{
    animation-delay: 11s;
}                        
input:nth-of-type(1):checked ~ .in label:nth-of-type(1) img,
input:nth-of-type(2):checked ~ .in label:nth-of-type(2) img,
input:nth-of-type(3):checked ~ .in label:nth-of-type(3) img{
    opacity: 1;
    z-index: 1;
}
.in img{
    animation: slide 16.5s infinite;/* (a+b)×c=x */
    opacity: 0;
}
@keyframes slide{
    0%{opacity: 0; display:block;}
    3%{opacity: 1;z-index:1;}/* b÷x×100=y */
    33.3%{opacity: 1;}/* 100÷c=z */
    36.3%{opacity: 0; display:none;}/* y+z */
    100% { opacity:0; }
}
input:checked ~ .in img,input:checked ~ .in span::before{
    animation: none;
}
.in:hover img,.in:hover span::before{
    animation-play-state:paused;/* マウスを載せると一時停止 */
}	

/*----------トピックス・Xフレックス----------*/	
.topics {
  width: 80%;
  background: #ffffff;
  margin: 0 auto;
}
/*---
.Xtimeline {
background: #ffffff;
}
.topics,
.Xtimeline {
  padding: 2%;
}
---*/
.flexbox {
    display: -webkit-flex;
    display: flex;
  }
.topics .table-size{
	width: 100%;
	border:solid 4px #990000;
	border-collapse:collapse;	
}
.topics .thposition{
vertical-align:middle;
border:solid 4px #990000;
	background-color:#990000;
}
.topics .fontstyle{
font-family: Letter Gothic Std;
color:#ffffff;
}
.topics .tdposition{
background-color:#ffffff;
vertical-align:middle;
font-size: 18px;
}
.topics .topics-logo{
width: 5%;
	float: left;
margin: 10px;
	padding-right: 10px;
vertical-align: middle;
border-right: 2px #000000 solid;
}
.topics .topics-logo2{
width: 5%;
	float: left;
margin: 10px;
	padding-right: 10px;
vertical-align: middle;
border-right: 2px #000000 solid;
}
.topics .topics-link{
padding-top: 24px;
}
.topics .topics-link2{
padding-top: 24px;
}
.topics .news-link{
	padding: 20px 20px 5px 0;
	text-align: right;
	 text-decoration:underline;
}

/*----------タブ切り----------*/
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
margin-top:3px;
}
.tab-wrap:after {
  content: '';
  margin-top: -20px;
  background: #ffffff;
  display: block;
  order: -1;
}
.tab-label1,.tab-label2 {
  color: White;
  font-size: 20px;
　font-weight: bold;
  border-top: solid 2px #bfbfbf;
  border-left: solid 2px #bfbfbf;
  border-right: solid 2px #bfbfbf;
  background: #bfbfbf;
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
}
.tab-label1:not(:last-of-type), .tab-label2:not(:last-of-type){
  margin-right: 5px;
}
.tab-content1,.tab-content2 {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
/* アクティブなタブ */
.tab-switch1:checked+.tab-label1 {
  color: #ffffff;
  font-size: 20px;
  border-top: solid 2px #0000ff;
  border-left: solid 2px #0000ff;
  border-right: solid 2px #0000ff;
  background: #528ECB;
}
.tab-switch2:checked+.tab-label2 {
  color: #ffffff;
  font-size: 20px;
  border-top: solid 2px #ff0000;
  border-left: solid 2px #ff0000;
  border-right: solid 2px #ff0000;
  background: #E30048;
}
.tab-switch1:checked+.tab-label1+.tab-content1{
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  transition: 0.5s opacity;
  box-shadow: 0 0 3px rgba(0,0,0,.2);
  border: solid 2px #0000ff;
}
.tab-switch2:checked+.tab-label2+.tab-content2 {
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  transition: 0.5s opacity;
  box-shadow: 0 0 3px rgba(0,0,0,.2);
  border: solid 2px #ff0000;
}
/* ラジオボタン非表示 */
.tab-switch1,.tab-switch2 {
  display: none;
}	
/* コンテンツ内*/
.video1 {
  margin: 0 5px 0 0;
}
.video1,
.video2 {
  padding: 2%;
}
.flexbox2 {
	margin-left: 30px;
    display: -webkit-flex;
    display: flex;
  }
.listitem img{
	width: 25%;
}
.listitem2 img{
	width: 20%;
}
.listitem3 img{
	width: 15%;
}
.jump{
border: 2px #528ECB solid;
	display: inline-block;
	padding: 5px 5px 5px 8px;
	 border-radius: 10px;
}
.chant-link{
	 float: right;
	margin-top: -20px;
	 text-decoration:underline;
}

/*----------活動報告----------*/
.background{
	position: relative;
	z-index: 1;
	opacity: 0.3;
}
.activity{
		position: relative;
	margin-top: -700px;
	z-index: 5;
}
.headitem{
	font-size: 30px;
	font-weight: bold;
	color: #ffffff;
    background-color: #528ECB;
    width:fit-content;	
    margin:0 auto 5px;
	padding: 5px 2px 0 20px;
	border-radius: 10px;
}
.activity .table-size{
	width: 70%;
	margin: 0 auto;
	border:solid 1px #528ECB;
	background-color: #528ECB;
	border-collapse:collapse;
}
.activity .tdposition{
padding: 25px 20px 20px 20px;
background-color: #528ECB;
vertical-align:middle;
font-size: 18px;
}
.activity-image{
width: 10%;
float: left;
margin: 0 15px 0 0;
padding-right: 15px;
vertical-align: middle;
border-right: 2px #ffffff solid;
}
.snap-link a{
color: #ffffff;
}
.activity-link{
	color: #ffffff;
	padding: 20px 20px 5px 0;
	text-align: right;
	 text-decoration:underline;
}
.activity-link a{
	color: #ffffff;
}

/*----------スペシャル----------*/
.background2{
	margin-top: 200px;
	position: relative;
	z-index: 1;
	opacity: 0.3;
}
.special{
		position: relative;
	margin-top: -850px;
	z-index: 5;
}
.special .headitem{
	font-size: 30px;
	font-weight: bold;
	color: #ffffff;
    background-color: #E30048;
    width:fit-content;	
    margin:0 auto 5px;
	padding: 5px 20px 5px 20px;
	border-radius: 10px;
}
.special .frame-size{
	width: 90%;
	height: auto;
	margin: 0 auto;
	padding: 15px 5px;
	border:solid 1px #E30048;
	background-color: #E30048;
}
.sp1,
.sp2,
.sp3,
.sp4,
.sp5,
.sp6,
.sp7,
.sp8{
  width: 25%;
  background: #ffffff;
  margin: 5px 10px 5px 10px;
  box-shadow: 5px 5px 10px;
  border:3px #CBAE69 solid;
  transition-duration: .4s;
}
.flexbox3 {
    display: -webkit-flex;
    display: flex;
  }
.flexbox4 {
    display: -webkit-flex;
    display: flex;
  }
.sp1:hover,
.sp2:hover,
.sp3:hover,
.sp4:hover,
.sp5:hover,
.sp6:hover,
.sp7:hover,
.sp8:hover {
  transform: scale(1.1);
}
.sp-btn{
	text-align: center;
	color: #000000;
font-size: 20px;
font-weight: bold;
transform: skewX(-20deg);
}

/*----------ABOUTページ----------*/
.about-TOP{
	width: 100%;
}
.about-text{
	position: relative;
	margin: 0 auto;
	font-size: 18px;
}
.about-text h3{
	text-align: left;
	margin-bottom: -5px;
}
.policy{
	margin-top: -5px;
	margin-left: -25px;
}
.policy li{
	list-style-type:none;
	text-indent: -1em;
}
.detail{
	margin-top: -5px;
	margin-left: -25px;
}
.about-white{
  position: relative;
  width: 60%;
  	margin: 25px auto 0;
  padding: 20px 20px 5px 20px;
	background-color: rgba(255,255,255,0.6);
	z-index: 1;
}
.about-bg::after {
	content: "";
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  width: 100%;
  height:1300px;
  background-image: url('../images/about/aboutbg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top 580px;
	z-index: 0;
	}

/*----------チャントページ----------*/
.chant-banner1{
width: 50%;
background: #528ECB;
margin: 15px;
}
.chant-banner2{
width: 50%;
background: #E30048;
margin: 15px;
}
.chant-banner3{
width: 50%;
background: #FF0033;
margin: 15px;
}
.chant-banner4{
width: 50%;
background: #17217A;
margin: 15px;
}
.chant-banner1,
.chant-banner2,
.chant-banner3,
.chant-banner4{
  padding: 1%;
}
.yt-size{
	width: 12%;
	float: left;
}
.chant-prof .flexbox{
    display: -webkit-flex;
    display: flex;
  }
.chant-prof h1{
	text-align: center;
}
.chant-bg{
	position: relative;
	margin-top: -3000px;
	z-index: 1;
}
.timetable {
	font-size: 16px;
font-weight: 550;
  text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;
	position: relative;
	z-index: 2;
	width: 80%;
	margin: 0 0 0 250px;
/*---
	border-collapse: collapse;
	border: 1px solid #000000;
---*/
	}
/*---
.timetable td{
	border-collapse: collapse;
	border: 1px solid #000000;
	}
---*/
.chant-prof .flexbox2 {
    display: -webkit-flex;
    display: flex;
  }

/*----------チャントページ（TOP）----------*/
.TOP-chant-bg{
	position: relative;
	width: 80%;
	margin-top: -1480px;
	z-index: 1;
	opacity: 0.7;
}
.TOP-memberlist {
	font-size: 25px;
font-weight: 550;
	position: relative;
	z-index: 2;
	width: 80%;
	margin: 140px auto 0;
/*---
	border-collapse: collapse;
	border: 1px solid #000000;
---*/
	}
/*---
.TOP-memberlist td{
	border-collapse: collapse;
	border: 1px solid #000000;
	}
---*/
.TOP-memberlist img{
	width: 40%;
}

.player-space1{
    height: 120px;    
    }
.player-space2{
    height: 150px;    
    }

.TOP-player-banner{
width: 20%;
background: #528ECB;
margin: 10px 10px -10px;
  padding: 1%;
}
.TOP-memberlist .flexbox{
    display: -webkit-flex;
    display: flex;
  }
/*----------個人プロフページ（TOP）----------*/
.flexbox5{
	width: 90%;
	margin:0 auto;
    display: -webkit-flex;
    display: flex;	
}
.flexbox5 .profdata{
	margin-left: 20px;
	font-size: 20px;
}
.flexbox5-1{
	margin:0 auto;
    display: -webkit-flex;
    display: flex;	
}
.flexbox5 .radar-chart-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 230px;
    height: 230px;
    margin: 0 auto;
    padding: 35px;
    box-sizing: content-box;
}
.flexbox5 .radar-chart-2 svg {
    width: 100%;
    height: 100%;
}
.flexbox5 .radar-chart-2 dl {
    position: absolute;
    width: 100%;
    height: 100%;
}
.flexbox5 .radar-chart-2 dl > div {
    position: absolute;
    color: #000000;
    font-size: 15px;
    text-align: center;
}
.flexbox5 .radar-chart-2 dl > div:nth-child(1) {
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
}
.flexbox5 .radar-chart-2 dl > div:nth-child(2) {
    top: 31%;
    right: -3%;
    transform: translateX(50%);
}
.flexbox5 .radar-chart-2 dl > div:nth-child(3) {
    bottom: 0;
    right: 25%;
    transform: translateX(50%);
}
.flexbox5 .radar-chart-2 dl > div:nth-child(4) {
    bottom: 0;
    left: 25%;
    transform: translateX(-50%);
}
.flexbox5 .radar-chart-2 dl > div:nth-child(5) {
    top: 31%;
    left: 3%;
    transform: translateX(-50%);
}
.flexbox5 .radar-chart-2 dd {
    margin: 0;
}
.radar-chart-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 230px;
    height: 230px;
    margin: 0 auto;
    padding: 35px;
    box-sizing: content-box;
}
.radar-chart-3 svg {
    width: 100%;
    height: 100%;
}
.radar-chart-3 dl {
    position: absolute;
    width: 110%;
    height: 110%;
}
.radar-chart-3 dl > div {
    position: absolute;
    color: #000000;
    font-size:15px;
    text-align: center;
}
.radar-chart-3 dl > div:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.radar-chart-3 dl > div:nth-child(2) {
    top: 24%;
    right: 10%;
    transform: translateX(50%);
}
.radar-chart-3 dl > div:nth-child(3) {
    bottom: 24%;
    right: 5%;
    transform: translateX(50%);
}
.radar-chart-3 dl > div:nth-child(4) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.radar-chart-3 dl > div:nth-child(5) {
    bottom: 24%;
    left: -2%;
    transform: translateX(-50%);
}
.radar-chart-3 dl > div:nth-child(6) {
    top: 24%;
    left: 10%;
    transform: translateX(-50%);
}
.radar-chart-3 dd {
    margin: 0;
}

/*----------チャントページ（ウイングス）----------*/
.WINGS-chant-bg{
	position: relative;
	width: 80%;
	margin-top: -1300px;
	z-index: 1;
	opacity: 0.7;
}
.WINGS-memberlist {
	font-size: 25px;
font-weight: 550;
	position: relative;
	z-index: 2;
	width: 80%;
	margin: 140px auto 0;
/*---
	border-collapse: collapse;
	border: 1px solid #000000;
---*/
	}
/*---
.WINGS-memberlist td{
	border-collapse: collapse;
	border: 1px solid #000000;
	}
---*/
.WINGS-memberlist img{
	width: 40%;
}

.WINGS-memberlist .player-space1{
    height: 120px;    
    }
.WINGS-memberlist .player-space2{
    height: 200px;    
    }

.WINGS-player-banner{
width: 20%;
background: #E30048;
margin: 10px 10px -10px;
  padding: 1%;
}
.WINGS-memberlist .flexbox{
    display: -webkit-flex;
    display: flex;
  }

/*----------個人プロフページ（ウイングス）----------*/
.flexbox6{
	width: 90%;
	margin:0 auto;
    display: -webkit-flex;
    display: flex;	
}
.flexbox6 .profdata{
	margin-left: 20px;
	font-size: 20px;
}
.flexbox6-1{
	margin:0 auto;
    display: -webkit-flex;
    display: flex;
}
.flexbox6 .radar-chart-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 230px;
    height: 230px;
    margin: 0 auto;
    padding: 35px;
    box-sizing: content-box;
}
.flexbox6 .radar-chart-2 svg {
    width: 100%;
    height: 100%;
}
.flexbox6 .radar-chart-2 dl {
    position: absolute;
    width: 100%;
    height: 100%;
}
.flexbox6 .radar-chart-2 dl > div {
    position: absolute;
    color: #000000;
    font-size: 15px;
    text-align: center;
}
.flexbox6 .radar-chart-2 dl > div:nth-child(1) {
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
}
.flexbox6 .radar-chart-2 dl > div:nth-child(2) {
    top: 31%;
    right: -3%;
    transform: translateX(50%);
}
.flexbox6 .radar-chart-2 dl > div:nth-child(3) {
    bottom: 0;
    right: 25%;
    transform: translateX(50%);
}
.flexbox6 .radar-chart-2 dl > div:nth-child(4) {
    bottom: 0;
    left: 25%;
    transform: translateX(-50%);
}
.flexbox6 .radar-chart-2 dl > div:nth-child(5) {
    top: 31%;
    left: 3%;
    transform: translateX(-50%);
}
.flexbox6 .radar-chart-2 dd {
    margin: 0;
}

/*----------NEWSトップ・NEWSページ----------*/
.news-top h1{
	text-align: center;
}
.news-list{
	width: 80%;
	margin: 0 auto;	
}
.news-list ul{
margin:-15px 0 0 -25px; 
}
.news-list li{
margin-bottom: 5px;
}
.news-detail{
    width: 80%;
	margin: 15px auto 0;		
}

/*----------活動報告トップ・活動報告ページ----------*/
.report-top h1{
	text-align: center;
}
.report-list{
	width: 80%;
	margin: 0 auto;	
}
.report-list ul{
margin:-15px 0 0 -25px; 
}
.report-list li{
margin-bottom: 5px;
}
.report-detail{
    width: 80%;
	margin: 15px auto 0;		
}




/*----------メディアクエリ（PCファースト）スマートフォン用CSS（320px～480px） ※画面幅480px以下の場合適用----------*/
@media screen and (max-width:480px){

/*----------全体----------*/
body{
font-family:"Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans","ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, Osaka, "MS Pゴシック", MS PGothic, sans-serif !important;
color:#000000 !important;
font-size:7px !important;
margin: auto !important;
text-size-adjust: 100% !important;
-webkit-text-size-adjust: 100% !important;/* Safari */
}
.img-alltop{
width:100% !important;
position:relative !important;
z-index:1 !important;	
}
.top-space{
width:100% !important;
height:50px !important;
opacity: 0 !important;
}
.hrstyle{
	margin-top: 50px !important;
	width: 90% !important;
}
section.pc-display{
display:none !important;
}
section.mp-display{
display:block !important;
}

/*----------ヘッダー----------*/
header{
width:100% !important;
background-color:#17217A !important;
height:50px !important;
position:fixed !important;
z-index:23 !important;	
}	
#nav-drawer{
position:relative !important;
}

/*チェックボックス等は非表示に*/
.nav-unshown{
display:none !important;
}

/*アイコンのスペース*/
#nav-open{
display:inline-block !important;
width:50px !important;
height:22px !important;
vertical-align:middle !important;
cursor: pointer !important;
position:relative !important;
margin-top:15px !important;
margin-right:-10px !important;
}

/*ハンバーガーの形をCSSで表現*/
#nav-open div, #nav-open div:before, #nav-open div:after{
position:absolute !important;
height:3px !important;/*線の太さ*/
width:25px !important;/*長さ*/
border-radius:3px !important;
background:#ffffff !important;
display:block !important;
content:'' !important;
cursor:pointer !important;
-webkit-transform: rotate(0) !important;
transform: rotate(0) !important;
transition: all 0.3s ease-in-out !important;
}

#nav-open div:before{
bottom:-8px !important;
}

#nav-open div:after{
bottom:-16px !important;
}

/*閉じる用の薄黒箇所*/
#nav-close{
display:none !important;
position:fixed !important;
z-index:99 !important;
top:0 !important;
left:0 !important;
width:100% !important;
height:100% !important;
background:black !important;
opacity:0 !important;
transition:.3s ease-in-out !important;
}

/*メニューの中身*/
#nav-content{
overflow:auto !important;
position:fixed !important;
top:0px !important;
right:50px !important;
z-index:9999 !important;
width:90% !important;
max-width:210px !important;/*最大幅（お好みで調整を）*/
height:95% !important;
background:#17217A !important;
transition:.3s ease-in-out !important;
-webkit-transform:translateX(200%) !important;
transform:translateX(200%) !important;
}

/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close{
display:block !important;
opacity:0.5 !important;
}

#nav-input:checked ~ #nav-content{
-webkit-transform:translateX(0%) !important;
transform:translateX(0%) !important;
box-shadow:6px 0 25px rgba(0,0,0,.15) !important;
}

.header-logo-menu{
display:flex !important;
display:-moz-flex !important;
display:-o-flex !important;
display:-webkit-flex !important;
display:-ms-flex !important;
flex-direction:row-reverse !important;
-moz-flex-direction:row-reverse !important;
-o-flex-direction:row-reverse !important;
-webkit-flex-direction:row-reverse !important;
-ms-flex-direction:row-reverse !important;
}

/*バツメニュー*/
#nav-input:checked ~ #nav-open div{
background:rgba(51, 51, 51, 0) !important;
}

#nav-input:checked ~ #nav-open div::before,#nav-input:checked ~ #nav-open div::after{
content:"" !important;
display:block !important;
height:100% !important;
left:50% !important;
margin:8px 0px 0px -10px !important;
position:absolute !important;
top:50% !important;
width:100% !important;
}

#nav-input:checked ~ #nav-open div::before{
-webkit-transform:rotate(-45deg) !important;
transform:rotate(-45deg) !important;
}

#nav-input:checked ~ #nav-open div::after{
-webkit-transform:rotate(45deg) !important;
transform:rotate(45deg) !important;
}

img.img-wandh{
width:15px !important;
height:15px !important;
vertical-align:middle !important;
padding-left: 10px !important;
}

div.header-inner10{
line-height:30px !important;
font-size:14px !important;
font-weight:bold !important;
margin-top:30px !important;
margin-left:10px !important;
}

div.header-inner11{
font-size:14px !important;
font-weight:bold !important;
margin-top:5px !important;
margin-left:10px !important;
margin-bottom:5px !important;
}

div.header-inner12{
line-height:30px !important;
font-size:14px !important;
font-weight:bold !important;
margin-top:0px !important;
margin-left:10px !important;
}

/*ロゴやサイトタイトルをセンタリング*/
.logo-area{
text-align:center !important;
margin:auto !important;
}    

/*----------フッダー----------*/
.linkitem{
	font-size: 12px !important;
	font-weight: bold !important;
	color: #000000 !important;
	text-align: center !important;
}
.footer-link{
	margin: -10px auto 30px auto !important;
	width: 90% !important;	
}
.footer-link td{
	width: 33% !important;
	padding: 5px !important;
	text-align: center !important;
	text-decoration:underline !important;
}
.link-color a{
	color: #000000 !important;
}
.Copyright{
	font-size: 7px !important;
	text-align: center !important;
}

/*----------TOPページ----------*/
/*----------カルーセルスライドショー----------*/
.carousel{
position: relative !important;
width:100% !important;
margin: 0 auto !important;
background:#ffffff !important;
}
.img-index{
width:100% !important;
position:relative !important;
opacity: 0;
}
.in img{
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    opacity: 0;
    transition: .5s;
    z-index: 0;
}
img{
    display: block;
    width: 100% !important;
    height: auto !important;
}
input{
    display: none;
}
.in{
    display: flex;
    justify-content: center !important;
}
label span{
    display: block;
    width: 15px !important;
    height: 15px !important;
    padding: 7px !important;
    margin: -40px 0 0 !important;
    border-radius: 100% !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 2;
}
label span::before{
    content: "" !important;
    display: block;
    width: 100% !important;
    height: 100% !important;
    background: #4287f5;
    opacity: 0.5;
    border-radius: 100% !important;
}   
input:nth-of-type(1):checked ~ .in label:nth-of-type(1) span::before,
input:nth-of-type(2):checked ~ .in label:nth-of-type(2) span::before,
input:nth-of-type(3):checked ~ .in label:nth-of-type(3) span::before{
    background: #ff0000;
    opacity: 1;
}
label span::before{
    animation: slidebutton 16.5s infinite;
}
@keyframes slidebutton{
0%{opacity: 0.5; background: #4287f5;}
3%{opacity: 1; background: #ff0000;}/* b÷x×100=y */
33.3%{opacity: 1; background: #ff0000;}/* 100÷c=z */
36.3%{opacity: 0.5; background: #4287f5;}/* y+z */
100%{opacity: 0.5; background: #4287f5;}
} 
label:nth-of-type(2) span::before,label:nth-of-type(2) img{
    animation-delay: 5.5s ;
}            
label:nth-of-type(3) span::before,label:nth-of-type(3) img{
    animation-delay: 11s;
}                        
input:nth-of-type(1):checked ~ .in label:nth-of-type(1) img,
input:nth-of-type(2):checked ~ .in label:nth-of-type(2) img,
input:nth-of-type(3):checked ~ .in label:nth-of-type(3) img{
    opacity: 1;
    z-index: 1;
}
.in img{
    animation: slide 16.5s infinite;/* (a+b)×c=x */
    opacity: 0;
}
@keyframes slide{
    0%{opacity: 0; display:block;}
    3%{opacity: 1;z-index:1;}/* b÷x×100=y */
    33.3%{opacity: 1;}/* 100÷c=z */
    36.3%{opacity: 0; display:none;}/* y+z */
    100% { opacity:0; }
}
input:checked ~ .in img,input:checked ~ .in span::before{
    animation: none !important;
}
.in:hover img,.in:hover span::before{
    animation-play-state:paused !important;/* マウスを載せると一時停止 */
}		

/*----------トピックス・Xフレックス----------*/
.topics {
  width: 80% !important;
  background: #ffffff !important;
  margin: 0 auto !important;
}
/*---
.Xtimeline {
background: #ffffff !important;
}
.topics,
.Xtimeline {
  padding: 2% !important;
}
---*/
.flexbox {
    display: -webkit-flex !important;
    display: flex !important;
  }
.topics .table-size{
	width: 100% !important;
	border:solid 4px #990000 !important;
	border-collapse:collapse !important;	
}
.topics .thposition{
vertical-align:middle !important;
border:solid 4px #990000 !important;
	background-color:#990000 !important;
}
.topics .fontstyle{
font-family: Letter Gothic Std !important;
color:#ffffff !important;
}
.topics .tdposition{
background-color:#ffffff !important;
vertical-align:middle !important;
font-size: 7px !important;
}
.topics .topics-logo{
width: 8% !important;
	float: left !important;
margin: 10px 10px 0 10px !important;
	padding-right: 10px !important;
vertical-align: middle !important;
border-right: 2px #000000 solid !important;
}
.topics .topics-logo2{
width: 8% !important;
	float: left !important;
margin:  15px 10px 0 10px !important;
	padding-right: 10px !important;
vertical-align: middle !important;
border-right: 2px #000000 solid !important;
}
.topics .topics-link{
padding-top: 18px !important;
}
.topics .topics-link2{
padding-top: 22px !important;
}
.topics .news-link{
	padding: 20px 20px 5px 0 !important;
	text-align: right !important;
	 text-decoration:underline !important;
}

/*----------タブ切り----------*/
.tab-wrap {
  display: flex !important;
  flex-wrap: wrap !important;
margin-top:3px !important;
}
.tab-wrap:after {
  content: '' !important;
  margin-top: -20px !important;
  background: #ffffff !important;
  display: block !important;
  order: -1 !important;
}
.tab-label1,.tab-label2 {
  color: White !important;
  font-size: 14px !important;
　font-weight: bold !important;
  border-top: solid 2px #bfbfbf !important;
  border-left: solid 2px #bfbfbf !important;
  border-right: solid 2px #bfbfbf !important;
  background: #bfbfbf !important;
  white-space: nowrap !important;
  text-align: center !important;
  padding: 10px .5em !important;
  order: -1 !important;
  position: relative !important;
  z-index: 1 !important;
  cursor: pointer !important;
  border-radius: 5px 5px 0 0 !important;
  flex: 1 !important;
}
.tab-label1:not(:last-of-type), .tab-label2:not(:last-of-type){
  margin-right: 5px !important;
}
.tab-content1,.tab-content2 {
  width: 100% !important;
  height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
}
/* アクティブなタブ */
.tab-switch1:checked+.tab-label1 {
  color: #ffffff !important;
  font-size: 14px !important;
  border-top: solid 2px #0000ff !important;
  border-left: solid 2px #0000ff !important;
  border-right: solid 2px #0000ff !important;
  background: #528ECB !important;
}
.tab-switch2:checked+.tab-label2 {
  color: #ffffff !important;
  font-size: 14px !important;
  border-top: solid 2px #ff0000 !important;
  border-left: solid 2px #ff0000 !important;
  border-right: solid 2px #ff0000 !important;
  background: #E30048 !important;
}
.tab-switch1:checked+.tab-label1+.tab-content1{
  height: auto !important;
  overflow: auto !important;
  padding: 15px !important;
  opacity: 1 !important;
  transition: 0.5s opacity !important;
  box-shadow: 0 0 3px rgba(0,0,0,.2) !important;
  border: solid 2px #0000ff !important;
}
.tab-switch2:checked+.tab-label2+.tab-content2 {
  height: auto !important;
  overflow: auto !important;
  padding: 15px !important;
  opacity: 1 !important;
  transition: 0.5s opacity !important;
  box-shadow: 0 0 3px rgba(0,0,0,.2) !important;
  border: solid 2px #ff0000 !important;
}
/* ラジオボタン非表示 */
.tab-switch1,.tab-switch2 {
  display: none !important;
}	
/* コンテンツ内*/
.video1 {
  margin: 0 5px 0 0 !important;
}
.video1,
.video2 {
  padding: 2% !important;
}
.listitem img{
	width: 40% !important;
}
.listitem2 img{
	width: 35% !important;
}
.listitem3 img{
	width: 30% !important;
}
.jump{
border: 2px #528ECB solid !important;
	display: inline-block !important;
	padding: 5px 5px 5px 8px !important;
	 border-radius: 10px !important;
    margin-top: 5px !important;
}
.chant-link{
	 float: right !important;
	margin-top: -10px !important;
	 text-decoration:underline !important;
}

/*----------活動報告----------*/
.background{
	position: relative !important;
	z-index: 1 !important;
	opacity: 0.3 !important;
}
.activity{
		position: relative !important;
	margin-top: -170px !important;
	z-index: 5;
}
.headitem{
	font-size: 14px !important;
	font-weight: bold !important;
	color: #ffffff !important;
    background-color: #528ECB !important;
    width:fit-content !important;	
    margin:0 auto 5px !important;
	padding: 5px 0 5px 5px!important;
	border-radius: 10px !important;
}
.activity .table-size{
	width: 70% !important;
	margin: 0 auto !important;
	border:solid 1px #528ECB !important;
	background-color: #528ECB !important;
	border-collapse:collapse !important;
}
.activity .tdposition{
padding: 15px 10px 10px 10px !important;
background-color: #528ECB !important;
vertical-align:middle !important;
font-size: 7px !important;
}
.activity-image{
width: 10% !important;
float: left !important;
margin: 0 15px 0 0 !important;
padding-right: 15px !important;
vertical-align: middle !important;
border-right: 2px #ffffff solid !important;
}
.snap-link a{
color: #ffffff !important;
}
.activity-link{
	color: #ffffff !important;
	padding: 20px 0px 5px 0 !important;
	text-align: right !important;
	 text-decoration:underline !important;
}
.activity-link a{
	color: #ffffff !important;
}

/*----------スペシャル----------*/
.background2{
	margin-top: 300px !important;
	position: relative !important;
	z-index: 1 !important;
	opacity: 0.3 !important;
}
.special{
		position: relative !important;
	margin-top: -450px !important;
	z-index: 5 !important;
}
.special .headitem{
	font-size: 16px !important;
	font-weight: bold !important;
	color: #ffffff !important;
    background-color: #E30048 !important;
    width:fit-content !important;	
    margin:0 auto 5px !important;
	padding: 5px 8px !important;
	border-radius: 10px !important;
}
.special .frame-size{
	width: 70% !important;
	height: auto !important;
	margin: 0 auto !important;
	padding: 15px 5px !important;
	border:solid 1px #E30048 !important;
	background-color: #E30048 !important;
}
.sp1,
.sp2,
.sp3,
.sp4,
.sp5,
.sp6,
.sp7,
.sp8{
  width: 50% !important;
  background: #ffffff !important;
  margin: 5px 10px 5px 10px !important;
  box-shadow: 5px 5px 10px !important;
  border:3px #CBAE69 solid !important;
  transition-duration: 0.0s !important;
}
.flexbox3 {
    display: -webkit-flex !important;
    display: flex !important;
  }
.flexbox4 {
    display: -webkit-flex !important;
    display: flex !important;
  }
.sp1:hover,
.sp2:hover,
.sp3:hover,
.sp4:hover,
.sp5:hover,
.sp6:hover,
.sp7:hover,
.sp8:hover {
  transform: scale(1.0) !important;
}
.sp-btn{
	text-align: center !important;
	color: #000000 !important;
font-size: 10px !important;
font-weight: bold !important;
transform: skewX(-20deg) !important;
}
.sp-btn2{
	text-align: center !important;
	color: #000000 !important;
font-size: 6px !important;
font-weight: bold !important;
transform: skewX(-20deg) !important;
}
    
/*----------ABOUTページ----------*/
.about-TOP{
	width: 100% !important;
}
.about-text{
	position: relative !important;
	margin: 0 auto !important;
	font-size: 7px !important;
}
.about-text h3{
	text-align: left !important;
	margin-bottom: 0 !important;
}
.policy{
	margin-top: 0 !important;
	margin-left: -25px !important;
}
.policy li{
	list-style-type:none !important;
	text-indent: -1em !important;
}
.detail{
	margin-top: 0 !important;
	margin-left: -25px !important;
}
.about-white{
  position: relative !important;
  width: 60% !important;
  	margin: 20px auto 0 !important;
  padding: 20px 20px 5px 20px !important;
	background-color: rgba(255,255,255,0.6) !important;
	z-index: 1 !important;
}
.about-bg::after {
	content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  opacity: 0.5 !important;
  width: 100% !important;
  height:580px !important;
  background-image:url('../images/about/aboutbg.jpg') !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center top 190px !important;
	z-index: 0 !important;
	}

/*----------チャントページ----------*/
.chant-banner1{
width: 50% !important;
background: #528ECB !important;
margin: 15px 5px !important;
}
.chant-banner2{
width: 50% !important;
background: #E30048 !important;
margin: 15px 5px !important;
}
.chant-banner3{
width: 50% !important;
background: #FF0033 !important;
margin: 15px 5px !important;
}
.chant-banner4{
width: 50% !important;
background: #17217A !important;
margin: 15px 5px !important;
}
.chant-banner1,
.chant-banner2,
.chant-banner3,
.chant-banner4{
  padding: 1% !important;
}
.yt-size{
	width: 20% !important;
	float: left !important;
    margin-top: 3px !important;
}
.chant-prof .flexbox{
    display: -webkit-flex !important;
    display: flex !important;
  }
.chant-prof h1{
	text-align: center !important;
}
.chant-bg{
	position: relative !important;
	margin-top: -2250px !important;
	z-index: 1 !important;
}
.timetable {
	font-size: 7px !important;
font-weight: 550 !important;
  text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF !important;
	position: relative !important;
	z-index: 2 !important;
	width: 80% !important;
	margin: 0 0 0 65px !important;
/*--
	border-collapse: collapse !important;
	border: 1px solid #000000 !important;
---*/
	}
/*--
.timetable td{
	border-collapse: collapse !important;
	border: 1px solid #000000 !important;
	}
---*/
.timetable .hrstyle{
	margin-top: 10px !important;
	width: 90% !important;
    }

/*----------チャントページ（TOP）----------*/
.TOP-chant-bg{
	position: relative !important;
	width: 100% !important;
	margin-top: -540px !important;
	z-index: 1 !important;
	opacity: 0.7 !important;
}
.TOP-memberlist {
	font-size: 7px !important;
font-weight: 550 !important;
	position: relative !important;
	z-index: 2 !important;
	width: 90% !important;
	margin: 55px auto 50px !important;
/*---
	border-collapse: collapse !important;
	border: 1px solid #000000 !important;
---*/
	}
/*---
.TOP-memberlist td{
	border-collapse: collapse !important;
	border: 1px solid #000000 !important;
	}
---*/
.TOP-memberlist img{
	width: 40% !important;
}

.TOP-memberlist .player-space1{
    height: 40px !important;    
    }
.TOP-memberlist .player-space2{
    height: 40px !important;    
    }
    
.TOP-player-banner{
width: 20% !important;
background: #528ECB !important;
margin: 3px 3px -3px !important;
  padding: 1% !important;
}
.TOP-memberlist .flexbox{
    display: -webkit-flex !important;
    display: flex !important;
  }
/*----------個人プロフページ（TOP）----------*/
.playername{
        font-size: 14px;
        margin-left: 20px;
        margin-bottom: -40px;
        color: #528ECB;
    } 
.profbox{
	width: 90% !important;
	margin:0 auto !important;
}
.playerphoto{
    width: 250px !important;
    margin: 0 auto !important;  
    }
.playervideo{
    text-align: center !important;      
    }   
.profbox .profdata{
	margin-left: 20px !important;
	font-size: 10px !important;
}
.profbox-1{
	margin:0 auto !important;
    display: -webkit-flex !important;
    display: flex !important;	
}
.profbox .radar-chart-2 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    width: 200px !important;
    height: 200px !important;
    margin: 0 auto !important;
    padding: 35px !important;
    box-sizing: content-box !important;
}
.profbox .radar-chart-2 svg {
    width: 100% !important;
    height: 100% !important;
}
.profbox .radar-chart-2 dl {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
}
.profbox .radar-chart-2 dl > div {
    position: absolute !important;
    color: #000000 !important;
    font-size: 12px !important;
    text-align: center !important;
}
.profbox .radar-chart-2 dl > div:nth-child(1) {
    top: -5% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}
.profbox .radar-chart-2 dl > div:nth-child(2) {
    top: 31% !important;
    right: -3% !important;
    transform: translateX(50%) !important;
}
.profbox .radar-chart-2 dl > div:nth-child(3) {
    bottom: 0 !important;
    right: 25% !important;
    transform: translateX(50%) !important;
}
.profbox .radar-chart-2 dl > div:nth-child(4) {
    bottom: 0 !important;
    left: 25% !important;
    transform: translateX(-50%) !important;
}
.profbox .radar-chart-2 dl > div:nth-child(5) {
    top: 31% !important;
    left: 3%v !important;
    transform: translateX(-50%) !important;
}
.profbox .radar-chart-2 dd {
    margin: 0 !important;
}
.radar-chart-3 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    width: 1+0px !important;
    height: 190px !important;
    margin: 0 auto !important;
    padding: 35px !important;
    box-sizing: content-box !important;
}
.radar-chart-3 svg {
    width: 100% !important;
    height: 100% !important;
}
.radar-chart-3 dl {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
}
.radar-chart-3 dl > div {
    position: absolute !important;
    color: #000000 !important;
    font-size:10px !important;
    text-align: center !important;
}
.radar-chart-3 dl > div:nth-child(1) {
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}
.radar-chart-3 dl > div:nth-child(2) {
    top: 24% !important;
    right: 10% !important;
    transform: translateX(50%) !important;
}
.radar-chart-3 dl > div:nth-child(3) {
    bottom: 24% !important;
    right: 5% !important;
    transform: translateX(50%) !important;
}
.radar-chart-3 dl > div:nth-child(4) {
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}
.radar-chart-3 dl > div:nth-child(5) {
    bottom: 24% !important;
    left: 2% !important;
    transform: translateX(-50%) !important;
}
.radar-chart-3 dl > div:nth-child(6) {
    top: 24% !important;
    left: 10% !important;
    transform: translateX(-50%) !important;
}
.radar-chart-3 dd {
    margin: 0 !important;
}

/*----------チャントページ（ウイングス）----------*/
.WINGS-chant-bg{
	position: relative !important;
	width: 100% !important;
	margin-top: -520px !important;
	z-index: 1 !important;
	opacity: 0.7 !important;
}
.WINGS-memberlist {
	font-size: 7px !important;
font-weight: 550 !important;
	position: relative !important;
	z-index: 2 !important;
	width: 90% !important;
	margin: 60px auto 30px !important;
/*---
	border-collapse: collapse !important;
	border: 1px solid #000000 !important;
---*/
	}
/*---
.WINGS-memberlist td{
	border-collapse: collapse !important;
	border: 1px solid #000000 !important;
	}
---*/
.WINGS-memberlist img{
	width: 40% !important;
}

.WINGS-memberlist .player-space1{
    height: 40px !important;    
    }
.WINGS-memberlist .player-space2{
    height: 80px !important;    
    }
    
.WINGS-player-banner{
width: 20% !important;
background: #E30048 !important;
margin: 3px 3px -3px !important;
  padding: 1% !important;
}
.WINGS-memberlist .flexbox{
    display: -webkit-flex !important;
    display: flex !important;
  }
/*----------個人プロフページ（ウイングス）----------*/
.playername2{
        font-size: 14px;
        margin-left: 20px;
        margin-bottom: -40px;
        color: #E30048;
    } 
.profbox2{
	width: 90% !important;
	margin:0 auto !important;
}
.playerphoto2{
    width: 250px !important;
    margin: 0 auto !important;  
    }
.playervideo2{
    text-align: center !important;      
    }   
.profbox2 .profdata{
	margin-left: 20px !important;
	font-size: 10px !important;
}
.profbox-2{
	margin:0 auto !important;
    display: -webkit-flex !important;
    display: flex !important;	
}       
.profbox2 .radar-chart-2 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    width: 200px !important;
    height: 200px !important;
    margin: 0 auto !important;
    padding: 35px !important;
    box-sizing: content-box !important;
}
.profbox2 .radar-chart-2 svg {
    width: 100% !important;
    height: 100% !important;
}
.profbox2 .radar-chart-2 dl {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
}
.profbox2 .radar-chart-2 dl > div {
    position: absolute !important;
    color: #000000 !important;
    font-size: 12px !important;
    text-align: center !important;
}
.profbox2 .radar-chart-2 dl > div:nth-child(1) {
    top: -5% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}
.profbox2 .radar-chart-2 dl > div:nth-child(2) {
    top: 31% !important;
    right: -3% !important;
    transform: translateX(50%) !important;
}
.profbox2 .radar-chart-2 dl > div:nth-child(3) {
    bottom: 0 !important;
    right: 25% !important;
    transform: translateX(50%) !important;
}
.profbox2 .radar-chart-2 dl > div:nth-child(4) {
    bottom: 0 !important;
    left: 25% !important;
    transform: translateX(-50%) !important;
}
.profbox2 .radar-chart-2 dl > div:nth-child(5) {
    top: 31% !important;
    left: 3%v !important;
    transform: translateX(-50%) !important;
}
.profbox2 .radar-chart-2 dd {
    margin: 0 !important;
}

/*----------NEWSトップ・NEWSページ----------*/
.news-top h1{
	text-align: center !important;
}
.news-list{
	width: 80% !important;
	margin: 0 auto 500px !important;	
}
.news-list ul{
margin:-5px 0 0 -25px !important; 
}
.news-list li{
margin-bottom: 5px !important;
}
.news-detail{
    width: 80% !important;
	margin: 15px auto 0 !important;		
}

/*----------活動報告トップ・活動報告ページ----------*/
.report-top h1{
	text-align: center !important;
}
.report-list{
	width: 80% !important;
	margin: 0 auto 500px !important;	
}
.report-list ul{
margin:-5px 0 0 -25px !important; 
}
.report-list li{
margin-bottom: 5px !important;
}
.report-detail{
    width: 80% !important;
	margin: 15px auto 0 !important;		
}     
    
}

  
	
