@charset "utf-8";


/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #fff;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 15px;	/*文字サイズ*/
	line-height: 165%;		/*行間*/
	background: #000;	/*背景色*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #fff;	/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	text-decoration: none;
}
a:hover {
	color: #ffcf3e;			/*マウスオン時の文字色*/
	text-decoration: underline;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

body a:hover img{
	opacity: 0.5;
	transition: 0.5s;
	
}

.parts_description a{
	color: #ffcf3e;			/*マウスオン時の文字色*/
	text-decoration: underline;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

.parts_description a:hover{
	color: #ffcf3e;			/*マウスオン時の文字色*/
	text-decoration: none !important;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	max-width: 1300px;	/*サイトの最大幅*/
	margin: 0 auto;
	padding: 0 0%;		/*上下、左右へのボックス内の余白*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: #000000;	/*背景色と背景画像の読み込み（古いブラウザ用）*/
	background: url(../images/bg1.png), linear-gradient(#000000, #444444);		/*背景画像の読み込みと、グラデーション*/
	height: 100px;	/*高さ*/
}
/*ロゴ画像*/
header #logo {
	width: 188px;	/*ロゴ画像の幅*/
	float: left;	/*左に回り込み*/
	margin-top: 11px;	/*ロゴの上にあける余白。上下のバランスをここで調整して下さい。*/
}

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
#contact {
	float: right;		/*右に回り込み*/
	margin-top: 25px;	/*ブロックの上にあける余白。上下のバランスをここで調整して下さい。*/
	text-align: center;	/*文字をセンタリング*/
}



/*TEL*/
.tel {
	letter-spacing: 0.1em;	/*文字間隔を広くする設定。通常がいいならこの行削除。*/
	font-size: 24px;		/*文字サイズを大きく*/
}
/*TELの受付時間の小文字部分*/
.tel span {
	display: block;
	font-size: 11px;	/*文字サイズを小さく*/
	line-height: 145%;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;overflow: hidden;
	background: #454545;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#7d7d7d, #616161 49%, #454545 50%);		/*グラデーション*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 16.66%;	/*メニュー幅（100÷6個=16.66%）　もし４個にするなら100÷4=25%になる。*/
}
#menubar li a {
	display:  block;text-decoration: none;
	text-align: center;	/*文字をセンタリング*/
	font-weight: bold;	/*太字に*/
	border-right: 1px solid #333;	/*メニューの右側の線の幅、線種、色*/
	line-height: 1.6;	/*行間を少し狭く*/
	padding: 14px 0;	/*上下、左右へのメニュー内への余白*/
	text-shadow: 1px 1px 0px rgba(0,0,0,0.6);	/*テキストの影。右に、下に、広げる幅、0,0,0は黒の事で0.6は色が60%ついた状態。*/
}
/*１つ目のメニューへの追加設定*/
#menubar li:first-child a {
	border-left: 1px solid #333;	/*メニューの線の幅、線種、色*/
}
/*装飾文字（英語表記）の設定*/
#menubar li a span {
	text-shadow: none;display: block;
	font-size: 9px;			/*文字サイズ*/
	font-weight: normal;	/*文字を太字でなく標準に戻す設定*/
	letter-spacing: 0.2em;	/*文字間隔を少しあける設定*/
	opacity: 0.5;			/*透明度50％*/
}
/*マウスオン時メニューの設定*/
#menubar li a:hover {
	background: #333;	/*背景色*/
	color: #fff; /*文字色*/
}
/*現在表示中(current)メニューの設定*/
#menubar li.current a {
	background: #000;	/*背景色（古いブラウザ用）*/
	background: radial-gradient(ellipse 100px 50px at 50% 70px,#bb7403,#000);	/*楕円形(幅100px高さ50px)グラデーション。左から50%＆上から70pxの場所に配置。#bb7403が円の中心色で#000が外側の色。*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*contents（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: both;overflow: hidden;
	padding-top: 40px;		/*上に空けるボックス内の余白*/
	padding-bottom: 40px;	/*下に空けるボックス内の余白*/
}

/*contents-in（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
#contents-in {
	float: left;	/*左に回り込み*/
	width: 80%;		/*ブロックの幅*/
}
/*２カラム時*/
.c2 #contents-in {
	float: none;
	width: auto;
}

