@charset "utf-8";



/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family: "メイリオ", Mairyo UI,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",  Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
}

.wf-sawarabimincho { font-family: "Sawarabi Mincho"; transform: rotate(0.001deg);}

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: top;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
a:hover {
	color: #EE751D;				/*マウスオン時の文字色*/
	text-decoration: none;		/*マウスオン時にリンクの下線を消す設定*/
}

/*コンテナー（ホームページ全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {overflow-x: hidden;}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
#header {
	background: #000;	/*背景色*/
}
#sub #header {
	background: #FFF;	/*背景色*/
}

header  {
	max-width: 1000px;	/*最大幅。#menubar、.contents、#pagetopと数字を合わせる*/
	position: relative;z-index: 1;
	margin: 0 auto;
	height: 115px;	/*ヘッダーの高さ*/
	text-align: center;	/*内容をセンタリング*/
	background: #000;	/*背景色*/
}
#sub header  {
	background: #FFF;	/*背景色*/
}
/*ロゴ画像*/
#logo img {
/*	width: 400px;	/*画像幅*/
	padding-top: 30px;	/*画像の上にあける余白*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
.nav-fix-pos{
	background:#000;
}
#sub .nav-fix-pos{
	background:#FFF;
}
#menubar {
	max-width: 1000px;	/*最大幅。#header、.contents、#pagetopと数字を合わせる*/
	position: relative;z-index: 2;
	margin: 0 auto;
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.9);	/*背景色。255,255,255は白の事で、最後の0.9は透明度90%の事。*/
	height: 45px;		/*メニューブロックの高さ。ここを変更する場合、fixmenu.cssの「body.is-fixed .header」も変更する。*/
	padding: 10px 0;	/*上下、左右へあける余白。ここの10pxの数字を変更する場合、fixmenu.cssの「body.is-fixed .header」も変更する。*/
	color:#fff;
	font-family: "Sawarabi Mincho";
	transform: rotate(0.001deg);
}
/*トップページのメニューブロックの設定*/
#menubar {
	border-radius: 10px;	/*角丸のサイズ*/
//	-webkit-box-shadow: 2px 5px 8px rgba(0,0,0,0.2);	/*影の設定。右・下・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定(この場合は黒)で最後の0.2は透明度20%の事。*/
//	box-shadow: 2px 5px 8px rgba(0,0,0,0.2);			/*同上*/
	color:#fff;
	font-family: "Sawarabi Mincho";
	transform: rotate(0.001deg);
}
#sub #menubar {
	border-radius: 0px;	/*角丸のサイズ*/
//	-webkit-box-shadow: 0 0 0 rgba(0,0,0,0);	/*影の設定。右・下・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定(この場合は黒)で最後の0.2は透明度20%の事。*/
	color:#000;
	background: #FFF;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,1);	/*背景色。255,255,255は白の事で、最後の0.9は透明度90%の事。*/
}

/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
/*	width: 15.7%;	/*メニュー幅（※６個の場合）*/
/*	width: 13.5%;	/*メニュー幅（※７個の場合）*/
	margin-right:0px;
}
#menubar li a {
	text-decoration: none;
	display: block;
	text-align: center;
	line-height: 45px;	/*行間（高さ）*/
	border-bottom: 1px solid #000;	/*下側の線の幅、線種、色*/
	color:#fff;
	font-family: "Sawarabi Mincho";
	transform: rotate(0.001deg);
	font-size:105%;
	padding: 0 20px;
}
#sub #menubar li a {
	color:#000;
	border-bottom: 1px solid #FFF;	/*下側の線の幅、線種、色*/
}

/*１個目メニューの設定*/
#menubar li:first-child {
	margin-left: 2.8%;	/*左側にバランスよく余白を入れる*/
}
#menubar li:first-child a {
/*	border-left: 1px dashed #ccc;	/*左側の線の幅、線種、色*/
}
/*マウスオン時と、現在表示中(current)設定*/
#menubar li a:hover,
#menubar li a.current,
#sub #menubar li a:hover,
#sub #menubar li a.current {
	color: #EE751D;	/*文字色*/
	border-bottom:2px solid #EE751D;
}
/*小さい端末用(画面幅800px以下)メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*キーイメージ
---------------------------------------------------------------------------*/
#subimg {
	text-align:center;
	background:#000;
	position: relative;
}
#sub #subimg {
	background:#FFF;
}	

#subimg #title {
	font-family: "Sawarabi Mincho";
	transform: rotate(0.001deg);
	font-size:200%;
	color:#fff;
	position: absolute;
	top:20%;
	left:15%;
	text-align:center;
}
	#subimg #title .subtext {
		font-size:80%;
		line-height:140%;
	}
