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

/*------------------------------
参加登録
-------------------------------*/
/*注意ボックス*/
.note {
	padding: 10px;
	border: 3px solid #FF9500;
	border-radius: 6px;
	background-color: #FFF8EA;
}
/*注意ボックス2*/
.atention {
	padding: 10px;
	border: 3px solid #FF0000;
	border-radius: 6px;
	background-color: #FFF5F5;
	color: red;
}
/*ページ内リンク*/
.page_link {
	margin: 40px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.page_link_item {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	align-items: center;
	background-color: #F8F2ED;
	box-shadow: 2px 2px 3px rgba(0,0,0, 0.2);
}
.page_link_item a {
	display: block;
	padding: 4px 10px 4px 30px;
	width: 100%;
	height: 100%;
	font-size: 14px;
	color: #0600BB;
	position: relative;
	top: 1px;
}
.page_link_item a::after {
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	border-top: 2px solid #0600BB;
	border-right: 2px solid #0600BB;
	transform: rotate(45deg);
	top: 11px;
	left: 9px;
}
.page_link_item a:hover {
	color: #FF9809;
}
.page_link_item a:hover::after {
	border-top: 2px solid #FF9809;
	border-right: 2px solid #FF9809;
}

/*h2wrap*/
.header_wrap {
	margin: 0;
	padding-top: 1px;
}

/*オンライン登録期間*/
.registration_limit dt{
	display: inline-block;
	margin: 10px 0;
	padding: 2px 10px;
	background-color:#003ACC;
	color: white;
	border-radius: 4px;
	font-size: 14px;
}
.registration_limit dd {
	margin-bottom: 20px;
	margin-left: 1em;
	font-weight: 600;
}

/*開催スケジュール*/
.schedule_title {
	margin-top: 60px;
	margin-bottom: 10px;
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	color: #2DBD00;
}
.schedule_block {
	padding: 10px;
	border-top: 2px solid #228E00;
	border-bottom: 2px solid #228E00;
	background-color: #F6FEF4
}
.content_title {
	padding: 0;
	text-align: center;
	background-color: #F99D00;
	color: white;
	font-size: 16px;
	font-weight: 500;
}
.datetime {
	margin: 20px 0;
	font-weight: 600;
	text-align: center;
}
.schedule_indent1, .schedule_indent2, .schedule_indent3 {
	display: none;
}
@media screen and (max-width: 768px) {
	.schedule_indent1 {
		display: inline;
		padding-left: 105px;
	}
	.schedule_indent2 {
		display: inline;
		padding-left: 88px;
	}
	.schedule_indent3 {
		display: inline;
		padding-left: 82px;
	}
}

/*ステップ*/
.step_item {
	position: relative;
	width: 100%;
	padding: 10px;
	background-color: #ECF5E8;
	border: 2px solid #20B102;
}
.step_name {
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 30px;
	padding-left: 15px;
	line-height: 30px;
	background-color: #20B102;
	color: white;
	font-size: 12px;
	font-weight: 600;
	clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}
.step_name span {
	font-size: 20px;
}
.step_item p {
	padding-top: 35px;
	margin:0;
}
.step_arrow {
	margin: 10px auto;
	width: 100px;
	height: 30px;
	background: linear-gradient(to bottom, #87C17B 20%, #20B102);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
/*
問い合わせ
*/
.contact_main {
	margin-bottom: 10px;
	padding: 4px 0;
	font-size: 18px;
	font-weight: 600;
	padding-left: 16px;
	border-left: 8px solid #20B102;	
	border-bottom: 1px dashed #20B102;	
}
.contact_place {
	position: relative;
	margin-bottom: 10px;
	font-size: 17px;
	font-weight: 600;
}
.contact_place::before {
	content: "●";
	color: #20C300;
}
.contact_email {
	margin-bottom: 40px;
}