@charset "utf-8";


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

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


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: #666;	/*リンクテキストの色*/
}
a:hover {
	color: #599c2d;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*ヘッダー（サイトロゴとメニューが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;
	background: #ffffff;	/*背景色*/
	position: fixed;	/*画面上部に固定表示させる設定。不要ならこの１行削除。*/
	height: 150px;	/*ヘッダーの高さ*/
	-webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.4);	/*影の設定。右・下・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定(この場合は黒)で最後の小数点が透明度。*/
	box-shadow: 0px 0px 6px rgba(0,0,0,0.4);			/*同上*/
    z-index: 100;
}
/*ロゴ画像の設定*/
header #logo {
	width: 400px;	/*ブロック幅*/
	float: left;	/*左に回りこみ*/
	padding: 0px;	/*ロゴブロック内の余白*/
	background: #ffffff;	/*背景色（古いブラウザ用）*/
	margin: 10px 0;
}

/*inner
---------------------------------------------------------------------------*/
.inner {
	max-width: 980px;	/*幅*/
	margin: 0 auto;
}

.inner_top {
	max-width: 100%;	/*幅*/
	margin: 0 auto;
}

.mainimg {
	width: 100%;
	height: auto;
	margin: 0 auto ;
}

#tel {
	float: right;	/*右寄せ*/
	margin-top:5px;	/*上下バランスを取る為、上に少しスペースをとる。*/
	font-size: 26px;
	color: #ee6000;
	line-height: 1.2;
}

span{
	font-size: 14px;
	color: #666;
	padding-left: 0px;
	float: right;
}

/*メニュー

/*メニューブロックの設定
#menubar {
	float: right;	/*右寄せ
	margin-top:10px;	/*上下バランスを取る為、上に少しスペースをとる。
}
/*メニュー１個あたりの設定
#menubar li {
	float: left;	/*左に回りこみ
	background: #fff;
	margin-left: 10px;
	padding: 3px 0px 3px 0px;
	width: 130px;	/*メニュー幅
	font-size: 15px;
}
#menubar a {
	display: block;
	color: #fff;	/*文字色
	text-decoration: none;
	padding: 0px 20px;	/*上下、左右へとる余白
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。
	transition: 0.5s;			/*同上
	text-align: center;


}
---------------------------------------------------------------------------*/

#menubar {
	float: none;
	margin-top: 20px;
	width: 100%;
	overflow: hidden;
	/* display: flex; */
}
#menubar ul {
	width: 100%;
}
#menubar li {
	float: left;
	background: #fff;
	margin-left: 0;
	padding: 7px 0;
	width: 14.285%;
	font-size: 17px;
	text-align: center;
	font-weight: bold;
	letter-spacing: 2px;
}
#menubar a {
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	letter-spacing: 1px;
}

/*マウスオン時*/
#menubar a:hover {
	color: #ffea00;	/*文字色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}
#menubar li.red {
	background: #c63030;
}
#menubar li.pink {
	background: #ee6000;
}
#menubar li.orange {
	background: #ff9900;
}

#menubar li.yel {
	background: #ffcc00;
}

#menubar li.grn {
	background: #599c2d;
}

#menubar li.cyan {
	background: #00ACC1;
}

#menubar li.blue {
	background: #305ec6;
}

/*ドロップダウンメニュー用
---------------------------------------------------------------------------*/
/*ドロップダウンブロックの設定*/
#menubar ul.ddmenu {
	position:absolute;
	visibility: hidden;
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
}
#menubar ul.ddmenu li a {
	padding: 3px 0px 3px 10px;	/*メニュー内余白。上、右、下、左。*/
	background: #f15895;	/*背景色*/
	color: #f15895;	/*文字色*/
	width: 150px;	/*メニュー幅*/
	margin-bottom: 5px;	/*メニュー同士にあけるスペース*/
	margin-left: 15px;
	border: 1px solid #ffcc00;
}
/*マウスオン時の設定*/
#menubar ul.ddmenu li a:hover {
	background: #ffea00;	/*背景色*/
	color: #f15895;	/*文字色*/
	border: 1px solid #f15895;
}