/*mainコンテンツ（中央のブロック）
---------------------------------------------------------------------------*/
#main {
	float: left;	/*右に回り込み*/
	width: 75%;		/*ブロックの幅*/
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	clear: both;
	margin-bottom: 20px;
	padding: 10px 15px;	/*上下、左右への余白*/
	font-size: 16px;	/*文字サイズ*/
	background: #3c3c3c;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#5e5e5e, #3c3c3c 49%, #191919 50%);		/*グラデーション*/
	border-bottom: 3px solid #bb7403;		/*枠線の幅、線種、色*/
}

/*mainコンテンツのh2タグ設定*/
.topmain h2 {
	clear: both;
	margin-bottom: 0px !important;
	padding: 0px !important;	/*上下、左右への余白*/
	font-size: 16px;	/*文字サイズ*/
	background: none !important;	/*背景色（古いブラウザ用）*/
	border-bottom: none !important;		/*枠線の幅、線種、色*/
}

/*mainコンテンツのh3タグ設定*/
.topmain h3 {
	clear: both;
	margin-bottom: 20px;
	padding: 10px 15px;	/*上下、左右への余白*/
	font-size: 16px;	/*文字サイズ*/
	background: #3c3c3c;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#5e5e5e, #3c3c3c 49%, #191919 50%);		/*グラデーション*/
	border-bottom: 3px solid #bb7403;		/*枠線の幅、線種、色*/
}


/*mainコンテンツのh3タグ設定
#main h3 {
	clear: both;
	margin-bottom: 20px;
	padding: 4px 15px;
	font-size: 16px;
	border: 1px solid #666;	
}*/
/*h3タグの１文字目への追加設定
#main h3::first-letter {
	border-left: 3px solid #bb7403;
	padding-left: 15px;
}*/
/*コンテンツの段落タグ設定*/
#main p {
	padding: 0px 15px 20px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}
#main section + section {
	margin-top: 30px;
}

/*決済サービス
---------------------------------------------------------------------------*/
.paymant_list{
	padding: 0 !important;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  -webkit-box-align: center;
     -ms-flex-align: center;
        align-items: center;
	background-color: #777777;
	margin-bottom: 35px;
}

.paymant_tit{
	background-color: #777777 !important;
	color: #ffffff !important;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	width: 20% !important;
	padding: 0 !important;
	margin: 0 !important;
	vertical-align: middle;	
	height: 100%;
}

.paymant_img{
	width: 80% !important;
	float: right;
}

.paymant_img img{
	width: 100%;
	padding: 0 !important;
}

/*ブログ
---------------------------------------------------------------------------*/

.blog_nv{
	text-align:center;
	border-top:0px dotted #fff;
	border-bottom:0px dotted #fff; 
	padding:10px 0px 10px 0px; 
	margin:0px 0px 77px 0px; 
	background-color:#222222; 
	color:#ffffff;
}

.blog_nv a{
	color:#ffcf3e !important;
}

.blog_nv a,.blog_nv i{
	color:#ffcf3e !important;
}



.blog_text{
	clear: both;
	overflow: hidden;
	width: 100%;
	border: 0px solid #888888;
	padding: 0%;
	overflow: hidden;
	margin-bottom: 20px;
	background-color: #000000 !important;
}

.blog_text h4{
	font-size: 128%;
	font-weight: 600;
	margin: 0 0 10px 8px !important;border-bottom: 1px solid #888888;
	padding: 0 8px 8px 8px;
}

.blog_text p{
	margin: 0 8px 0 8px!important;
	padding: 0 8px 0 8px !important;
}

.blog_text p a{
	color: #ffcf3e !important;
}

/*.blog_text p a i{
	color: #bb7403 !important;
	display: inline;
}
*/
.blog_text img{
	width: 14%;
	float: right;
	margin: 0 0 0 20px;
	border: 0px solid #cccccc;
	background-color: #666666;
	padding: 4px;
}

/*ブログのコメント欄
---------------------------------------------------------------------------*/
#HCB_comment_box{
	margin-bottom:45px !important;
}

#HCB_comment_box blockquote{
	padding:5px 10px !important;
	margin:2px 0 0 0 !important;
	background-color: #333333;
}


#HCB_comment_box #hcb_form_name{
	margin-top:0px !important;
}

.come_tit{
	font-size:18px; 
	font-weight:600; 
	border-bottom:1px solid #888888; 
	padding:3px 0px !important; 
	margin-top:15px; 
	margin-bottom:8px;
}

.come_tit2{
	color:#aaa; 
	margin-bottom:0px; 
	margin-top:8px; 
	margin-left: 0; 
	padding-left: 0 !important;
}

