@charset "UTF-8";
/*--------------------------------------------------
カラー設定

メインカラー	グリーン　#0EB998 
薄いグリーン　			 #EAF5F3 
濃いグリーン　　　　　　#013700
濃いブルー　　　　　　　#009AA2

グラデーション
background: linear-gradient(to right, rgba(255,254,246,0.30), rgba(238,255,232,0.30));
--------------------------------------------------*/

/*------------------------------
開催概要
--------------------------------*/
.overview_section .item {
	margin-bottom: 20px;
	border-bottom: 1px solid #C7C7C7;
}
.overview_section dt {
	position: relative;
	margin-bottom: 10px;
	width: 140px; 
	padding: 2px 10px;
	background-color: #0EB998;
	font-size: 13px;
	color: white;
	clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.overview_section dt::after {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	width: 20px;
	height: 100%;
	background-color: #F0D261;
	clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
	
}
.overview_section dd {
	margin-bottom: 20px;
}


