@charset "utf-8";
/* CSS Document */

.flow{
	width: 90%;
	margin: 10% auto;
}
.flow-ttl{
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	padding: 20px;
	position: relative;
	
}
.flow-ttl:before, .flow-ttl:after {
	content: '';
	width: 30px;
	height: 30px;
	position: absolute;
}

.flow-ttl:before {
	border-left: solid 1px #282828;
	border-top: solid 1px #282828;
	top: 0;
	left: 30px;
}

.flow-ttl:after {
	border-right: solid 1px #282828;
	border-bottom: solid 1px #282828;
	bottom: 0;
	right: 30px;
}

.vote{
	width: 80%;
	margin: 15% auto 0;
	text-align: center;
}

.vote a{
	display: block;
	padding: 8% 0;
	color: #000;
	font-size: 15px;
	font-weight: 600;
	border: solid 2px red;
	border-radius: 10px;
}

.cate{
	padding: 0;
	display: flex;
	column-gap: 10px;
}

.cate li{
	list-style: none;
	font-size: 11px;
	text-align: center;
	width: calc(33.3% - 5px);
	justify-content: center;
	border: solid 2px #F89600;
	border-radius: 5px;
}

.cate li a{
	display: block;
	padding: 8% 0;
	color: #282828;
}

.navi{
	display: block;
	width: 10%;
	margin: 2% auto 0;
}

#staff{
	padding-top: 15%;
}

@media(min-width:750px){
.flow{
	width: 60%;
	margin: 10% auto;
}

.flow-ttl:before {
	border-left: solid 2px #282828;
	border-top: solid 2px #282828;
}

.flow-ttl:after {
	border-right: solid 2px #282828;
	border-bottom: solid 2px #282828;
}
	
.vote{
	width: 50%;
}

.vote a{
	padding: 6% 0;
	color: #000;
	font-size: 16px;
}

	
.cate{
	padding: 0;
	display: flex;
	column-gap: 10px;
}

.cate li{
	font-size: 15px;
	border-radius: 10px;
}

.cate li a{
	padding: 5% 0;
}

.navi{
	width: 5%;
	margin: 1% auto 0;
}

}