@charset "utf-8";


/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
body {
	color: black;	/*全体の文字色#666*/
	margin: 0px;
	padding: 0px;
	font-family:"Sawarabi Mincho";
	/*"ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Yu Mincho Light", YuMincho, "Yu Mincho", 游明朝体, sans-serif;	/*フォント種類*/
	font-size: 15px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background-color: #F6F6F6;
}
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%;}


.line1 {
    border-top: 0.5px solid #555;
    width:99%;
    margin-top:0;
    margin-bottom:0;
}

p.tel1{
	font-size:30px;/*20px*/
	text-align: right;
	padding-right: 8px;
	color:#3984bf;
	

}

p.tel2{
	font-size:13px;

}

#sitemap p{
	text-align: right;
	margin-left:0px;
	padding-left:0px;
	line-height: 26px;
	
}

#sitemap {
	display: flex;
	flex-flow: column;
	margin-bottom: 5px;
}

#renraku {
	font-size: 20px;
}

#renraku ul {
	margin-left:10px;
}


h1 {
	font-size:50px;
	text-decoration: none;
	width:400px;
	margin-right:0px;
	float:left;
}

header a {
	text-decoration: none;
}


#top {
    background-color: #555;
    height:7px;
	z-index: 2;

}

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


/*往接写真+挨拶
---------------------------------------------------------------------------*/
#yukicomment {
	display:flex;
	justify-content: space-between;


}


/*往接写真
---------------------------------------------------------------------------*/
#yukitugu {
        /*
		float: right;
		*/
        width: 450px;
        height: auto;
		/*
        padding-right: 100px;
        */
		line-height: 40px;
		display: flex;
		flex-flow:column;
		margin-left:auto;
		margin-right:auto;
		margin-top:220px; /*220px*/
        /*padding-right:100px;*/
		padding-right:100px; /*50PX*/

}





#yukitugu p{
	    font-size:30px;
		text-align: center;
		font-family:"Sawarabi Mincho";
		/*"ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Yu Mincho Light", YuMincho, "Yu Mincho", 游明朝体, sans-serif*/

}


/*挨拶
---------------------------------------------------------------------------*/
#aisatu {
	    /*
        float: left;
		padding-left: 70px;
		*/
		margin-left:auto;
		margin-right:auto;
		margin-top:15px;
		margin-bottom:auto;
		padding-left:50px;
		max-width: 420px;
}



/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 960px;	/*1200サイトの最大幅*/
	padding: 0 3%;	/*上下、左右へのボックス内の余白*/
	margin: 0 auto;
}

/*ヘッダー
---------------------------------------------------------------------------*/
header {
	padding: 10px 20px 50px 0px;	/*上下、左右へのヘッダー内の余白*/
	height: 145px;

/* 20→0  */
}
/*ロゴ画像*/
header #logo img {
	width: 300px;	/*画像幅*/
        padding-bottom:20px;
}

#adress1 {
	float: right;
	margin-top:50px;
	margin-bottom:20px;
}

#intro {
        font-size: 16px;
        float: left;
        margin-bottom: 0px;
        padding-bottom: 0px;
}


#sitemap {
        float: right;
        margin-bottom: 0px;
        margin-right: 0px;
        padding-bottom: 0px;

}


