@charset "utf-8";


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #FFFFFF
}
p.red { color: #ff0000; 
        font-weight:bold;
}
p.blue { color: #0000FF; 
        font-weight:bold;
}
p.black { font-weight:bold;
          font-size: 120%;
}
span.black{font-weight:bold;
          font-size: 120%;
}
span.red{color:#ff0000;}
span.blue{color:#0000FF;}
span.under {
  border-bottom: dotted 2px #ff0000;
  }
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form{margin: 0px;padding: 0px;}
ul{list-style-type: none;}
img {max-width: 100%;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}



 

 

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a:hover img{
opacity: 0.6;
-moz-opacity:0.6;
}


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

/*ヘッダー（サイトロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;	/*横一杯使う為に100%指定*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	font-size: 14px;
}
/*サイト幅にしたheader内のブロック*/
header #inner {
	width: 980px;	/*幅。#menubarと数字を合わせる。*/
	height: 130px;	/*高さ*/
	margin: 0 auto;
	position: relative;
}
/*ロゴ画像*/
header #logo {
	position: absolute;
	left: 10px;	/*header #innerに対して左から10pxの場所に配置*/
	top: 25px;	/*header #innerに対して上から25pxの場所に配置*/
}
/*TEL*/
header #tel {
	position: absolute;
	left: 70px;	/*header #innerに対して左から70pxの場所に配置*/
	top: 85px;	/*header #innerに対して上から85pxの場所に配置*/
}

header .headermenu3 {
	float: right;
	margin-top: 7px;
}
/*ヘッダー内メニュー（「資料請求・お問い合わせ」と「見学のお申し込み」ボタン）
---------------------------------------------------------------------------*/


/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menu-box {
	width: 100%;
	overflow: hidden;
	-webkit-box-shadow: 0px 5px 6px rgba(0,0,0,0.1);	/*影の設定。右・下・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定(この場合は黒)で最後の小数点が透明度。*/
	box-shadow: 0px 5px 6px rgba(0,0,0,0.1);			/*同上*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: -webkit-linear-gradient(#fff 30%, #eee);	/*同上*/
	background: linear-gradient(#fff 30%, #eee);			/*同上*/
	border-bottom: 1px solid #dcdcdc;	/*下線の幅、線種、色*/
	margin-bottom: 30px;	/*メニューと下のコンテンツとの間に空けるスペース*/
}
#menubar{
	width: 980px;	/*幅。header #innerと数字を合わせる。*/
	overflow: hidden;
	margin: 0 auto;
	border-left: 1px solid #dcdcdc;	/*一番左側にラインを入れる設定*/
	font-size: 14px;	/*文字サイズを固定。文字サイズ「大中」ボタンの影響を受けたいならこの行削除。但し若干レイアウトが崩れます。*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	text-align: center;	/*文字をセンタリング*/
	border-right: 1px solid #dcdcdc;	/*右側にラインを入れる*/
	width: 162px;	/*メニュー幅*/
}
#menubar a {
	margin: 7px 5px;	/*上下、左右へ、外側へとる余白。メニュー選択時に余白を設ける為に設定しています。*/
	display: block;
	text-decoration: none;
	padding: 7px 0px;	/*上下、左右へとる余白*/
	border-radius: 4px;	/*角丸のサイズ*/
}
/*マウスオン時*/



#menubar li.current a {

	background: #FFCC00;	/*背景色*/
	color: #fff;	/*文字色*/
	-webkit-box-shadow: 1px 2px 3px rgba(0,0,0,0.1) inset;	/*影の設定。右・下・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定(この場合は黒)で最後の小数点が透明度。insetは内側に向かっての影。*/
	box-shadow: 1px 2px 3px rgba(0,0,0,0.1) inset;			/*同上*/
}

/*コンテンツ（左右ブロックを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	width: 940px;	/*幅。header #innerや#menubarの980pxからここのpadding(左右の合計幅)を差し引いた数字で設定するといい。*/
	padding: 0px 20px 0px;	/*ボックス内の余白。上下、左右、下。*/
	margin: 0px auto 15px;
	background: #FFF;	/*背景色*/
	overflow: hidden;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	padding-bottom: 30px;
}
h1 {
	font-size: 9px;	
	float: left;
}
#nav2 {
	text-align: right;
}
#nav2 ul li{ 	
    display: inline;
    font-size: 12px;
    
 } 
 
 #nav2 ul li a { 
 	text-decoration: none;	
 }

/*mainコンテンツのh2タグの設定*/
#main h2 {
	margin-bottom: 15px;
	font-size: 20px;
	color: #FFF;		/*文字色*/
	background:#0489B1;	/*背景色*/
	padding: 5px 15px;	/*上下、左右への余白*/
	border-radius: 4px;	/*角丸のサイズ*/
}
/*mainコンテンツのh2タグの１文字目への設定*/
#main h2::first-letter {
	border-left: 3px solid #fff;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	margin-bottom: 15px;
	font-size: 15px;
	color: #FFF;		/*文字色*/
	background-color: #FF8C00;
	width: 600px;
	padding: 5px 15px;	/*上下、左右への余白*/
	border-radius: 4px;	/*角丸のサイズ*/
}

