@charset "utf-8";
/* CSS ヘッダー・フッター*/

/*
header
---------------------------------------------*/
#header {
	padding:1em 0;
	min-height: 4rem;
	border-bottom: solid 1px #999;
	-webkit-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

#title_copy,
#header_tel,
#header_request { display:none;}

#header_logo img{ width:10rem;}


/*
nav
---------------------------------------------*/
/* ハンバーガーメニュー */
#menu{
	display: none;
	background-color: #F8F8F5;
}

#menu li{ box-sizing: border-box; }

#g_menu01 a{ background-image: url(../images/nav_icon01.png); }
#g_menu02 a{ background-image: url(../images/nav_icon02.png); }
#g_menu03 a{ background-image: url(../images/nav_icon03.png); }
#g_menu04 a{ background-image: url(../images/nav_icon04.png); }
#g_menu05 a{ background-image: url(../images/nav_icon05.png); }
#g_menu06 a{ background-image: url(../images/nav_icon06.png); }

#menu li a{
	position: relative;
	text-decoration: none;
	color: #333;
	border-bottom: 1px solid #ccc;
	display: block;
	padding-top: 18px;
	padding-bottom: 18px;
	padding-left: 50px;
	background-color: #f8f8f8;
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: 30px;
	-webkit-transition: .2s ease-in-out;
	    -ms-transition: .2s ease-in-out;
	        transition: .2s ease-in-out;
	cursor: pointer;
	}
	#menu li a::after{
		content: '';
		display: block;
		width: 10px;
		height: 10px;
		border: 0px;
		border-top  : solid 2px #ccc;
		border-right: solid 2px #ccc;
		-ms-transform: rotate(45deg);
			transform: rotate(45deg);
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto 0;
		right: 1em;
	}
	#menu li a:hover{
		background-color: #fff2d4;
		color: #333;
		box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
	}
 
  
/* ハンバーガーボタンアイコン */
#toggle {
	display: none;
    position: absolute;
    right: 0;
    top  : -0.4em;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
    padding-left : 5px;
    padding-right: 5px;
    background-color: #FFF;
    padding-top: 10px;
}

#toggle div { position: relative; }
#toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #008131;
    left: 0;
	-webkit-transition: .35s ease-in-out;
        -ms-transition: .35s ease-in-out;
            transition: .35s ease-in-out;
}
#toggle span:nth-child(1) { top:    0;}
#toggle span:nth-child(2) { top: 11px;}
#toggle span:nth-child(3) { top: 22px;}
#toggle { display: block; }

/* #nav-toggle 切り替えアニメーション */
.open #toggle span:nth-child(1) {
    top: 11px;
    -ms-transform: rotate(315deg);
    	transform: rotate(315deg);
}
.open #toggle span:nth-child(2) {
    width: 0;
    left: 50%;
}
.open #toggle span:nth-child(3) {
    top: 11px;
    -ms-transform: rotate(-315deg);
        transform: rotate(-315deg);
}