/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#menubar {
	/*background:linear-gradient(#ddd,#ccc);*/
	background: #000;	/*背景色*/
	
	height: 40px;		/*メニューの高さ*/
	border-radius: 6px;	/*角丸のサイズ*/
	background: linear-gradient(#222, #666);
	/*ddd,666
	background: linear-gradient(#111, #000);		/*グラデーション*/
	padding-left: 20px;	/*左側にとる余白*/
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
	margin-bottom: 30px;
}
/*メニュー１個ごとの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	border-right: 1px solid rgba(255,255,255,0.3);	/*右側の線の幅、線種、色(RGBカラーで255,255,255を30%の透明度で)の設定*/
}
#menubar li a {
	text-decoration: none;display: block;
	line-height: 40px;	/*行間*/
	color: #FFF;		/*文字色*/
	text-align: center;	/*文字を中央に*/
	padding: 0 20px;	/*上下、左右への余白*/
}
/*マウスオン時の設定*/
#menubar li a:hover {
	background: #333;	/*背景色*/
	color: #FFF;			/*文字色*/
}
/*１個目のメニューの線の設定*/
#menubar li:first-child {
	border-left: 1px solid rgba(255,255,255,0.3);
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*コンテンツ（main,sub,footerを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg img {
	border-radius: 6px;	/*画像の角を丸くする設定*/
	box-shadow: 1px 2px 5px rgba(0,0,0,0.3);	/*影の設定。右へ、下へ、ぼかし幅。0,0,0は黒の事で0.3は透明度30%の事。*/
	margin-bottom: 30px;	/*画像の下に空けるスペース*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: left;	/*左側に回り込み*/
	width: 100%;	/*72%メインコンテンツ幅*/
}
/*１カラム利用時*/
body.c1 #main {
	float: none;
	width: auto;
}
/*mainコンテンツのh2タグ*/
#main h2 {
	clear: both;
	margin-bottom: 20px;
	background: #000;	/*背景色（古いブラウザ用）*/
	/*background: linear-gradient(#111, #000);	/*グラデーション*/
    background: linear-gradient(#222, #666); /*ddd 666*/
	border-radius: 6px;	/*角丸のサイズ*/
	box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	color: #FFF;	/*文字色*/
	padding: 5px 20px;	/*上下、左右への余白*/
	
}
#main h3 {
	clear: both;
	margin-bottom: 20px;
	border-radius: 6px;	/*角丸のサイズ*/
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 2px 20px;	/*上下、左右への余白*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0px 20px 15px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}
#main section+section {
	margin-top: 50px;
}

/*service.html内の製品紹介の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
	position: relative;overflow: hidden;
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
	margin-bottom: 20px;
	background: linear-gradient(#FFF, #e3e3e3);			/*グラデーション*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 1px 1px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・色を設定*/
	padding: 20px;	/*ボックス内の余白*/
}
#main .list a {
	overflow: hidden;display: block;text-decoration: none;
	margin: -20px;	/*ボックス内の余白*/
	padding: 20px;	/*ボックス内の余白*/
}
/*マウスオン時設定*/
#main .list a:hover {
	background: #ebdeab;	/*マウスオン時のボックス色*/
}
/*ボックスにリンク指定がされた場合に出る「→」マーク*/
#main .list a::before {
	content: "→";	/*この文字を出す。他の文字に変えても可だが機種依存文字は化けるので使わない。*/
	position: absolute;
	right: 20px;	/*ボックスの右から20pxの場所に配置*/
	bottom: 20px;		/*ボックスの下から20pxの場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.5);	/*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 4px;		/*角丸のサイズ*/
	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/
	text-align: center;
}
#main .list a:hover::before {
	background: #000;	/*マウスオン時の「→」マークの背景色*/
}
/*ボックス内のh4タグ設定*/
#main .list h4 {
	font-size: 16px;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #000;	/*左側の線の幅、線種、色*/
	margin-bottom: 10px;
	padding-left: 10px;
}
/*ボックス内の写真設定*/
#main .list figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 30%;	/*画像の幅*/
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;	/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-right: 20px;	/*画像の右側に空けるスペース*/
}
/*ボックス内の段落タグ設定*/
#main .list p {
	padding: 0px;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*右側に回り込み*/
	width: 24%;	/*サブコンテンツ幅*/
}
/*１カラム利用時*/
body.c1 #sub {
	display: none;	/*非表示にする*/
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px 6px 0 0;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	text-align: center;
	padding: 5px 0px;
	background: #e3e3e3;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#FFF, #e3e3e3);			/*グラデーション*/
}
/*subコンテンツの段落タグ設定*/
#sub p {
	padding: 0 10px;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul.submenu {
	margin-bottom: 1em;
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
	text-decoration: none;display: block;
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	padding-left: 10px;
}
/*マウスオン時の設定*/
#sub ul.submenu li a:hover {
	background: #f0f0f0;
}

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

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0 20px;
	margin-bottom: 20px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;		/*幅*/
	letter-spacing: 0.1em;
	
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	border-bottom: 1px solid #d2d2d2;	/*下線の幅、線種、色*/
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background: #e2e2e2;	/*背景色*/
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 150px;	/*幅*/
	text-align: center;
	background: #f3f3f3;	/*背景色*/
}

/*よく頂く質問ページ（CMS用）
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
	padding: 0px 20px;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt {
	font-weight: bold;	/*太字に*/
	color: #000;	/*文字色*/
	padding-top: 15px;
}
.faq dt a {
	color: #000;	/*文字色*/
}
/*回答の設定*/
.faq dd {
	border-bottom: 1px solid #dbdbdb;	/*下線の幅、線種、色*/
	overflow: hidden;
	padding-bottom: 15px;
}

/*inputボタン
---------------------------------------------------------------------------*/
#main input[type="submit"].btn,
#main input[type="button"].btn,
#main input[type="reset"].btn {
	padding: 5px 10px;
	border: 1px solid #ccc;
	font-size: 15px;
	border-radius: 3px;
	background: #fff;
}
/*マウスオン時の設定*/
#main input[type="submit"].btn:hover,
#main input[type="button"].btn:hover,
#main input[type="reset"].btn:hover {
	border: 1px solid #999;
}

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

/*ページの上部へ（↑）ボタン
---------------------------------------------------------------------------*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}

body .nav-fix-pos-pagetop a {display: none;}
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 100;
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	position: fixed;	/*固定表示*/
	bottom: 50px;	/*下から50pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は透明度60%の事。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*マウスオン時の背景色*/
}

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

