/* StudioOne Fukuda : about.css */


/*======================================================================*
 *  [ staffList | スタッフリスト ] 
 *======================================================================*/

.staffList {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
	margin: 0 -10px;
}
.staffList section {
	width: 33.33333333%;
	margin-top: 0;
	padding: 0 10px;
	box-sizing: border-box;
}

/* [ 名前 ] */
.staffList h4 span {
	display: inline-block;
}

/* [ ひとこと ] */
.staffList p {
	margin: 10px 0 20px 0;
	font-size: 1.4rem; /* 14px */
	line-height: 1.4;
}


/*======================================================================*
 *  [ accessText | アクセス ] 
 *======================================================================*/

/* [ 見出し ] */
.accessText dt {
	padding: 10px 0;
	border-bottom: 1px solid #d8d6d0;
	color: #966731;
}
.accessText dd + dt {
	margin-top: 15px;
}

/* [ 詳細 ] */
.accessText dd {
	padding: 10px 0;
	font-size: 1.4rem; /* 14px */
}



/*+ [ 768px 以下 ] +++++++++++++++++++++++++++++++++++++++++++++++++++++*/

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

/*======================================================================*
 *  [ staffList | スタッフリスト ] 
 *======================================================================*/

.staffList section {
	width: 50%;
}

} /* */


/*+ [ 568px 以下 ] +++++++++++++++++++++++++++++++++++++++++++++++++++++*/

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


} /* */


/*+ [ 480px 以下 ] +++++++++++++++++++++++++++++++++++++++++++++++++++++*/

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

/*======================================================================*
 *  [ staffList | スタッフリスト ] 
 *======================================================================*/

.staffList section {
	width: 100%;
}

} /* */