/*
footer
---------------------------------------------*/
/*
コンタクト
----------------------------------------------*/
.cv_contact { padding:30px 0 60px;}
.cv_contact__midashi{
	font-size:1.3em;
	margin-bottom:20px;
	margin-left: 10px;
}
.cv_contact ul.flex {
	margin-left:10px;
	margin-right:10px;
}
/*電話でのお問合せ*/
.cv_contact__tel {
	width:100%;
	margin-bottom:20px;
}
/*スマホでのみJavaScriptで<a>タグが発生する*/
.cv_contact__tel a{
	color:#333;
	text-decoration:none;
}
.cv_contact__tel dl.flex {
	-ms-flex-pack: center; /*IE10*/
    justify-content: center;
	margin-bottom:10px;
	font-size:small;
}
.cv_contact__tel dl.flex dt {
	width:30%;
	padding:25px 10px;
	background-color:#bf1139;
	font-size:x-large;
	color:#fff;
	text-align:center;
	border-top-left-radius: 10px;  
    border-bottom-left-radius: 10px;
	-ms-border-top-left-radius: 10px;  
    -ms-border-bottom-left-radius: 10px;
	-webkit-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;  
}
.cv_contact__tel dl.flex dd {
	width:70%;
	padding:25px 20px;
	background-color:#f4f4f4;
	font-size:x-large;
	text-align: center;
	border-top-right-radius: 10px;  
    border-bottom-right-radius: 10px;
	-ms-border-top-right-radius: 10px;  
    -ms-border-bottom-right-radius: 10px;
	-webkit-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

/*メールでのお問合せ*/
.cv_contact__request { width:100%;}
.cv_contact__request p{
	display:block;
	width:100%;
	background-color:#ccc;
	color:#fff;
	padding:25px 0;
	text-align:center;
	text-decoration:none;
	border-radius: 10px;  
    -ms-border-radius: 10px;
	/*-webkit-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	cursor: pointer;*/
}
.cv_contact__request p span{
	margin-left:1em;
	position:relative;
}
.cv_contact__request p span:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: -2.5em;
    display: block;
    width: 30px;
    height: 22px;
    background-image: url(../images/nav_mail_icon.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
}
/*.cv_contact__request a:hover{
	background-color: #cc6600;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
}*/

/*
ナビ
----------------------------------------------*/
/*トップに戻るボタン*/
#page-top {
	background-color:#006b00;
	text-align:center;
}
#page-top a{
	display:block;
	width:100%;
	color:#fff;
	padding:10px 0;
	text-decoration:none;
	-webkit-transition: .2s ease-in-out;
	    -ms-transition: .2s ease-in-out;
	        transition: .2s ease-in-out;
}
#page-top a:hover { background-color:#005200;}

/*ボトムナビ*/
#bottom__contents {
	background-color:#f4f4f4;
	padding:0 0 30px;
}


/*ボトムメニュー*/
#bottom_menu {
	margin-bottom:20px;
	border-bottom:solid 1px #999;
}
#bottom_menu .flex li {
	width:100%;
	border-bottom:solid 1px #ddd;
	-webkit-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	cursor: pointer;
	}
	#bottom_menu .flex li:hover { background-color:#ddd;}
	
	#bottom_menu .flex li a {
		display:block;
		width:100%;
		padding:15px 10px;
		text-decoration:none;
		color:#333;
		position:relative;
	}
	#bottom_menu .flex li a:after {
		content: '';
		display: block;
		width : 10px;
		height: 10px;
		border-top  : solid 2px #ccc;
		border-right: solid 2px #ccc;
		-webkit-transform: rotate(45deg);
			-ms-transform: rotate(45deg);
				transform: rotate(45deg);
		position: absolute;
		top   : 0;
		bottom: 0;
		margin: auto 0;
		right : 10px;
	}


/*会社情報*/
.footer_info .flex li{ width:100%;}

.footer_info__logo img{
	width:230px;
	margin-bottom:20px;
}
.footer_info__address{
	font-size:medium;
	margin-bottom:10px;
}
.footer_info__address a {
	text-decoration:none;
	color:#333;
}
.footer_info__kanri{ font-size:small;}


/*
「Tel & Mail」
スクロールすると下から現れるボタン：スマホ
---------------------------------------------*/
#bottom_navigation {
    position: fixed;
    right: 0;
	left:0;
	margin:0 auto;
	z-index: 10;
	font-size:small;
}
#bottom_navigation ul{ width:100%;}
#bottom_navigation ul li { width: 50%;}

#bottom_navigation ul li a{
	display: block;
    width: 100%;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 2rem 0 .2rem;
	}
	#bottom_navigation ul li a span{
		display:block;
		font-size:0.7em;
	}
#bottom_navigation__tel {
	background-color: #008131;
	position:relative;
}
#bottom_navigation__mail{	
    background-color: #ff841f;
	position:relative;
}
#bottom_navigation__tel:before,
#bottom_navigation__mail:before {
	content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: .6rem;
    display: block;
    width: 1.8rem;
    height: 1.5rem;
    background-image: url(../images/nav_tel_icon.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
}
#bottom_navigation__mail:before { background-image:url(../images/nav_mail_icon.png);}


