@charset "utf-8";
/* CSS Document */



.item_list {
	display: block;
	position: relative;
}



.item_list .item {
	display: flex;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0px 0px 1em;
	margin-bottom: 1em;
	border-bottom: 1px solid #cccccc;
	justify-content: space-between;
	position: relative;
}
.item_list .item:last-child {
	margin-bottom: 2em;
}
.item_list .item::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0px;
	right: 0pc;
	width: 80px;
	height: 80px;
	opacity: 0.3;
	background-image: url(../../common/img/twitter_bg2.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom right;
	pointer-events: none;
}


.item_list .item .schedule_box {
	width: 45%;
	border-left: 1px dotted #606060;
	font-size: 14px;
	line-height: 135%;
	padding: 0px 1em;;
}
.item_list .item .schedule_box::before {
	content: "開催日時";
	display: block;
	margin-bottom: 0.3em;
	font-weight: bold;
	
}
.item_list .item .main_box {
	width: 50%;
}
.item_list .item .main_box .ttl {
	font-size: 18px;
	margin-bottom: 0.3em !important;
	font-weight: bold;
}
.item_list .item .main_box .info {
	font-size: 14px;
	line-height: 135%;
}
.item_list .item .main_box .info strong {
	margin-right: 1em;
}

@media screen and (max-width: 639px){

.item_list .item {
	padding: 0px 8px 1em;
	flex-wrap: wrap;
}
.item_list .item .schedule_box {
	width: 100%;
	border-left:none;
	font-size: 13px;
	padding: 0px;
}
.item_list .item .main_box {
	width: 100%;
	padding-bottom: 0.4em;
}
.item_list .item .main_box .ttl {
	font-size: 16px;
}
.item_list .item .main_box .info {
	font-size: 13px;
}
	
	
	
}
