/* 前往報名 */
.floatBtn_info {
	position: fixed;
	bottom: 1em;
	right: 2em;
	z-index: 998;
}
.floatBtn_info > button {
	font-size: large;
	padding: 1em;
	width: 6em;
	height: 6em;
	line-height: 1.5em;
	border-radius: 50%;
	cursor: pointer;
	border: 0;
	box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 5px rgb(0 0 0 / 24%);
}
.floatBtn_info > button {
	background-color: #E24565;
	color: #FFF;
}
@media screen and (max-width: 1024px) {
	.floatBtn_info {
		bottom: 1em;
		right: 0em;
		display: flex;
		flex-direction: column;
	}
	.floatBtn_info>button {
		width: 2em;
		height: auto;
		padding: 0.5em;
		border-radius: unset;
	}
}


.page.homepage {
	height: 100vh;
	overflow: auto;
}

.page.homepage > section.imgindex {
	background-image: url(../image/frontpage);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.page.homepage > div {
	margin-top: 3em;
	position: relative;
}
.page.homepage > div#timeline_block {
	height: 50%;
}

.page.homepage > div > div.blockTitle {
	background-color: #FDB94B;
	color: #FFF;
	width: 15em;
	height: 2em;
	line-height: 2em;
	text-align: center;
	vertical-align: middle;
	position: absolute;
	top: -1em;
	left: -1em;
	z-index: 1;
	clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
}
.page.homepage > div > div.blockTitle > h2 {
	font-weight: 600;
}
.page.homepage > div > div.blockContent {
	border-radius: 10px;
	background-color: #FFF;
	padding: 25px 5%;
	margin-top: 1em;
	height: 100%;
	overflow: auto;
	display: flex;
	align-items: center;
}
.page.homepage > div > div.blockContent * {
	letter-spacing: 2px;
	line-height: 1.5em;
}
.page.homepage > div > div.blockContent > div {
	max-height: 100%;
}


/* TIMELINE
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.timeline > ol > li > div > time {
	font-weight: bold;
	display: block;
}
.timeline > ol > li > div > span > span.contest1, .timeline > ol > li > div > span > span.contest2 {
	font-weight: bold;
}
.timeline > ol > li > div > span > span.contest1 {
	color:#f58634;
}
.timeline > ol > li > div > span > span.contest2 {
	color:#4b778d;
}
.timeline > ol > li::before, .timeline > ol > li::after {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #217467;
	box-shadow: 1px 1px 2px 1px #b1cdc7;
}
@media screen and (min-width: 768px) {
	.timeline {
		width: fit-content;
		height: 100%;
		margin: auto;
		display: flex;
		align-items: center;
		white-space: nowrap;
	}
	.timeline > ol {
		display: inline-block;
		width: 1024px;
		position: relative;
	}
	.timeline > ol::after {
		content: '';
		display: block;
		height: 4px;
		width: 100%;
		border-radius: 2px;
		background: #FDB94B;
	}
	.timeline > ol > li {
		position: absolute;
		width: 185px;
	}
	.timeline > ol > li.top {
		top: -4em;
	}
	.timeline > ol > li.bottom {
		top: 100%;
	}
	.timeline > ol > li::after {
		content: '';
		position: absolute;
		left: -5px;
	}
	.timeline > ol > li.top::after {
		top: calc(4em - 3px);
	}
	.timeline > ol > li.bottom::after {
		top: -7px;
	}
	.timeline > ol > li > div {
		position: relative;
		padding-left: 6px;
		height: 4.5em;
	}
	.timeline > ol > li.top > div {
		top: -4em;
	}
	.timeline > ol > li.bottom > div {
		top: 4.5em;
	}
	.timeline > ol > li > div::after {
		content: '';
		height: calc(100% + 4em);
		position: absolute;
		top: 0px;
		left: 0px;
		border-left: 1px dashed #fdb94b;
	}
	.timeline > ol > li.bottom > div::after {
		top: -4em;
	}



	/*offset1*/
	.timeline > ol > li.top > div.offset1 {
		top: 0px;
	}
	.timeline > ol > li.bottom > div.offset1 {
		top: 0px;
	}
	.timeline > ol > li > div.offset1::after {
		height: 100%;
	}
	.timeline > ol > li.top > div.offset1::after,
	.timeline > ol > li.bottom > div.offset1::after {
		top: 0px;
	}

	/*offset2*/
	.timeline > ol > li.top > div.offset2 {
		top: calc(4em + 4px);
	}
	.timeline > ol > li.bottom > div.offset2 {
		top: calc(-4.5em - 4px);
	}
	.timeline > ol > li > div.offset2::after {
		height: 100%;
	}
	.timeline > ol > li.bottom > div.offset2::after {
		top: 0px;
	}
}
@media screen and (max-width: 767px) {
	.timeline > ol > li {
		display: flex;
		align-items: center;
	}
	.timeline > ol > li::before {
		content: '';
		margin-right: 1em;
	}
	.timeline > ol > li > div {
		margin-top: 10px;
	}
}