@charset "utf-8";


/* --------------------------------------------------------------------------------
	タグ
-------------------------------------------------------------------------------- */
html{
	
}
body {
	margin: 0;
	padding: 0;
	min-width: 1200px;
	line-height: 1.5;
	text-size-adjust: 100%;
	
	font-family: 'Roboto', 'Noto Sans CJK JP', sans-serif;
	font-weight: 500;
	
	color: #333;
}

img{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

address{
	font-style: normal;
}


/* --------------------------------------------------------------------------------
	共通
-------------------------------------------------------------------------------- */
.common {
	text-align: left;
	font-size: 14px;
	font-weight: 400;
}

.common * {
	margin: 0;
	padding: 0;
	font-family: 'Roboto', 'Noto Sans CJK JP', sans-serif;
}

.common h1,
.common h2,
.common h3,
.common h4,
.common h5,
.common h6 {
	font-size: 1em;
}
.common ol,
.common ul{
	list-style: none;
}
.common table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 1em;
}
.common a,
.common a:link,
.common a:visited{
	text-decoration: none;
	color: #333;
	-webkit-tap-highlight-color: rgba(0,0,0,0.1);
	tap-highlight-color: rgba(0,0,0,0.8);
}
.common a:hover,
.common a:active{
	text-decoration: underline;
}

input,
select,
textarea{
	outline: none !important;
	box-shadow: none !important;
}


/* --------------------------------------------------------------------------------
	共通クラス
-------------------------------------------------------------------------------- */
.clear{
	clear:both;
}
br.clear{
	display: block;
	margin: 0;
	padding: 0;
	clear: both;
	height: 0;
	border: none;
	visibility: hidden;
	font-size: 0;
}
.clearfix::after{
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix{
	min-height:1%;
}
* html .clearfix{
	height:1%;
	/*\*//*/
	height:auto;
	overflow:hidden;
	/**/
}


/* --------------------------------------------------------------------------------
	デバイスごとの表示・非表示
-------------------------------------------------------------------------------- */
.device-sp{
	display: none;
}
.device-sp-inline{
	display: none;
}
.device-pc{
	display: block;
}
.device-pc-inline{
	display: inline;
}

.inner{
	width: 1200px;
	margin: 0 auto;
}


/* --------------------------------------------------------------------------------
	container
-------------------------------------------------------------------------------- */
#container{
}


/* --------------------------------------------------------------------------------
	header
-------------------------------------------------------------------------------- */
#header{
	box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

/* ----------------------------------------
h-name-logo
---------------------------------------- */
#header .h-name-logo {
	color: #fff;
	background: #1e1e1e;
}
#header .h-name-logo .h-name-logo-box {
	display: flex;
	align-items: center;
	
	width: 1150px;
	height: 75px;
	margin: 0 auto;
}

/********** ●●様 **********/
#header .h-name { 
	width: 400px;
	padding: 0 15px;
}

/* ----------------------------------------
customer表示切り替え
---------------------------------------- */
/********** ログイン・ログアウトの表示切り替え：ログアウト時 **********/
.my-false .logout{
	display: block !important;
}
.my-false .login{
	display: none !important;
}
/********** ログイン・ログアウトの表示切り替え：ログイン時 **********/
.my-true .logout{
	display: none !important;
}
.my-true .login{
	display: block !important;
}

/********** ロゴ・キャッチ **********/
#header .h-catch-logo{
	display: flex;
	flex-direction: column;
	align-items: center;
	
	width: 380px;
}
#header .h-catch-logo h1 {
	text-align: center;
	font-size: 12px;
}

/********** ロゴ **********/
#header .h-catch-logo .h-logo {
	width: 250px;
}

/* ----------------------------------------
h-contents
---------------------------------------- */
#header .h-contents{
	display: flex;
	align-items: center;
	
	width: 1150px;
	height: 50px;
	margin: 0 auto;
}