.top2retsu_left,.top2retsu_right{
text-align:center;
}
.top2retsu_left p,.top2retsu_right p{
font-size:16px;
color:#000;
line-height:165%;
text-align:left;
}
.top2retsu_left img,.top2retsu_right img{
width:200px;
}

#sub h5 {
	margin-bottom: 15px;
	font-size: 13px;
	color: #000;		/*文字色*/
	background: #FFFF66;	/*背景色*/
	padding: 5px 15px;	/*上下、左右への余白*/
}



/*mainコンテンツのh3タグの１文字目への設定*/
#main h3::first-letter {
	border-left: 3px solid #fff;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 7px 15px 14px;	/*上、左右、下への余白*/
}
#main p + p {
	padding-top: 0px;
}
#main h2 + p,
#main h3 + p {
	padding-top: 0px;
	margin-top: -5px;
}

.new {
 overflow: auto;
 float: left;
 margin-top: 6px;
 }

.relative3 {
	text-align: center;
    position: relative;
    width: 630px;
}
.absolute3 {
    position: absolute;
     right: 20px;
    bottom: 20px;
}
.relative4 {
	text-align: center;
    position: relative;
    width: 650px;
}

.side {
 overflow: auto;
 float: left;
 margin-top: 6px;
 }
 
.side2 p {
margin-left: 160px;
 }

#area ul{
width: 630px;
height: 200px;
background: #FFFFF0;
margin-bottom: 20px;
margin: 5; 
padding: 5; 
list-style: none;
}

#area li{ 
display: inline; 
padding: 3px; 
margin: 3px; 
float: left;
}


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/

#new{
	margin-bottom: 15px;
}
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;	/*ボックスの高さ*/
	padding-left: 15px;
	margin-bottom: 15px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #d2d2d2;	/*下線の幅、線種、色*/
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}


/* TOP お客様の声 */
.relative4 {
	float: right;
    position: relative;
}

#container {
	width: 630px;
	float: left;
}

/* よくある質問一覧ページへのバナー */
.kusakari {
	margin-top: 30px;
	margin-bottom: 20px;
	margin-left: 0px;
}


.kaitori {
	float: right;
}



/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*右に回り込み*/
	width: 270px;	/*幅*/
	
}

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

#sub .box1 a:hover{

	background: #FFCC00;	/*背景色*/
	color: #fff;	/*文字色*/
	-webkit-box-shadow: 1px 2px 3px rgba(0,0,0,0.1) inset;	/*影の設定。右・下・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定(この場合は黒)で最後の小数点が透明度。insetは内側に向かっての影。*/
	box-shadow: 1px 2px 3px rgba(0,0,0,0.1) inset;			/*同上*/
}



/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	background: #767676;	/*背景色*/
	color: #fff;	/*文字色*/
	font-size: 85%;	/*文字サイズ*/
}
footer a {
	color: #fff;
}

#footerFloatingMenu {
    display: block;
   	background:  #FFFFFF ;	/*背景色*/
	height: 70px;
    width: 100%;
    position: fixed;
    left: 0px;
    bottom: 0px;
    z-index: 9999;
    text-align: center;
    padding: 0 auto;
    border-top-style: solid;
    border-top-color: #00BFFF;
	border-top-width: 7px;    
	
}

#footerFloatingMenu img {
    max-width: 99%;
}
/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #333;	/*背景色*/
	height: 150px;
}
#copyright a {
	text-decoration: none;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	padding-top: 40px;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	padding: 0px 30px;	/*上下、左右へのボックス内余白*/
	background: #333;	/*背景色*/
	text-decoration: none;
	float: right;
	border-radius: 4px 4px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下。*/
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #999;	/*背景色*/
	color: #FFF;			/*文字色*/
}



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

	/*ヘッダー（サイトロゴが入った最上段のブロック）
	---------------------------------------------------------------------------*/
	/*サイト幅にしたheader内のブロック*/
	header #inner {
		width: auto;
	}

	/*メインメニュー
	---------------------------------------------------------------------------*/
	/*メニューブロックの設定*/
	#menu-box {
		border-top: 1px solid #dcdcdc;
	}
	#menubar {
		width: auto;
	}
	/*メニュー１個あたりの設定*/
	#menubar li {
		width: 50%;
		border-bottom: 1px solid #dcdcdc;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
	}
	#menubar li:nth-child(even)  {
		border-right: none;
	}

	/*コンテンツ
	---------------------------------------------------------------------------*/
	#contents {
		width: auto;
		margin: 2%;
	}

	/*main,subコンテンツ
	---------------------------------------------------------------------------*/
	#main, #sub {
		float: none;
		width: auto;
	}

}



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

	/*メインメニュー
	---------------------------------------------------------------------------*/
	/*PC用メニューを非表示にする*/
	#menubar {
		display: none;
	}

	/*コンテンツ
	---------------------------------------------------------------------------*/
	#contents {
		width: auto;
		margin: 2%;
	}

	/*フッターメニュー
	---------------------------------------------------------------------------*/
	/*ボックス全体*/
	#footermenu {
		display: none;
	}

}
