

/* ========================================================================================

   Name: design.css

   Description: Common Style Sheet for Responsive Web Design

======================================================================================== */

/* 全体共通
-------------------------------------------------- */
html {
	height:100%;
}
*{font-family: "微软雅黑", "Arial Narrow", HELVETICA !important;}
body {
	font-family: "微软雅黑", "Arial Narrow", HELVETICA;
	font-size: 15px;
	line-height:1.87em;
	color: #000000;
	background-color:#ffffff;
	text-align:center;
	height:100%;
	letter-spacing:0.00em;
	position:relative;
}

body.toppage {
	/*display:none;*/
}

body > div {
	/*overflow:hidden;*/
}

a {
	color: #f39800;
	overflow: hidden;
	outline: none;
	text-decoration:none;
}

a:hover {
	color: #000000;
	text-decoration:none;
}

a:hover img {
	opacity:0.8;
}

main a {
	color: #f39800;
	overflow: hidden;
	outline: none;
	text-decoration:underline;
}

main a:hover {
	/*color:#243484;*/
	color:#660;
	text-decoration:underline;
	transition:all 0.15s ease-out;
}

li img {
	vertical-align:top;
}

.clearfix:after {
	content: "."; display: block; clear: both; height: 0; line-height: 0; font-size: 0; visibility: hidden;
}

.clearfix {
	_height: 1px; min-height: 1px;
	*zoom: 1;
}

* html .clearfix {
	height: 1%;
	display: inline-block;
}

.rollover:hover{
	opacity:0.7;
	filter: alpha(opacity=70);
}

a#pagetop {
	position:absolute;
	top:0;
	left:0;
}

table {
	border-collapse:collapse;
}

.roboto_Condensed {
	font-family: 'Roboto Condensed', sans-serif;
}


/* ページ表示のフェード効果
-------------------------------------------------- */

@media screen and (mix-width: 768px){
	
	.fade {
		opacity: 0;
	}
	
	.ready .fade {
		-webkit-transform: translateY(30px);
		-moz-transform: translateY(30px);
		-ms-transform: translateY(30px);
		transform: translateY(30px);
		-webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
		-moz-transition: opacity 1s ease, -moz-transform 1s ease;
		-ms-transition: opacity 1s ease, -ms-transform 1s ease;
		transition: opacity 1s ease, transform 1s ease;
	}
	.ready .fade-end {
		opacity: 1;
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-ms-transform: translateY(0px);
		transform: translateY(0px);
	}
	
}

/* 画像マウスオン時に画像拡大（img）
-------------------------------------------------- */

.pct_zoom {
	overflow:hidden;
}

.pct_zoom img {
	-moz-transition: -moz-transform 0.2s linear;
	-webkit-transition: -webkit-transform 0.2s linear;
	-o-transition: -o-transform 0.2s linear;
	-ms-transition: -ms-transform 0.2s linear;
	transition: transform 0.2s linear;
}
.pct_zoom:hover img {
	opacity:1;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}


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

	html {
		height:100%;
	}
	
	body {
		-webkit-text-size-adjust:100%;
		font-size:14px;
		line-height:1.6em;
		height:100%;
		position:relative;
	}
	
	body>div {
		height:100%;
		position:relative;
	}
	
	.return_top {
		display:none;
	}


}


/* header
-------------------------------------------------- */
header#head {
	width:100%;
	/*height:115px;*/
	text-align:left;
	position:fixed;
	background-color:#FFFFFF;
	z-index:100;
	border:1px #eee;
	border-bottom-style:solid;
}

header#head.moved {
	position:fixed;
}

header#head h1 {
	position:absolute;
	font-size:20px;
	width:740px;
	height:80px;
	left:30px;
	top:5px;
}

header#head h1 a {
	display:block;
	width:100%;
	height:100%;
	/*background:url(../image/hd_logo.png) no-repeat;*/
	text-indent:-9999px;
}

header#head h1 a img{width: auto !important;height: 69px;}

header#head > nav {
	padding:0 20px 0 0;
	height:80px;
}

header#head > nav a {
	color:#000000;
	font-weight:bold;
	text-decoration:none;
}

header#head > nav a i {
	display:none;
}

header#head > nav ul {
	list-style:none;
}

header#head > nav > ul {
	list-style:none;
	text-align:right;
}

header#head > nav > ul > li {
	display:inline-block;
	margin:0 10px;
}

header#head > nav > ul > li > a {
	display:block;
	padding:30px 10px 22px 5px;
}

header#head > nav > ul > li.nv_contact {
	display:inline-block;
	height:75px;
	padding:15px 0 0;
	vertical-align:top;
}

header#head > nav > ul > li.nv_contact > a {
	color:#FFFFFF;
	background-color:#f39800;
	padding:5px 38px 7px 38px;
	border:2px #f39800 solid;
    border-radius: 22px;  
    -webkit-border-radius: 22px;  
    -moz-border-radius: 22px;
	transition:all 0.15s ease-out;
}

header#head > nav > ul > li.nv_contact > a:hover {
	color:#f39800;
	background-color:#FFFFFF;
}

header#head > nav > ul > li > div {
	display:none;
	opacity:0.5;
	position:absolute;
	left:0;
	top:80px;
	width:100%;
	background:#333333;
	padding:28px 0 30px;
	transition:all 0.5s ease-out;
}

header#head > nav > ul > li.open > div {
	display:block;
	animation: showDropDown 0.2s ease-in forwards;
}

header#head > nav > ul > li > div.close {
	display:block;
	animation: closeDropDown 0.2s ease-in forwards;
}

@keyframes showDropDown{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

@keyframes closeDropDown{
    from{
		opacity: 1;
    }
    to{
		opacity: 0;
    }
}

header#head > nav > ul > li > div a {
	color:#FFF;
	font-weight:normal;
	position:relative;
	padding:0 0 0 16px;
}

header#head > nav > ul > li > div a i {
	display:block;
	position:absolute;
	left:-10px;
	bottom:10px;
	color:#f39800;
	font-size:18px;
	line-height:1em;
}

header#head > nav > ul > li > div h2 {
	width:980px;
	margin:0 auto;
	text-align:left;
	font-size:18px;
	font-weight:normal;
	/*
	border:1px #717171;
	border-bottom-style:solid;
	*/
	transition:all 0.15s ease-out;
}

header#head > nav > ul > li > div h2 a {
	display:block;
	padding:0 0 20px 20px;
	position:relative;
}

header#head > nav > ul > li > div h2 a i {
	display:block;
	position:absolute;
	left:-10px;
	top:0;
	color:#f39800;
	font-size:26px;
	line-height:1em;
}

header#head > nav > ul > li > div ul {
	width:980px;
	margin:0 auto;
	text-align:left;
	font-size:13px;
}

header#head > nav > ul > li > div ul li {
	width:auto;
	float:left;
	/*
	border:1px #717171;
	border-bottom-style:solid;
	*/
	margin:0 20px 0 0;
	transition:all 0.15s ease-out;
}

header#head > nav > ul > li > div ul li a > div > img {
	margin-bottom:12px;
}

header#head > nav > ul > li > div h2:hover,
header#head > nav > ul > li > div ul li:hover {
	border-color:#f39800;
}

header#head > nav > ul > li > div ul li:nth-child(5n) {
	margin:0;
}

