/* CSS Document */

/*隊長メッセージの囲み*/	
.message{
	margin:0 auto;
	width:95%;
	margin-top:1em;
	margin-bottom: 1em;
	padding: 0.5em 1em;
	color: #474747;
	background: #fffff0;
	border-left: double 7px #4ec4d3;
	border-right: double 7px #4ec4d3;
}

/*所在地の部分*/
#syosai{
	display:flex;
	flex-wrap: wrap;
}
/*奇数の設定*/	
#syosai li:nth-child(odd){
  flex-basis: 25%;
}
/*偶数の設定*/	
#syosai li:nth-child(even){
  flex-basis: 75%;
}
@media screen and (max-width: 767px) {
	#syosai{
		display:block;
	}
	/*奇数の設定*/	
	#syosai li:nth-child(odd){
	  width:100%;
	}
	/*偶数の設定*/	
	#syosai li:nth-child(even){
	  margin-left:1em;
	  width:90%;
	}
}