/********** ヘッダー固定部分 **********/
#header .h-fix.fixed{
	position: fixed;
	z-index: 100;
	top: 0;
	
	width: 100%;
	background: #fff;
	box-shadow: 0 0 5px rgba(0,0,0,0.3);
}


#header .h-contents .h-search form{
	display: flex;
	
	width: 460px;
}

/********** カテゴリー **********/
#header .h-cat{
	position: relative;
	z-index: 100;
	
	color: #fff;
	background: #00838f;
}
#header .h-cat .h-btn-cat{
	height: 50px;
	background: #00838f url("../images/common/h-icon-cat.svg") no-repeat calc(100% - 10px) 50%;
	background-size: 10px auto;
}
#header .h-cat .h-cat-box{
	width: 171px;
}

#header .custom-select-wrapper {
	position: relative;
	display: inline-block;
	user-select: none;
}
#header .custom-select-wrapper select {
	display: none;
}
#header .custom-select {
	position: relative;
	display: inline-block;
}
#header .custom-select-trigger {
	position: relative;
	display: flex;
	align-items: center;
	
	width: 170px;
	padding: 0 0 0 22px;
	font-size: 13px;
	font-weight: bold;
	color: #fff;
	height: 50px;
	cursor: pointer;
	
	white-space: nowrap;
	
	background: #00838f url("../images/common/h-icon-cat.svg") no-repeat calc(100% - 10px) 50%;
	background-size: 10px auto;
}
#header .custom-options {
	position: absolute;
	display: block;
	top: 100%;
	left: 0;
	right: 0;
	min-width: 100%;
	margin: 0 0;
	border: solid 2px #00838f;
	box-sizing: border-box;
	box-shadow: 0 2px 1px rgba(0, 0, 0, .07);
	background: #fff;
	transition: all 0s ease-in-out;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-15px);
}
#header .custom-select.opened .custom-options {
	height: 330px;
	overflow: auto;
	
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transform: translateY(0);
}
#header .option-hover:before {
	background: #f9f9f9;
}
#header .custom-option {
	position: relative;
	display: block;
	padding: 2px 20px;
	font-size: 13px;
	color: #333;
	cursor: pointer;
	transition: all 0s ease-in-out;
	
	font-weight: normal;
}
#header .custom-option:first-of-type {
	border-radius: 4px 4px 0 0;
}
#header .custom-option:last-of-type {
	border-bottom: 0;
	border-radius: 0 0 4px 4px;
}

/* 選択されている項目 */
#header .custom-option:hover, #header .custom-option.selection {
	background: #eee;
}

/********** 検索窓 **********/
#header .h-search .search-box {
	position: relative;
	
	display: flex;
	
	width: 290px;
}
#header .h-search .search-box input.h-search-text {
	width: 100%;
	padding: 0 45px 0 20px;
	border: none;
	background: #f0f0f0;
}
#header .h-search::placeholder{
	
}
#header .h-search .search-box input.h-btn-search {
	position: absolute;
	top: 50%;
	right: 15px;
	z-index: 2;
	
	width: 22px;
	margin: -11px 0 0;
	height: auto;
	background: transparent;
}


/* ----------------------------------------
パーツ詳細検索
---------------------------------------- */
#header .h-search-details{
	padding: 0 0 0 11px;
}
#header .h-search-details .search-details-unit{
	padding: 0 0 13px;
}
#header .h-search-details .h-search-details-box span{
	cursor: pointer;
	
	display: inline-block;
	padding: 0 0 3px;
	border-bottom: solid 1px #333;
}
#header .h-search-details .h-search-popup{
	display: none;
	
	
	position: absolute;
	top: 125px;
	left: 0;
	right: 0;
	z-index: 301;
	
	width: 1150px;
	margin: 0 auto;
	border-radius: 10px;
	padding: 20px 20px 40px;
	background: #e6f0f0;
	
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* オーバーレイ */
#header .h-search-details .overlay{
	display: none;
	
	position: absolute;
	z-index: 300;
	
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.3);
}

/* h-search-popup-wrapper */
#header .h-search-details .h-search-popup .h-search-popup-wrapper{
	position: relative;
}