/*contents
---------------------------------------------------------------------------*/
.contents {
	clear: both;
	width: auto;
	padding: 50px 0px;
}
/*コンテンツのh2タグの設定*/
.contents h2 {
	clear: both;
	margin-bottom: 15px;
	color: #FFF;		/*文字色*/
	background: #ee6000;	/*背景色（古いブラウザ用）*/
	padding: 5px 15px;	/*上下、左右への余白*/
	font-size: 18px;
}
/*コンテンツのh2タグの１文字目への設定*/
.contents h2::first-letter {
	border-left: 3px solid #fff;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}
/*コンテンツのh3タグの設定*/
.contents h3 {
	clear: both;
	color: #ee6000;
	margin-bottom: 15px;
	margin-top: 20px;
	background: #FFF;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ededed));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #ededed);	/*同上*/
	background: linear-gradient(#FFF, #ededed);			/*同上*/
	padding: 4px 15px;	/*上下、左右への余白*/
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
}
/*コンテンツのh3タグの１文字目への設定*/
.contents h3::first-letter {
	border-left: 3px solid #ee6000;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}

h4 {
	position: relative;
	padding: .25em .75em;
	background-color: #ff9900;
	border-radius: 6px;
	margin-bottom: 20px;
	color: #FFF;
	font-size: 17px;
}
h4::after {
	position: absolute;
	top: 100%;
	left: 30px;
	content: '';
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-top: 15px solid #ff9900;
}

/*コンテンツの段落タグ設定*/
.contents p {
	padding: 0px 15px 14px;	/*上、左右、下への余白*/
}
.contents h2 + p,
.contents h3 + p {
	margin-top: -5px;
}

div.notedesign {
   border: 2px solid #599c2d;   /* 外枠 */
   padding: 20px 10px 10px 20px;             /* 内側の余白 */
   background-color: #ffffff; /* 背景色 */
   margin-bottom: 30px;
	border-radius: 6px;
}

div.notedesign p {
   background-image: url("../images/greendot.gif");
   line-height: 25px;
   margin: 0px;
}

div.notedesign2 {
   border: 2px solid #ee6000;   /* 外枠 */
   padding: 20px 10px 10px 20px;             /* 内側の余白 */
   background-color: #ffffff; /* 背景色 */
   margin-bottom: 30px;
	border-radius: 0px;
}

div.notedesign2 p {
   background-image: url("../images/greendot2.gif");
   line-height: 25px;
   margin: 0px;
	padding: 2px 15px 2px;
}

/*SERVICEページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.contents section.list {
	position: relative;
	overflow: hidden;
	background: #ffffff;	/*背景色*/
	border: 1px solid #ff9900;	/*枠線の幅、線種、色*/
	margin-bottom: 30px;	/*ボックス同士にとるスペース*/
}
.contents section.list a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	padding: 15px;	/*ボックス内の余白*/
}
/*マウスオン時のボックス*/
.contents section.list a:hover {
	background: #fff;	/*背景色*/
	color: #ff9900;
}
/*ボックス内の段落タグ設定*/
.contents section.list p {
	padding: 0px;
	margin-left: 24%;	/*左側の写真幅とのバランスをとって設定*/
	line-height: 1.5;
}
/*ボックス内の写真設定*/
.contents section.list figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 20%;		/*写真の幅*/
	padding: 0.5%;			/*余白*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	background: #fff;	/*背景色。写真と写真の枠線との間に出る色。*/
	margin-right: 3%;
}
/*ボックス内のh4タグ設定*/
.contents section.list h5 {
	margin-left: 24%;	/*左側の写真幅とのバランスをとって設定*/
	font-size: 18px !important;
	margin-bottom: 10px;
	border-bottom: 1px solid #ff9900;	/*下枠線の幅、線種、色*/
	color: #ff9900;
}
/*一覧ページの各製品ボックス内のテーブル（CMS用）
---------------------------------------------------------------------------*/
.contents section.list table {
	font-size: 12px;	/*文字サイズ*/
	background: #FFF;	/*背景色*/
	width: 75%;
	margin-bottom: 5px;
}
.contents section.list table,
.contents section.list table td,
.contents section.list table th{
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
}
.contents section.list table td,
.contents section.list table th{
	padding: 1%;	/*テーブル内の余白*/
}
/*見出しブロック*/
.contents section.list table th{
	width: 18%;		/*幅*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
	background: #dfe0c8;	/*背景色*/
}
/*説明ブロック*/
.contents section.list table td {
	width: 31%;	/*幅*/
}
/*取組みブロック*/
ol {
    counter-reset: li; /* Initiate a counter */
    list-style: none; /* Remove default numbering */
    *list-style: decimal; /* Keep using default numbering for IE6/7 */
    padding: 0;
    margin-bottom: 2em;
	font-size: 14px;

}

