.comment {
	line-height: 1.6;
	margin-bottom: 10px;
}

.box_caution {
	margin: 50px auto 0;
	border: 10px #dedede solid;
	padding: 1em;
}
.box_caution .box-title {
	display: block;
	font-weight: bold;
	margin-bottom: 15px;
	text-align: center;
}
.entry_info {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 20px 0;
	width: 100%;
}
.entry_info dt {
	width: 45%;
	padding: 10px 5px 10px ;
	margin: 0;
	border-bottom: 1px #dedede solid;
	font-size: 1.4rem;
}
.entry_info dd {
	width: 55%;
	padding: 10px 5px 10px 10px;
	margin: 0;
	border-bottom: 1px #dedede solid;
	font-size: 1.4rem;
}

.button_area {
	width: 80%;
	margin: 30px auto;
}
.button_top {
	/*矢印の基点とするためrelativeを指定*/
	position: relative;
	/*ボタンの形状*/
	text-decoration: none;
	background: #124385;
	color: #fff !important;
	padding: 10px 40px 10px 30px;
	border-radius: 6px;
	text-align: center;
	/*アニメーションの指定*/
	transition: ease 0.2s;
	font-family: sans-serif;
	display: block;
}

.button_top:hover {
	background: #0c2c58;
	color: #fff;
}

/* 矢印が右に移動 */

.button_top::after {
	content: "";
	/*絶対配置で矢印の位置を決める*/
	position: absolute;
	top: 42%;
	right: 13px;
	/*矢印の形状*/
	width: 5px;
	height: 5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	/*アニメーションの指定*/
	transition: all 0.3s;
}

/*hoverした際の移動*/
.button_top:hover::after {
	right: 11px;
}

.box_caution ol {
    position: relative;
    margin:0 0 10px;
    padding:0 10px 0 0px;
}
 
.box_caution ol li  {
    list-style: none;
    list-style-position:outside;
    margin:0;
    padding-left:2.15em;
}
.box_caution ol li span {
    position: absolute;
    left:0;
    margin:0;
}
 