/* 閉じるボタン */
#header .h-search-details .h-search-popup .h-btn-close {
	cursor: pointer;
}
#header .h-search-details .h-search-popup .h-btn-close img{
	position: absolute;
	top: 0;
	right: 10px;
	
	display: block;
	width: 24px;
	height: 24px;
}

/* ポップアップ詳細検索見出し */
#header .h-search-details .h-search-popup .heading{
	padding: 5px 0 10px;
	text-align: center;
	font-weight: bold;
	font-size: 20px;
}

/********** パーツ詳細検索 **********/
/* キーワード */
#header .h-search-details .h-search-popup .keyword{
	display: flex;
	justify-content: center;
	
	padding: 0 0 7px;
}
#header .h-search-details .h-search-popup .keyword input{
	width: 400px;
	height: 28px;
	padding: 0 5px;
	border: solid 1px #ccc;
}
#header .h-search-details .h-search-popup .keyword .keyword-label{
	padding: 0 37px 0 0;
}

/* 各選択・入力項目 */
#header .h-search-details .search-tbl table th,
#header .h-search-details .search-tbl table td{
	padding: 3px 0 4px;
}
#header .h-search-details .search-tbl table th{
	width: 105px;
	white-space: nowrap;
    font-weight: normal;
}
#header .h-search-details .search-tbl table td{
	width: 280px;
	
	box-sizing: border-box;
}
#header .h-search-details .search-tbl table td:last-of-type{
	width: auto;
}
#header .h-search-details .search-tbl table td select{
	width: 235px;
	height: 28px;
	border: solid 1px #ccc;
}
#header .h-search-details .search-tbl table td input[type="checkbox"]{
	border: solid 1px #ccc;
}
#header .h-search-details .search-tbl table td input{
	width: 235px;
	height: 28px;
	padding: 0 5px;
}

/* チェックボックス */
#header .h-search-details .checkbox ul{
	display: flex;
	flex-wrap: wrap;
}
#header .h-search-details .checkbox ul li {
	display: flex;
	
	width: 80px;
}
#header .h-search-details .checkbox ul li:nth-of-type(3n) {
	width: 75px;
}
#header .h-search-details .checkbox ul li .check-input {
	padding: 0 5px 0 0;
}
#header .h-search-details .checkbox ul li .check-input input{
	display: block;
	width: 20px;
	height: 20px;
}

#header .h-search-details .h-btn-search-details{
	display: flex;
	justify-content: center;
	
	padding: 15px 0 0;
}
#header .h-search-details .h-btn-search-details input {
	padding: 9px 48px;
	border: none;
	border-radius: 2px;
	color: #fff;
	background: #00838f;
}


/********** help **********/
#header .h-help{
	margin: 0 0 0 auto;
}
#header .h-help ul{
	display: flex;
	
	align-items: center;
}
#header .h-help ul li {
	margin: 0 30px 0 0;
}
#header .h-help ul li:last-child {
	margin-right: 8px;
}
#header .h-help ul li a{
	display: flex;
}
#header .h-help ul li a img{
	display: block;
	margin: 0 6px 0 0;
}
#header .h-help ul li a span{
	display: block;
}



/* --------------------------------------------------------------------------------
	footer
-------------------------------------------------------------------------------- */
#footer {
	padding: 40px 0 0;
}

/********** フッターカテゴリー **********/
#footer .category{
	margin: 0 0 45px;
	padding: 43px 0 50px;
	background: #f0f0f0;
}
#footer .category .heading {
	display: flex;
	justify-content: center;
	
	position: relative;
	margin: 0 0 15px;
	padding: 0 0 6px;
	font-size: 24px;
	font-weight: bold;
}
#footer .category .heading::after{
	content: '';
	position: absolute;
	bottom: 0;
	
	width: 60px;
	height: 5px;
	background: #00838f;
}
#footer .category ul {
	display: flex;
	flex-wrap: wrap;
	
	width: 1150px;
	margin: 0 auto;
	border-radius: 20px;
	
	padding: 35px 0 20px 40px;
	background: #fff;
}
#footer .category ul li {
	display: flex;
	
	width: 80px;
	margin: 0 30px 20px 0;
	text-align: center;
	font-size: 15px;
}
#footer .category ul li a {
	display: block;
}
#footer .category ul li a .icon {
	padding: 0 0 4px;
}
#footer .category ul li a img{
	display: block;
}
#footer .category ul li a .label {
	padding: 0 0;
}


