@charset "utf-8";
/* CSS Document */

/*==============================*/
/* コラム */
/*==============================*/
div.seminarWrap{
	display: flex; display: -webkit-flex;
	flex-wrap: wrap; -webkit-flex-wrap: wrap;
	gap: 40px 40px;
}

article.seminar{
	width: calc(calc(100% - 40px * 2) / 3);
}
article.seminar a{
	display: block;
	height: 100%;
	box-shadow: 1px 2px 6px 0px rgba(153,153,153,0.3);
	border-radius: 8px;
	transition: transform .2s ease, box-shadow .2s ease;
	transform-origin: center;
	will-change: transform; 
}
article.seminar a:hover {
	transform: scale(1.03);
	box-shadow: 1px 2px 16px 0px rgba(153,153,153,0.3);
}

	/* ======= TB =======*/
	@media screen and (min-width: 768px) and (max-width: 1024px) {
		div.seminarWrap{ gap: 22px 22px;}
		article.seminar{ width: calc(calc(100% - 22px * 1) / 2);}
	}
	/* ======= SP =======*/
	@media (max-width: 767px) {
		div.seminarWrap{
			flex-direction: column; -webkit-flex-direction: column;
			gap: 20px 0px;
		}

		article.seminar{
			width: 100%;
		}
	}


/*---------------------------------
   Content
---------------------------------*/
article.seminar figure{ border-bottom: 1px solid #eee;}
article.seminar figure img{
	border-radius: 8px 8px 0 0 ;
}


/*---------------------------------
   Content
---------------------------------*/
article.seminar div{
	padding: 22px 24px 24px 24px;
}

/*-- 
------------------------- */
article.seminar div h3{
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin-bottom: 18px;
	min-height: 80px;
	color: #000;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.414em;
}
	/* ======= TB =======*/
	@media screen and (min-width: 768px) and (max-width: 1024px) {
	}
	/* ======= SP =======*/
	@media (max-width: 767px) {
		article.seminar div h3{
			margin-bottom: 18px;
			min-height: auto;
			font-size: 18px;
		}
	}

/*-- 
------------------------- */
article.seminar div dl{
	display: flex; display: -webkit-flex;
	align-items: flex-start; -webkit-align-items: flex-start;
	margin-bottom: 24px;
}
article.seminar div dl dt{
	width: 72px;
	padding: 3px 0 5px 0;
	background: var(--themecolor);
	color: #fff;
	line-height: 1.3em;
	font-size: 14px;
	text-align: center;
	border-radius: 3px;
}
article.seminar div dl.closed dt{ background: #CACACA; }

article.seminar div dl dd{
	flex: 1;
	margin-left: 10px;
	font-size: 15px;
	line-height: 1.55em;
}
	/* ======= TB =======*/
	@media screen and (min-width: 768px) and (max-width: 1024px) {
	}
	/* ======= SP =======*/
	@media (max-width: 767px) {
	}

/*-- 
------------------------- */
article.seminar div ul{
	display: flex; display: -webkit-flex;
	flex-wrap: wrap; -webkit-flex-wrap: wrap;
	gap: 6px 6px;
}
article.seminar div ul li{
	padding: 1px 10px 2px 10px;
	background: #F4F4F5;
	border-radius: 2px;
	font-size: 13px;
}
	/* ======= TB =======*/
	@media screen and (min-width: 768px) and (max-width: 1024px) {
	}
	/* ======= SP =======*/
	@media (max-width: 767px) {
	}