
.seminar_box{
	padding:20px 0px;
}
.seminar_box#newSeminar .title{
	border-left:5px #00ced1 solid;
	border-bottom:1px #00ced1 solid;
}
.seminar_box#favoriteSeminar .title{
	border-left:5px #ff69b4 solid;
	border-bottom:1px #ff69b4 solid;
}
.seminar_box#attendSeminar .title{
	border-left:5px #6a5acd solid;
	border-bottom:1px #6a5acd solid;
}
.seminar_box .title{
	color:#716159;
	font-size: 16px;
	font-weight:bold;
	line-height: 32px;
	text-align: left;
	padding:0 10px;
}
/*
.seminar_box ul{
	display: table;
	table-layout: fixed;
	text-align: center;
	width: 100%;
	padding-top:10px;
}
.seminar_box li{
	display: table-cell;
	vertical-align: middle;
	padding-right:15px;
}
*/
.seminar_box ul{
	text-align: center;
	width: 100%;
	padding-top:10px;
	overflow: hidden;
}
.seminar_box li{
	vertical-align: middle;
	float:left;
	overflow: hidden;
	margin-right:15px;
}
.seminar_box li a{
	text-decoration: none;
	color:#716159;
}
.seminar_box li:last-child {
	margin-right:0px;
}
.seminar_box li .seminar_wrap{
	padding:10px;
}
.seminar_box#newSeminar li .seminar_wrap{
	border: 5px solid #afeeee;
	/* CSSのみでアニメーションさせるプロパティ（:hoverにアニメーションがかかる） */
	transition: all .3s;
}
.seminar_box#newSeminar li .seminar_wrap:hover{
	background: #dfffff;
}
.seminar_box#favoriteSeminar li .seminar_wrap{
	border: 5px solid #eeafee;
	/* CSSのみでアニメーションさせるプロパティ（:hoverにアニメーションがかかる） */
	transition: all .3s;
}
.seminar_box#favoriteSeminar li .seminar_wrap:hover{
	background: #ffdfff;
}
.seminar_box#attendSeminar li .seminar_wrap{
	border: 5px solid #8c7cef;
}
.seminar_box#attendSeminar li .seminar_wrap:hover{
	background: #e6e6fa;
}
/*
.seminar_box li .img_wrap{
	height:266px;
	width:266px;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.seminar_box li .img_wrap img{
	width:auto;
	height:auto;
	max-width:263px;
	max-height:263px;
	border: 2px solid #555;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
}
*/
.seminar_box li .img_wrap{
	height:235px;
	width:276px;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
	border: 2px solid #555;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	background-color: #555;
}
.seminar_box li .img_wrap img{
	width:auto;
	height:auto;
	max-width:276px;
	max-height:235px;
}

.seminar_box li .info_wrap .seminar_title{
	margin-top:5px;
	font-size: 16px;
	font-weight: bold;
	color:#555;
}
.seminar_box dl{
	padding:10px;
	font-size: 12px;
	height: 100px;
}
.seminar_box dt{
	width:80px;
	float:left;
	font-weight: bold;
}
.seminar_box dd{
	text-align: left;
	display:table-cell;
	line-height: 18px;
}
.seminar_box li .info_wrap .button_txt{
	display:block;
	background: #A2A2A2;
	color:#fff;
	line-height:26px;
	border-radius: 5px;		/* CSS3草案 */
	-webkit-border-radius: 5px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 5px;	/* Firefox用 */
}

.more_btn input.btnSubmit{
	width:100%;
	font-weight: bold;
	cursor: pointer;
	border: none;
	background: #888;
	color:#fff;
	padding:10px 15px;
	border-radius: 5px;		/* CSS3草案 */
	-webkit-border-radius: 5px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 5px;	/* Firefox用 */
	/* CSSのみでアニメーションさせるプロパティ（:hoverにアニメーションがかかる） */
	transition: all .3s;
}
.more_btn input.btnSubmit:hover{
	background: #A2A2A2;
}