/*その他
---------------------------------------------------------------------------*/
.look {background: #dcdcdc;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #000;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 20px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}



/*画面幅990px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/


@media screen and (max-width:990px){


/*往接写真
---------------------------------------------------------------------------*/
#yukitugu {
       
        width: 300px;
        height: auto;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
		padding-right: 0px;
		

}


#yukicomment {
	display:flex;
	flex-flow:column;


}

#yukitugu p{
	font-size:20px;

}

/*挨拶
---------------------------------------------------------------------------*/
#aisatu {
        padding-left:0px;
        
}


}


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



#adress1 {
	display: none;
}

h1 {
	width: 100%; /*300*/
	

}
header {
	padding-bottom: 0px;
	height: 190px;
}


/*往接写真
---------------------------------------------------------------------------*/

#mainimg img{
	width:100%;
}


/*往接写真
---------------------------------------------------------------------------*/
#yukitugu {
       
        width: 300px;
        height: auto;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
		padding-right: 0px;
		

}


#yukicomment {
	display:flex;
	flex-flow:column;


}

#yukitugu p{
	font-size:20px;

}

/*挨拶
---------------------------------------------------------------------------*/
#aisatu {
        padding-left:0px;
        
}

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

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
@keyframes menu1 {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: absolute;
	top: 90px;	/*上から90pxの場所に配置*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	width: 94%;
	z-index: 10;
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 15px 10px 15px 20px;	/*上、右、下、左へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: #000;	/*背景色*/
	color: #fff;	/*文字色*/
	font-size: 15px;
}
/*英語表記（飾り文字）*/
#menubar-s li a span {
	display: block;
	font-size: 12px;	/*文字サイズ*/
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 20px;	/*上から20pxの場所に配置*/
	right: 3%;	/*右から3%の場所に配置*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #fff url(../images/icon_menu.png) no-repeat center top/50px;
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #fff url(../images/icon_menu.png) no-repeat center bottom/50px;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}
.sh {display:block;}
.pc {display:none;}

}



/*画面幅550px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media screen and (max-width:550px){

	p.tel1{
		font-size:24px; /*20*/
		text-align: left;
	}
	
	#sitemap p{
		text-align: left;
		margin-left:0px;
		padding-left:0px;
	}

	#sitemap {
		float:left;
		margin-top:3px;
		margin-bottom:10px;
	}


	}


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

	#renraku {
		font-size: 15px;
	}
	
	#renraku ul {
		margin-left:10px;
	}


	#sitemap {
		float:left;
		margin-top:3px;
		margin-bottom:10px;
	}


	h1 {
		font-size:38px;
		text-decoration: none;
	}

/*往接写真
---------------------------------------------------------------------------*/
#yukitugu {
       
        width: 300px;
        height: auto;
        margin-top: 20px;
        
        

}

.daihyo{

         margin-left: 13px;

}

/*挨拶
---------------------------------------------------------------------------*/
#aisatu {
        
    
}



/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 15px;	/*文字サイズ12*/
	line-height: 2;	/*行間1.5*/
}

.list p{
	font-size: 14px;	/*文字サイズ12*/
	line-height: 1.5;	/*行間1.5*/
}

/*ヘッダー
---------------------------------------------------------------------------*/
/*
header {
	padding: 30px 50px 0px 0px;	/*上下、左右へのヘッダー内の余白*/

/*30→50→30*/


/*mainコンテンツ
---------------------------------------------------------------------------*/
#main h2 {
	font-size: 14px;
	padding: 10px;
}
#main h3 {
	font-size: 14px;
	padding: 6px 10px;
}
/*段落タグ設定*/
#main p {
	padding: 0px 10px 15px;	/*上、左右、下への余白*/
}

/*service.html内の製品紹介の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
	padding: 10px;	/*ボックス内の余白*/
}
#main .list a {
	margin: -10px;	/*ボックス内の余白*/
	padding: 10px;	/*ボックス内の余白*/
}
/*ボックスにリンク指定がされた場合に出る「→」マーク*/
#main .list a::before {
	right: 10px;	/*ボックスの右から10pxの場所に配置*/
	bottom: 10px;		/*ボックスの下から10pxの場所に配置*/
}
/*ボックス内のh4タグ設定*/
#main .list h4 {
	font-size: 12px;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
	padding: 10px;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding-left: 10px;
	padding-right: 10px;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 16px;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}

}


/*サイトマップ行間
---------------------------------------------------------------------------*/
ul#link li{
        margin-bottom:15px;
        margin-left:20px;


}

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

/*ヘッダー
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 200px;	/*画像幅*/
}

#sitemap {
	float:left;
	margin-top:3px;
	margin-bottom:10px;
}

}