@charset "UTF-8";

/********************************************

 CSR 基本方針（theme）

********************************************/
#theme h3 {
	margin: 0 0 20px;
}
#theme ol{
	margin: 20px 0 20px 20px;
}
#theme .block li{
	list-style: decimal;
	padding-bottom: 15px;
}

#theme .flex_box{
	display: flex;
	justify-content: center;
}

#theme .flex_box a{
	position: relative;
	display: inline-block;
	border: solid 1px #0039a6;
	width: 160px;
	padding: 5px 10px;
	text-decoration: none;
	text-align: center;
	transition: all 0.5s ease-out;
	margin: 0 10px;
}
#theme .flex_box a::after{
    content: '';
    border: 0;
    border-top: solid 1px #0039a6;
    border-right: solid 1px #0039a6;
    display: inline-block;
    width: 7px;
    height: 7px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%) rotate(45deg);
}

#theme .flex_box a:hover{
	background-color: #0039a6;
	color: #FFF;
}

#theme .flex_box a:hover:after{
    border-top: solid 1px #FFF;
    border-right: solid 1px #FFF;
}