@charset "UTF-8";
/*--------------------------------------------------
カラー設定

メインカラー	グリーン　#0EB998 
薄いグリーン　			 #EAF5F3 
濃いグリーン　　　　　　#013700
濃いブルー　　　　　　　#009AA2

グラデーション
background: linear-gradient(to right, rgba(255,254,246,0.30), rgba(238,255,232,0.30));
--------------------------------------------------*/

/*------------------------------
演題募集
--------------------------------*/
/*冒頭*/
.beginning {
	width: 100%;
	border: 1px solid #8E8E8E;
	padding: 10px;
	background-color: #F5F8F7;
}
.beginning p {
	margin: 0;
	padding: 0;
}

/*ページ内リンク*/
.page_index {
	margin: 0 auto;
	padding: 20px;
	width: 100%;
	display: grid; /* グリッドレイアウト */
	grid-template-columns: 1fr 1fr;
	gap: 0 6px;
}
@media screen and (max-width: 420px) {
	.page_index {
		grid-template-columns: 1fr;
	}
}
.index_items {
	display: flex;
	align-items: stretch;
	flex-direction: column;
	max-width: 420px;
}
.index_item {
	display: block;
	width: 100%;
	margin-bottom: 6px;
	border-radius: 4px;
	padding: 10px;
	background-color: #009AA2;
	color: white;	
	font-weight: 600;
}
.index_item:hover {
	background-color: #005459;
}

/*募集期間*/
.app_period {
	font-weight: 600;
}
.app_period span {
	font-size: 22px;
}

/*カテゴリーテーブル*/
.table_flex {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
}
.categoly_table th {
	width: 40px;
	text-align: center;
}
.categoly_table td {
	padding: 10px;
	text-align: left;
}
@media screen and (max-width: 420px) {
	.table_flex {
		flex-wrap: wrap;
		align-items: flex-start;
	}
}

/*画像リンク*/
.image_block {
	width: 100%;
}
.image_block img {
	width: 100%;
	vertical-align: top;
}

/*問い合わせ*/
.contact {
	padding-left: 20px;
	border-left: 4px solid #7E7E7E;
}
.contact p {
	margin: 6px 0;
}
.contact .title {
	font-size: 17px;
	font-weight: 600;
}
