@charset "utf-8";



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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	background: #fff url(../images/bg.png) center;	/*背景色、背景画像の読み込み*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	-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: #56a5e3;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1200px;	/*コンテナー幅*/
	margin: 0 auto;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo {
	width: 600px;	/*画像の幅*/
	margin: 40px auto;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
nav#menubar ul li,
nav#menubar-s ul li {
	float: left;	/*メニューを左側に回り込み*/
	text-align: center;	/*内容をセンタリング*/
	width: 15%;		/*メニュー幅*/
	margin-left: 1.5%;	/*メニュー同士の隙間*/
	font-size: 16px;		/*文字サイズ*/
}
/*各メニューの写真部分の設定*/
nav#menubar ul li img,
nav#menubar-s ul li img {
	width: 90%;		/*上の15%の幅に対しての写真幅*/
	height: auto;
	-webkit-box-shadow: 1px 2px 10px rgba(0,0,0,0.3);	/*影の設定。右へ、下へ、ぼかし幅。rgba以降の3つの数字がRGBでの色（この場合は黒）。最後の小数点の数字が透明度30%の事。*/
	box-shadow: 1px 2px 10px rgba(0,0,0,0.3);			/*同上*/
	border: 7px solid #FFF;	/*枠線の幅、線種、色*/
	border-radius: 50%;		/*角丸の設定*/
	margin-bottom: 10px;	/*写真とメニューテキストの間にとるスペース*/
}
/*各メニューの写真部分のマウスオン時の設定*/
nav#menubar ul li:hover img,
nav#menubar-s ul li:hover img {
	border: 7px solid #FF3;	/*枠線の幅、線種、色*/
}
/*テキスト部分の設定*/
nav#menubar ul li a,
nav#menubar-s ul li a {
	text-decoration: none;
	color: #FFF;	/*文字色*/
}
nav#menubar ul li a span,
nav#menubar-s ul li a span {
	display: block;
	word-wrap: break-word;
	border-radius: 100px;	/*角丸の設定。大き目に設定しておけばOK。*/
	line-height: 1;			/*高さ*/
	background: rgba(0,0,0,0.3);	/*背景色。左の3つの数字がRGBでの色。0,0,0は黒。最後の小数点の数字が透明度。ここでは30%。*/
	margin-bottom: 30px;	/*下のコンテンツブロックとの余白*/
	padding: 4px;
}
/*テキスト部分のマウスオン時の設定。*/
nav#menubar ul li a:hover span,
nav#menubar-s ul li a:hover span {
	color: #FF3;	/*文字色*/
	background: rgba(0,0,0,0.6);	/*背景色。左の3つの数字がRGBでの色。0,0,0は黒。最後の小数点の数字が透明度。ここでは60%。*/
}
/*小さい端末用(画面幅800px以下)メニューを表示させない*/
#menubar-s {
	display: none;
}
/*800px以下のメニュー見出し（MENU）を表示させない*/
#menubar_hdr {
	display: none;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	overflow: hidden;
	border-radius: 30px;	/*角丸のサイズ*/
	background: #FFF;		/*背景色*/
	padding: 2%;			/*ボックス内の余白*/
	-webkit-box-shadow: 1px 2px 6px rgba(0,0,0,0.2);	/*影の設定。右、下、ぼかし幅*/
	box-shadow: 1px 2px 6px rgba(0,0,0,0.2);			/*同上*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	width: 100%;	/*メインコンテンツ幅*/
	padding-bottom: 40px;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 15px;
	background: #c1ddf3;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-linear-gradient(#d6edff, #c1ddf3);	/*グラデーション*/
	background: linear-gradient(#d6edff, #c1ddf3);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #ccc;			/*同上*/
	padding: 10px 10px 10px 20px;	/*左から、上、右、下、左側への余白*/
	border-radius: 50px;	/*角丸のサイズ。大きめにしておけばOK。*/
	color: #6179ff;	/*文字色*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 15px;
	background: #e5e5e5;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-linear-gradient(#FFF, #e5e5e5);	/*グラデーション*/
	background: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #dcdcdc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #dcdcdc;			/*同上*/
	padding: 9px 10px 9px 20px;	/*左から、上、右、下、左側への余白*/
	border-radius: 50px;		/*角丸のサイズ。大きめにしておけばOK。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
/*メインコンテンツのp(段落)タグ設定*/
#main p {
	padding: 0px 20px 14px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: -5px;
}