#sub #subimg #title {
	color:#fff;
	font-size:220%;
	top:40%;
	left:15%;
}
/*コンテンツ
---------------------------------------------------------------------------*/
.contents01 {
	background:#FAFAFA ;
}
.contents02 {
	background:#ffffff ;
	
}

.contents {
	clear: both;
	max-width: 1000px;	/*最大幅。#header、#menubar、#pagetopと数字を合わせる*/
	margin: 0 auto;
	overflow: hidden;
	padding: 40px 0;
}
/*h2タグ*/
.contents h2 {
	clear: both;
	margin-bottom: 30px;
	padding: 8px 20px;	/*上下、左右への余白*/
	background: #EFEFEF;	/*背景色（古いブラウザ用）*/
	color: #000;	/*文字色*/
	border-left:3px solid #EE751D;
/*	border-radius: 10px;	/*角丸のサイズ*/
	font-family: "Sawarabi Mincho";
	transform: rotate(0.001deg);
	font-size:18px;
	font-weight: normal;
}
.contents h2.h201 {
	font-family: "Sawarabi Mincho";
	transform: rotate(0.001deg);
	font-size:24px;
	line-heigt:120%;
	background:none;
	border:none;
	padding:0;
	font-weight: normal;
}
h2.h202 {
	font-family: "Sawarabi Mincho";
	transform: rotate(0.001deg);
	font-size:22px;
	font-weight: normal;
}


/*h3タグ*/
.contents h3 {
	clear: both;
	border-left:3px solid #ccc;
	border-top:1px solid #ccc;
	text-align:left;
	font-size:16px;
	padding: 6px 20px;	/*上下、左右への余白*/
}
/*h3タグのタイプ違い（MENUページのh3見出しに使用）*/
.contents h3.type2 {
	border-radius:0;
	border: none;
	background: #EE751D;	/*背景色*/
	color: #fff;		/*文字色*/
}
.contents .strong01 {
	font-family: "Sawarabi Mincho";
	transform: rotate(0.001deg);
	font-size:20px;
	color:#000;
}
/*見出しのタイプ違い設定（トップページの挨拶で使っている大きな見出し）*/
.type1 {
	background: none !important;
	border-radius: 0 !important;
	color: #62c7b5 !important;
	line-height: 1.3 !important;
	font-weight: normal !important;
	font-size: 50px !important;
	text-align: center !important;
	border: none !important;
	border-bottom: 1px dashed #62c7b5 !important;
	margin-bottom: 20px !important;
	letter-spacing: 0.2em !important;
	text-shadow: 8px 8px #eee !important;
}
/*段落タグ*/
.contents p {
	padding: 0px 20px 40px;	/*上、左右、下への余白*/
}
.contents h2 + p,
.contents h3 + p {
	margin-top: -5px;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツブロック*/
.main {
	float: right;	/*右に回り込み*/
	width: 75%;		/*ボックス幅*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
.sub {
	float: left;	/*左に回り込み*/
	width: 20%;	/*幅*/
}
/*subコンテンツ内のh2タグ設定*/
.sub h2 {
	padding-bottom: 10px;
	background: none;
	padding: 0;
	color: #666;
}
/*subコンテンツのh2タグの１文字目への設定*/
.sub h2::first-letter {
	border-left: 3px solid #b5b5b5;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
.sub ul.submenu {
	margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #e4e4e4;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
.sub ul.submenu li {
	background: #fff;	/*背景色*/
	border-bottom: solid 1px #e4e4e4;	/*下の線の線種、幅、色*/
}
.sub ul.submenu li a {
	text-decoration: none;
	display: block;
	padding: 2px 10px;	/*メニュー内の余白。上下、左右への設定。*/
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
.sub .box1 {
	padding: 20px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	background: #f7f7f7;	/*背景色*/
	border: solid 1px #e4e4e4;	/*線の線種、幅、色*/
	border-radius: 10px;	/*角丸のサイズ*/
}
/*box1内のメニューの設定*/
.sub .box1 ul.submenu {
	margin-bottom: 0px;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	max-width: 1000px;	/*最大幅。#header、#menubar、.contentsと数字を合わせる*/
	margin: 0 auto;
	position: fixed;
	right:10%;
	bottom:20%;
    opacity: 0;
    -ms-filter: "alpha( opacity=0 )";
    filter:alpha(opacity:0);
    zoom:1;
    
}
#pagetop a {
	text-decoration: none;
	text-align: center;
	display: block;

/*	color: #FFF;		/文字色/
	font-size: 20px;	/文字サイズ/
	padding: 0px 30px;	/上下、左右へのボックス内余白/
	background: #62c7b5;	/背景色/
	border-radius: 4px 4px 0px 0px;	/角丸のサイズ。左上、右上、右下、左下。*/
}
/*マウスオン時*/
#pagetop a:hover {
	opacity:0.8;
    -ms-filter: "alpha( opacity=0.8 )";
    filter:alpha(opacity:0.8);
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	background: #000;	/*背景色*/
	color: #fff;			/*文字色*/
	
}
	footer .footerCont {
		max-width: 1000px;	/*最大幅。#header、#menubar、.contentsと数字を合わせる*/
		margin: 0 auto;
		overflow:hidden;
		zoom:0;
		padding-top:20px;
	}
footer a {
	color: #fff;
	text-decoration: none;
}
footer a:hover {
	color: #fff;
}
footer .pr {
	display: block;
	font-size: 80%;
}

	footer .ftell {
		background: url(../img/common/icon/tel_icon.png) 0 50% no-repeat;
		font-size:32px;
		font-weight: bold;
		color:#EE751D;
		padding-left:30px;
		display: inline-block;
		line-height: 160%;
	}
		footer .ftell a {	
			color:#EE751D;
		}
	footer .fmail {
		border:1px solid #fff;
		background: url(../img/common/icon/mail_icon.png) 40px 50% no-repeat;
		text-align: center;
	}
		footer .fmail a {
			display:block;
		}
	

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	padding-left: 1em;
	margin-bottom: 15px;
/*	height: 110px;	/高さ/
	overflow: auto;	/高さの設定を超えるとスクロールが自動で出る設定。全部表示させていたいならこの行と上の行を削除。*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
	margin-bottom: 30px;
}
	#new dd .title {
		padding:0;
		cursor:pointer;
	}
	#new dd .post {
		margin-top:10px;
		padding:0;
		font-size:14px;
		line-height: 160%;
		display:none;
	}

/*GALLERYページ
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
	width: 17.5%;	/*ボックスの幅*/
	text-align: center;	/*内容をセンタリング*/
	float: left;
	margin: 0 0 15px 2%;	/*上、右、下、左へのボックスの外側へとるスペース*/
	font-size: 12px;
}
/*画像の設定*/
.list figure img {
	border-radius: 50%;	/*角丸のサイズ。配置画像が正方形であれば円形になります。*/
}

/*COUPONページ
---------------------------------------------------------------------------*/
/*ボックス*/
#coupon {
	position: relative;
}
/*段落タグ*/
#coupon p {
	position: absolute;
	left: 5%;	/*ボックスに対して左から5%の場所に配置*/
	top: 35%;	/*ボックスに対して上から35%の場所に配置*/
	width: 45%;	/*ボックスの幅*/
	color: #fff;	/*文字色*/
	text-shadow: 0px 0px 10px #000;	/*テキストの影*/
}