/********** フッターメーカー **********/
#footer .maker{
	margin: 0 0 40px;
	padding: 0 0 30px;
	border-bottom: solid 1px #ccc;
}
#footer .maker .heading {
	display: flex;
	justify-content: center;
	
	position: relative;
	margin: 0 0 15px;
	padding: 0 0 6px;
	font-size: 24px;
	font-weight: bold;
}
#footer .maker .heading::after{
	content: '';
	position: absolute;
	bottom: 0;
	
	width: 60px;
	height: 5px;
	background: #00838f;
}
#footer .maker ul {
	display: flex;
	flex-wrap: wrap;
	
	width: 1150px;
	margin: 0 auto;
	border-radius: 20px;
	
	padding: 0 0 20px 40px;
}
#footer .maker ul li {
	display: flex;
	
	width: 145px;
	margin: 0 40px 20px 0;
	text-align: center;
	font-size: 15px;
}
#footer .maker ul li a {
	display: block;
}
#footer .maker ul li a .icon {
	padding: 0 0 4px;
}
#footer .maker ul li a img{
	display: block;
}
#footer .maker ul li a .label {
	padding: 0 0;
}


/********** f-contact **********/
#footer .f-contact{
	padding: 0 0 40px;
}
#footer .f-contact ul{
	width: 960px;
	margin: 0 auto;
	
	display: flex;
	justify-content: space-between;
}
#footer .f-contact ul li a{
	display: block;
}
#footer .f-contact ul li img{
	display: block;
}





/********** f-contents **********/
#footer .f-contents{
	padding: 40px 0 0;
	color: #fff;
	background: #1e1e1e;
}
#footer .f-contents .f-contents-box{
	display: flex;
	justify-content: space-between;
	
	width: 1150px;
	margin: 0 auto 70px;
}

/* ロゴ・会社情報 */
#footer .logo-company{
	
}
#footer .logo-company .f-logo{
	padding: 0 0 23px;
}
#footer .logo-company .f-logo img{
	display: block;
	width: 250px;
	height: auto;
}

/* 会社情報 */
#footer .logo-company .company{
	line-height: 1.7;
	font-size: 13px;
}
#footer .logo-company .company .company-heading{
	margin: 0 0 10px;
	font-size: 13px;
}



/* サイトマップ */
#footer .f-sitemap{
	color: #fff;
	
	font-size: 13px;
}

#footer .f-sitemap .f-sitemap-wrapper{
	display: flex;
	width: 600px;
}
#footer .f-sitemap .f-sitemap-box{
	margin: 0 10px 0 0;
}
#footer .f-sitemap .f-sitemap-box-1{
	width: 190px;
}
#footer .f-sitemap .f-sitemap-box-2{
	width: 180px;
}
#footer .f-sitemap .f-sitemap-box-3{
	width: 210px;
}

#footer .f-sitemap .sheading{
	margin: 0 0 8px;
	font-weight: bold;
}

#footer .f-sitemap ul li{
	padding: 0 0 5px;
}
#footer .f-sitemap ul li a{
	display: block;
	color: #fff;
}

/********** コピーライト **********/
#footer .copyright{
	padding: 0 0 20px;
	text-align: center;
	font-size: 11px;
}


/********** ↑ **********/
#footer .f-fix-pagetop{
	position: fixed;
	z-index: 300;
	
	right: 20px;
	bottom: 30px;
}
#footer .f-fix-pagetop a{
	display: block;
}
#footer .f-fix-pagetop img{
	width: 60px;
	height: 60px;
}