/*ブログページ
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .blog {
	overflow: hidden;
	width: 96%;
	margin: 0px auto 20px;
}
#main .blog a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	border: 5px solid #eee;	/*枠線の幅、線種、色*/
	padding: 20px;			/*ボックス内の余白*/
}
/*マウスオン時*/
#main .blog a:hover {
	border: 5px solid #56a5e3;	/*マウスオン時の枠線の設定*/
	color: #000;				/*文字色*/
}
/*h3タグの設定*/
#main .blog h3 {
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	border: none;
	padding: 0;
	color: #56a5e3;	/*文字色*/
	font-size: 24px;	/*文字サイズ*/
}
/*段落タグ*/
#main .blog p {
	padding: 0;
}
/*figure画像の設定*/
#main .blog figure {
	float: left;	/*左に回り込み*/
	margin-right: 20px;
}
/*コメント数、日付の行*/
#main .blog .date {
	color: #999;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	margin-top: 10px;	/*上に空けるスペース*/
}

/*ブログページのフィードバック以降のブロック
---------------------------------------------------------------------------*/
/*コメントのリストタグ*/
ol.commentlist {
	color: #999;		/*文字色*/
}
ol.commentlist p {
	padding: 0 !important;
}
/*コメント表示欄の名前と日付*/
.comment-meta, .comment-author {
	display: inline;
	font-weight: bold;	/*太字にする設定*/
}
/*「返信」ボタン*/
.reply a {
	display: block;
	text-decoration: none;
	text-align: center;
	margin-left: auto;
	width: 80px;	/*ボタンの幅*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 4px;		/*角丸のサイズ*/
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
	box-shadow: 0px 1px 3px rgba(0,0,0,0.15);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
	margin-bottom: 20px;
}
/*「返信」した記事*/
ol.commentlist ul.children {
	margin-left: 40px;	/*返信元の記事とずらす距離*/
}
ol.commentlist > li {
	border-bottom: 1px solid #eee;	/*記事間の境界線*/
	padding: 20px 0;
}
/*コメント入力用フォームボックス（「コメントを残す」のボックス）*/
#respond {
	overflow: hidden;
	border: 5px solid #eee;	/*枠線の幅、線種、色*/
	padding: 20px;			/*ボックス内の余白*/
	color: #999;			/*文字色*/
	margin-bottom: 20px;
}
/*フォームの左側の見出し*/
#respond label {
	display: inline-block;
	width: 20%;
	text-align: right;
	vertical-align: top;
}
/*inputタグ、textareaタグ*/
#respond input, #respond textarea {
	width: 75%;
	border: 1px solid #999;
}
/*「メールアドレスが公開されることはありません・・・」の文章*/
#respond p.comment-notes {
	margin-bottom: 20px;
}
/*「*」マーク*/
.required {
	color: #ff0000 !important;
}
/*「コメントを送信」ボタン*/
#respond input.submit {
	width: auto;
	display: block;
	background: #fff;
	margin: 20px auto 0;
	border-radius: 4px;
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
	box-shadow: 0px 1px 3px rgba(0,0,0,0.15);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
}