header#head > nav > ul > li > div ul li a {
	display:block;
	padding:15px 0 13px 0;
}

header#head #sp_menu {
	display:none;
}

/* カテゴリ別ナビ設定 */

/* 企業情報 */
header#head > nav > ul > li.nv_company > div ul li {
	width:310px;
	margin:0 25px 0 0;
	padding:0;
}

header#head > nav > ul > li.nv_company > div ul li:nth-child(3n) {
	width:310px;
	margin:0 0 0 0;
}

header#head > nav > ul > li.nv_company > div ul li a {
	display:block;
	padding:0 0 5px 0;
}

header#head > nav > ul > li.nv_company > div ul li a span {
	display:block;
	padding:0 0 0 12px;
}

/* 製品案内 */
header#head > nav > ul > li.nv_products > div ul li {
	width:310px;
	margin:0 25px 0 0;
}

header#head > nav > ul > li.nv_products > div ul li:nth-child(-n+3) {
	border:1px #666666;
	border-top-style:solid;
	padding-top:15px;
}

header#head > nav > ul > li.nv_products > div ul li:nth-child(3n) {
	margin:0 0 0 0;
}

header#head > nav > ul > li.nv_products > div ul li a {
	display:block;
	padding:5px 0 5px 12px;
}

/* 施工事例 */
header#head > nav > ul > li.nv_event > div ul li {
	width:230px;
	margin:0 20px 0 0;
	padding:0;
}

header#head > nav > ul > li.nv_event > div ul li:nth-child(4n) {
	margin:0 0 0 0;
}

header#head > nav > ul > li.nv_event > div ul li a {
	display:block;
	padding:0 0 5px 0;
}

header#head > nav > ul > li.nv_event > div ul li a span {
	display:block;
	padding:0 0 0 12px;
}


/* 採用情報 */
header#head > nav > ul > li.nv_recruit > div > ul > li {
	width:310px;
	margin:0 25px 0 0;
	padding:15px 0 0;
	border:1px #666666;
	border-top-style:solid;
}

header#head > nav > ul > li.nv_recruit > div > ul > li:nth-child(3n) {
	margin:0 0 0 0;
}

header#head > nav > ul > li.nv_recruit > div > ul > li > a {
	display:block;
	padding:5px 0 5px 0;
	color:#f39800;
	font-size:15px;
	font-weight:bold;
}

header#head > nav > ul > li.nv_recruit > div > ul > li > ul {
	/*
	*/
	padding-top:10px;
	padding-bottom:30px;
	width:auto;
}

header#head > nav > ul > li.nv_recruit > div > ul > li > ul > li {
	float:none;
	clear:both;
}

header#head > nav > ul > li.nv_recruit > div > ul > li > ul > li a {
	box-sizing:border-box;
	width:100%;
	padding:2px 0 2px 12px;
}

header#head > nav > ul > li.nv_recruit > div a i {
	bottom:7px;
}

header#head > nav > ul > li.nv_recruit > div > ul > li > a i {
	display:none;
}


/* お問い合わせ */
header#head > nav > ul > li.nv_contact > div ul li {
	width:310px;
	margin:0 25px 0 0;
}

header#head > nav > ul > li.nv_contact > div ul li:nth-child(-n+3) {
	border:1px #666666;
	border-top-style:solid;
	padding-top:15px;
}

header#head > nav > ul > li.nv_contact > div ul li:nth-child(3n) {
	margin:0 0 0 0;
}

header#head > nav > ul > li.nv_contact > div ul li a {
	display:block;
	padding:5px 0 5px 12px;
}




@media screen and (min-width: 768px){
	
	header#head h1 {
		position:absolute;
		font-size:20px;
		width:740px;
		height:80px;
		left:30px;
		top:5px;
	}
	
	header#head > nav > ul > li {
		margin:0 5px;
	}
	
}