/*レビュー
---------------------------------------------------------------------------*/

.review_date{
	text-align: right;
	margin: 15px 5px 10px 0 !important;
	clear: both;
	overflow: hidden;
	padding: 0 !important;
}
.rev_tab{
	width: 100%;
	border-collapse: collapse;
	display: table;
	border: 1px solid #888888;
	margin: 0 0 25px 0;
}

.rev_tab_row{
	display: table-row;
}

.rev_cell_l{
	display: table-cell;
	background-color: #cccccc;
	color: #000000;
	text-align: center;
	border: 1px solid #888888;
	padding: 5px 15px;
	width: 20%;
}

.rev_cell_r{
	display: table-cell;
	border: 1px solid #888888;
	padding: 5px 15px;
	width: 80%;
}


/*パーツ
---------------------------------------------------------------------------*/
.parts_hd_container{
	width: 100%;
	background-color: #CCCCCC;
}

.parts_hd_top{
	color: #000000;
	height: 70px;
	padding: 2.2%;
	box-shadow: 1px 1px 4.7px 4.7px rgba(0,0,0,0.3) inset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
     -ms-flex-direction: row;
         flex-direction: row;
  -webkit-box-align: center;
     -ms-flex-align: center;
        align-items: center;
}
.parts_hd_top h3 img{
	margin-right: 15px;
}



.parts_hd_top h3{
	font-size: 32px !important;
	font-weight: 600;
}
.parts_hd_top span{
	font-size: 0.4em;
	margin-left: 15px;
}







.parts_hd_bottom{
	background-color: #555555;
	overflow: hidden;
	width: 96%;
	padding: 2% 2% 0 2%;
	text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-between;
	margin-bottom: 25px;
}

.blog_hd_bottom{
	background-color: #555555;
	overflow: hidden;
	width: 96%;
	padding: 2% 2% 0 2%;
	text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
     -ms-flex-pack: start;
   justify-content: flex-start;
}

.blog_hd_bottom a{
	display: block;
	float: left;
	background-color: #AAAAAA;
	padding: 13px;
	text-align: center;
	width: calc( 100% / 6.5 );
	margin-right: 2%;
}

.blog_hd_bottom a:hover{
	text-decoration: none !important;
	background-color: #777777;
}

.blog_hd_bottom p{
	list-style: none;
	font-size: 100%;
	font-weight: 600;
	color: #000000;
	line-height: 125%;
	margin: 0 !important;
	padding: 0 !important;
}

.parts_hd_bottom_sm{
	display: none;
}

.parts_hd_bottom a{
	display: block;
	float: left;
	background-color: #AAAAAA;
	padding: 13px;
	text-align: center;
	width: calc( 100% / 6.5 );
}

.parts_hd_bottom a:hover{
	text-decoration: none !important;
	background-color: #777777;
}

.parts_hd_bottom p{
	list-style: none;
	font-size: 100%;
	font-weight: 600;
	color: #000000;
	line-height: 125%;
	margin: 0 !important;
	padding: 0 !important;
}

.parts_hd_bottom2{/*ボディ用*/
	background-color: #555555;
	overflow: hidden;
	width: 96%;
	padding: 2% 2% 0 2%;
	text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-between;
	margin-bottom: 25px;
}

.blog_hd_bottom2{/*ボディ用*/
	background-color: #555555;
	overflow: hidden;
	width: 96%;
	padding: 2% 2% 0 2%;
	text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
     -ms-flex-pack: start;
   justify-content: flex-start;
}

.blog_hd_bottom2 a{/*ボディ用*/
	display: block;
	float: left;
	background-color: #AAAAAA;
	padding: 13px;
	text-align: center;
	width: calc( 100% / 8.0 );
	margin-right: 2%;
}

.blog_hd_bottom2 a:hover{/*ボディ用*/
	text-decoration: none !important;
	background-color: #777777;
}

.blog_hd_bottom2 p{/*ボディ用*/
	list-style: none;
	font-size: 100%;
	font-weight: 600;
	color: #000000;
	line-height: 125%;
	margin: 0 !important;
	padding: 0 !important;
}

.parts_list2{
	clear: both;
	overflow: hidden;
	border-bottom: 1px solid #888888;
	padding: 15px 15px;
}
.parts_list2 img{
	width: 100px;
	padding: 4px;
	border: 1px solid #333333;
	background-color: #888888;
	float: left;
	margin-right: 15px;
}