/*一覧ページ（list）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
	height: 420px;	/*ボックスの高さ*/
	width: 25%;	/*ボックスの幅*/
	border-radius: 10px;	/*角丸のサイズ*/
	-webkit-box-shadow: 0px 2px 5px #bcbcbc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bcbcbc;			/*同上*/
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-linear-gradient(#FFF, #e6e6e6);	/*グラデーション*/
	background: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	padding: 2%;	/*ボックス内の余白*/
	float: left;
	margin: 0px 2% 20px;
	border: 1px solid #CCC;
	position: relative;
}
#main .list a {
	text-decoration: none;
	display: block;
	padding: 2%;
	margin: -2%;
}
/*ボックス内の段落タグ設定*/
#main .list p {
	padding: 0px;
	color: #666;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
}
/*ボックス内のh4タグ設定*/
#main .list h4 {
	color: #56a5e3;	/*文字色*/
	border-bottom: 2px dotted #56a5e3;	/*下線の幅、線種、色*/
	margin-bottom: 5px;
}
/*ボックス内の写真*/
#main .list figure img {
	margin-bottom: 10px;
	width: 100%;
}
/*ふきだしアイコンの位置*/
#main .list img.icon {
	position: absolute;
	top: -10px;	/*ボックスに対して上から-10pxの位置に配置*/
	right: 0px;	/*ボックスに対して右から0pxの位置に配置*/
}

/*menu内のページ内メニュー（CMS用）
---------------------------------------------------------------------------*/
ul.navmenu {
	padding: 30px 0px;
	text-align: center;
}
ul.navmenu li {
	display: inline;
}
ul.navmenu li a {
	background: url(../images/arrow.png) no-repeat left center;	/*矢印マークの設定*/
	padding-left: 15px;
	text-decoration: none;
}
ul.navmenu li a:hover {
	background: url(../images/arrow.png) no-repeat 2px center;	/*マウスオン時に矢印マークを2pxだけ移動させて表示する設定*/
}

/*ウィジェットカレンダー用
---------------------------------------------------------------------------*/
#wp-calendar {
	background: #fff;	/*背景色*/
	width: 100%;
	margin-bottom: 20px;
	text-align: center;
	font-size: 12px;
}
#wp-calendar, #wp-calendar th, #wp-calendar td {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
}
#wp-calendar a {
	color: #56a5e3;	/*リンクテキストの色*/
}

/*カスタムフィールド出力用（擬似テーブル）
---------------------------------------------------------------------------*/
/*ブロック全体*/
ul.post-meta {
	border-top: 1px solid #ccc;	/*ブロックの一番上の線の幅、線種、色*/
	margin-bottom: 20px;
}
/*各行*/
ul.post-meta li {
	border-bottom: 1px solid #ccc;	/*各行ごとの下線の幅、線種、色*/
}
/*各行（左側ブロック）*/
ul.post-meta li .post-meta-key {
	display: inline-block;
	width: 150px;		/*幅*/
	background: #eee;	/*背景色*/
	padding: 10px;		/*ボックス内の余白*/
}

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

/*フッター内のメニュー
---------------------------------------------------------------------------*/
#footermenu	{
	clear: both;
	padding-top: 30px;
	font-size: 12px;
	text-align: center;
}
#footermenu li {
	display: inline;
	padding: 0px 5px;
}
#footermenu ul.sub-menu {
	display: inline;
}

