strong {
	color: #E60004;
	font-weight: bold;
}

/* -----------------------------------------------------
　contents
----------------------------------------------------- */
.top_layout {
	padding: 50px;
}
.top_layout:first-of-type {
	padding: 0;
}
/*
.top_layout:nth-of-type(2n) {
	background: #fff0f2;
}
*/
.top_visual {
	margin: 0 auto 20px;
	text-align: center;
}

/*  終了文言
----------------------------------------------------- */
.greeting {
	margin: 0 auto 30px;
	text-align: center;
}
.greeting p {
	background: #DA1E1E;
	color: #ffffff;
	display: inline-block;
	padding: 10px;
	width: 60%;
}


/* =======================================================
	カード式
======================================================= */
.list {
    width:100%;
	margin: 0 auto 20px;
}

/*タイルレイアウト上下左右の余白*/
.list-box {
	background: #FFFFFF;
	border: 1px solid #ababab;
	box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
	-moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
	-webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
	-o-box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
	-ms-box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
	min-height: 326px;
    margin: 0 20px 30px;
	height: 350px;
}

/*サムネイル画像を固定サイズにしたいなら無くてもok*/
.list-img {
	max-height: 180px;
	overflow: hidden;
    width: 320px;
}

/*画像の大きさ widthは必須。heightを指定すると高さが異なるタイルレイアウトにはなりません。*/
.list-img img {
	height: 180px;
	width: 320px;
}

/*テキストエリアの大きさ*/
.list-text{
    width: 320px;
	height:  170px;
}
/*テキストの属性など*/
.list-text dl {
	padding: 25px;
}
.list-text dt {
	font-weight: bold;
	margin: 0 0 8px;
}
.list-text dt strong {
	color: #D02427;
}
.list-text dd {
	margin: 0;
}
.list-text dd span {
	font-weight: bold;
}

/* 画像アニメーション */
.list-img img,
.next-img img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.list-img:hover img,
.next-img:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

/* 画像なし・テキストのみ */
.list-box_text {
}
.list-box_text .border_box_white {
	padding: 20px;
}
.list-box_title {
	background: url(../img/bg_seminar.png) no-repeat 50% 54% #4AD1BA;	
}
.list-box_text .list-tt {
	border: 1px solid #ffffff;
	font-size: 22px;
	font-weight: bold;
	height: 140px;
	text-align: center;
	position: relative;
	width: 100%;
	
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.list-box_text .list-tt:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.list-box_text .list-tt p {
	display: inline-table;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%); /* Safari用 */
	transform: translate(-50%, -50%);
}
.list-box_text .list-text {
	padding: 25px;
}


/* 文字数が多い場合の調整用*/
.t2 dd {
	padding-bottom: 1.4em;	
}
.t3 dd {
	padding-bottom: 3em;	
}

/* マウスオーバー　アニメーション */
.hvr-icon-wobble-horizontal {
	padding: 0;	
}
.hvr-icon-wobble-horizontal:before {
	content: "\f061";
	font-size: 16px;
    font-family: "FontAwesome";
	right: 0.3em;
	bottom: 0.2em;
}

/* 右下三角ラベル */
.triangle {
    position: relative;
}
.triangle:before {
	content: "";
    bottom: 0;
    right: 0;
    border-top: 2.7em solid transparent;
    border-right: 3em solid #fb9bcc; /* ラベルの色はここで変更 */
    position: absolute;
}
.triangle:after {
    display: block;
    bottom: 5px;
    transform: rotate(135deg);
    right: 0px;
    position: absolute;
}
.triangle_orange:before {
    border-right: 3em solid #ff9d40; /* ラベルの色はここで変更 */
}
.triangle_red:before {
    border-right: 3em solid #F01C1C; /* ラベルの色はここで変更 */
}


/* ======================================================= */

/* NEW アイコン */
.list-box .list-img {
	position: relative;
}
.icon {
	color: #FFFFFF;
	position: absolute;
	top: 0;
	left: 0;
	padding: 5px 15px;
	text-align: center;
}
.red {
	background: #F01C1C;
}
.orange {
	background: #ff9d40;
}
.blue {
	background: #156EB7;
}

/*  NEWS
----------------------------------------------------- */
.news {
	margin: 0 auto 30px;
	line-height: 22px;
	max-width: 1080px;
}
.news dt {
	float: left;
	margin: 0 0 5px;
	width: 100%;
}
.news dt:before {
	font-family: FontAwesome;
	content: "\f138";
	padding-right: 0.2em;
}
.news dt:first-of-type {
	border-top: 1px dashed #8c8c8c;
	padding:  15px 0 0;
	margin: 15px 0 5px;
}
.news dd {
	border-bottom: 1px dashed #8c8c8c;
	padding:  0 0 15px;
	margin: 0 0 15px;
}
.news dt span {
	background: #D02427;
	color: #FFFFFF;
	font-size: 14px;
	padding: 0 5px;
}
.news dd a {
	text-decoration: underline;
}
.news dd a:hover {
	background: #D3D3D3;
}
/*  次回予告
----------------------------------------------------- */
.next {
	margin: 0 auto;
	width: 800px;
}
.next a {
}
.next_box {
	background: #FFFFFF;
	border: 1px solid #ababab;
    margin: 0 0 30px;
	box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
	-moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
	-webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
	-o-box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
	-ms-box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}
.next .next-img {
	float: left;
	height: 180px;
	overflow: hidden;
	width: 320px;
}
.next .next-text {
	margin-left: 320px;
}
.next .next-text dl {
	margin: 0;
	padding: 30px;
	height: auto;
	width: 480px;
}
.next .next-text dt {
	font-weight: bold;
	margin: 0 0 8px;
}

/* more ボタン */
#contents .next .btn_more p {
	margin: 0 auto;
	right: 0;
}




/*===============================================
●タブレット  画面の横幅が959pxまで
===============================================*/
@media screen and (max-width:959px){

	.top_layout {
		padding: 50px 20px;
	}
	
	/* -----------------------------------------------
	 news 	
	----------------------------------------------- */
	.news {
		width: 100%;
	}
	.news dd {
		padding: 0;
	}
	.news dd:last-child {
		padding: 0 0 10px;
	}
	.news dd a {
		text-decoration: none;
		width: 100%;
	}
	.news dd a:hover {
		background: none;
	}
	.news dd a {
		display: inline-block;
		padding: 0 16px 8px 0;
		color: #000;
		vertical-align: middle;
		text-decoration: none;
		font-size: 15px;
	}

	/* -----------------------------------------------
	 次回予告
	----------------------------------------------- */
	.next {
		width: 600px;
	}
	.next .next-text dl {
		width: 100%;
	}

}


/* ===============================================
●スマートフォン  画面の横幅が640pxまで
=============================================== */
@media screen and (max-width:640px){
	
	/* =======================================================
		カード式
	======================================================= */	
	.top_layout {
		padding: 20px 10px;
	}
	.list-box{
		margin: 0 0 20px;
	}
	
	/* 文字数が多い場合の調整用*/
	.t2 dd {
		padding-bottom: 0;	
	}
	.t3 dd {
		padding-bottom: 0;	
	}
	
	/* 終了文言
	-------------------------------------------------- */
	.greeting p {
		width: 95%;
	}
	
	/* -----------------------------------------------
	 次回予告
	----------------------------------------------- */
	.next {
		width: 322px;
	}
	.next .next-img {
		float: none;
	}
	.next .next-text {
		float: none;
		margin: 0;
	}
	.next .next-text dl {
		padding: 20px;
	}
	
	
	
}