.parts_list2 h4{
	font-size: 110%;
	font-weight: 600;
	color: #ffcf3e;
}

.parts_list2 h4 span{
	font-size: 80%;
	font-weight: 400 !important;
	color: #ffffff;
	margin-right: 10px;
	background-color: #444444;
	padding: 5px 7px 3px 7px;
	display: inline-block;
	line-height: 100%;
}

.parts_list2 h4 i{
	margin-right: 5px;
	color: #ffcf3e;
}

.parts_list2 p{
	line-height: 165%;
	margin: 0;
	padding: 5px 0 !important;
}

/*パーツの各記事（CMS用）
---------------------------------------------------------------------------*/
.parts_description{
	margin: 0 !important;
	padding: 0 10px 35px 10px !important;
	line-height: 165% !important;
}

.parts_description span{
	font-weight:600; 
	background-color:#cccccc; 
	color:#000000; 
	padding:0 4px 0 4px; 
	margin:0 4px 0 4px;
}
.hosoku{
	font-size:77%; 
	background-color:#333333; 
	padding:15px !important; 
	margin-bottom:35px !important;
	overflow: hidden;
	display: block;
	clear: both;
}
.parts_wrap{
	
}
/*.parts_wrap h3{
	margin: 15px 0 25px 0px;
	font-size: 110%;
	font-weight: 600;
	border-bottom: 1px solid #888888;
	padding: 8px 15px;	
}*/

.parts_wrap h3{
	border-left: 3px solid #bb7403;	/*左側の線の幅、線種、色*/
	padding-left: 12px;	/*左の線との間に空ける余白*/
	margin-bottom: 15px;	/*下に少しスペースを空ける*/
	margin-top: 5px;
	margin-left: 0px;	/*左側に空けるスペース。下の画像の幅を変更する場合はここも調整して下さい。*/
	font-size: 110%;
	font-weight: 600;
	clear: both;
}

.movie_pic_mv{
	width: 100%;
	float: none;
	overflow: hidden;
	margin: 0 0 0.7% 0 !important;
	clear: both;
	padding: 0 !important;
}

.parts_pic_01{
	width: 100%;
	height: auto !important;
	overflow: hidden;
	clear: both;
	margin:0 0 2.5% 0 !important;
	border: 0px solid #888888;
	margin-right: 0 !important;
	padding: 0 !important;
	text-align: center;
}

.parts_pic_01 img{
	object-fit: cover;
	width: 100% !important;
	height: auto !important;
	min-height: 640px !important;
	border: 0px solid #888888;
	margin: 0 auto !important;
}

.parts_pics{
	width: 98%;
	overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	padding: 2% 0 2% 2%!important;
	min-height: 130px;
  -webkit-box-pack: start;
     -ms-flex-pack: start;
   justify-content: flex-start;
   background-image: url("../images/pic_back.png");
	background-repeat: no-repeat;
   background-position: right top;
	background-size: cover;
	margin-bottom: 25px !important;
}
.parts_pic_02{
	width: 23% !important;
	overflow: hidden;
	border: 0px solid #888888;
	margin-right: 2% !important;
}

.parts_pic_03{
	width: 23% !important;
	overflow: hidden;
	border: 0px solid #888888;
	margin-right: 2% !important;
}

.parts_pic_04{
	width: 23% !important;
	overflow: hidden;
	border: 0px solid #888888;
	margin-right: 2% !important;
}

.parts_pic_05{
	width: 23% !important;
	overflow: hidden;
	border: 0px solid #888888;
	margin-right: 0 !important;
}


.parts_pic_02 img,.parts_pic_03 img,.parts_pic_04 img,.parts_pic_05 img{
	object-fit: cover;
	width: 100%;
	height: 140px;
	border: 0px solid #aaaaaa;
}


.parts_wrap ul{
	margin: 35px 0 35px 0 !important;
	padding: 0 !important;
	border-bottom: 0 !important;
	width: 100% !important;
}

.parts_wrap ul li{
	border-bottom: 1px solid #888888;
	padding: 5px 1%;
}



.parts_wrap li i{
	margin-right: 15px;
	color: #FFCE3E;
}

.parts_wrap li a{
	color: #FFCE3E;
}

