@charset "UTF-8";
/*--------------------------------------------------
カラー設定

メインカラー	グリーン　#0EB998 
薄いグリーン　			 #EAF5F3 
濃いグリーン　　　　　　#013700
濃いブルー　　　　　　　#009AA2

グラデーション
background: linear-gradient(to right, rgba(255,254,246,0.30), rgba(238,255,232,0.30));
--------------------------------------------------*/

/*------------------------------
共催・協賛のご案内
--------------------------------*/
.sponsor_flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
}
.sponsor_flex::after {
display: block;
content:"";
width: 315px;
}
.sponsor_card {
	position: relative;
	width: 315px;
	background: white;
	box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.2);
}
/*.sponsor_card::before, .sponsor_card::after {
	position: absolute;
	content: "";
	width: 40px;
	height: 40px;
	background-color: #013700;
}
.sponsor_card::before {
	clip-path: polygon(0 0, 100% 0, 0 100%);
	top: 0;
	left: 0;
}
.sponsor_card::after {
	clip-path: polygon(100% 0, 100% 100%, 0 100%);
	bottom: 0;
	right: 0;
}*/
.sponsor_title {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 60px;
	padding: 10px 0;
	font-size: 18px;
	font-weight: 600;
	color: white;/*#009AA2*/
	background-color: #015E00;/*#D8D8D8*/
}
.sponsor_inner {
	width: 100%;
	padding: 10px;
}
.sponsor_limit_title {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-bottom: 10px;
	font-size: 12px;
}
.sponsor_limit_title::before, .sponsor_limit_title::after {
	content: "";
	width: 60px;
	height: 1px;
	background-color: #959595;
}
.sponsor_limit_title::before {
	margin-right: 16px;
}
.sponsor_limit_title::after {
	margin-left: 16px;
}
.sponsor_limit {
	text-align: center;
}
.sponsor_limit span {
	font-size: 11px;
}