@media screen and (max-width: 767px){
	header#head h1 a img{
		width: auto !important;
    	height: 34px;
	}
	header#head {
		width:100%;
		height:50px;
		text-align:left;
		position:absolute;
		background-color:#FFFFFF;
		z-index:100;
		/*overflow:hidden;*/
	}
	
	header#head h1 {
		position:absolute;
		font-size:20px;
		width: calc(100% - 80px);
		height:60px;
		left:8px;
		top:7px;
	}
	
	header#head h1 a {
		display:block;
		width:100%;
		/*height:24px;*/
		/*background:url(../image/hd_logo_sp.jpg) no-repeat;*/
		background-size:contain;
		text-indent:-9999px;
	}
	
	header#head > nav {
		position:absolute;
		padding:0 0 0 0;
		top:38px;
		width:100%;
		height:100%;
		z-index:99;
		background-color:#000;
		display:none;
	}
	
	header#head > nav a {
		color:#ffffff;
		font-weight:bold;
		text-decoration:none;
	}
	
	header#head > nav ul {
		list-style:none;
	}

	header#head > nav a i {
		display:inherit;
		color:#f39800;
		font-size:24px;
		float:right;
		margin:-2px 0 0;
	}
	
	header#head > nav > ul > li > div h2 a i {
		display:block;
		position:inherit;
		left:auto;
		top:auto;
		color:#f39800;
		font-size:26px;
		line-height:1em;
	}
	
	header#head > nav > ul > li > div a i {
		/*
		display:block;
		position:absolute;
		left:-10px;
		bottom:10px;
		color:#f39800;
		font-size:18px;
		line-height:1em;
		*/
		position:inherit;
		display:inherit;
		color:#f39800;
		font-size:24px;
		float:right;
		margin:-2px 0 0;
		left:auto;
		bottom:auto;
	}
		
	header#head > nav > ul {
		list-style:none;
		text-align:left;
		background-color:#000;
	}
	
	header#head > nav > ul > li {
		display:block;
		margin:0;
	}
	
	header#head > nav > ul > li.nv_contact {
		height:auto;
		width:100%;
		padding:0;
	}
	
	header#head > nav > ul > li > a {
		font-size:15px;
		display:block;
		padding:15px 10px 15px 25px;
		border:1px #717171;
		border-bottom-style:solid;
	}
	
	header#head > nav > ul > li.nv_contact > a {
		font-size:16px;
		color:#FFFFFF;
		background-color:#000000;
		padding:15px 10px 15px 25px;
		border:none;
		border:1px #717171;
		border-bottom-style:solid;
		border-radius: 0;
		-webkit-border-radius: 0;  
		-moz-border-radius: 0;
		transition:all 0.15s ease-out;
	}
	
	header#head > nav > ul > li.nv_contact > a:hover {
		color:#FFFFFF;
		background-color:#000000;
	}
	
	header#head > nav > ul > li > div {
		display:block;
		position:inherit;
		left:0;
		top:75px;
		width:100%;
		background:#000000;
		padding:0;
		display:none;
		opacity:1;
	}
	
	header#head > nav > ul > li > div a {
		color:#FFF;
		font-weight:normal;
	}
	
	header#head > nav > ul > li > div h2 {
		width:auto;
		margin:0 auto;
		text-align:left;
		font-size:14px;
		font-weight:bold;
		border:1px #717171;
		border-bottom-style:solid;
		transition:all 0.15s ease-out;
	}
	
	header#head > nav > ul > li > div h2 a {
		display:block;
		padding:10px 10px 10px 25px;
		background-color:#242424;
	}
	
	header#head > nav > ul > li > div ul {
		width:auto;
		margin:0 auto;
		text-align:left;
		font-size:13px;
	}
	
	header#head > nav > ul > li > div ul li {
		width:auto;
		float:none;
		border:1px #717171;
		border-bottom-style:solid;
		margin:0;
		transition:all 0.15s ease-out;
	}
	
	header#head > nav > ul > li > div h2:hover,
	header#head > nav > ul > li > div ul li:hover {
		border-color:#f39800;
	}
	
	header#head > nav > ul > li > div ul li:nth-child(5n) {
		margin:0;
	}
	
	header#head > nav > ul > li > div ul li a {
		font-size:13px;
		font-weight:normal;
		display:block;
		padding:10px 10px 10px 25px;
		background-color:#242424;
	}
	
	header#head #sp_menu {
		display:block;
		width:30px;
		height:25px;
		position:absolute;
		right:10px;
		top:12px;
		list-style:none;
		font-size:26px;
		text-align:center;
	}
	
	header#head #sp_menu li {
		position:absolute;
		left:0;
		top:0;
		width:30px;
		height:25px;
		color:#f39800;
	}
	
	header#head #sp_menu li.icon-cancel {
		display:none;
	}
	
	.bg_sp_menu {
		position:fixed;
		width:100%;
		height:100%;
		background-color:#000000;
		z-index:98;
		display:none;
		top:0;
	}
	
	/* カテゴリ別ナビ設定 */
	
	header#head > nav > ul > li > div ul > li > a > div {
		display:none;
	}
	
	/* 企業情報 */
	header#head > nav > ul > li.nv_company > div ul li {
		width:auto;
		margin:0 0 0 0;
		padding:0;
	}
	
	header#head > nav > ul > li.nv_company > div ul li:nth-child(3n) {
		width:auto;
		margin:0 0 0 0;
	}
	
	header#head > nav > ul > li.nv_company > div ul li a {
		display:block;
		padding:0 0 5px 0;
		padding:10px 10px 10px 25px;
	}
	
	header#head > nav > ul > li.nv_company > div ul li a span {
		display:block;
		display:inline;
		padding:0 0 0 0;
	}
	
	/* 製品案内 */
	header#head > nav > ul > li.nv_products > div ul li {
		width:auto;
		margin:0 0 0 0;
	}
	
	header#head > nav > ul > li.nv_products > div ul li:nth-child(-n+3) {
		border:1px #666666;
		border-top-style:solid;
		padding-top:0;
		
		border:1px #666666;
		border-bottom-style:solid;
	}
	
	header#head > nav > ul > li.nv_products > div ul li:nth-child(3n) {
		margin:0 0 0 0;
	}
	
	header#head > nav > ul > li.nv_products > div ul li a {
		display:block;
		padding: 10px 10px 10px 25px;
	}
	
	/* 施工事例 */
	header#head > nav > ul > li.nv_event > div ul li {
		width:auto;
		margin:0 0 0 0;
		padding:0;
	}
	
	header#head > nav > ul > li.nv_event > div ul li:nth-child(4n) {
		margin:0 0 0 0;
	}
	
	header#head > nav > ul > li.nv_event > div ul li a {
		display:block;
		padding:10px 10px 10px 25px;
	}
	
	header#head > nav > ul > li.nv_event > div ul li a span {
		display:inline;
		padding:0;
	}
	
	
	/* 採用情報 */
	header#head > nav > ul > li.nv_recruit > div > ul > li {
		width:auto;
		margin:0 0 0 0;
		padding:0 0 0;
		border:1px #666666;
		border-bottom-style:solid;
	}
	
	header#head > nav > ul > li.nv_recruit > div > ul > li:nth-child(3n) {
		margin:0 0 0 0;
	}
	
	header#head > nav > ul > li.nv_recruit > div > ul > li > a {
		display:block;
		padding:10px 10px 10px 25px;
		color:#fff;
		font-size:13px;
		font-weight:normal;
	}
	
	header#head > nav > ul > li.nv_recruit > div > ul > li > ul {
		/*
		*/
		padding-top:0;
		padding-bottom:0;
		width:auto;
		border:1px #666666;
		border-top-style:solid;
		display:none;
	}
	
	header#head > nav > ul > li.nv_recruit > div > ul > li > ul > li {
		float:none;
		clear:both;
	}
	
	header#head > nav > ul > li.nv_recruit > div > ul > li > ul > li:last-child {
		border:none;
	}
	
	header#head > nav > ul > li.nv_recruit > div > ul > li > ul > li a {
		padding:10px 10px 10px 45px;
		background-color:#444;
	}
	
	header#head > nav > ul > li.nv_recruit > div a i {
		bottom:auto;
		font-size:24px;
	}
	
	header#head > nav > ul > li.nv_recruit > div > ul > li > a i {
		display:inherit;
		transform: rotate(90deg);
	}
	
	
	/* お問い合わせ */
	header#head > nav > ul > li.nv_contact > div ul li {
		width:auto;
		margin:0 0 0 0;
	}
	
	header#head > nav > ul > li.nv_contact > div ul li:nth-child(-n+3) {
		border:1px #666666;
		border-bottom-style:solid;
		padding-top:0;
	}
	
	header#head > nav > ul > li.nv_contact > div ul li:nth-child(3n) {
		margin:0 0 0 0;
	}
	
	header#head > nav > ul > li.nv_contact > div ul li a {
		display:block;
		padding:10px 10px 10px 25px;
	}
		
}


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

footer {
	background-color:#f39800;
	clear:both;
}

footer aside {
	width:100%;
	background:url(../image/bg_ft_contact.jpg) no-repeat;
	background-size:cover;
	background-color:#FFFFFF;
	padding:50px 0 70px;
}

footer aside a {
	color:#FFFFFF;
	text-decoration:none;
	display:block;
	padding:75px 5px 30px;
	font-size:17px;
	font-weight:bold;
}

footer aside a:hover {
	color:#f39800;
	text-decoration:none;
}

footer aside ul li:nth-child(1) a {
	background:url(../image/icon_mail.png) no-repeat center 28px;
}
footer aside ul li:nth-child(1) a:hover {
	background:url(../image/icon_mail_on.png) no-repeat center 28px;
}

footer aside ul li:nth-child(2) a {
	background:url(../image/icon_estimate.png) no-repeat center 28px;
}
footer aside ul li:nth-child(2) a:hover {
	background:url(../image/icon_estimate_on.png) no-repeat center 28px;
}

footer aside ul li:nth-child(3) a {
	background:url(../image/icon_faq.png) no-repeat center 28px;
}
footer aside ul li:nth-child(3) a:hover {
	background:url(../image/icon_faq_on.png) no-repeat center 28px;
}


footer aside h2 {
	font-size:22px;
	font-weight:normal;
	line-height:1.6em;
	margin:0 0 47px;
}

footer aside ul {
	width:980px;
	margin:0 auto;
	list-style:none;
}

footer aside ul li {
	width:308px;
	float:left;
	background-color:#f39800;
	margin:0 28px 0 0;
    border-radius: 4px;  
    -webkit-border-radius: 4px;  
    -moz-border-radius: 4px;
	transition:all 0.15s ease-out;
}