.parts_wrap li a:hover{
	text-decoration: underline;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.price{
	background-color: #bb7403;
	color: #ffffff;
	margin: 0;
	clear: both;
	overflow: hidden;
	margin-bottom: 20px;
	padding: 5px 15px;
}

.price span{
	display: block;
	float: left;
	font-weight: 400;
	font-size: 100%;
	margin: 0 !important;
	padding: 0 !important;
}

.price p{
	display: block;
	float: right;
	font-weight: 600;
	font-size: 100%;
	margin: 0 !important;
	padding: 0 !important;
}

.parts_list{
	width: 100%;
	clear: both;
	overflow: hidden;
	margin: 0 !important;
	padding: 0 !important;
}

.parts_list li{
	border-bottom: 1px solid #888888; 
	width: 100%;
	overflow: hidden;
	padding: 0% !important;
	margin: 0 0 17px 0 !important;
}
.parts_list li a{
	color: #ffffff !important;
}


.parts_list li i{
	margin: 0 1% 0 0.5% !important;
}



.parts_list span{
	font-size: 78%;
	margin: 0 !important;
	padding: 2px 5px !important;
	border: 0px solid #ffcf3e;
	display: block;
	clear: both;
	background-color: #333333;
}

/*製品紹介ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
	position: relative;overflow: hidden;
	padding: 20px;		/*ボックス内の余白。ここを変更する際は、下の「.list a」のpaddingとmarginの数字も合わせる。marginの方はマイナス記号を忘れずに。*/
	border-top: 1px solid #666;	/*上の線の幅、線種、色*/
}
#main .list a {
	text-decoration: none;display: block;overflow: hidden;
	padding: 20px;	/*変更する場合は、上の「#main .list」のpaddingの説明を読んで下さい。*/
	margin: -20px;	/*変更する場合は、上の「#main .list」のpaddingの説明を読んで下さい。*/
}




/*マウスオン時の背景色*/
#main .list a:hover {
	color: #fff;	/*文字色*/
	background: #222;	/*背景色*/
}
/*リンクを貼った際に出る「→」マーク*/
#main .list a::before {
	content: "→";	/*出力する文字。変更しても構いませんが機種依存文字は化けるので使わないで下さい。*/
	font-size: 12px;	/*文字サイズ*/
	display: block;text-align: center;
	position: absolute;
	right: 10px;	/*ボックスの右から10pxの場所に配置*/
	bottom: 10px;	/*ボックスの下から10pxの場所に配置*/
	width: 30px;	/*幅*/
	line-height: 30px;	/*高さ*/
	background: #bb7403;	/*背景色*/
}
/*マウスオン時の「→」マーク*/
#main .list a:hover::before {
	background: #fac470;	/*背景色*/
}
/*ボックス内のh4タグ設定*/
#main .list h4 {
	border-left: 3px solid #bb7403;	/*左側の線の幅、線種、色*/
	padding-left: 10px;	/*左の線との間に空ける余白*/
	margin-bottom: 0.5em;	/*下に少しスペースを空ける*/
	margin-left: 32%;	/*左側に空けるスペース。下の画像の幅を変更する場合はここも調整して下さい。*/
}

#main .list h5{
	font-size: 16px;
	font-weight: 600;
	border:1px solid #888;
	padding: 5px 15px;
	margin-left: 32% !important;
	display: block;
	margin-bottom: 15px;
}
/*ボックス内のp(段落)タグ設定*/
#main .list p {
	padding: 0px !important;
	font-size: 15px !important;	/*文字サイズ*/
	line-height: 165% !important;	/*行間。通常より少し狭くする。基本となる行間は、最上部の「body」にあります。*/
	margin-left: 34%;	/*左側に空けるスペース。下の画像の幅を変更する場合はここも調整して下さい。*/
}
/*ボックス内の画像*/
#main .list figure {
	float: left;	/*左に回り込み*/
	width: 30%;		/*画像の幅*/
	overflow: hidden;
}

#sub .list figure img{
	border: 1px solid #888888 !important;
	padding: 3px !important;
	background-color: #cccccc !important;
}

/*最後ボックスの設定*/
#main .list:last-of-type, #main .list:last-of-type {
	border-bottom: 1px solid #666;	/*下の線の幅、線種、色*/
	margin-bottom: 20px;	/*下に空けるスペース*/
}

/*subコンテンツ（左側のブロック）
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*左に回り込み*/
	width: 22.5%;	/*ブロックの幅*/
}

/*sideコンテンツ（右側のブロック）
---------------------------------------------------------------------------*/
#side {
	float: right;	/*右に回り込み*/
	width: 18%;		/*ブロックの幅*/
}
/*２カラム時*/
.c2 #side {
	display: none;	
}

