@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #323333;	/*全体の文字色*/
	background-color:#f3f3f3;

	margin: 0px;
	padding: 0px;
	font: 16px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ/行間、フォントファミリー*/


}
h1,h2,,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
	vertical-align: bottom;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #eb5e00;	/*リンクテキストの色*/
}
a:hover {
	color: #FFCC00;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 1200px;	/*コンテナー幅*/
	margin: 0px auto;
		background-color: #f3f3f3;	/*背景色*/
    margin: 0 auto;


}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	text-align: center;
	padding-top: 30px;
}
/*h1タグの設定*/
header h1 {
	font-size: 9px;			/*文字サイズ*/
	line-height: 10px;		/*行間*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準に。太字がいいならこの１行削除。*/
}


#topH{
	height: 70px;
}

#topH.logo{
	float:left;
}


/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/

#menu{
	weight: 960px;
		background: #27a3b;	/*背景色（古いブラウザだとここの色のみが出ます）*/

}

nav#menubar ul {
	padding-left: 240px;
	    margin: 0 auto;



}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	margin: 0px 7px;
}
nav#menubar ul li a {
	height: 110px;		/*ボタンの高さ*/
	width: 110px;		/*ボタンの幅*/
	line-height: 110px;	/*行間*/
	border-radius: 0px;	/*角丸のサイズ。この行を削除すると正方形になる。*/
	text-decoration: none;
	display: block;
	background: #27a3b;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#27a3b), to(#cdf1f8));	/*グラデーション*/
	background: -webkit-linear-gradient(#27a3bd, #cdf1f8);	/*同上*/
	background: linear-gradient(#27a3bd, #cdf1f8);			/*同上*/
	color: #FFF;	/*文字色*/
	font-size: 16px;	/*文字サイズ*/
	text-align: center;
	-webkit-box-shadow: 1px 2px 5px rgba(0,0,0,0.5);	/*影の設定。それぞれ右、下、ぼかし幅、色(左３つがRGBカラーコード、最後の小数点が透明度)の設定。*/
	box-shadow: 1px 2px 5px rgba(0,0,0,0.5);			/*同上*/
	margin-bottom: 30px;
}
/*マウスオン時と、current(表示中のメニュー)の設定*/
nav#menubar ul li a:hover,
nav#menubar ul li#current a {
	background: #27a3bd;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#27a3bd), to(#cdf1f8));	/*背景画像の読み込みとグラデーション*/
	background: -webkit-linear-gradient(#27a3bd, #cdf1f8);	/*同上*/
	background: linear-gradient(#27a3bd, #cdf1f8);			/*同上*/
	color: #FFF;	/*文字色*/
	-webkit-box-shadow:1px 2px 5px rgba(0,0,0,0.5);	/*影の設定をリセット*/
	box-shadow: none;			/*同上*/
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	position: relative;
	    text-align: center;
    margin: 0 auto;

}
#mainimg img {
	width: 100%;
	height: auto;
	border-radius: 0px;
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2
	;
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	z-Index:1;
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}

/*コンテンツ（メインコンテンツを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 1000px;	/*コンテンツ幅*/
	background-color: #f3f3f3;	/*背景色*/
	border-radius: 0px;	/*角丸のサイズ*/
	padding: 50px 50px 0px;	/*ボックス内の余白*/
	    margin: 0 auto;

}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	width: 100%;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}