footer aside ul li:hover {
	background-color:#FFF;
}

footer aside ul li:nth-child(3n) {
	margin:0;
}

footer nav {
	clear:both;
	color:#FFF;
	background:#242424;
	padding:35px 0 35px;
}

footer nav a {
	color:#FFFFFF;
	text-decoration:none;
}

footer nav a:hover {
	color:#FFFFFF;
	text-decoration:none;
}

footer nav > ul {
	width:980px;
	margin:0 auto;
	text-align:left;
	line-height:1.2em;
}

footer nav ul {
	list-style:none;
}

footer nav > ul > li {
	width:164px;
	float:left;
	margin:0 40px 0 0;
}

footer nav > ul > li:nth-child(5) {
	margin:0 0 40px;
}

footer nav > ul > li:nth-child(6) {
	margin:0;
	float:right;
}

footer nav > ul > li > a {
	display:block;
	border:1px #FF9933;
	border-bottom-style:solid;
	padding:0 0 10px 0;
}

footer nav > ul > li > ul {
	font-size:13px;
	padding:10px 0 0;
}

footer nav > ul > li > ul > li {
	margin:0 0 7px;
}

footer .copyright {
	width:980px;
	height:72px;
	margin:0 auto;
	text-align:left;
	color:#FFF;
	background-color:#f39800;
	position:relative;
}

footer .copyright .logo {
	width:385px;
	height:56px;
	position:absolute;
	left:0;
	top:20px;
}

footer .copyright > p {
	text-align:right;
	padding:20px 0 0;
	font-size:12px;
}

#btn_pagetop {
	position:fixed;
	right:50px;
	bottom:100px;
	width:61px;
	height:61px;
	background-color:#f39800;
    border-radius: 30px;  
    -webkit-border-radius: 30px;  
    -moz-border-radius: 30px;
	line-height:0em;
	box-shadow:0px 0px 10px -1px #333;
	-moz-box-shadow:0px 0px 10px -1px #333;
	-webkit-box-shadow:0px 0px 10px -1px #333;
	display:none;
	z-index:100;
}

#btn_pagetop a {
	display:block;
	width:61px;
	height:37px;
	padding:24px 0 0;
}

@media screen and (max-width: 767px){
	
	footer {
		background-color:#f39800;
		clear:both;
	}
	
	footer aside {
		width:auto;
		background:none;
		background-color:#efefef;
		padding:20px 20px 25px;
	}
	
	footer aside a {
		color:#FFFFFF;
		text-decoration:none;
		display:block;
		padding:15px 5px 15px 50px;
		font-size:14px;
		font-weight:bold;
		text-align:left;
	}
	
	footer aside a:hover {
		color:#f39800;
		text-decoration:none;
	}
	
	footer aside ul li:nth-child(1) a {
		background:url(../image/icon_mail.png) no-repeat 20px center;
		background-size:20px auto;
	}
	footer aside ul li:nth-child(1) a:hover {
		background:url(../image/icon_mail_on.png) no-repeat 20px center;
		background-size:20px auto;
	}
	
	footer aside ul li:nth-child(2) a {
		background:url(../image/icon_estimate.png) no-repeat 20px center;
		background-size:20px auto;
	}
	footer aside ul li:nth-child(2) a:hover {
		background:url(../image/icon_estimate_on.png) no-repeat 20px center;
		background-size:20px auto;
	}
	
	footer aside ul li:nth-child(3) a {
		background:url(../image/icon_faq.png) no-repeat 20px center;
		background-size:20px auto;
	}
	footer aside ul li:nth-child(3) a:hover {
		background:url(../image/icon_faq_on.png) no-repeat 20px center;
		background-size:20px auto;
	}
	
	
	footer aside h2 {
		font-size:14px;
		font-weight:normal;
		line-height:1.6em;
		margin:0 0 20px;
	}
	
	footer aside ul {
		width:auto;
		margin:0 auto;
		list-style:none;
	}
	
	footer aside ul li {
		width:auto;
		float:none;
		background-color:#f39800;
		margin:0 0 10px 0;
		border-radius: 4px;  
		-webkit-border-radius: 4px;  
		-moz-border-radius: 4px;
		transition:all 0.15s ease-out;
	}
	
	footer aside ul li:hover {
		background-color:#FFF;
	}
	
	footer aside ul li:nth-child(3n) {
		margin:0;
	}
	
	footer nav {
		display:none;
	}
		
	footer .copyright {
		width:auto;
		height:86px;
		margin:0 auto;
		text-align:left;
		color:#FFF;
		background-color:#f39800;
		position:relative;
	}
	
	footer .copyright .logo {
		width:242px;
		height:33px;
		position:absolute;
		margin:auto;
		left:0;
		right:0;
		top:12px;
	}
	footer .copyright .logo img {
		width:100%;
		height:auto;
	}
	
	footer .copyright > p {
		text-align:center;
		padding:50px 0 0;
		font-size:8px !important;
		line-height:1.4em;
	}
	
	#btn_pagetop {
		position:fixed;
		right:50px;
		bottom:100px;
		width:61px;
		height:61px;
		background-color:#f39800;
		border-radius: 30px;  
		-webkit-border-radius: 30px;  
		-moz-border-radius: 30px;
		line-height:0em;
		box-shadow:0px 0px 10px -1px #333;
		-moz-box-shadow:0px 0px 10px -1px #333;
		-webkit-box-shadow:0px 0px 10px -1px #333;
		display:none;
	}
	
	#btn_pagetop a {
		display:block;
		width:61px;
		height:37px;
		padding:24px 0 0;
	}
	
}

/* footer (RECRUIT)
-------------------------------------------------- */

body.recruit footer .ft_recruit_navi {
	width:100%;
	background:none;
	background-color:#e0e0e0;
	padding:50px 0 22px;
}

body.recruit footer .ft_recruit_navi a {
	color:#fff;
	text-decoration:none;
	display:block;
	padding:0;
	font-size:17px;
	font-weight:bold;
    position: relative;
    background-color:#e0e0e0;
}

body.recruit footer .ft_recruit_navi a:hover {
    color:#000;
}
body.recruit footer .ft_recruit_navi a:hover,
body.recruit footer .ft_recruit_navi a img:hover {
    opacity: 1 @important;
}

body.recruit footer .ft_recruit_navi ul li:nth-child(1) a,
body.recruit footer .ft_recruit_navi ul li:nth-child(2) a,
body.recruit footer .ft_recruit_navi ul li:nth-child(3) a {
	background:none;
}

body.recruit footer .ft_recruit_navi ul {
    width: 980px;
    text-align: center;
    margin: 0 auto;
}

body.recruit footer .ft_recruit_navi ul li {
	width:308px;
    float: left;
    display: inline-block;
	background-color:transparent;
	margin:0 28px 28px 0;
    border-radius: 4px;  
    -webkit-border-radius: 4px;  
    -moz-border-radius: 4px;
	transition:all 0.15s ease-out;
}

body.recruit footer .ft_recruit_navi ul li:nth-child(3n) {
    margin:0 0 28px 0;
}

body.recruit footer .ft_recruit_navi ul li:hover {
	/*background-color:#f39800;*/
    border-radius: 4px;  
}