/*テーブル ta1 
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	border-top: 1px solid #E5E5E5;	/*テーブルの枠線の幅、線種、色*/
	width: 100%;
	margin: 0;
}
.ta1, .ta1 td, .ta1 th {
	border-bottom: 1px solid #E5E5E5;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 20px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;		/*左よせ*/
	background: #eee;	/*背景色*/
}
/*ta1の左側ボックス*/
.ta1 th {
	text-align: left;
	vertical-align:top;
	background:#F7F7F7;
	font-weight:normal;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}

/*テーブル ta2 工業設備
---------------------------------------------------------------------------*/
/*ta2設定*/
.ta2 {
	width: 96%;
	margin: 0 2% 15px;
	font-size:95%;
	border-bottom: 2px solid #ccc;	/*下の線の幅、線種、色*/
}
.ta2 tr:nth-child(even) {
	background: #F9F9F9;	/*奇数番目の行にだけ色をつける。古いブラウザは未対応。*/
}
.ta2 th {
	padding: 15px;	/*ボックス内の余白*/
	border-bottom: 2px solid #ccc;	/*下の線の幅、線種、色*/
}
.ta2 td {
	padding: 20px;	/*ボックス内の余白*/
}
/*一番左の列の設定。メニュータイトルが入っている所。*/
.ta2 th {
	text-align: center;	
	font-weight: normal;
	vertical-align: top;	/*文字を上に寄せる*/
}
/*写真用*/
.ta2 img.menu-img {
	width: 150px;	/*画像の幅*/
	border-radius: 20px;	/*角丸のサイズ。この行を削除すれば通常の四角形になります。*/
	float: right;
}
/*価格用*/
.ta2 .price {
	white-space: nowrap;	/*途中で改行させない設定*/
	font-weight: bold;		/*太字*/
	text-align: right;		/*右寄せ*/
}