ol ol {
    margin: 0 0 0 2em; /* Add some left margin for inner lists */
}
.rectangle-list a{
    position: relative;
    display: block;
    padding: .4em .4em .4em .8em;
    *padding: .4em;
    margin: .5em 0 .5em 2.5em;
    background: #f4f4f4;
    color: #666;
    text-decoration: none;
    transition: all .3s ease-out;   
}

.rectangle-list a:hover{
    background: #eee;
}   

.rectangle-list a:before{
    content: counter(li);
    counter-increment: li;
    position: absolute; 
    left: -2.5em;
    top: 0%;
    margin-top: 0em;
    background: #e85b06;
    height: 2em;
    width: 2em;
    line-height: 2em;
    text-align: center;
    font-weight: bold;
    color: #fff;
}

.rectangle-list a:after{
    position: absolute; 
    content: '';
    border: .5em solid transparent;
    left: -1em;
    top: 0%;
    margin-top: .5em;
    transition: all .3s ease-out;               
}

.rectangle-list a:hover:after{
    left: -.5em;
    border-left-color: #e85b06;             
}   


/*main
---------------------------------------------------------------------------*/
.main {
	float: right;	/*右に回りこみ*/
	width: 730px;	/*メインコンテンツ幅*/
	width: 73%;	/*メインコンテンツ幅*/
}

#mainimg {
	padding-top: 150px;
}

/*sub
---------------------------------------------------------------------------*/
.sub {
	float: left;	/*左に回りこみ*/
	width: 230px;	/*サブコンテンツ幅*/
	width: 23%;	/*サブコンテンツ幅*/
}
/*subコンテンツ内のh2タグ設定*/
.sub h2 {
	background: none;
	margin-bottom: 0px;
	color: #fff;	/*文字色*/
	padding: 0px 0px 10px;
}


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

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
.sub .box1 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	background: #599c2d;	/*背景色*/
	border: solid 1px #599c2d;	/*線の線種、幅、色*/
	color: #fff;
	line-height: 1.4;
}


.sub .box1 p{
	margin-top: 10px;
	color: #fff;
	line-height: 1.3;
	padding: 0px;	
}

/*box1内のメニューの設定*/
.sub .box1 ul.submenu {
	margin-bottom: 0px;
}

.sub .box2 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	background: #ff9900;	/*背景色*/
	border: solid 1px #ffcc00;	/*線の線種、幅、色*/
	color: #fff;
	line-height: 1.4;
}


.sub .box2 p{
	margin-top: 10px;
	color: #fff;
	line-height: 1.3;
	padding: 0px;	
}

.sub .box3 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	background: #ffcc00;	/*背景色*/
	border: solid 1px #ffcc00;	/*線の線種、幅、色*/
	color: #fff;
	line-height: 1.4;
}

.sub .box3 p{
	margin-top: 10px;
	color: #000;
	line-height: 1.3;
	padding: 0px;	
}


/*box1内のメニューの設定*/
.sub .box2 ul.submenu {
	margin-bottom: 0px;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	padding-left: 15px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	background: #ffffff;	/*背景色*/
	color: #fff;		/*文字色*/

}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none !important;
	color: #fff;
}

/* フッター
*****************************************************/
#footerInfo{
padding:10px 10px;
margin-bottom:20px;
border-top:1px dotted #599c2d;
background: #ffffff;
color:#666666;

}