body.recruit footer .ft_recruit_navi ul li p {
    position: absolute;
    line-height: 1em;
    height: 1em;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
body.recruit footer .ft_recruit_navi ul li span.overlay {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.5;
    border-radius: 4px;
    transition:all 0.15s ease-out;
}
body.recruit footer .ft_recruit_navi ul li:hover span.overlay {
    opacity: 0;
}

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

    body.recruit footer .ft_recruit_navi {
        width:100%;
        background:none;
        background-color:#e0e0e0;
        margin: 80px 0 0;
        padding:20px 0 22px;
    }

    body.recruit footer .ft_recruit_navi a {
        color:#fff;
        text-decoration:none;
        display:block;
        padding:0;
        font-size:11px;
        font-weight:bold;
        position: relative;
        background-color:#e0e0e0;
    }

    body.recruit footer .ft_recruit_navi a:hover {
        color:#000;
    }
    body.recruit footer .ft_recruit_navi a:hover,
    body.recruit footer .ft_recruit_navi a img:hover {
        opacity: 1 @important;
    }

    body.recruit footer .ft_recruit_navi ul li:nth-child(1) a,
    body.recruit footer .ft_recruit_navi ul li:nth-child(2) a,
    body.recruit footer .ft_recruit_navi ul li:nth-child(3) a {
        background:none;
    }

    body.recruit footer .ft_recruit_navi ul {
        width: auto;
        text-align: center;
        margin: 0 20px;
    }

    body.recruit footer .ft_recruit_navi ul li {
        width:48%;
        float: left;
        display: inline-block;
        background-color:transparent;
        margin:0 2% 15px 0;
        border-radius: 4px;  
        -webkit-border-radius: 4px;  
        -moz-border-radius: 4px;
        transition:all 0.15s ease-out;
    }
    body.recruit footer .ft_recruit_navi ul li img {
        width: 100%;
        height: auto;
    }

    body.recruit footer .ft_recruit_navi ul li:nth-child(3n) {
        margin:0 2% 15px 0;
    }
    body.recruit footer .ft_recruit_navi ul li:nth-child(2n) {
        margin:0 0 15px 0;
    }

    body.recruit footer .ft_recruit_navi ul li:hover {
        /*background-color:#f39800;*/
        border-radius: 4px;  
    }

    body.recruit footer .ft_recruit_navi ul li p {
        position: absolute;
        line-height: 1em;
        height: 1em;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
    }
    body.recruit footer .ft_recruit_navi ul li span.overlay {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: #000;
        opacity: 0.5;
        border-radius: 4px;
        transition:all 0.15s ease-out;
    }
    body.recruit footer .ft_recruit_navi ul li:hover span.overlay {
        opacity: 0;
    }
	
}



/* main
-------------------------------------------------- */

main {
	/*padding:0 0 0;*/
	padding:75px 0 0;
	background-color:#ffffff;
}

main > article.inner {
	background-color:#ffffff;
	padding:0 0 50px;
}

#index.contact main > article.inner {
	background-color:#f4f4f4;
	padding:0 0 50px;
}

main > article > header {
	/*background-color:#66CC99;*/
	position:relative;
}

body#index main > article > header .inner {
	height:370px;
	position:relative;
}

body:not(#index).contact main > article > header .inner {
	height:97px;
	position:relative;
}

body:not(#index) main > article > header .inner,
body#faq.contact main > article > header .inner {
	height:370px;
	position:relative;
}

body#event_sekou main > article > header .inner {
	height:370px;
	position:relative;
}

body.company main > article > header .inner {
	background:url(../image/bg_main.jpg) no-repeat center top;
	background-size:cover;
}
body.product main > article > header .inner {
	background:url(../image/bg_main1.jpg) no-repeat center top;
	background-size:cover;
}
body.results main > article > header .inner {
	background:url(../image/bg_main2.jpg) no-repeat center center;
	background-size:cover;
}
body#event_sekou main > article > header .inner {
	background:url(../image/bg_main3.jpg) no-repeat center center;
	background-size:cover;
}
body.contact main > article > header .inner {
	background:url(../image/bg_main4.jpg) no-repeat center top;
	background-size:cover;
}
body.news main > article > header .inner {
	background:url(../image/bg_main5.jpg) no-repeat center top;
	background-size:cover;
}
body.blog main > article > header .inner {
	background:url(../image/bg_main6.jpg) no-repeat center top;
	background-size:cover;
}

body main > article > header .inner h1 {
	position:absolute;
	margin:auto;
	left:0;
	right:0;
	font-size:35px;
	font-weight:bold;
	color:#FFFFFF;
}

body main > article > header .inner p {
	position:absolute;
	margin:auto;
	left:0;
	right:0;
	font-family: 'Roboto Condensed', sans-serif;
	color:#f39800;
	font-style:italic;
	font-weight:bold;
	font-size:17px;
	letter-spacing:0.05em;
}

body#index main > article > header .inner h1 {
	top:150px;
}

body#index main > article > header .inner p {
	top:190px;
}

body#index.results main > article > header .inner h1 {
	top:150px;
}

body#index.results main > article > header .inner p {
	top:190px;
}

body#event_sekou.results main > article > header .inner p {
	top:125px;
}

body:not(#index) main > article > header .inner h1 {
	top:150px;
}

body:not(#index).product main > article > header .inner h1 {
	top:75px;
}

body:not(#index) main > article > header .inner p {
	/*display:none;*/
	top:190px;
}

body:not(#index).results main > article > header .inner h1 {
	color:#fff;
}
body#event_sekou main > article > header .inner h1 {
	color:#000 !important;
}

body:not(#index).contact main > article > header .inner h1 {
	top:35px;
}

body#faq.contact main > article > header .inner h1 {
	top:80px;
}

#breadcrumb {
	background-color:#FFF;
}

.blog #breadcrumb {
	background-color:#f4f4f4;
}

#breadcrumb > ul {
	width:100%;
	max-width:980px;
	margin:0 auto;
	text-align:left;
	list-style:none;
	font-size:12px;
	padding:5px 0 40px;
}

#breadcrumb li {
	display:inline-block;
}

#breadcrumb li i {
	padding:0 0 0 5px;
}

#breadcrumb li br{
	display:none;
}

#breadcrumb a {
	color:#FF9900;
}

#breadcrumb a:hover {
	color:#009900;
}

#return_index {
	font-size:12px;
	text-align:right;
	width:100%;
	max-width:980px;
	margin:0px auto 0;
	position:relative;
	list-style:none;
}

#return_index a {
	position:absolute;
	right:0;
	top:0;
	padding:12px 15px 10px;
	color:#000000;
	text-decoration:none;
	font-size:12px;
	line-height:1.0em;
	border:2px #e4e4e4 solid;
    border-radius: 18px;  
    -webkit-border-radius: 18px;  
    -moz-border-radius: 18px;
	z-index:60;
	transition:all 0.15s ease-out;
}

#return_index a:hover {
	background-color:#e4e4e4;
}

main > article > div.main_inner {
	width:980px;
	margin:0 auto;
	text-align:left;
}

main > article > div.main_inner_wide {
	width:100%;
	min-width:980px;
	text-align:center;
}

.has_bgcolor_gray {
	background-color:#f4f4f4;
}

main article .ttl_page {
	text-align:center;
	font-size:30px;
	line-height:1.6em;
	margin:0 0 50px;
}

