@charset "UTF-8";

.content .company_nav {
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	display: flex;
	justify-content: space-between;
	font-size: 1.2rem;
	width: 830px;
	max-width: 100%;
	margin: 90px auto 0;
}

.content .company_nav li {
	box-sizing: border-box;
	text-align: center;
	width: 200px;
	height: 64px;
	line-height: 49px;
}

.content .company_nav li.current {
	background: #009944;
	color: #fff;
}

.content .company_nav li a {
	color: #009944;
	width: 100%;
	height: 100%;
	display: block;
	line-height: 49px;
	;
	box-sizing: border-box;
	transition: .3s;
	border-bottom: solid 1px #009944;
}

.content .company_nav li a:hover {
	color: #fff;
	border-bottom: solid 64px #009944;
}

.content .company_nav li span {
	font-size: 2rem;
	display: block;
	margin-bottom: -25px;
}

@media only screen and (max-width: 767px) {
	.content .company_nav {
		flex-wrap: wrap;
		margin-top: 48px;
	}

	.content .company_nav li {
		width: 49%;
		height: 50px;
		text-align: left;
		font-size: 10px;
		line-height: 39px;
	}

	.content .company_nav li.current {
		padding-left: 10px;
	}

	@media only screen and (max-width: 340px) {
		.content .company_nav li:last-of-type a {
			padding-left: 0;
		}
	}

	.content .company_nav li a {
		line-height: 39px;
		padding-left: 10px
	}

	.content .company_nav li a:hover {
		border-bottom: solid 50px #009944;
	}

	.content .company_nav li span {
		font-size: 16px;
	}
}


.company_footer_nav {
	width: 100%;
	background: #009a44;
	padding: 37px 0;
	margin-top: 60px;
}

.company_footer_nav ul {
	display: flex;
	max-width: 1260px;
	width: 100%;
	margin: 0 auto;
	justify-content: space-between;
}

.company_footer_nav li {
	width: 23%;
	border: solid 1px #fff;
}

.company_footer_nav a {
	color: #fff;
	display: block;
	width: 100%;
	text-align: center;
	padding: 14px 0;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.company_footer_nav a:hover {
	background-color: #fff;
	color: #009944;
}


.products {
	background: url(../img/products_bg.png) center center /cover no-repeat;
}

.products div {
	display: flex;
	max-width: 1260px;
	margin: 0 auto;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	padding: 60px 0 34px;
}

.products h2 {
	color: #fff;
	line-height: 3.4rem;
	font-size: 7rem;
}

.products div .product_btn {
	display: block;
	background: #000;
	color: #fff;
	padding: 18px 0;
	width: 23%;
	text-align: center;
	box-sizing: border-box;
	position: relative;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: 20px;
	margin-top: -23px;
	top: 10px;

}

.products div .product_btn:after {
	height: 1px;
	width: 13px;
	display: block;
	content: "";
	background: #fff;
	position: absolute;
	right: 20px;
	top: 50%;
}

@media only screen and (max-width: 767px) {

	.products div .product_btn {

		width: 50%;
		font-size: 18px;
	}
}
/*************************/

.product_btn {
	-webkit-transition: background-color 100ms, border-color 100ms, color 100ms, opacity 100ms;
	transition: background-color 100ms, border-color 100ms, color 100ms, opacity 100ms;
}

.product_btn:before {
	background: #009944;
	content: '';
	display: block;
	height: 0%;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transition: height 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: height 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.product_btn:hover:after {
	transform: translateX(3px);
}

.product_btn:not(:disabled):hover {
	border-color: #009944;
}

.product_btn:not(:disabled):hover::before {
	bottom: 0;
	height: 100%;
	top: auto;
}

.product_btn span {
	position: relative;
}

@media only screen and (max-width:767px) {


	.company_footer_nav {
		padding: 0;
	}

	.company_footer_nav ul {
		flex-direction: column;
		width: 100%;
	}

	.company_footer_nav li {
		width: 100%;
		border: none;
		border-bottom: solid 1px #fff;
	}

	.company_footer_nav ul li:last-of-type {
		border: none;
	}

	.company_footer_nav a {
		padding: 17px 4%;
		text-align: left;
		font-size: 14px;
	}

	.products {
		background: url(../img/products_bg_sp.png) center center /cover no-repeat;
		width: 100%;
	}

	.products div {
		width: 92%;
		padding: 23px 0 19px;

	}

	.products h2 span {
		font-size: 11px;
	}

	.products div a {
		width: 50%;
		font-size: 14px;
		margin: 0;
	}
}