/*--------------------------------------------------*/
/* フッター */
.footer {
	width: 100%;
	float: left;
	background: #f4f4f4;
	min-height: 200px;
}
.footer-inner {
	height: 200px;
	display: table;
	width: 100%;
}
.footer-content {
	display: table-cell;
	vertical-align: middle;
}
.footer-content p {
	color: #787878;
}
.footer-content h4 {
	font-weight: 700;
	color: #000;
	text-transform: uppercase;
}
.footer-content address {
	color: #787878;
	font-size: 14px;
	letter-spacing: 1.5pt;
}


/*css radio02*/
.radio02-input{
	display: none;
}
.radio02-input + label{
	padding-left: 30px;
	position:relative;
	margin-right: 30px;
}
.radio02-input + label::before{
	content: "";
	display: block;
	position: absolute;
	top: 2px;
	left: 2px;
	width: 18px;
	height: 18px;
	border: 1px solid #999;
	border-radius: 50%;
}
.radio02-input:checked + label{
	color: #009a9a;
}
.radio02-input:checked + label::after{
	content: "";
	display: block;
	position: absolute;
	top: 4.5px;
	left: 4.5px;
	width: 13px;
	height: 13px;
	background: #009a9a;
	border-radius: 55%;
}