/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	background-color: #0081a0;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#00bccd), to(#0081a0));	/*グラデーション*/
	background: -webkit-linear-gradient(#00bccd, #0081a0);	/*同上*/
	background: linear-gradient(#00bccd, #0081a0);			/*同上*/
	font-size: 110%;
	color: #FFF;		/*文字色*/
	padding: 7px 15px 7px 30px;	/*左から、上、右、下、左への余白*/
	border-radius: 0px;		/*角丸のサイズ*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	background-color: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#333), to(#111));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#333, #111);	/*同上*/
	background-image: linear-gradient(#333, #111);			/*同上*/
	font-size: 100%;
	padding: 4px 15px;	/*左から、上下、左右への余白*/
	border-radius: 0px;	/*角丸のサイズ*/
	border: 1px solid #00bccd;	/*枠線の幅、線種、色*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 15px 1em;	/*左から、上、左右、下への余白*/
}

/*menu.html内のメニュー案内の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list {
	padding: 20px;	/*ボックス内の余白*/
	border: 3px solid #00bccd;	/*枠線の幅、線種、色*/
	border-radius: 0px;		/*角丸のサイズ*/
	margin-bottom: 15px;		/*ボックスの下に空けるスペース*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#333), to(#111));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#333, #111);	/*同上*/
	background-image: linear-gradient(#333, #111);			/*同上*/
	position: relative;
	overflow: hidden;
	color: #fff;
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	padding: 0px;
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: left;			/*画像を左へ回り込み*/
	background-color: #000;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	width: 30%;		/*写真の幅*/
	height: auto;	/*写真の高さ*/
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	padding: 2px 0px 2px 10px;	/*左から、上、右、下、左側への余白*/
	margin-left: 34%;
	font-size: 100%;
	border-left: 5px solid #00bccd;	/*左側の線の幅、線種、色*/
	border-bottom: 1px solid #666;	/*下側の線の幅、線種、色*/
	margin-bottom: 0.5em;
}

#main  img {
	width: 100%;
	height: auto;
	border-radius: 0px;
}


section h3{
	color:#ffffff;
}

h3{
	color:#f9f9f9;
}




#portfolio .box {
  background: #f3f3f3;
}
.portfolio-items,
.portfolio-filter {
  list-style: none;
  padding: 0;
  margin: 0;
}
.portfolio-items {
  margin-right: -20px;
}
.portfolio-filter {
  margin-bottom: 50px;
  text-align: center;
}
.portfolio-filter > li {
  display: inline-block;
}
.portfolio-items > li {
  float: left;
  padding: 0;
  margin: 0;
}
.portfolio-items.col-1 > li {
  width: 50%;
}
.portfolio-items.col-2 > li {
  width: 33%;
}

.portfolio-item .item-inner {
  margin: 0 20px 20px 0;
  text-align: center;
  background: #fff;
  padding: 10px;
  border-bottom: 1px solid #e1e1e1;
}
.portfolio-item img {
  width: 100%;
}
.portfolio-item .portfolio-image {
  position: relative;
}
.portfolio-item h5 {
  margin: 0;
  padding: 10px 0 0 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size:105%;
}
.portfolio-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
  vertical-align: middle;
  -webkit-transition: opacity 400ms;
  -moz-transition: opacity 400ms;
  -o-transition: opacity 400ms;
  transition: opacity 400ms;
}


.portfolio-item .overlay .preview {
  position: relative;
  top: 50%;
  display: inline-block;
  margin-top: -20px;
}
.portfolio-item:hover .overlay {
  opacity: 1;
}






/*会社概要ー設定
---------------------------------------------------------------------------*/

#oficemain .ex1 {
	clear: both;
	background-color: #0081a0;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#00bccd), to(#0081a0));	/*グラデーション*/
	background: -webkit-linear-gradient(#00bccd, #0081a0);	/*同上*/
	background: linear-gradient(#00bccd, #0081a0);			/*同上*/
	font-size: 110%;
	color: #FFF;		/*文字色*/
	padding: 7px 15px 7px 30px;	/*左から、上、右、下、左への余白*/
	border-radius: 0px;		/*角丸のサイズ*/
}

#name{
	 font-size: 120%;
	 margin-bottom: 30px;
	 margin-left: 80%;
	 }

#oficemain {
	width: 100%;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}

 .tableStyl{
 	background-color: #eceded;
  width: 100%;
 border: 3px;
 margin-bottom: 100px;
 	border: 1px solid #666;	/*テーブルの枠線の幅、線種、色*/

}

.tableStyl th{
width: 30%;
font-size: 100%;

}

.tableStyl tr{
	 	border: 1px solid #666;	/*テーブルの枠線の幅、線種、色*/
	 	padding: 10px 0 10px 0;
	 		height: 80px;
}



.tableStyl span{
	font-saize:30%;
	color: #666;
}







span{
	color: red;
	font-size: 120%;
}




/*お問合せ
---------------------------------------------------------------------------*/


#toiawase{
	margin-bottom: -20px;
}



#con  h2 {
	clear: both;
	background-color: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: linear-gradient(-135deg,#928dab, #00d2ff);
	font-size: 110%;
	color: #FFF;		/*文字色*/
	padding: 25px 15px 7px 30px;	/*左から、上、右、下、左への余白*/
	border-radius: 0px;		/*角丸のサイズ*/
}





#con  h3 {
	clear: both;
	color:black;
	background-color: #f3f3f3;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: linear-gradient(-135deg,#f3f3f3, #f3f3f4);
	font-size: 100%;
	padding: 20px 0px;	/*左から、上下、左右への余白*/
		border-radius: 0px;	/*角丸のサイズ*/
	border: 1px solid #f3f3f3;	/*枠線の幅、線種、色*/


}


