@charset "utf-8";
/* CSS Document */


/*------------------------基本設定-----------------------*/

* {
margin:0;
}

img{
width: 100%;
height: auto;
}

a{
text-decoration:none;
}

/*ページ全体の設定*/

html {
	max-width: 1020px;
	margin: auto;
}

body {
	 font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    line-height: 1.7;
	color:#432;
	
}


.mgr-10{
	margin-right:10px;
}
.mgr-20{
	margin-right:20px;
}
.mgr-30{
	margin-right:30px;
}

.mgl-20{
	margin-left:20px;
}

.mgl-30{
	margin-left:30px;
}

.mgl-50{
	margin-left:50px;
}

.mgl-60{
	margin-left:60px;
}

.mgl-70{
	margin-left:70px;
}


.c-gray{
	background-color:#EBEBEB;
}

.back-f{
	background-color:#555;
}

.col-w{
	color:#fff;
}


.f-pa{
	padding:3px 2px 3px 2px;
}


/*index全体の設定*/

body {
    display: grid;
	grid-template-columns: 20px 1fr 20px;
	grid-template-rows:
	              [top]  30px
				  [header gnav] 40px
				  [main] auto
				  [snav] auto
				  [bread] 5px
				  [truck] auto
				  [assy] auto
				  [w-hose] auto
				  [a-hose] auto
				  [a-hose2] auto
				  [a-hose3] auto
				  [o-hose] auto
				  [o-hose2] auto
				  [otoiawase] auto
				  [footer] 100px;
				  grid-row-gap:30px;
				  row-gap:30px;
}



/*-------------トップボタン---------------*/


/* 上に戻るボタン */
.pagetop {
	display: none;
	position: fixed;
	bottom: 100px;
	right: 0px;
	font-size: 1.5rem;
	width: 3.3rem;
	height: 3.3rem;
	line-height: 3.3rem;
	border-radius: 3.3rem;
	text-align: center;
	cursor: pointer;
}


.pagetop:hover {
    cursor:pointer;
    filter: alpha(opacity=60);       
    -ms-filter: "alpha(opacity=60)"; 
    -moz-opacity:0.6;                
    -khtml-opacity: 0.6;            
    opacity:0.6;
    zoom:1;
}



/*パーツの配置*/

body > *{
	grid-column: 2 / -2;
}
	

/*英語版*/

english{
	grid-row: top;
	justify-self: flex-end;
	align-self: center;
	}

english a{
	color:#ffffff;
	text-decoration:none;
	font-size:0.875em;
}
english a:hover {
	color:#ffa000;
}




/*英語の背景バー*/
body::before{
	content: "";
	background:#0064dc;
	grid-column: 1 / -1;
	grid-row: top;
	z-index:-1;
}


/*ロゴ*/

.logo{
	grid-row:header;
	align-self:center;
	margin-top:-44px;
}

.logo img{
	width:290px;
	height:auto;
}
.logo a:hover {
	color:#ffa000;
}


/*グローバルナビゲーション*/


.g-nav{
	grid-row: gnav;
	justify-self: flex-end;
	align-self:center;
	margin-top:-38px;
}


.g-nav li:not(:last-child)::after {
	content: 0.5px;
	content: '|';
	color: #aaa;
	padding: 0 10px;
}



.g-nav ul{
	list-style: none;
	display:grid;
	grid-auto-flow: column;

	
}

.g-nav li{
	font-weight:500;
}
	

.g-nav a{
	color:#666666;
	text-decoration:none;
}

.g-nav a:hover {
	color:#ffb400;
	z-index:1;
}

.p-gnav{
		visibility:hidden;
	}






	
/*-------------メインイメージ---------------*/

.main{
	grid-column: 1 / -1 ;
	grid-row: main;
	margin-top:-50px;
}

.hero img{
	width:100%;
	height:auto;
	
}




/*---------パンくずリスト----------*/

.bread{
	grid-row: bread;
	align-self:end;
	margin-top:-20px;

}

.bread ul{
    display:grid;
	grid-auto-flow: column;
	justify-content: start;
	align-self:center;
	padding:0;
	list-style: none
}

/*--------サブメニュー--------*/

subnav{
	grid-column: 1/ -1;
	grid-row:snav;
	/*グリッド*/
	display:grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 30px 0px;
	gap:30px 0px;
	margin-top:-29px;
	margin-bottom:15px;
}