/*お知らせ用の設定
---------------------------------------------------------------------------*/
/*ボックス１個あたり*/
.news {
	padding: 5px 20px;	/*上下、左右へのボックス内の余白*/
}
/*日付ブロック*/
.news dt {
	float: left;	/*左に回り込み*/
	width: 7em;		/*幅。日付の出力を変更した際はここも調整して下さい。*/
	color: #56a5e3;	/*文字色*/
}
/*アイコンとテキストブロック（日付以外の部分）*/
.news dd {
	padding-left: 7em;	/*左に空ける余白。上の日付のwidthと合わせる。*/
	position: relative;
	border-bottom: 1px solid #eee;	/*下線の幅、線種、色*/
}
/*h4見出し*/
.news h4 {
	font-weight: bold;	/*太字にする設定*/
}
/*段落タグ*/
.news p {
	padding: 0 !important;
}
/*コメント*/
.news .comment {
	padding-left: 8em;	/*左に空ける余白。上の「.news dt」や「.news dd」のwidthの値に「1」追加したぐらいでOK。*/
}
/*アイコン（共通）*/
.news .category a {
	display: block;
	text-decoration: none;
	text-align: center;
	width: 8em;		/*幅。ここを変更した場合は上の「.news .comment」の数字も合わせて変更する。*/
	position: absolute;
	top: 5px;
	background: #999;	/*背景色*/
	color: #fff;		/*文字色*/
	border-radius: 2px;	/*角丸のサイズ*/
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.8;	/*行間*/
	padding: 0 5px;		/*上下、左右へのアイコン内の余白*/
}
/*アイコン「news」*/
.news .category-news .category a {
	background: #56a5e3;	/*背景色*/
	color: #FFF;
}

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

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 96%;
	margin: 0px auto 15px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;
	background: #FFCC33;	/*背景色*/
}
/*テーブル内の左側の見出し部分*/
.ta1 th {
	background: #e5e5e5;	/*背景色*/
	width: 25%;	/*幅*/
	padding: 10px;
	text-align: center;
}
/*テーブル内の右側*/
.ta1 td {
	padding: 10px;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	max-width: 100%;
}
/*ta1内のpタグ*/
.ta1 p {
	padding: 0 !important;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	display: block;
	float: right;
	text-decoration: none;
	text-align: center;
	color: #FFF;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	background: #56a5e3;/*背景色*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*角丸のサイズ*/
}
/*マウスオン時*/
#pagetop a:hover {
	background: #333;	/*背景色*/
	color: #FFF;		/*文字色*/
}

/*ページ内メニュー（サービスページ内でジャンルを指定した場合に出る見出し下のメニュー）
---------------------------------------------------------------------------*/
ul.nav {text-align: center;padding-bottom: 10px;}
ul.nav li {display: inline;padding: 10px;}
ul.nav li.current-cat a {text-decoration: none; color: #56a5e3;}

/*ページナビ
---------------------------------------------------------------------------*/
/*ボックス全体*/
.page-numbers {
	clear: both;
	text-align: center;
	padding-bottom: 5px;
	padding-top: 20px;
	margin-bottom: 20px;
}
/*ナビ１個あたりの設定*/
.page-numbers li {
	display: inline;
}
.page-numbers a {
	text-decoration: none;
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
}
/*現在表示中の設定*/
.page-numbers li .current,
.page-numbers span {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
	font-weight: bold;		/*文字を太字に*/
	background: #eee;		/*背景色*/
	color: #ababab;			/*文字色*/
}
.page-numbers a span {
	background: #fff;		/*背景色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
	margin: -11px;			/*調整。paddingとborderの数字を合わせてマイナスをつける*/
	color: #666;			/*文字色*/
}
/*マウスオン時の設定*/
.page-numbers a:hover,
.page-numbers a:hover span {
	background: #eee;	/*背景色*/
}
/*下の「.next」の設定の影響をリセット*/
.page-numbers .next {float: none;}

/*前の投稿、次の投稿
---------------------------------------------------------------------------*/
.back {float: left;}
.next {float: right;}

/*固定ページに子ページがある場合のナビメニュー
---------------------------------------------------------------------------*/
div.nav {text-align: center;} 
div.nav a {display: inline-block; margin: 0 5px 20px;}
div.nav a::before {content: "≫"}

/*その他
---------------------------------------------------------------------------*/
.look {background: #dcdcdc;padding: 4px;border-radius: 4px;}
.mb1em,.mb15 {margin-bottom: 15px;}
.mb30 {margin-bottom: 30px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {color: #56a5e3;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
img.fl {margin: 0px 10px 10px 0px;float: left;}
img.fr {margin: 0px 0px 10px 10px;float: left;}



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

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	margin: 2%;	/*外側に少し余白を作る*/
}

}



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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	margin-bottom: 20px;
}
/*ロゴ画像*/
header #logo {
	width: 80%;	/*画像の幅*/
	margin: 20px auto 10px;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*小さい端末用(画面幅800px以下)メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
}
/*メニュー１個あたりの設定*/
nav#menubar-s ul li {
	float: left;		/*メニューを左側に回り込み*/
	text-align: center;	/*内容をセンタリング*/
	width: 28%;			/*メニュー幅*/
	margin-left: 4%;	/*メニュー同士の隙間*/
	font-size: 12px;	/*文字サイズ*/
}
/*大きな端末用(画面幅801px以上)メニューを非表示にする*/
#menubar {
	display: none;
}