/*sub,side共通設定
---------------------------------------------------------------------------*/
/*h2見出しタグ設定*/
#sub h2,
#side h2 {
	text-align: center;	/*文字をセンタリング*/
	background: #bb7403;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fac470, #d89224 49%, #bb7403 50%);		/*グラデーション*/
	padding: 8px 0px;	/*上下、左右への余白*/
	border-radius: 0px 0px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下への設定*/
	margin-bottom: 10px;
}

.side_pick{
	margin-bottom: 11px !important;
}

/*段落タグ（p）設定*/
#sub p,
#side p {
	line-height: 145%;	/*行間を少し狭く*/
	font-size: 13px !important;
}

/*box1設定（sub,sideで使っています）
---------------------------------------------------------------------------*/
/*box1設定*/
#sub .box1,
#side .box1 {
	border: 1px solid #666;	/*枠線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックスの下にあけるスペース*/
}
/*box1の中にあるh2タグの設定*/
#sub .box1 h2,
#side .box1 h2 {
	border-radius: 0;	/*角丸をなくす設定*/
}

#sub .box1 p {
	line-height: 165% !important;
	font-size: 14px !important;
}

.box1 a {
	text-decoration: underline !important;
}

/*submenu（sub,sideのメニュー）
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub .submenu,
#side .submenu {
	margin-bottom: 20px;	/*メニューブロックの下にあけるスペース*/
	border-bottom: 1px solid #666;	/*下の線の幅、線種、色*/
}
/*メニュー１個ごとの設定*/
#sub .submenu li a,
#side .submenu li a {
	text-decoration: none;display: block;
	padding: 0 10px;	/*上下、左右のボックス内の余白*/
	border-top: 1px solid #666;
	border-left: 1px solid #666;
	border-right: 1px solid #666;
}
/*h2見出しにsubmenuが続いた場合*/
#sub h2 + .submenu,
#side h2 + .submenu {
	margin-top: -10px;	/*h2見出しの下の余白を相殺する*/
}

.side_blog{/*サイドのバナー画像*/
	width: 99.6% !important;
	margin: 15px auto 20px auto !important;
	padding: 0;
	overflow: hidden;
	clear: both;
	border: 1px solid #888888;
}

.side_blog img{/*サイドのバナー画像*/
	margin: 0;
	padding: 0;
}

/*sub,sideコンテンツ内のおすすめ一覧ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#sub .list, #side .list {
	position: relative;overflow: hidden;
	font-size: 11px;	/*文字サイズ*/
	line-height: 1.2;	/*行間を狭くする*/
	border-bottom: 1px solid #666;	/*上の線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
}
#sub .list a, #side .list a {
	text-decoration: none;display: block;overflow: hidden;
}

#sub .list a:hover, #side .list a:hover {
	text-decoration: underline;
}
/*最後ボックスの設定*/
#sub .list:last-of-type, #side .list:last-of-type {
	border-bottom: 1px solid #666;	/*下の線の幅、線種、色*/
	margin-bottom: 20px;	/*下に空けるスペース*/
}
/*ボックス内のh4タグ設定*/
#sub .list h4, #side .list h4 {
	font-weight: bold;	/*太字にする設定*/
	font-size: 14px !important;
	color: #ffcf3e !important;
}
/*ボックス内のp(段落)タグ設定*/
#sub .list p, #side .list p {
	padding: 0 !important;
}
/*ボックス内の写真設定*/
#sub .list figure img, #side .list figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 30%;		/*写真の幅*/
	margin-right: 10px;	/*写真の右側に空ける余白*/
}
/*h2見出しにlistブロックが続いた場合*/
#sub h2 + .list,
#side h2 + .list {
	margin-top: -10px;	/*h2見出しの下の余白を相殺する*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	background: #bb7403;	/*背景色*/
	font-size: 85%;	/*文字サイズ*/
}
footer .pr {display: block;font-size: 80%;}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 20px 0;
}
/*１行分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 18%;		/*幅。今回は５列作ったのでここの幅18%と下のpadding(合計の2%)でトータル20%になるよう設定。列に応じて調整して下さい。*/
	padding-right: 1%;
	padding-left: 1%;
}


.ninsyo{
	text-align: center;
}

.ninsyo img{
	text-align: center;
	width: 180px !important;
}