#footerInfo p{
	line-height: 1.3;
}

#footerLogo{
float:left;
padding:0px 0 30px 0;
}

#footer.contactInfo{float:right;padding-bottom:30px;}
#footer.contactInfo .tel a{color:#fff;}

#footer ul{
text-align:center;
font-size:95%;
padding-bottom:0px;
}

#footer ul ul{padding-bottom:0;}

#footer ul li{
display:inline-block;
vertical-align:text-top;
text-align:left;
padding:5px 0;
background: #fff url(../images/li.png) no-repeat 3px center;
}

#footer ul li	a{
display:block;
padding:0 20px 0 18px;
overflow:hidden;
color:#599c2d;
}

#footer ul li	a:hover{text-decoration:underline;
color:#ee6000;}


#footer ul li	li{
display:block;
padding:0;
margin-left:10px;
background:url(images/child.png) no-repeat 0 4px;
}

#footer ul li	li a{padding:0 10px 0 12px;}

*:first-child+html #footer ul{width:920px;margin:0 auto;}
*:first-child+html #footer ul ul{width:auto;}
*:first-child+html #footer ul li{float:left;}

#copyright{
clear:both;
padding:10px 0;
text-align:center;
font-style:normal;
font-size:90%;
color:#fff;
background:#599c2d;
zoom:1;
margin-top:10px;
}

.tel{
float: right;
display:inline;
padding-left:30px;
font:36px "Palatino Linotype", "Book Antiqua", Palatino, serif;
background:url(../images/tel_ic2.png) no-repeat 0 20%;
color:#ee6000;
line-height: 1.2;
}
header .tel {
  margin-top: 20px;
  display: block;
}
/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
	margin-bottom: 15px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background: #333;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#4b4b4b), to(#333));	/*グラデーション*/
	background: -webkit-linear-gradient(#4b4b4b, #333);	/*同上*/
	background: linear-gradient(#4b4b4b, #333);			/*同上*/
}
/*テーブル内の左側*/
.ta1 th {
	width: 140px;
	padding: 10px;
	text-align: center;
	background: #f0f0f0;	/*背景色*/
}
/*テーブル内の右側*/
.ta1 td {
	padding: 10px;
}

/*よく頂く質問・リンク共通設定
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq,
.link {
	padding: 0px 15px;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt,
.link dt {
	color: #fd6fa9;	/*文字色*/
	font-weight: bold;	/*太字*/
}
.faq dt a,
.link dt a {
	color: #fd6fa9;
}
/*回答の設定*/
.faq dd,
.link dd {
	padding-bottom: 15px;
}

/*一覧ページのボックス右下のオプションマーク
（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
.option1 {
	font-size: 10px;
	color: #FFF;
	background: #F00;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,10px);
	-ms-transform: rotate(-45deg) translate(37px,10px);
	transform: rotate(-45deg) translate(37px,10px);
}
h2 span.option1 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}
.option2 {
	font-size: 10px;
	color: #FFF;
	background: #069;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,10px);
	-ms-transform: rotate(-45deg) translate(37px,10px);
	transform: rotate(-45deg) translate(37px,10px);
}
h2 span.option2 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	max-width: 980px;
	margin: 0 auto;
	padding-top: 40px;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	padding: 0px 30px;
	background: #599c2d;	/*背景色*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	border-radius: 4px 4px 0px 0px;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #99cc00;	/*背景色*/
	color: #FFF;			/*文字色*/
}

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