#tab--------------------------------------------------------------------------------{}
@media only screen and (min-width: 767px) {

/*
nav
---------------------------------------------*/
#menu{ display: block; }
#menu li{
    width: 50%;
	float:left;
}
#toggle{ display: none; }


}
#pc------------------------------------------------------------------------------------------------------{}
@media only screen and (min-width: 980px) {

/*
Header
---------------------------------------------*/
/*ヘッドコピー*/
#title_copy {
	display:block;
	color:#666;
	font-size:small; 
}

/*Header*/
#header {
	height:120px;
	-webkit-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
	padding:10px 0;
	border-bottom:none;
}

/*Head Contents*/
/* LOGO */
#header_logo img{ width:240px;}

/* TEL */
#header_tel {
	display:block;
	font-size:.8em;
	line-height:1.7em
}
#header_tel__icon{
	font-size: 30px;
    padding: 5px 0 5px 1em;
	position:relative;
}
#header_tel__icon:after{
	content: '';
    position: absolute;
    top: -5px;
    bottom: 0;
    margin: auto 0;
    left: 0;
    display: block;
    width: 25px;
    height: 25px;
    background-image: url(../images/tel_icon01.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
}

/*資料請求・お問合せ*/
#header_request { display:block;}
#header_request p{
	display:block;
	width:210px;
	padding:15px 0;
	background-color:#ccc;
	-ms-border-radius: 5px;
		border-radius: 5px;
		text-align:center;
	color:#fff;
	/*text-decoration:none;
	-webkit-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;*/
}
/*#header_request a:hover{ background-color:#cc6600;}*/


/*
グローバルナビ
---------------------------------------------*/
#global-nav{
	background-color: #FFFFFF;
	border-top   : 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

/* nav */
#menu{
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	padding: 0;
	background-color: #FFF;
	border: none;
}
#menu li{
	float: left;
	width:195px;
	margin: 0;
	padding: 0;
	margin:10px 0;
	border-bottom-style: none;
	border-left : 1px solid #CCC;
	}
	#menu li:last-child{ border-right: 1px solid #CCC;}


#menu li a{
	text-decoration: none;
	color: #333;
	background-color: #FFFFFF;
	border-bottom: none;
	display: block;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 0px;
	background-image   : none;
	background-repeat  : no-repeat;
	background-position: 0px 0px;
	background-size: 30px;
	text-align: center;
	background-color: #FFF;	
	}
	#menu li a:after { display: none; }
	#menu li a:hover { box-shadow:none;}



/*
footer
---------------------------------------------*/
/*
コンタクト
---------------------------------------------*/
.cv_contact__midashi{
	font-size:x-large;
}
/*電話・メールの横並び*/
.cv_contact ul.flex{
	-ms-flex-align: start;
    align-items: flex-start;
	margin-left:0;
	margin-right:0;
	}
	.cv_contact__tel,
	.cv_contact__request { width: 400px;}


/*トップに戻るボタン*/
#page-top { margin-bottom:20px;}


/*ボトムメニュー*/
#bottom_menu {
    border-bottom: none;
    margin-bottom: 40px;
}
#bottom_menu .flex li {
	width: 185px;
    border-bottom: none;
    border-left: solid 2px #999;
    text-align: center;
	}
	#bottom_menu .flex li:last-child {	border-right:solid 2px #999;}
	
	#bottom_menu .flex li a       { padding:0 ;}
	#bottom_menu .flex li a:hover { background-color:#ccc;}
	#bottom_menu .flex li a:after { display: none;}


/*会社情報*/
.footer_info .flex li{ width:auto;}

	.footer_info__logo{
		width:200px;
		margin-bottom:0
	}
	.footer_info__address{
		font-size:medium;
		margin-bottom:0;
	}


/*
「Tel & Mail」
スクロールすると下から現れるボタン：スマホ
---------------------------------------------*/
#bottom_navigation {
	display:none;
}
}