/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #333;	/*背景色*/
}
#copyright a {text-decoration: none;}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0px 20px;
	margin-bottom: 15px;
	width: 100% !important;
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}
/*記事設定*/
.new{
	margin-top: 55px !important;
}
.new ul{
	width: 100%;
	clear: both;
	overflow: hidden;
	margin: 0 !important;
	padding: 0 !important;
}

.new ul li{
	border-bottom: 1px solid #888888;
	padding: 15px 10px !important;
	margin: 0 !important;
}

.new ul li span{
	font-size: 88% !important;
	line-height: 125% !important;
	font-weight: 400;
	display: block;
	float: left;
	margin: 0 15px 0 0 !important;
	background-color: #444444;
	color: #ffffff;
	padding: 2px 5px !important;
}

.new ul li h4{
	font-size: 100% !important;
	line-height: 125% !important;
	font-weight: 600;
	margin: 0 !important;
	padding: 0 !important;
	color: #ffcf3e !important;
}

.new ul li h4 span.newicon{
	background-color: #FF0000 !important;
	font-size: 80%!important;
	line-height: 100% !important;
	padding: 1px 5px!important;
	margin: 0!important;
	display: inline!important;
	margin-left: 7px !important;
	float: none !important;
}

span.newicon{
	background-color: #FF0000 !important;
	font-size: 80%!important;
	line-height: 100% !important;
	padding: 1px 5px!important;
	margin: 0!important;
	display: inline!important;
	margin-left: 7px !important;
	float: none !important;
}


.new ul li h4 em{
	color: #ffcf3e !important;
	margin-right: 10px !important;
}

.new ul li div{
	margin: 0 !important;
	padding: 10px 0 !important;
	clear: both;
	overflow: hidden;
	line-height: 165%;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #666;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #222;	/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;	/*ボックス内の余白*/
}
/*ta1設定*/
.ta1 {
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #666;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}

/*inputボタン
---------------------------------------------------------------------------*/
#main input[type="submit"].btn,
#main input[type="button"].btn,
#main input[type="reset"].btn {
	padding: 5px 10px;
	border: 1px solid #ccc;
	font-size: 15px;
	border-radius: 3px;
	background: #eee;
}
/*マウスオン時の設定*/
#main input[type="submit"].btn:hover,
#main input[type="button"].btn:hover,
#main input[type="reset"].btn:hover {
	border: 1px solid #999;
	background: #fff;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*アニメーションのキーグレーム設定（変更不要）*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*デフォルトでは非表示に*/
body .nav-fix-pos-pagetop a {display: none;}
/*ボタンの設定*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 100;position: fixed;
	width: 35px;	/*幅*/
	line-height: 88px;	/*高さ*/
	height: 88px;
	bottom: 50px;	/*下から50pxの場所に配置*/
	right: 0%;		/*右から3%の場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(68,68,68,1.0);	/*背景色。0,0,0は黒の事で0.6は透明度60%の事。*/
	color: #fff;	/*文字色*/
	border: 0px solid #ffffff;	/*枠線の幅、線種、色*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}


/*デフォルトでは非表示に*/
body .nav-fix-pos-pagetop2 a {display: none;}
/*ボタンの設定*/
body.is-fixed-pagetop .nav-fix-pos-pagetop2 a {
	display: block;text-decoration: none;text-align: center;z-index: 100;position: fixed;
	width: 35px;	/*幅*/
	line-height: 88px;	/*高さ*/
	height: 88px;
	bottom: 158px;	/*下から50pxの場所に配置*/
	right: 0%;		/*右から3%の場所に配置*/
	background: #D90000;	/*背景色（古いブラウザ用）*/
	background: rgba(217,0,0,1.0);	/*背景色。0,0,0は黒の事で0.6は透明度60%の事。*/
	color: #fff;	/*文字色*/
	border: 0px solid #ffffff;	/*枠線の幅、線種、色*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop2 a:hover {
	background: #FF8000;	/*背景色*/
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #333;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #ffcf3e;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.r2 {text-align: right; margin: 10px 0 45px 0 !important;
padding: 0 !important;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 24px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}

.top_h3{
	border-top: 1px solid #888888;
	border-bottom: 1px solid #888888;
	clear: both;
	padding: 4px 10px !important;
	margin-bottom: 15px;
}

.topics_box{
	border-bottom: 1px solid #888888;
	width: 100%;
	clear: both;
	overflow: hidden;
	margin-bottom: 25px;

}