/*トップページで使っている大きな文字
---------------------------------------------------------------------------*/
h1.type1 {
	font-size: 80px;
	line-height: 1.2;
	letter-spacing: 0.1em;
	margin-bottom: 30px;
	padding-left: 15px;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #000;border-radius: 4px;color: #fff;padding: 5px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {color: #fd6fa9;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.bg1 {background: #ffffe6;overflow: hidden;}
.pt150 {padding-top: 150px !important;}
.im70{
	width: 100%;
	height: auto;
	margin: 0px auto 20px auto;
	text-align: center;
}

p.indent-1 {
padding-left:1em;
text-indent:-1em;
}

/* flow */
.flow {
  width: 100%;
}
.flow li {
  clear: both;
  padding: 30px 0 80px;
  overflow: hidden;
  position: relative;
}
.flow img.flowimg {
  float: left;
  width: 40%;
  padding-right: 30px;
  box-sizing: border-box;
}
.flow li::after {
  content: "";
  background: url(../images/arrow_dwn.png)no-repeat center center;
  width: 150px;
  height: 30px;
  overflow: hidden;
  display: block;
  background-size: cover;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
}


.flow li p {
  font-size: 22px;
  padding: 50px 0;
}

.flow li.arrow_none:after { display: none; }


/* プルダウンメニュー */
#menubar li.menu__single {
  position: relative;
}

li.menu__single ul.menu__second-level {
  position: absolute;
  top: 40px;
  width: 100%;
  background: #fff;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  visibility: hidden;
}
.menu__second-level li {
  margin: 5px 0 !important;
}
li.menu__single ul.menu__second-level a {
  color: #333 !important;
  padding: 0 10px;
  font-size: 13px;
}

.menu__single:hover > .menu__second-level {
  top: 50px;
  visibility: visible;
  opacity: 1;
}
.mailform span {
  float: none;
  background-color: #c63030;
  color: #fff;
  margin-right: 5px;
}

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



/*inner
---------------------------------------------------------------------------*/
.inner {
	width: auto;
	margin: 0 10px;
}

/*contents
---------------------------------------------------------------------------*/
.contents {
	padding: 10px 0px;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	width: auto;
	margin-right: 10px;
}

}



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



/*全体の設定
---------------------------------------------------------------------------*/
/*トップページの背景画像*/
mainimg {
	width: 100%;
	height: auto;
}

/*ヘッダー（サイトロゴとメニューが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: static;
	height: 150px;	/*ヘッダーの高さ*/
	box-shadow: none !important;

}

header #logo {
	float: none;
	padding: 0;
	background: #ffffff;
	width: 100%;
	max-height: 60px;
	min-height: 60px;
	display: block;
  padding-right: 60px;
  box-sizing: border-box;
  text-align: center;
}
header #logo img {}

#tel {
	float: right;	/*右寄せ*/
	margin-top:55px;	/*上下バランスを取る為、上に少しスペースをとる。*/
	font-size: 15px;
	color: #ff9900;
	margin-left: 20px;
}

.tel{
float: right;
display:inline;
padding-left:30px;
font:24px "Palatino Linotype", "Book Antiqua", Palatino, serif;
background:url(../images/tel_ic.png) no-repeat 0 20%;
color:#ff9900;
line-height: 1.1;
margin-top: 60px;
}
header .tel{
margin-top: 10px;
  padding-right: 55px;
  box-sizing: border-box
}

/*ドロップダウンメニュー用
---------------------------------------------------------------------------*/
ul.ddmenu {
	display: none;	/*ドロップダウンメニューを表示させない*/
}

/*メニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
	position: fixed;
	top: 50px;	/*画面の上から110pxの場所に配置*/
	left: 0px;	/*画面の左から0pxの場所に配置*/
	width: 100%;
	z-index: 102;
  padding: 0 10px;
  box-sizing: border-box;
}
#menubar-s ul {
  border: 1px solid  #599c2d;
  border-bottom: none;
}
/*メニュー１個あたりの設定*/
#menubar-s li {
	float: left;
	width: 50%;
	border-bottom: 1px solid #599c2d;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#menubar-s li:nth-child(even)  {
	border-left: 1px solid #599c2d;	/*偶数番目のメニューのみ左側に線をいれる*/
}
#menubar-s a {
	display: block;
	height: 60px;		/*メニューの高さ*/
	line-height: 60px;	/*メニューの高さ*/
	text-decoration: none;
	background: #fff;				/*メニューの背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.9);	/*メニューの背景色。255,255,255はrgbカラーでの白の事、0.9は透明度90%の事。*/
	color: #599c2d;		/*文字色*/
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*メニューのテキストの前に入れる文字*/
#menubar-s a::before {
	content: "→";	/*「→」と入れる*/
	padding-right: 10px;	/*「→」と文字の間に空ける余白*/
	padding-left: 10px;
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