.nav-photo{
	width:100%;
	margin:0 auto;
	overflow:hidden;
}

.nav-photo img{
	transition:1s all;
	z-index:-1;
	
}
.nav-photo img:hover{
	transform:scale(1.2,1.2);
	transition:1s all;
	background-color:#FFF;
	opacity:0.7;
	
}

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

subnav a:hover {
	color:#999;
}



.nav-title{
	font-size: 1.8em;
	text-align: center;
	color:#000;
	margin-top:-36px;
	
}





/*-----------トラック-----------*/

.truck{
	grid-row:truck;
	display:grid;
	grid-template-columns:1fr;
	grid-template-rows:45px 55px 20px auto auto ;
	
	}



.t-title1{
	grid-column:1;
	grid-row: 1 / 3;
    font-size:2.5em;
	font-weight:900;
	line-height:1.2;
	text-align:center;
	align-self:start;
	z-index:1;
	align-self:center;
	}


.t-title2{
	grid-column:1;
	grid-row:2;
	color:#ddd;
	font-family:'Montserrat', sans-serif;
	font-size:3.125em;
	font-weight:900;
	line-height:1;
	text-align:center;
}


.text{
	grid-column:1;
	grid-row:4;
	margin: 15px 20px 0 px 20px;
}


.text h3{
	font-size:1.625em;
	margin-bottom:8px;
	font-weight:700;
	text-align:center;
	}


.text p{
	line-height:1.5;
}


.truck-photo{
	grid-column:1;
	grid-row:5;
	max-width:830px;
	margin:0 auto;
}


/*-------ヒーターホースASSY--------*/


.hose-assy{
	grid-row: assy;
	margin-top:80px;
    align-self:end;
	width:100%;
	margin-bottom:40px;

}

.hose-assy h2{
	line-height:2;
    font-size:1.75em;
	font-weight:600;
	margin-top:-47px;

}

.assy-title{
    content:'';
	border-top: solid 4px #222;
	height:2px;
	border-bottom:solid 1px #222;
	
}


.hose-assy figure{
	margin-top:20px;
}


.hose-assy p{
	line-height:1.5;
	margin-top:20px;
}





/*--------↓↓　各ホース共通　ココカラ　↓↓----------*/


.t-sec figure{
	width:100%;
}



.t-sec h3{
	font-size:1.25em;
	line-height:2;
	border-bottom:solid 1px #222;
	padding-left:8px;
	margin-top:10px;
	margin-bottom:8px;
	font-weight:600;	
}

.t-sec h4{
	font-size:1.125em;
	font-weight:500;
	color:#fff;
	background:#555;
	text-align:center;
	line-height:1.5;
	width:60px;
	margin-top:10px;
	margin-left:10px;
}


.t-sec p{
	line-height:3;
	padding-left:8px;
}

/*----------↑↑　各ホース共通　ココマデ　↑↑-----------*/



/*---------------ウォーターホース-----------------*/

.w-hose{
	grid-row:w-hose;
	margin-top:40px;
}

.wh-sec{
	display:grid;
	grid-template-columns:1fr 1fr 1fr;
	grid-auto-flow:column;
	margin-top:20px;
	grid-column-gap:20px;
	column-gap:20px
}

.w-hose h2{
	line-height:2;
	margin-top:-47px;
	font-size:1.75em;
	font-weight:600;

}

.whose-title{
    align-self:end;
	content:'';
	border-top: solid 4px #222;
	height:2px;
	border-bottom:solid 1px #222;
	font-weight:600;
	
}





/*---------------  エアホース（型物）  ---------------------*/

.ahose-k{
	grid-row:a-hose;
	margin-top:80px;

}



.ahose-k-sec{
	display:grid;
	grid-template-columns:1fr 1fr 1fr;
	grid-auto-flow:column;
	margin-top:20px;
	grid-column-gap:20px;
	column-gap:20px
}

.ahose-k h2{
	line-height:2;
	margin-top:-47px;
	font-size:1.75em;
	font-weight:600;

}

.ahose-k-title{
    align-self:end;
	content:'';
	border-top: solid 4px #222;
	height:2px;
	border-bottom:solid 1px #222;
	font-weight:600;
	
}



/*---------------  エアホース（I/C 高温）  ---------------------*/

.ahose-ihi{
	grid-row:a-hose2;
	margin-top:80px;
	margin-bottom:10px;
}

