@charset "UTF-8";

/*ゲスト講師*/
.guest_box{
	display: flex;
	justify-content: space-between;
}

.guest_photo{
	width:25%;
	text-align: left;
}

.guest_text{
	width:70%;
	text-align: left;
}

/*審査員*/
.judge_box{
	display: flex;
	justify-content: space-between;
	flex-wrap:wrap;
}

.judge_box_inner{
	width:48%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}

.judge_photo{
	width:30%;
	text-align: left;
}

.judge_text{
	width:65%;
	text-align: left;
}



@media screen and (max-width: 750px){
	/*審査員*/
	.judge_box{
	display: block;
	justify-content: space-between;
	flex-wrap:wrap;
	}

	.judge_box_inner{
	width:100%;
	}

}