#main section p{
			text-align: center;
}



/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 105px;
	padding-bottom: 15px;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
}

#pagetop{
	margin-bottom: 50px;
}
#ksAdd{

		display: block;
			background: #27a3b;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear,  left,  right, from(#373737), to(#a6a6a6));	/*グラデーション*/
	background: -webkit-linear-gradient(#373737, #a6a6a6);	/*同上*/
	background: linear-gradient(#373737, #a6a6a6);			/*同上*/
		color: #f8f8f8;
	weight: 200px;
	height: 115px;
}

#box{
	position: absolute
}
#Kname{
		font-size: 13px;			/*文字サイズ*/
       font-weight: normal;	/*hタグのデフォルトの太字を標準に。太字がいいならこの１行削除。*/
       padding-right:30px;
}
#kad{
	font-size: 11px;			/*文字サイズ*/
	line-height: 15px;
	       padding-right:30px;

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




/*mail
---------------------------------------------------------------------------*/



#mail dl{

	line-height: 2;
	color: #222;
	margin-right: 0 auto ;
	width : 90%;
	margin : 0 auto;
	overflow : hidden;




}

#mail dt{

	line-height: 2;

	color: #222;

	clear: left ;

margin-right: 0.5em ;
width: 20% ;


}

#mail dd{
	padding: 5px;

margin-left: 15em
}


dl dd{
	width : 65%;
	float : right;


}



dl dt{
	clear : both;
	width : 30%;
	float : left;


	text-align : right;
	overflow : hidden;
}




#mail dt.tamidashi{
	width: auto;
	text-align: left;
	background-color: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: linear-gradient(-135deg,#928dab, #00d2ff);	/*グラデーション*/
	color: #fff;
	clear: both;
	margin-left:1px;
	font-size: 100%;
	padding: 4px 15px;	/*左から、上下、左右への余白*/
	border-radius: 0px;	/*角丸のサイズ*/


}












/* 640pixel start */
@media screen and ( max-width : 640px ){

form#mail{
	width : 95%;
}

form#mail{
	overflow : visible;
}

form#mail dl dt{
	width : auto;
	float : none;
	text-align : left;
	padding : 10px 0 5px;

}

form#mail dl dd{
	width : auto;
	float : none;
	border-top : none;
	padding : 0px 0 13px 0px;
}

form#mail dl dt span{
	font-weight : normal;
}


/* -- for JavaScript ここから -------------------------------------------------------------------------------- */

#mail dl dt span.required,
#mail  dl dt span.optional{
	margin-right : 1em;
	margin-bottom : 2em;
}


/* -- for JavaScript ここまで -------------------------------------------------------------------------------- */

#mail  input[type="text"],
#mail  input[type="email"],
#mail  input[type="tel"]{
	margin-top : 0px;
}

#mail  input#form_submit_button{
	margin-left : 0;
}

#mail  select{
	margin-top : 0;
}

#mail  input#phone,
#mail  input#schedule{
	width : 50%;
}

}
/* 640pixel end */









/*テーブルのキャプション設定*/






/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 96%;	/*テーブル幅*/
	margin: 0px auto;

}
.ta1, .ta1 td, {

	line-height: 2;
	color: #f3f3f3;
}

.ta1 th{

	line-height: 2;
	color: #020202;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 30px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 200px;	/*幅*/
	padding-top: 5px;
	text-align: left;
	color: #222;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: linear-gradient(-135deg,#928dab, #00d2ff);	/*グラデーション*/
	color: #fff;
	clear: both;
	margin-left:1px;
	font-size: 100%;
	padding: 4px 15px;	/*左から、上下、左右への余白*/
	border-radius: 0px;	/*角丸のサイズ*/


}
/*テーブルのキャプション設定*/
.ta1 caption{
	padding: 10px;
	border-bottom: 1px solid #666;		/*上側の線の幅、線種、色*/

	text-align: left;
	background-color: #f3f3f3;	/*背景色（古いブラウザだとここの色のみが出ます）*/
background-image: linear-gradient(-135deg,#05FBFF, #1E00FF);	/*グラデーション*/
	font-weight: bold;	/*文字を太字にする設定*/
}
/*ボタンの設定*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: auto;
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 0 auto;
	border-radius: 20px;	/*角丸のサイズ*/
	background-color: #e5e5e5;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	display: block;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#00d2ff));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #00d2ff);	/*同上*/
	background-image: linear-gradient(#FFF, #00d2ff);			/*同上*/


	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;
	border: 1px solid #00d2ff;
	margin: 0 auto;

}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#e5e5e5), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#e5e5e5, #FFF);	/*同上*/
	background-image: linear-gradient(#e5e5e5, #FFF);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color: #333;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 12em;	/*ボックス幅*/
	display: block;
	float: right;
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #666;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*「おすすめ」表示
---------------------------------------------------------------------------*/
.osusume {
	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,20px);
	-ms-transform: rotate(-45deg) translate(37px,20px);
	transform: rotate(-45deg) translate(37px,20px);
}


/*その他
---------------------------------------------------------------------------*/
.look {
	background: #333;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #FFCC00;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.r {
	text-align: right;
}
figcaption {
	font-size: 11px;
}
#menubar_hdr {
	display: none;
}