.ahose-ihi-sec{
	display:grid;
	grid-template-columns:1fr 1fr 1fr;
	grid-template-rows:1fr 1fr;
	grid-auto-flow:row;
	margin-top:20px;
	grid-column-gap:20px;
	column-gap:20px
}

.ahose-ihi h2{
	line-height:2;
	margin-top:-47px;
	font-size:1.75em;
	font-weight:600;
}

.ahose-ihi-title{
    align-self:end;
	content:'';
	border-top: solid 4px #222;
	height:2px;
	border-bottom:solid 1px #222;
	font-weight:600;
}


.bottun-i{
    font-size:1.25em;
	line-height:1.5;
    margin-left: auto;
    margin-right: auto;
    margin: 11px 20px 11px 20px;
    text-align: center;
    font-weight: 600;
    background-color: #000;
    color: #ffffff;
    border: #000 solid 2px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* マウスオーバー時 */

.bottun-i:hover {
    color: #000;
    background-color: #ffffff;
    cursor: pointer;
}








/*---------------  エアホース（I/C 低温）  ---------------------*/

.ahose-ilow{
	grid-row:a-hose3;
	margin-top:80px;
}

.ahose-ilow-sec{
	display:grid;
	grid-template-columns:1fr 1fr 1fr;
	grid-auto-flow:row;
	margin-top:20px;
	grid-column-gap:20px;
	column-gap:20px
}

.ahose-ilow h2{
	line-height:2;
	margin-top:-47px;
	font-size:1.75em;
	font-weight:600;
}

.ahose-ilow-title{
    align-self:end;
	content:'';
	border-top: solid 4px #222;
	height:2px;
	border-bottom:solid 1px #222;
	font-weight:600;
}



/*---------------  オイルホース 1 ---------------------*/

.ohose1{
	grid-row:o-hose;
	margin-top:80px;
	
}

.ohose1-sec{
	display:grid;
	grid-template-columns:1fr 1fr 1fr;
	grid-template-rows:1fr 1fr;
	grid-auto-flow:row;
	margin-top:20px;
	grid-column-gap:20px;
	column-gap:20px;
	grid-row-gap:20px;
	row-gap:20px;
}

.ohose1 h2{
	line-height:2;
	margin-top:-47px;
	font-size:1.75em;
	font-weight:600;
}

.ohose1-title{
    align-self:end;
	content:'';
	border-top: solid 4px #222;
	height:2px;
	border-bottom:solid 1px #222;
	font-weight:600;
}





/*----------お問い合わせバナー----------*/



.otoiawase{
	grid-column:1 / -1;
	grid-row:otoiawase;
	max-width:1020px;
	padding:50px 0 50px 0;
	background-image: url(../images/toiawase.jpg);
	background-size:cover;
	background-repeat:no-repeat;
	text-align:center;
	margin-top:50px;
	margin-bottom:100px;
	
}


.toiawase-text{
	display:inline-block;
	background-color: rgba(255,255,255,0.8);
	width:600px;
	height:300px;
	text-align:center;
	vertical-align:middle;
	margin:30px 0 30px 0;

}


.toiawase-text h2{
	font-size:2em;
	font-weight:600;
	color:#0064f0;
	margin-top:6%;
}


.toiawase-text p{
	font-size:1.125em;
	line-height:1.5;
	margin-top:40px;
}


.bottun{
    font-size:1.25em;
    width:300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
	margin-bottom:20px;
    text-align: center;
    font-weight: 600;
    padding: 15px 15px;
    background-color: #0064f0;
    color: #ffffff;
    border: #0064f0 solid 2px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* マウスオーバー時 */

.bottun:hover {
    color: #0064f0;
    background-color: #ffffff;
    cursor: pointer;
}



/*-------------フッター---------------*/



/*背景色*/
body::after{
	content: "";
	background:#0064dc;
	grid-column: 1 / -1;
	grid-row: footer;
	z-index:-1;
	margin-bottom:-90px;
}
	
.foot-wrap {
	grid-row:footer;
	text-align:center;
	justify-self:center;
	align-self: end;
	margin-bottom:-70px;
}


.foot-wrap img{
	width:311px;
	height:auto;
	margin-bottom:40px;
}


.f-nav a{
	text-decoration:none;
	color:#FFF;
}

.f-nav a:hover {
	color:#ffa000;
}



.f-nav ul{
	list-style: none;
	display:grid;
	grid-auto-flow: column;
	
}

.f-nav li{
	padding-right:15px;
	margin-bottom:30px;
}

.foot-wrap p{
	color:#FFF;
	font-size:0.75em;
}








/*-----------------レスポンシブ設定(768px)------------*/

@media (max-width:768px){
	

body {
    display: grid;
	grid-template-columns: 20px 1fr 20px;
	grid-template-rows:
	              [top]  30px
				  [header] 30px
				  [gnav] 30px
				  [main] auto
				  [snav] auto
				  [bread] 15px
				  [truck] auto
				  [assy] auto
				  [w-hose] auto
				  [a-hose] auto
				  [a-hose2] auto
				  [a-hose3] auto
				  [o-hose] auto
				  [o-hose2] auto
				  [otoiawase] auto
				  [footer] 100px;
				  grid-row-gap:10px;
				  row-gap:10px;
}



/*-------  logo  -------*/

.logo {
		justify-self:center;
		align-self:start;
		margin-top:-5px;
	}


/*------- グローバルメニュー -------*/

.g-nav{
		justify-self:center;
		align-self:center;
		margin-top:4px;
	}


	
/*-------------メインイメージ---------------*/

.main{

	margin-top:-6px;

}



/*------------サブメニュー-----------*/

subnav{
	margin-top:-10px;
	margin-bottom:11px;
}


.nav-title{
	font-size:1.25em;
	line-height:40px;
}


/*---------パンくずリスト----------*/

.bread{
	
}



/*-----------トラック-----------*/

.t-title1{
    font-size:1.875em;
	}


.t-title2{
	font-size:2.5em;
}


.text h3{
	font-size:1.375em;
	font-weight:700;
	}
	
.text p{
	font-size:1em;
}


/*-------ヒーターホースASSY--------*/



.hose-assy h2{
	margin-top:-38px;
    font-size:1.5em;
}



/*--------ウォーターホース----------*/

.wh-sec{
	grid-template-columns:1fr 1fr;
	grid-template-rows:1fr 1fr;
	grid-auto-flow:row;
	grid-row-gap:20px;
	row-gap:20px
}

.w-hose h2{
	margin-top:-38px;
	font-size:1.5em;
}



/*---------------  エアホース（型物）  ---------------------*/


.ahose-k-sec{
	display:grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows:1fr;
	grid-row-gap:20px;
	row-gap:20px
}

.ahose-k h2{
	margin-top:-38px;
	font-size:1.5em;
}


/*---------------  エアホース（I/C 高温）  ---------------------*/


.ahose-ihi-sec{
	grid-template-columns:1fr 1fr;
    grid-template-rows:1fr 1fr;
	grid-auto-flow:row;
	grid-row-gap:20px;
	row-gap:20px
}


.ahose-ihi h2{
	margin-top:-38px;
	font-size:1.5em;
}



/*---------------  エアホース（I/C 低温）  ---------------------*/

.ahose-ilow-sec{
	display:grid;
	grid-template-columns:1fr 1fr;
    grid-template-rows:1fr;
	grid-auto-flow:row;
	grid-row-gap:20px;
	row-gap:20px
	
}

.ahose-ilow h2{
	line-height:2;
	margin-top:-38px;
	font-size:1.5em;
}




/*---------------  オイルホース 1 ---------------------*/


.ohose1-sec{
	grid-template-columns:1fr 1fr;
	grid-template-rows:1fr 1fr 1fr;
	grid-auto-flow:row;
	grid-row-gap:20px;
	row-gap:20px
}


.ohose1 h2{
	margin-top:-38px;
	font-size:1.5em;
}


/*-------お問い合わせバナー--------*/

.toiawase-text{
	width:450px;
	height:250px;
	text-align:center;
	vertical-align:middle;
	margin:25px 0 20px 0;
}

.toiawase-text h2{
	font-size:1.625em;
	font-weight:600;
	color:#0064f0;
	margin-top:6%;
}


.toiawase-text p{
	margin-top:30px;
	font-size:1em;
	line-height:1.5;
}

.bottun{
    font-size:1.125em;
    width:250px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
	margin-bottom:20px;
    text-align: center;
    font-weight: 600;
    padding: 15px 15px;
}


/*-------- フッター --------*/

.foot-wrap {
	padding-top:20px
}	


}




/*-------------レスポンシブ設定(600px)---------------------*/

@media (max-width:600px){
	
body {
    display: grid;
	grid-template-columns: 20px 1fr 20px;
	grid-template-rows:
	              [top]  30px
				  [header] 30px 
				  [gnav] 30px
				  [main] auto
				  [snav] auto
				  [bread] 10px
				  [truck] auto
				  [assy] auto
				  [w-hose] auto
				  [a-hose] auto
				  [a-hose2] auto
				  [a-hose3] auto
				  [o-hose] auto
				  [o-hose2] auto
				  [otoiawase] auto
				  [footer] 280px;
				  grid-row-gap:10px;
				  row-gap:10px;
}

/*-------------トップボタン---------------*/


/* 上に戻るボタン */
.pagetop {
	width: 2.9rem;
	height: 2.9rem;
	line-height: 2.9rem;
	border-radius: 2.9rem;
	text-align: center;
}



/*----------グローバルメニュー---------------*/

.g-nav{
	grid-column:1 / -1;
	margin-top:5px;
}

.g-nav li{
	font-size:1em;
	line-height:1.5;
	padding-top:5px;
	padding-bottom:5px;

}

.g-nav li:not(:last-child)::after {
	padding: 0 8px;
}


/*---------パンくずリスト----------*/

.bread{
	
}


	
/*----------  サブメニュー  -----------*/


subnav{
	margin-bottom: 9px;
	
}

.nav-title{
	font-size:1em;
	line-height:30px;
	margin-top:-27px;
}



/*-----------トラック-----------*/

.t-title1{
    font-size:1.75em;
	margin-top:-8px;
	}


.t-title2{
	font-size:1.75em;
}


.text h3{
	font-size:1.25em;
	font-weight:700;
	margin-top:-30px;
	}
	
.text p{
	font-size:1em;
}


/*-------ヒーターホースASSY--------*/


.hose-assy h2{
	margin-top:-33px;
    font-size:1.375em;
}

.assy-title{
	border-top: solid 3px #222;
}


/*-----------ウォーターホース--------------*/

.w-hose h2{
	margin-top:-33px;
	font-size:1.375em;
}

.whose-title{
	border-top: solid 3px #222;
}



/*---------------  エアホース（型物）  ---------------------*/

.ahose-k h2{
	margin-top:-33px;
	font-size:1.375em;
}


.ahose-k-title{
	border-top: solid 3px #222;
}



/*---------------  エアホース（I/C 高温）  ---------------------*/

.ahose-ihi h2{
	margin-top:-33px;
	font-size:1.375em;
}

.ahose-ihi-title{
	border-top: solid 3px #222;
}



/*---------------  エアホース（I/C 低温）  ---------------------*/

.ahose-ilow h2{
	margin-top:-33px;
	font-size:1.25em;
}

.ahose-ilow-title{
	border-top: solid 3px #222;
}



/*---------------  オイルホース 1 ---------------------*/

.ohose1 h2{
	margin-top:-33px;
	font-size:1.375em;
}

.ohose1-title{
	border-top: solid 3px #222;
}



/*----------お問い合わせバナー--------*/

.toiawase-text{
	width:400px;
	height:200px;
	text-align:center;
	vertical-align:middle;
	margin:20px 0 10px 0;
}

.toiawase-text h2{
	font-size:1.625em;
	font-weight:600;
	color:#0064f0;
	margin-top:5%;
}


.toiawase-text p{
	margin-top:20px;
	font-size:1em;
	line-height:1.5;
}

.bottun{
    font-size:1.125em;
    width:250px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 35px;
	margin-bottom:10px;
    text-align: center;
    font-weight: 600;
    padding: 12px 12px;
    background-color: #0064f0;
    color: #ffffff;
    border: #0064f0 solid 2px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}







/*----------- フッター -----------*/


.foot-wrap img{
	width:235px;
	margin-bottom:30px;
}

.f-nav ul{
	grid-auto-flow: row;
}

.f-nav li{
	margin-bottom:15px;
}

.copy{
	margin-top:20px;
}

}




/*-------------レスポンシブ設定(490px)---------------------*/

@media (max-width:490px){
	
		
	
/*--------サブメニュー--------*/

subnav{
	grid-row:snav;
	/*グリッド*/
	display:grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows:1fr 1fr;
	grid-gap: 0px 0px;
	gap:0px 0px;


}

.nav-title{
	font-size:1em;
	line-height:20px;
	margin-top:-22px;
}	



/*-----------トラック-----------*/

.t-title1{
    font-size:1.375em;
	}


.t-title2{
	font-size:1.375em;
}

.text h3{
	font-size:1.125em;
	font-weight:600;
	}

.text{
	margin-left:0px;
	margin-right:0px;
}

/*--------↓↓　各ホース共通　ココカラ　↓↓----------*/


.t-sec h3{
	font-size:1.125em;
	line-height:2;	
}

.t-sec{
	border: solid 2px #ddd;
	margin-bottom:20px;
	padding-bottom:10px;
}

.t-sec h3{
	margin-left:10px;
	margin-right:10px;
}

.t-sec p{
	margin-left:10px;
	margin-right:10px;
}

.font-14{
	font-size:0.875em;
}

/*--------ウォーターホース----------*/

.wh-sec{
	grid-template-columns:1fr;
	grid-template-rows:1fr 1fr 1fr;
	grid-auto-flow:column;
	grid-row-gap:20px;
	row-gap:20px
}




/*---------------  エアホース（型物）  ---------------------*/


.ahose-k-sec{
	display:grid;
	grid-template-columns: 1fr;
	grid-template-rows:1fr 1fr;
	grid-row-gap:20px;
	row-gap:20px
}



/*---------------  エアホース（I/C 高温）  ---------------------*/


.ahose-ihi-sec{
	grid-template-columns:1fr;
    grid-template-rows:1fr 1fr 1fr 1fr;
	grid-auto-flow:column;
	grid-row-gap:20px;
	row-gap:20px
}




/*---------------  エアホース（I/C 低温）  ---------------------*/

.ahose-ilow-sec{
	display:grid;
	grid-template-columns:1fr;
    grid-template-rows:1fr 1fr;
	grid-auto-flow:column;
	grid-row-gap:20px;
	row-gap:20px
	
}

.ahose-ilow h2{
	font-size:1.16em;
}


/*---------------  オイルホース 1 ---------------------*/


.ohose1-sec{
	grid-template-columns:1fr;
	grid-template-rows:1fr 1fr 1fr 1fr 1fr 1fr;
	grid-auto-flow:column;
	grid-row-gap:20px;
	row-gap:20px
}



/*----------お問い合わせバナー--------*/

.toiawase-text{
	width:315px;
	height:170px;
	text-align:center;
	vertical-align:middle;
	margin:20px 0 10px 0;
}

.toiawase-text h2{
	font-size:1.375em;
	font-weight:600;
	color:#0064f0;
	margin-top:5%;
}


.toiawase-text p{
	margin-top:20px;
	font-size:0.9375em;
	line-height:1.5;
}

.bottun{
    font-size:1em;
    width:250px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
	margin-bottom:10px;
    text-align: center;
    font-weight: 600;
    padding: 12px 12px;
    background-color: #0064f0;
    color: #ffffff;
    border: #0064f0 solid 2px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}






/*-------------フッター----------------*/


.foot-wrap{
		grid-column:1 / -1;
}

.foot-wrap p{
	font-size:0.7em;

}


.f-nav li{
	font-size:0.9375em;
}

}



/*-------------レスポンシブ設定(430px)---------------------*/

@media (max-width:430px){
	

/*------- ヘッダー：ロゴ ------------*/



.logo img{
	max-width:235px;
}

	
/*----------グローバルメニュー---------------*/

.g-nav{
	margin-top:-5px;
}


.g-nav li{
	font-size:0.875em;
	line-height:2;

}

.g-nav li:not(:last-child)::after {
	padding: 0 3px;
}



/*---------------  エアホース（I/C 高温）  ---------------------*/



.ahose-ihi h2{
	font-size:1.1875em;
}




/*-------------メインイメージ---------------*/

.main{
    margin-top:-10px;
}
	

	
/*---------パンくずリスト----------*/

.bread li{
	font-size:0.875em;

}	

}


/*-------------レスポンシブ設定(375px)---------------------*/

@media (max-width:375px){
	
	

/*---------------  エアホース（I/C 高温）  ---------------------*/

.ahose-ihi h2{
	font-size:1.1em;
}

/*---------------  エアホース（I/C 低温）  ---------------------*/

.ahose-ilow h2{
	margin-top:-33px;
	font-size:1.1em;
}

}