#menubar-s a:hover {
	color: #FF9900;	
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;
	top: 10px;		/*上から18pxの場所に配置*/
	right: 10px;	/*右から10pxの場所に配置*/
	width: 30px;	/*幅*/
	border: 1px solid #599c2d;	/*枠線の幅、線種、色*/
	border-radius: 4px;	/*角丸のサイズ*/
	padding: 12px 10px 5px;	/*上、左右、下へのボックス内余白*/
        z-index: 101;
	background: #599c2d;
height: 23px;
  transition: .2s;
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 2px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 2px;	/*角丸のサイズ*/
	margin-bottom: 5px;	/*バー同士の余白*/
	width: 30px;
  transition: .2s;
}

/*メニューバー　オープン時*/
#menubar_hdr.open {
  border-radius: 4px 4px 0 0;
}

#menubar_hdr.open span {
  position: absolute;
  top: 20px;
}
#menubar_hdr.open span:nth-of-type(1) {
  transform: rotate(135deg);
}
#menubar_hdr.open span:nth-of-type(2) {
  transform: scaleX(.1);
}
#menubar_hdr.open span:nth-of-type(3) {
  transform: rotate(-135deg);
}

  
/*main,subコンテンツ
---------------------------------------------------------------------------*/
.main, .sub {
	float: none;
	width: auto;
}
  
#mainimg { padding-top: 0; }

/*トップページで使っている大きな文字
---------------------------------------------------------------------------*/
h1.type1 {
	font-size: 50px;
}

/*その他
---------------------------------------------------------------------------*/
.pt150 {padding-top: 30px !important;}

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

/*メニュー１個あたりの設定*/
/*header {
	position: static;
	height: 100px;	/*ヘッダーの高さ*/
/*}*/
header {
	width: 100%;
	background: #ffffff;
	position: fixed;
	height: 150px;
	-webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.4);
	box-shadow: 0px 0px 6px rgba(0,0,0,0.4);
	z-index: 100;
}


mainimg img {
	position: relative;
	left: -50%;
    width:200%;
    height:auto;
}

.im70{
	/*width: 70%;*/
	height: auto;
	margin: 0px auto;
	text-align: center;
}

#menubar-s li {
	float: none;
	width: auto;
}
#menubar-s li:nth-child(even)  {
	border-left: none;
}

/*header #logo {
	width: 70%;
	float: left;
	padding: 0px;
	background: #ffffff;
	margin-top: 10px;

}

.tel{
float: right;
display:inline;
padding-left:30px;
font:20px "Palatino Linotype", "Book Antiqua", Palatino, serif;
background:url(../images/tel_ic.png) no-repeat 0 20%;
color:#ff9900;
line-height: 1.1;
margin-top: 0px;

}*/


.tel {
	float: right;
	display: block;
	padding-left: 30px;
	font: 36px "Palatino Linotype", "Book Antiqua", Palatino, serif;
	background: url(../images/tel_ic2.png) no-repeat 0 20%;
	color: #ee6000;
	line-height: 1.2;
	margin-top: 20px;
	margin-bottom: 20px;
}
header .tel {
font-size: 1.8em;
}

span{
	font-size: 12px;
	color: #666;
	padding-left: 0px;
	float: right;
}