/*テーブル ta3 お問い合せ
---------------------------------------------------------------------------*/
/*ta3設定*/
.ta3 {
	width: 100%;
	margin: 0;
	border-bottom: 1px solid #EFEFEF;	/*下の線の幅、線種、色*/
}
.ta3 th {
	padding: 20px 0;	/*ボックス内の余白*/
	border-top: 1px solid #EFEFEF;	/*下の線の幅、線種、色*/
}
.ta3 td {
	padding: 10px;	/*ボックス内の余白*/
	border-top: 1px solid #EFEFEF;	/*下の線の幅、線種、色*/
}
/*一番左の列の設定。メニュータイトルが入っている所。*/
.ta3 th {
	text-align: left;	
	font-weight: normal;
	vertical-align: top;	/*文字を上に寄せる*/
}
/*form用*/
.ta3 input,
.ta3 textarea {
	padding: 8px;
	border:1px solid #ccc;
	font-family: "メイリオ", Meiryo,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",  Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
}


/*価格用*/
.ta3 .price {
	white-space: nowrap;	/*途中で改行させない設定*/
	font-weight: bold;		/*太字*/
	text-align: right;		/*右寄せ*/
}

/*リスト dl01
---------------------------------------------------------------------------*/
/*dl01設定*/
.dl01 {}
	.dl01 dt {
		width:30%;
		clear:left;
		float:left;
		margin-bottom:20px;
	}
	.dl01 dd {
		padding-left:32%;
		margin-bottom:20px;
	}

/*製品リスト ギャラリー
---------------------------------------------------------------------------*/
.gallery01 {
	width:82%;
	text-align:center;
	margin:0 auto;
}
	.gallery01 a{
		margin:0;
		padding:0;
	}
	.gallery01 a img{
		margin:0 5px 10px 0;
	}
	


/*MENUページのページ内メニュー
---------------------------------------------------------------------------*/
ul.navmenu {
	padding-top: 10px;
	text-align: center;
}
ul.navmenu li {
	display: inline;
}
ul.navmenu li a {
	background: url(../images/arrow1.png) no-repeat left center;	/*矢印マークの設定*/
	padding-right: 15px;
	padding-left: 15px;
	text-decoration: none;
}
ul.navmenu li a:hover {
	background: url(../images/arrow1.png) no-repeat 2px center;	/*マウスオン時に矢印マークを2pxだけ移動させて表示する設定*/
}

/*一覧ページのボックスのマーク
（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
.option1 {
	font-size: 10px;
	color: #FFF;
	background: #F00;
	text-align: center;
	display: block;
	width: 100px;
}
.option2 {
	font-size: 10px;
	color: #FFF;
	background: #069;
	text-align: center;
	display: block;
	width: 100px;
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}

/*その他
---------------------------------------------------------------------------*/
.look {color:#fff;background: #666;padding:5px;border-radius: 4px;}

.mb15,.mb1em {margin-bottom: 15px !important;}
.mb20 { margin-bottom:20px !important;}
.mb30 { margin-bottom:30px !important;}
.mb40 { margin-bottom:40px !important;}
.mb70 { margin-bottom:70px !important;}
.mb80 { margin-bottom:80px !important;}
.mt10	{margin-top:10px !important;}
.mt20	{margin-top:20px !important;}
.mt70	{margin-top:70px !important;}
.mr10 { margin-right:10px !important;}
.ml20 { margin-left:20px !important;}
.mt-top {margin-top: -130px !important;}

.p3p {padding: 3%;}
.pt70 {padding-top: 70px;}

.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}

.color1 {color: #62c7b5 !important;}
.color2 {color: #1C00EF;}
.red { color:#FF0000;}
.err { color: #DD0000; padding:0 !important;}

.pr {font-size: 10px;}
.f12px {font-size: 12px;}
.f14px {font-size: 14px;}
.lh120 {line-height: 120%;}

.wl {width: 96%;}
.ws {width: 50%;}
.w10p {width: 10% !important;}
.w20p {width: 20% !important;}
.w30p {width: 30% !important;}
.w40p {width: 40% !important;}
.w60p {width: 60% !important;}
.w70p {width: 70% !important;}
.w80p {width: 80% !important;}

.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.menu-top {text-align: right;}

.fr {float: right;margin-left: 1%;margin-bottom: 20px;width: 45%;}
.fl {float: left;margin-right: 1%;margin-bottom: 20px;width: 45%;}

.fr2 {float: right;}
.fl2 {float: left;}


.fs1 {font-size: 18px;}
.big1 {font-size: 30px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}

.sh {display: none;}
.dn {display: none;}

.clearfix {overflow:hidden; zoom:0;}

.hr01 { border:none; border-bottom:1px solid #CCCCCC; height:0px;  padding:0;}

.btn01{
	background:#EE751D;
	width:320px;
	text-align:center;
	padding:10px 0;
	color:#fff;
	font-size:18px;
	border:none;
	cursor:pointer;
	border-radius: 10px;	/*角丸のサイズ*/

}
.btn01:hover{
	opacity:0.8;
    -ms-filter: "alpha( opacity=0.8 )";
    filter:alpha(opacity:0.8);
}