main article .ttl_page2 {
	text-align:center;
	font-size:30px;
	line-height:1.6em;
	margin:0 0 10px;
}

main article .ttl_page2_sub {
	margin:0 0 20px;
}



@media screen and (max-width: 767px){
	
	main {
		/*padding:0 0 0;*/
		padding:50px 0 0;
		background-color:#ffffff;
	}
	
	main > article.inner {
		background-color:#ffffff;
		padding:0 0 20px;
	}
	
	#index.contact main > article.inner {
		background-color:#f4f4f4;
		padding:0 0 50px;
	}
	
	main > article > header {
		/*background-color:#66CC99;*/
		position:relative;
	}
	
	body#index main > article > header .inner {
		height:100px;
		position:relative;
	}
		
	body:not(#index).contact main > article > header .inner {
		height:97px;
		position:relative;
	}
	
	body:not(#index) main > article > header .inner,
	body#faq.contact main > article > header .inner {
		height:100px;
		position:relative;
	}
	
	body.company main > article > header .inner {
		background:url(../image/bg_main.jpg) no-repeat center top;
		background-size:cover;
	}
	body.product main > article > header .inner {
		background:url(../image/bg_main1.jpg) no-repeat center top;
		background-size:cover;
	}
	body.results main > article > header .inner {
		background:url(../image/bg_main2.jpg) no-repeat center top;
		background-size:cover;
	}
	body#event_sekou main > article > header .inner {
		background:url(../image/bg_main2.jpg) no-repeat center top;
		background-size:cover;
	}
	body.contact main > article > header .inner {
		background:url(../image/bg_main4.jpg) no-repeat center top;
		background-size:cover;
	}
	body.news main > article > header .inner {
		background:url(../image/bg_main5.jpg) no-repeat center top;
		background-size:cover;
	}
	body.recruit main > article > header .inner {
		background:url(../image/bg_main7.jpg) no-repeat center top;
		background-size:cover;
	}
	body#interview.recruit.index main > article > header .inner {
		height:95px;
	}
	
	body main > article > header .inner h1 {
		position:absolute;
		margin:auto;
		left:0;
		right:0;
		font-size:20px;
		font-weight:bold;
		color:#FFFFFF;
	}
	
	body.product main > article > header .inner h1 {
		position:absolute;
		margin:auto;
		left:0;
		right:0;
		font-size:16px;
		font-weight:bold;
		color:#FFFFFF;
		padding:0 10px;
	}
	
	body main > article > header .inner p {
		position:absolute;
		margin:auto;
		left:0;
		right:0;
		font-family: 'Roboto Condensed', sans-serif;
		color:#f39800;
		font-style:italic;
		font-weight:bold;
		font-size:12px;
		letter-spacing:0.05em;
	}
	
	body#index main > article > header .inner h1 {
		top:30px;
	}
	
	body#index main > article > header .inner p {
		top:55px;
	}
	
	body#index.results main > article > header .inner h1 {
		top:30px;
		color:#fff;
	}
	
	body#index.results main > article > header .inner p {
		top:55px;
		color:#f39800;
	}
		
	body:not(#index) main > article > header .inner h1 {
		top:30px;
	}
	
	body:not(#index).product main > article > header .inner h1 {
		top:20px;
	}
	
	body:not(#index) main > article > header .inner p {
		top:55px;
	}
	
	body:not(#index).recruit main > article > header .inner h1 {
		top:20px;
	}
	
	body:not(#index).contact main > article > header .inner h1 {
		top:35px;
	}
	
	body#faq.contact main > article > header .inner h1 {
		top:20px;
		font-size:18px;
	}
	
	#breadcrumb {
		background-color:#FFF;
	}
	
	#breadcrumb > ul {
		width:auto;
		max-width:none;
		margin:0 auto;
		text-align:left;
		list-style:none;
		font-size:12px;
		padding:5px 10px 20px;
	}
	
	#breadcrumb li {
		font-size:10px;
		display:inline-block;
	}
	
	#breadcrumb li i {
		padding:0 0 0 5px;
	}
	
	#breadcrumb a {
		color:#FF9900;
	}
	
	#breadcrumb a:hover {
		color:#009900;
	}
	
	#return_index {
		font-size:12px;
		text-align:right;
		width:100%;
		max-width:980px;
		margin:0px auto 0;
		position:relative;
		list-style:none;
	}
	
	#return_index a {
		position:absolute;
		right:0;
		top:0;
		padding:12px 15px 10px;
		color:#000000;
		text-decoration:none;
		font-size:12px;
		line-height:1.0em;
		border:2px #e4e4e4 solid;
		border-radius: 18px;  
		-webkit-border-radius: 18px;  
		-moz-border-radius: 18px;
		z-index:120;
		transition:all 0.15s ease-out;
	}
	
	#return_index a:hover {
		background-color:#e4e4e4;
	}
	
	main > article > div.main_inner {
		width:auto;
		margin:0 20px;
		text-align:left;
	}
	
	main > article > div.main_inner_wide {
		width:100%;
		min-width:inherit;
		text-align:center;
	}
	
	main article .ttl_page {
		text-align:center;
		font-size:20px;
		line-height:1.6em;
		margin:0 0 20px;
	}
	
	main article .ttl_page2 {
		text-align:center;
		font-size:20px;
		line-height:1.6em;
		margin:0 0 10px;
	}
	
	main article .ttl_page2_sub {
		margin:0 0 10px;
	}
			
}


/* common
-------------------------------------------------- */

.sec_common01 {
	margin:0 0 50px;
}

/* title */
.sec_title01 {
	clear:both;
	font-size:25px;
	line-height:1.6em;
	margin:0 0 15px;
}

.sec_title02 {
	clear:both;
	font-size:25px;
	line-height:1.6em;
	margin:0 0 30px;
	padding:20px 0 0;
	text-align:center;
}

.sec_title03 {
	clear:both;
	font-size:35px;
	line-height:1.6em;
	margin:0 0 30px;
	text-align:center;
}


/* text */
.txt_lead01 {
	margin:0 0 30px;
}


/* table */
.tbl_common01 {
	width:100%;
}

.tbl_common01 th,
.tbl_common01 td {
	border:1px #CCCCCC;
	padding:15px 10px 13px 20px;
}

.tbl_common01 th {
	width:20%;
	border-style:solid solid solid none;
	background-color:#fefbf4;
}

.tbl_common01 td {
	border-style:solid none solid solid;
}

.tbl_common02 {
	width:100%;
}

.tbl_common02 th,
.tbl_common02 td {
	border:1px #CCCCCC;
	padding:25px 30px 23px 35px;
}

.tbl_common02 th {
	width:18%;
	border-style:solid solid solid none;
	background-color:#f4f4f4;
	font-size:20px;
	font-weight:bold;
	line-height:1.5em;
	text-align:center;
	vertical-align:middle;
}

.tbl_common02 td {
	border-style:solid none solid solid;
}



/* button */
.btn_common01 {
	clear:both;
	text-align:center;
	height:auto;
}

.btn_common01 a {
	display:inline-block;
	margin:0 10px;
	padding:10px 60px 10px;
	color:#f39800;
	background-color:#FFF;
	font-weight:bold;
	text-decoration:none;
	border:2px #f39800 solid;
    border-radius: 26px;  
    -webkit-border-radius: 26px;  
    -moz-border-radius: 26px;
}