.topics_box img{
	width: 18%; 
	float: left; 
	background-color: #555; 
	border:1px solid #aaa; 
	padding: 4px; 
	margin: 0 20px 20px 0;
}

.topics_box h3{
	clear: none !important;
	float: none !important;
	background: none  !important;
	border: none !important;
	padding: 0 !important;
	margin: 0 0 15px 0 !important;
	color: #ffcf3e !important;
}

/*画面幅1200px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1200px){

.parts_hd_bottom p{/*パーツのヘッダー文字サイズ*/
	font-size: 80%;
}

}

/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
#contact {
	display: none;	/*非表示にする*/
}
	
/*ロゴ画像*/
header #logo {
	margin-left: 15px;
}

/*パーツのナビゲーション*/
.parts_hd_bottom{
	display: none;
}
	
/*ブログのナビゲーション*/
.blog_hd_bottom{
	display: none;
}

.blog_hd_bottom2{
	display: none;
}
	
.parts_hd_bottom_sm{
	display: block;
		background-color: #555555;
	margin-bottom: 25px;
}
	
.movie_pic_mv{
	width: 100%;
	float: none;
	overflow: hidden;
	clear: both;
	margin-left: 0;
	margin:10px 0 15px 0 !important;
}
	
#footermenu{
		display: none;
}
	
/*ブログ
---------------------------------------------------------------------------*/
.blog_text img{
	width: 28%;
	margin: 0 0px 0 20px;
}
	
/*ブログのコメント欄
---------------------------------------------------------------------------*/
#HCB_comment_box{
	padding: 0 10px;
}
	
.come_tit{
	padding:5px 10px !important; 
}

.come_tit2{
	padding-left: 10px !important;
}
	
/*レビューなどの写真
---------------------------------------------------------------------------*/
.parts_pic_01 img{
	object-fit: cover;
	height: 340px !important;
}
.parts_pics{
	min-height: 90px;
}

.parts_pic_02 img,.parts_pic_03 img,.parts_pic_04 img,.parts_pic_05 img{
	height: 100px;
}

/*レビュー
---------------------------------------------------------------------------*/
.rev_cell_l{
	display: table-cell;
	background-color: #cccccc;
	color: #000000;
	text-align: center;
	border: 1px solid #888888;
	padding: 5px 15px;
	width: 35%;
}

.rev_cell_r{
	display: table-cell;
	border: 1px solid #888888;
	padding: 5px 15px;
	width: 65%;
}
	
/*その他ページタイトル
---------------------------------------------------------------------------*/	
.parts_hd_top h3{
	font-size: 25px !important;
}
.parts_hd_top{
	height: auto;
	padding: 4.4%;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明(0%)から色を100%出すアニメーション指定。*/
@keyframes menu1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: absolute;
	top: 100px;	/*上から100pxの場所に配置*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	width: 100%;
	z-index: 10;
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 15px 10px 15px 20px;	/*上、右、下、左へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: rgba(0,0,0,0.8);	/*背景色*/
	font-size: 20px;
}
/*英語表記（飾り文字）*/
#menubar-s li a span {
	display: block;
	font-size: 12px;	/*文字サイズ*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 24px;	/*上から24pxの場所に配置*/
	right: 2%;	/*右から2%の場所に配置*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #fff url(../images/icon_menu.png) no-repeat center top/50px;
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #fff url(../images/icon_menu.png) no-repeat center bottom/50px;
}

/*main,sub,side,contents-in
---------------------------------------------------------------------------*/
#main, #sub, #side, #contents-in {
	float: none;
	width: auto;
	padding: 0 !important;
}
	


/*sub,sideコンテンツ内のおすすめ一覧ブロック
---------------------------------------------------------------------------*/
/*ボックス内の写真設定*/
#sub .list figure img, #side .list figure img {
	width: 20%;		/*写真の幅*/
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #side,body.s-n #footermenu {display: none;}
.sh {display:block;}
.pc {display:none;}
	
	


}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 14px;	/*文字サイズ*/
	line-height: 1.6;	/*行間*/
}

/*mainコンテンツ（中央のブロック）
---------------------------------------------------------------------------*/
/*mainコンテンツのh2,h3タグ設定*/
#main h2, #main h3 {
	font-size: 14px;	/*文字サイズ*/
	
}

/*submenu（sub,sideのメニュー）
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#sub .submenu li a,
#side .submenu li a {
	padding: 10px;	/*ボックス内の余白*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}

}
