/*	ヘッダー	*/
header {
  width: 100%;
  z-index: 10;
  /* アニメーションの変化時間 */
  transition: 0.5s;
}
header.scroll-nav {
	background: #282F35;
}
.header-wrapper{
  color: #000000;
  width: 100%;
  height:auto;
  display: flex;
  justify-content: center;
  position: fixed;
  background-color: #ffffff;
}
.header{
  color: #000000;
  width: 90%;
  height:80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-2{
  color: #000000;
  width: 90%;
  height:100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 200px;
}
.header-wrapper.transform{
    background: rgba(255,255,255,0.9);
}

.nav-list{
  /* navの横並び */
  display: flex;
}
.nav-item{
  margin-right: 20px;
}
.nav-item:last-child{
  margin-right: 0px;
}
.nav-item a{
	font-size: 1.4rem;
	color: #363636;
	font-weight: bold;
}
.burger-btn{
  display: none;
}



/*	協賛社フッター	*/
.kyosan-footer{
	width: 100%;
	display: flex;
	flex-direction: column;
	background-color: #FCC986;;
	align-items: center;
    margin-top: -1px;
	position: relative;
	z-index: 2;
}
.kyosan-footer-top{
	background-image: url("../img/footer-bcg-img.png");
	background-repeat: round;
	height: 150px;
	width: 100%;
    margin-top: -150px;
	position: relative;
	z-index: 2;
}
.kyosan-footer-sub-ttl{
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
	max-width: 80%;
}
.footer-img01{
	width: 112px;
}
.kyosan-brand{
	width:250px;
	margin-top: 25px;
    margin-bottom: 20px;
}
.kyosan-logo-list-wrapper{
	display: flex;
	justify-content: center;
}
.kyosan-logo-list{
	display: flex;
    justify-content: center;
	max-width: 980px;
	margin: 80px 0px 80px 0px;
	flex-wrap: wrap;
}
.kyosan-logo{
    width: 14%;
    margin: 0px 10px 30px;
}
.kyosan-logo img{
	width: 100%;	
}
.kohen-kyoryoku{
	display: flex;
	justify-content: center;
	margin: 0px 0px 80px;
}
.kohen{
	display: flex;
	flex-direction: column;
}
.kyoryoku{
	display: flex;
	flex-direction: column;
}
/* トップへ戻るボタン */
.page_top_btn {
  position: fixed;
  bottom: 10px;
  right: 50px;
  font-weight: bold;
  padding: 0.7em;
  text-align: center;
  z-index: 99;
}
.page_top_btn img{
	width: 80px;
}
/* マウスオーバー時 */
.page_top_btn:hover {
}




@media screen and (max-width: 1100px) {
/*	ヘッダー	*/
	.header {
		color: #000000;
		width: 90%;
		height: 80px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0px; 
	}
	.burger-btn{
	  	display: block;
	  	width: 39px;
	  	height: 39px;
	  	position: relative;
	 	z-index: 3;
	  	background-color:transparent;
	  	border:none;
  }
/*	Humburger menu bar*/
  .bar{
	  	width: 20px;
	  	height: 1px;
	  	display: block;
	  	position: absolute;
	  	left: 50%;
	  	transform: translateX(-50%);
	  	background-color: #000000;
  }
  .bar_top{
	  	top: 10px;
  }
  .bar_mid{
	  	top: 50%;
	  	transform: translate(-50%,-50%);
  }
  .bar_bottom{
	  	bottom: 10px;
  }
  .burger-btn.close .bar_top{
	  	transform: translate(-50%,10px) rotate(45deg);
	  	transition: transform .3s;
  }
  .burger-btn.close .bar_mid{
	  	opacity: 0;
	  	transition: opacity .3s;
  }
  .burger-btn.close .bar_bottom{
	  	transform: translate(-50%,-8px) rotate(-45deg);
	  	transition: transform .3s;
  }
  .nav-wrapper{
		display: none;/*これがないと、SP版になった瞬間ハンバーガーメニューが開いた状態になる*/
		width: 100vw;
		height: 100vh;
		position: fixed;
 		top: 0;
		left: 0;
		z-index: 2;/*キービジュアルと.btn_triggerとの重なりの前後関係を調整*/
   }
   .header-nav{
		width: 100%;
		height: 100%;
		background-color:#ffffff;
		z-index: 2;
  }
   .header-nav .nav-list{
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		text-align: center;
  }
  .header-nav .nav-item{
		margin-right: 0;
		margin-bottom: 30px;
  }
	
	/*	協賛社フッター	*/
	.kyosan-logo-list {
		    width: 90%;
    margin: 50px auto;
	}
}
@media screen and  (max-width:700px){
	/*	協賛社フッター	*/
	.kyosan-logo-list {
		justify-content: space-around;
	}
	.kyosan-logo {
		width: 22%;
	}

}
@media screen and  (max-width: 570px) {
	/*	協賛社フッター	*/
	.kyosan-footer-top {
		height: 75px;
	}
}
@media screen and  (max-width: 490px) {
	/*	全ページヘッダー	*/
	.logo{
		width: 180px;
	}
	
	/*	協賛社フッター	*/
	.kyosan-footer-top{
		height: 75px;
	    margin-top: -70px;
	}
}
@media screen and  (max-width:400px){
	.kohen-kyoryoku{
		display: flex;
		justify-content: center;
		margin-bottom: 50px;
		flex-direction: column;
	}
	.kohen{
		margin-bottom: 50px;
	}
}
@media screen and  (max-width:390px){
	.page_top_btn {
		right: 0px;
	}
	
	/*	協賛社フッター	*/
	.kyosan-logo-list {
		width: 100%;
	}
	.kyosan-footer-sub-ttl {
		max-width: 90%;
	}
}