.btn_common01 a:hover {
	color:#FFFFFF;
	background-color:#f39800;
	text-decoration:none;
}

.btn_common02 {
	clear:both;
	text-align:center;
	height:auto;
	padding:60px 0 0;
}

.btn_common02 a {
	display:inline-block;
	margin:0 10px;
	font-size:20px;
	padding:20px 165px 20px;
	color:#fff;
	background-color:#f39800;
	font-weight:bold;
	text-decoration:none;
	border:2px #f39800 solid;
    border-radius: 36px;  
    -webkit-border-radius: 36px;  
    -moz-border-radius: 36px;
}

.btn_common02 a:hover {
	color:#f39800;
	background-color:#fff;
	text-decoration:none;
}

.btn_common03 {
	clear:both;
	text-align:center;
	height:auto;
	margin:0 0 40px;
}

.btn_common03 a {
	padding:12px 60px 12px;
	color:#f39800;
	background-color:#FFF;
	font-weight:bold;
	text-decoration:none;
	border:2px #f39800 solid;
    border-radius: 22px;  
    -webkit-border-radius: 22px;  
    -moz-border-radius: 22px;
}

.btn_common03 a:hover {
	color:#FFFFFF;
	background-color:#f39800;
	text-decoration:none;
}

.btn_common04 {
	clear:both;
	text-align:center;
	height:auto;
}

.btn_common04 a {
	display:inline-block;
	margin:0 10px;
	padding:18px 80px 18px;
	color:#f39800;
	background-color:#FFF;
	font-size:18px;
	font-weight:bold;
	text-decoration:none;
	border:2px #f39800 solid;
    border-radius: 34px;  
    -webkit-border-radius: 34px;  
    -moz-border-radius: 34px;
}

.btn_common04 a:hover {
	color:#FFFFFF;
	background-color:#f39800;
	text-decoration:none;
}




.btn_common05 {
	clear:both;
	text-align:center;
	height:auto;
	padding:60px 0 0;
}

.btn_common05 a {
	display:inline-block;
	width:auto;
	min-width:480px;
	margin:0 10px 20px;
	font-size:20px;
	padding:20px 70px 20px;
	color:#fff;
	background-color:#f39800;
	font-weight:bold;
	text-decoration:none;
	border:2px #f39800 solid;
    border-radius: 36px;  
    -webkit-border-radius: 36px;  
    -moz-border-radius: 36px;
}

.btn_common05 a:hover {
	color:#f39800;
	background-color:#fff;
	text-decoration:none;

}

.box_btn_entry {
	font-size:0;
	padding:30px 0 40px;
}
.box_btn_entry > p {
	display:inline-block;
	padding:0;
}
.box_btn_entry > p:nth-child(1) {
	width:420px;
	margin-right:20px;
}
.box_btn_entry > p:nth-child(2) {
	box-sizing:border-box;
	width:540px;
	border:2px #cccccc solid;
    border-radius: 36px;  
    -webkit-border-radius: 36px;  
    -moz-border-radius: 36px;
	overflow:hidden;
}
.box_btn_entry > p a {
	min-width:inherit;
	margin:0;
}
.box_btn_entry > p:nth-child(1) a {
	display:block;
	padding:20px 0;
}
.box_btn_entry > p:nth-child(2) a {
	display:block;
	padding:15px 0;
	text-align:center;
}
.box_btn_entry > p:nth-child(2):hover {
	border:2px #00abeb solid;
}

.btn_base{
	background-color:#f4f4f4;
	padding:0 0 50px 0;
	margin-bottom:0px;
}

.btn_base2{
	background-color:#f4f4f4;
	padding:0 0 50px 0;
	margin-bottom:-50px;
}




.btn_category {
	clear:both;
	text-align:center;
	height:auto;
	margin:20px 0 40px;
}

.btn_category a {
	padding:12px 40px 12px;
	color:#333;
	background-color:#FFF;
	font-weight:bold;
	text-decoration:none;
	border:2px #e4e4e4 solid;
    border-radius: 22px;  
    -webkit-border-radius: 22px;  
    -moz-border-radius: 22px;
}

.btn_category a:hover {
	color:#333;
	background-color:#e4e4e4;
	text-decoration:none;
}

.sp_only {
	display:none;
}

.pc_only {
	display:block;
}

a.sp_phone {
	color:#000;
	text-decoration:none;
	pointer-events: none;
}


