@charset "utf-8";


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	background: #e60012 url(../images/bg1.png) !important;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	border: none;
	margin-bottom: 10px;
}
/*ヘッダーブロックの中*/
header .inner {
	width: auto;
	height: auto;
	text-align: center;
}
/*h1ロゴの設定*/
header .inner h1 {
	position: static;
	padding-top: 20px;
}
header h1 img {
	width: 70%;	/*画面に対してロゴ画像を70％の幅に*/
	height: auto;
}
/*電話番号ボックスの設定*/
header .inner address {
	position: static;
	padding-bottom: 20px;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
nav#menubar {
	height: auto;
	margin-bottom: 10px;
}
nav#menubar ul {
	width: auto;
	border-top: 1px solid #d4d4d4;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	width: 50%;
	border-bottom: 1px solid #d4d4d4;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	background: -webkit-gradient(linear, left top, left bottom, from(#404040), to(#0f0f0f));	/*グラデーション*/
	background: -webkit-linear-gradient(#404040, #0f0f0f);	/*同上*/
	background: linear-gradient(#404040, #0f0f0f);			/*同上*/
}
/*奇数番目のメニュー設定*/
nav#menubar ul li:nth-child(odd) {
	border-right: 1px solid #d4d4d4;
}
/*最初のメニューの設定*/
nav#menubar ul li:first-child {
	border-left: none;
}
/*マウスオン時の設定*/
nav#menubar ul li a:hover,
nav#menubar ul li.current a {
	border-top: none;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin: 0px 10px;
}

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

/*一覧ページ用ボックス（service.html）
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
#main section.list p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: none;
	margin-right: 0;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/arrow1.png) no-repeat 10px center, url(../images/bg1.png), url(../images/btn_minus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#e60012), to(#69000f));
	background: url(../images/arrow1.png) no-repeat 10px center, url(../images/bg1.png), url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#e60012, #69000f);					
	background: url(../images/arrow1.png) no-repeat 10px center, url(../images/bg1.png), url(../images/btn_minus.png) no-repeat right center, linear-gradient(#e60012, #69000f);							
}
section#new h2.close {
	background: url(../images/arrow1.png) no-repeat 10px center, url(../images/bg1.png), url(../images/btn_plus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#e60012), to(#69000f));
	background: url(../images/arrow1.png) no-repeat 10px center, url(../images/bg1.png), url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#e60012, #69000f);						
	background: url(../images/arrow1.png) no-repeat 10px center, url(../images/bg1.png), url(../images/btn_plus.png) no-repeat right center, linear-gradient(#e60012, #69000f);								
}
/*ブロック全体の設定*/
#new {
	margin-bottom: 15px;
}
#new dl {
	height: auto;
	padding-left: 0;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

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

/*subコンテンツ内のlistボックス
---------------------------------------------------------------------------*/
/*h4見出しタグ*/
#sub section.list h4 {
	margin-left: 22%;
}
/*p段落タグ*/
#sub section.list p {
	margin-left: 22%;
}
/*サムネイル画像設定*/
#sub section.list figure img {
	width: 20%;
}

/*その他
---------------------------------------------------------------------------*/
.ws {
	width: 96%;
}
/*<body class="s-n">指定の場合にsubブロックも表示させない設定*/
body.s-n #sub {
	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;
}
/*tdタグにiframeを読み込んだ場合（GoogleMap用）*/
.ta1 td iframe {
	height: 300px;
	width: 100%;
}

img.fl {
	width:100%;
	float:left;
	margin-right: 10px;
	margin-bottom: 1em;
}

img.fr {
	width:100%;
	float:right;
	margin-left: 10px;
	margin-bottom: 1em;
}
/*幅一杯に画像を表示させる*/
img.wa {
	height: auto;
	width: 100%;
}