/*800px以下のメニュー見出し（MENU）
---------------------------------------------------------------------------*/
#menubar_hdr {
	display: block;
	margin: 0 auto;
	color: #fff;	/*文字色*/
	letter-spacing: 0.3em;
	border-radius: 50px;
	width: 40%;		/*幅*/
	line-height: 36px;	/*高さ*/
	text-align: center;
}
/*メニューopen時のアイコン（アイコンはマイナス表示中）と背景色の設定。480px以下の設定の「更新情報・お知らせ」ブロックと合わせるとOK。*/
#menubar_hdr.open {
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#9a683e, #56a5e3);
	background: url(../images/btn_minus.png) no-repeat right center, linear-gradient(#9a683e, #56a5e3);
}
/*メニューclose時のアイコン（アイコンはプラス表示中）と背景色の設定。480px以下の設定の「更新情報・お知らせ」ブロックと合わせるとOK。*/
#menubar_hdr.close {
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#9a683e, #56a5e3);
	background: url(../images/btn_plus.png) no-repeat right center, linear-gradient(#9a683e, #56a5e3);
}

/*一覧ページ（list）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
	width: 41%;	/*ボックスの幅*/
}

/*その他
---------------------------------------------------------------------------*/
.s-n #sub {display: none;}

}



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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo {
	width: 100%;	/*画像の幅*/
}

/*一覧ページ（list）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
	float: none;
	width: auto;
	height: auto;
	margin: 0;
	margin-bottom: 20px;
	padding: 5%;	/*ボックス内の余白*/
}

/*ブログページのフィードバック以降のブロック
---------------------------------------------------------------------------*/
/*「返信」した記事*/
ol.commentlist ul.children {
	margin-left: 0px;
}

/*menu内のページ内メニュー（CMS用）
---------------------------------------------------------------------------*/
ul.navmenu {
	padding-top: 0px;
	padding-bottom: 10px;
	text-align: left;
}
ul.navmenu li {
	display: block;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせ情報open時のアイコン（アイコンはマイナス表示中）と背景色の設定*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#9a683e, #56a5e3);
	background: url(../images/btn_minus.png) no-repeat right center, linear-gradient(#9a683e, #56a5e3);
}
/*お知らせ情報close時のアイコン（アイコンはプラス表示中）と背景色の設定*/
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#9a683e, #56a5e3);
	background: url(../images/btn_plus.png) no-repeat right center, linear-gradient(#9a683e, #56a5e3);
}

/*お知らせ用の設定
---------------------------------------------------------------------------*/
/*コメント*/
.news .comment {
	padding-left: 0;
}
/*コメント内の段落タグ*/
.news .comment p {
	padding: 0 !important;
}
/*アイコン（共通）*/
.news .category a {
	display: none;
}

/*カスタムフィールド出力用（擬似テーブル）
---------------------------------------------------------------------------*/
/*各行（左側ブロック）*/
ul.post-meta li .post-meta-key {
	width: 100px;		/*幅*/
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 95%;}


}