@media screen and (max-width: 767px){
	
	.sec_common01 {
		margin:0 0 20px;
	}
	
	/* title */
	.sec_title01 {
		clear:both;
		font-size:18px;
		line-height:1.6em;
		margin:0 0 5px;
	}
	
	.sec_title02 {
		clear:both;
		font-size:18px;
		line-height:1.6em;
		margin:0 0 30px;
		padding:20px 0 0;
		text-align:center;
	}
	
	.sec_title03 {
		clear:both;
		font-size:20px;
		line-height:1.6em;
		margin:0 0 15px;
		text-align:center;
	}
	
	
	/* text */
	.txt_lead01 {
		margin:0 0 30px;
	}
	
	
	/* table */
	.tbl_common01 {
		width:100%;
	}
	
	.tbl_common01 th,
	.tbl_common01 td {
		box-sizing:border-box;
		border:1px #CCCCCC;
		padding:5px 10px 5px 10px;
	}
	
	.tbl_common01 th {
		width:100%;
		border:none;
		background-color:#fefbf4;
		display:block;
	}
	
	.tbl_common01 td {
		border-style:solid none none none;
		display:block;
		padding:5px 10px 10px 10px;
	}
	
	.tbl_common02 {
		width:100%;
	}
	
	.tbl_common02 th,
	.tbl_common02 td {
		border:1px #CCCCCC;
		padding:10px 15px 15px 15px;
	}
	
	.tbl_common02 th {
		width:22%;
		border-style:solid solid solid none;
		background-color:#f4f4f4;
		font-size:15px;
		font-weight:bold;
		line-height:1.5em;
		text-align:center;
		vertical-align:middle;
	}
	
	.tbl_common02 td {
		border-style:solid none solid solid;
		padding:10px 0 15px 15px;
	}
	
	
	/* button */
	.btn_common01 {
		clear:both;
		text-align:center;
		height:auto;
		margin:0 0 20px;
	}
	
	.btn_common01 a {
		box-sizing:border-box;
		width:80%;
		display:inline-block;
		padding:8px 10px 8px;
		margin:0 0 10px;
		color:#f39800;
		background-color:#FFF;
		font-weight:bold;
		text-decoration:none;
		border:2px #f39800 solid;
		border-radius: 22px;  
		-webkit-border-radius: 22px;  
		-moz-border-radius: 22px;
	}
	
	.btn_common01 a:hover {
		color:#FFFFFF;
		background-color:#f39800;
		text-decoration:none;
	}
	
	.btn_common02 {
		clear:both;
		text-align:center;
		height:auto;
		padding:0px 0 0;
	}
	
	.btn_common02 a {
		box-sizing:border-box;
		width:80%;
		display:inline-block;
		font-size:16px;
		padding:8px 10px 8px;
		color:#fff;
		background-color:#f39800;
		font-weight:bold;
		text-decoration:none;
		border:2px #f39800 solid;
		border-radius: 36px;  
		-webkit-border-radius: 36px;  
		-moz-border-radius: 36px;
	}
	
	.btn_common02 a:hover {
		color:#f39800;
		background-color:#fff;
		text-decoration:none;
	}
	
	.btn_common03 {
		clear:both;
		text-align:center;
		height:auto;
		margin:0 0 40px;
	}
	
	.btn_common03 a {
		padding:8px 40px 8px;
		color:#f39800;
		background-color:#FFF;
		font-weight:bold;
		text-decoration:none;
		border:2px #f39800 solid;
		border-radius: 22px;  
		-webkit-border-radius: 22px;  
		-moz-border-radius: 22px;
	}
	
	.btn_common03 a:hover {
		color:#FFFFFF;
		background-color:#f39800;
		text-decoration:none;
	}
	
	.btn_common04 {
		clear:both;
		text-align:center;
		height:auto;
	}
	
	.btn_common04 a {
		box-sizing:border-box;
		width:80%;
		display:inline-block;
		margin:0 0 10px;
		padding:8px 10px 8px;
		color:#f39800;
		background-color:#FFF;
		font-size:14px;
		font-weight:bold;
		text-decoration:none;
		border:2px #f39800 solid;
		border-radius: 22px;  
		-webkit-border-radius: 22px;  
		-moz-border-radius: 22px;
	}
	
	.btn_common04 a:hover {
		color:#FFFFFF;
		background-color:#f39800;
		text-decoration:none;
	}
		
	
	
	
	.btn_common05 {
		clear:both;
		text-align:center;
		height:auto;
		padding:0 0 0;
	}

	.btn_common05 a {
		box-sizing:border-box;
		width:90%;
		min-width:inherit;
		display:block;
		font-size:15px;
		padding:8px 10px 8px;
		margin:0 auto 10px;
		color:#fff;
		background-color:#f39800;
		font-weight:bold;
		text-decoration:none;
		border:2px #f39800 solid;
		border-radius: 36px;  
		-webkit-border-radius: 36px;  
		-moz-border-radius: 36px;
	}
	
		.btn_common05 a:hover {
			color:#f39800;
			background-color:#fff;
			text-decoration:none;
	
	}


	.box_btn_entry {
		font-size:0;
		padding:0 0 10px;
	}
	.box_btn_entry > p {
		display:block;
		padding:0;
	}
	.box_btn_entry > p:nth-child(1) {
		box-sizing:border-box;
		width:90%;
		margin:0 auto;
	}
	.box_btn_entry > p:nth-child(2) {
		box-sizing:border-box;
		width:90%;
		margin:10px auto 0;
		border:2px #cccccc solid;
		border-radius: 36px;  
		-webkit-border-radius: 36px;  
		-moz-border-radius: 36px;
		overflow:hidden;
	}
	.box_btn_entry > p a {
		min-width:inherit;
		margin:0;
	}
	.box_btn_entry > p:nth-child(1) a {
		display:block;
		width:100%;
		padding:8px 10px 8px;
	}
	.box_btn_entry > p:nth-child(2) a {
		display:block;
		padding:7px 0 11px;
		text-align:center;
	}
	.box_btn_entry > p:nth-child(2) img {
		width:auto;
		height:18px;
	}
	.box_btn_entry > p:nth-child(2):hover {
		border:2px #00abeb solid;
	}


		
		.btn_base{
			background-color:#f4f4f4;
			padding:20px 0 30px 0;
			margin-bottom:0px;
	}
	
		.btn_base2{
			background-color:#f4f4f4;
			padding:30px 0 50px 0;
			margin-bottom:-50px;
	}
	
	
	
	
	
	
	
	.btn_category {
		clear:both;
		text-align:center;
		height:auto;
		margin:10px 0 20px;
		padding:10px 0 0;
	}
	
	.btn_category a {
		padding:8px 40px 8px;
		color:#333;
		background-color:#FFF;
		font-weight:bold;
		text-decoration:none;
		border:2px #e4e4e4 solid;
		border-radius: 22px;  
		-webkit-border-radius: 22px;  
		-moz-border-radius: 22px;
	}
	
	.btn_category a:hover {
		color:#333;
		background-color:#e4e4e4;
		text-decoration:none;
	}
	
	.sp_only {
		display:block;
	}
	
	.pc_only {
		display:none;
	}
	
	a.sp_phone {
		color:#f39800;
		text-decoration:underline;
		pointer-events:inherit;
	}
		
}


/* SUB NAVI
-------------------------------------------------- */

.sub_navi {
	background-color:#FFFFFF;
	font-size:0px;
	padding:0 0 50px;
}

.sub_navi ul {
	width:980px;
	margin:0 auto;
}

.sub_navi li {
	display:inline-block;
	display:inline-table;
	width:270px;
	padding:0 8px;
}

body.recruit#graduate .sub_navi li {
	width:229px;
}

body.recruit#partner .sub_navi li {
	width:180px;
	vertical-align:bottom;
}

.sub_navi li a {
	display:block;
	display:table-cell;
	vertical-align:middle;
	vertical-align:central;
	font-size:16px;
	line-height:1.2em;
	font-weight:bold;
	height:66px;
	border:2px #ccc solid;
	color:#000;
	text-decoration:none;
	padding:0 10px;
}

.sub_navi li a:hover {
	color:#f39800;
	border-color:#f39800;
}

/* 選択状態 */

.recruit.aboutus .sub_navi li.aboutus a,
.recruit.data .sub_navi li.data a,
.recruit.history .sub_navi li.history a,
.recruit.information .sub_navi li.information a,
.recruit.workflow .sub_navi li.workflow a,
.recruit.oneday .sub_navi li.oneday a,
.recruit.appeal .sub_navi li.appeal a,
.recruit.personality .sub_navi li.personality a,
.recruit.training .sub_navi li.training a,
.recruit.faq .sub_navi li.faq a,
.recruit.requirement .sub_navi li.requirement a,
.recruit.advantage .sub_navi li.advantage a,
.recruit.office .sub_navi li.office a,
.recruit.welfare .sub_navi li.welfare a,
.recruit#interview .sub_navi li.interview a,
.recruit.job .sub_navi li.job a,
.recruit.flow .sub_navi li.flow a {
	color:#f39800;
	border-color:#f39800;
}


@media screen and (max-width: 767px){
	
	.sub_navi {
		background-color:#FFFFFF;
		font-size:0px;
		padding:0 0 25px;
	}
	
	.sub_navi ul {
		width:auto;
		margin:0 auto;
		padding:0 12px;
		text-align:left;
	}
	
	.sub_navi li {
		display:inline-block;
		display:inline-table;
		box-sizing:border-box;
		width:50%;
		padding:5px;
		vertical-align:bottom;
	}
	
	body.recruit#graduate .sub_navi li {
		width:50%;
	}
	
	body.recruit#partner .sub_navi li {
		width:50%;
	}
	
	.sub_navi li a {
		display:block;
		display:table-cell;
		vertical-align:middle;
		vertical-align:central;
		font-size:13px;
		line-height:1.2em;
		font-weight:bold;
		height:45px;
		border:2px #ccc solid;
		color:#000;
		text-decoration:none;
		text-align:center;
		padding:0 10px;
	}
	
	.sub_navi li a:hover {
		color:#f39800;
		border-color:#f39800;
	}
	
}

