@charset "UTF-8";

html {
	font-size: 62.5%;
}

/*header
---------------------------------------------------------- */
header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	top: 0;
	left: 0;
	z-index: 10000;
	border-bottom: medium solid #CCCCCC;
	border-bottom-width: thin;
	width: 100%;
	height: 80px;
	min-width: 1000px;
	background: #fff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.header_block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: space-between;
	justify-content: space-between;
	align-items: center;
	width: 1000px;
	margin: 0 auto;
}

.header_block .head_logo {
	width: 210px;
	margin-right: 50px;
}

.header_block .head_logo img {
	width: 210px;
	height: auto;
}

.header_block .head_menu ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}

.header_block .head_menu li {
	margin-left: 30px;
}

.header_block .head_menu li:first-child {
	margin-left: 0;
}

.header_block .head_menu li:before {
	display: none;
}

.header_block .head_menu li a {
	cursor: pointer;
	display: inline-block;
	padding-bottom: 2px;
	font-size: 16px;
	font-weight: bold;
	overflow: hidden;
	position: relative;
	text-decoration: none;
}

.header_block .head_menu li a:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background: #00a7db;
	transform: translate3d(-100%, 0%, 0);
	transition: transform 0.5s cubic-bezier(0.46, 0.1, 0.29, 1);
}

.header_block .head_menu li a:hover:before {
	transform: translate3d(0, 0%, 0);
}

.header_box,
.head_subnav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}


/*footer
---------------------------------------------------------- */
footer {
	min-width: 1000px;
}

.ft_block01 {
	background: #eee;
}

.ft_box01,
.ft_box02 {
	width: 1000px;
	margin: 0 auto;
	padding: 60px 0;
}

.ft_box02 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: space-between;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}


.ft_copy p {
	font-size: 1rem;
}

.ft_copy .copy {
	margin-top: 15px;
}

.ft_box02 .ffg_logo img {
	width: 257px;
	height: auto;
}




@media screen and (max-width: 750px) {
	
	footer {
		min-width: 100%;
	}
	
	.ft_box01,
	.ft_box02 {
		width: 100%;
		padding: 0;
	}
	
	.ft_box02 {
		display: block;
		padding: 25px 3% 20px;
		text-align: center;
	}
	
	.ft_copy {
		font-size: 1.1rem;
	}
	
	.ft_box02 .ffg_logo {
		width: 50%;
		margin: 0 auto;
	}
	
	.ft_box02 .ffg_logo,
	.ft_copy .copy {
		margin-top: 30px;
	}
}

/*footer
---------------------------------------------------------- */