.contents h2 {
	clear: both;
	margin-bottom: 15px;
	color: #FFF;		/*文字色*/
	background: #ff9900;	/*背景色（古いブラウザ用）*/
	padding: 5px 15px;	/*上下、左右への余白*/
	font-size: 15px;
}
/*コンテンツのh2タグの１文字目への設定*/
.contents h2::first-letter {
	border-left: 3px solid #fff;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}

.sub {
	float: left;	/*左に回りこみ*/
}
/*subコンテンツ内のh2タグ設定*/
.sub h2 {
	background: none;
	margin-bottom: 0px;
	color: #fff;	/*文字色*/
	padding: 0px 0px 10px;
}

h4 {
	position: relative;
	padding: .25em .75em;
	background-color: #ff9900;
	border-radius: 6px;
	margin-bottom: 20px;
	color: #FFF;
	font-size: 15px;
}

  
  
/*SERVICEページの各ブロック
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
.contents section.list p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
.contents section.list figure img {
	width: 40%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/*ボックス内のh4タグ設定*/
.contents section.list h5 {
	margin-left: 0;
}
/*ボックス内のh4タグ設定*/
.contents section.list h4 {
	margin-left: 200px;
}
/*一覧ページの各製品ボックス内のテーブル（CMS用）
---------------------------------------------------------------------------*/
.contents section.list table {
	width: 100%;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px,linear-gradient(#fd6fa9, #f35595);
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px,linear-gradient(#fd6fa9, #f35595);
}

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

/*トップページで使っている大きな文字
---------------------------------------------------------------------------*/
h1.type1 {
	font-size: 30px;
}

/*その他
---------------------------------------------------------------------------*/
.ws {width: 92%;}
.pt150 {padding-top: 30px !important;}

#footer ul li	a{
display:block;
padding:0 10px 0 13px;
overflow:hidden;
color:#599c2d;
}

#footerLogo{
float:left;
padding:0px 0 10px 0;
}

  .mailform span {
    float: none;
    background-color: #c63030;
    color: #fff;
    margin-right: 5px;
  }
  .mailform input,.mailform textarea {
    max-width: 95%;
  }
}

@media screen and (max-width:800px) { 
header { position: static; height: auto; }
.tel { margin: 0 0 10px; }

.flow li { padding: 10px 0 30px; }
.flow img.flowimg { float: none; width: 100%; padding-right: 0; }
.flow li p { font-size: 18px; padding: 10px 0 30px; }
.tel_fax li {
	width: 100% !important;
	padding: 0 !important;
	display: block !important;
	margin-bottom: 20px !important;
}
.tel_fax {
	display: block !important;
	margin: 0 !important;
}
.tel_fax li a { padding: 10px!important; }
.contactInfo span {
	font-size: 12px;
	color: #666;
	padding-left: 0px;
	float: none;
	clear: both;
	display: block;
}
.contactInfo span a {
	color: #666 !important;
}
#footerInfo { margin-bottom: 0 !important; }
.main_about p { font-size: 15px !important; }
.main_about p br { display: none; }
div.main_about { padding-bottom: 50px !important; }
}
@media screen and (max-width:479px) {
header .tel{display: none;}
div.main_about { background-size: 100% !important; padding-bottom: 120px !important; }
.im70 { margin-bottom: 20px; }


}


div.main_about { background: url(../images/main_bg.jpg)no-repeat right bottom; margin-bottom: 20px; }
.main_about p {
	font-size: 17px;
	font-weight: bold;
	letter-spacing: 1px;
	padding: 0 0 20px;
	color: #666;
	text-shadow: 1px 1px #fff;
}
.foot_tel {
	margin: 10px 0;
}

.foot_tel {
	margin: 10px 0;
	float: right;
}


.tel_fax {
	display: flex;
	margin: 30px -7px 0;
}
.tel_fax li {
	width: 50%;
	padding: 0 10px;
	display: block;
}
.tel_fax li a {
	display: block;
	padding: 30px;
	text-align: center;
	text-decoration: none;
	letter-spacing: 2px;
	font-size: 18px;
	font-weight: bold;
}
.tel_fax li a span {
	display: block;
	text-align: center;
	float: none;
	font-size: 30px;
}
.tel_fax li a:hover {
	color: #666;
	opacity: 0.8;
}
ul.tel_fax li:nth-child(1) a {
	background: #dde56e;
	border: 2px solid #fff;
	box-sizing: border-box !important;
	outline: 4px solid #dde56e;
	box-sizing: border-box;
}
ul.tel_fax li:nth-child(2) a {
	background: #e6e6e6;
	border: 2px solid #fff;
	box-sizing: border-box !important;
	outline: 4px solid #e6e6e6;
	box-sizing: border-box;
}