/*ここからタブレット用環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (min-width:481px) and (max-width:800px){

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 96%;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#menubar ul {
	padding-left: 0px;
	width: 380px;
	margin: 0px auto;
}

/*コンテンツ（メインコンテンツを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	padding: 10px 10px 0px;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	width: auto;
}

/*COUPONページ
---------------------------------------------------------------------------*/
/*クーポンブロック全体の設定*/
#coupon,
#coupon img {
	width: 100%;
	height: auto;
}
/*クーポン内の説明文設定*/
#coupon p {
	font-size: 16px;
	width: 100%;
	top: 35%;
	left: 0px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/*その他
---------------------------------------------------------------------------*/
/*写真の設定*/
img.wa {
	width: 100%;
	height: auto;
}
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}

}


/*ここからスマートフォン用環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (max-width : 480px){

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	padding-top: 0px;
}
/*h1タグの設定*/
header h1 {
	display: none;
}
/*ロゴ画像の設定*/
header #logo img {
	width: 70%;	/*ロゴ画像の幅*/
	height: auto;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 96%;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#menubar ul {
	padding-left: 0px;
	width: 300px;
	margin: 0px auto;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	margin: 0px 5px;
}
nav#menubar ul li a {
	height: 90px;		/*ボタンの高さ*/
	width: 90px;		/*ボタンの幅*/
	line-height: 90px;	/*行間*/
	border-radius: 45px;	/*角丸のサイズ。この行を削除すると正方形になる。*/
	font-size: 11px;	/*文字サイズ*/
	margin-bottom: 10px;
}

/*コンテンツ（メインコンテンツを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	padding: 10px 10px 0px;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	width: auto;
}

/*menu.html内のメニュー案内の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list {
	padding: 10px;	/*ボックス内の余白*/
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: none;
	margin-left: 0;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin-bottom: 10px;
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	margin-left: 0;			/*左の写真とのバランスをとって設定*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#00bccd), to(#0081a0));	/*背景画像とマイナスアイコンとグラデーション*/
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#00bccd, #0081a0);	/*同上*/
	background: url(../images/btn_minus.png) no-repeat right center, linear-gradient(#00bccd, #0081a0);			/*同上*/
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#00bccd), to(#0081a0));	/*背景画像とプラスアイコンとグラデーション*/
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#00bccd, #0081a0);	/*同上*/
	background: url(../images/btn_plus.png) no-repeat right center, linear-gradient(#00bccd, #0081a0);			/*同上*/
}
/*ブロック全体の設定*/
#new dl {
	height: auto;
	margin: 5px 5px 0px;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

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

/*COUPONページ
---------------------------------------------------------------------------*/
/*クーポンブロック全体の設定*/
#coupon,
#coupon img {
	width: 100%;
	height: auto;
}
/*クーポン内の説明文設定*/
#coupon p {
	font-size: 12px;
	width: 100%;
	height: 120px;
	top: 35%;
	left: 0px;
	padding: 10px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/*その他
---------------------------------------------------------------------------*/
/*写真の設定*/
img.wa {
	width: 100%;
	height: auto;
}
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}
/*メニュー折りたたみ設定*/
#top #menubar_hdr {
	display: none;
}
#menubar_hdr {
	display: inline;
	position: absolute;
	top: 0px;
	right: 10px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
	background-image: linear-gradient(#fbfbfb, #e5e5e5);
	padding: 10px;
	border: 1px solid #cfcfcf;
	border-radius: 0px 0px 6px 6px;
}


