@charset "utf-8";


/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	background: #fff;	/*背景色*/
	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: #333;	/*リンクテキストの色*/
}
a:hover {
	color: #4fa14d;				/*マウスオン時の文字色*/
	text-decoration: none;		/*マウスオン時にリンクの下線を消す設定*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: #4fa14d;	/*背景色*/
	/* height: 70px;			高さ */
}
/*サイト幅にしたheader内のブロック*/
header .inner {
	max-width: 1000px;	/*幅*/
	margin: 0 auto;
	overflow: hidden;
	padding: 0 10px;
}
header .inner p {
	box-sizing: border-box;
	color: #fff;
	font-family: 'Meiryo',-apple-system,'BlinkMacSystemFont','.SFNSDisplay-Regular','Hiragino Kaku Gothic Pro','Yu Gothic','MS PGothic','Segoe UI','Verdana','Helvetica','Arial',sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	margin: 1em 0;
}
/*ロゴ画像*/
#logo {
}
#logo img {
	/* width: 250px;	画像幅 */
	margin-top: 18px;	/*header内でのバランスを取るために上にスペースをあける*/
	/* margin-left: 10px;	左側にスペースをあける */
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menu-box {
	width: 100%;
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.9);	/*背景色。rgbaは色設定で255,255,255は白。0.9は透明度90%の事。*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	-webkit-box-shadow: 0px 0px 8px rgba(0,0,0,0.15);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.15は透明度15%の事。*/
	box-shadow: 0px 0px 8px rgba(0,0,0,0.15);			/*同上*/
}
/*サイト幅にしたmenu-box内のブロック*/
#menubar {
	max-width: 1000px;	/*幅*/
	overflow: hidden;
	margin: 0 auto;
	border-left: 1px solid #ccc;	/*左の線の幅、線種、色*/
}
/*メニュー内のspanタグを非表示に*/
#menubar span {
	display: none;
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 25%;		/*メニュー幅*/
	text-align: center;	/*内容をセンタリング*/
	line-height: 50px;	/*高さ*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる設定。不要ならこの行削除。*/
}
#menubar a {
	display: block;
	width: auto;
	text-decoration: none;
	border-right: 1px solid #ccc;	/*右の線の幅、線種、色*/
}
/*マウスオン時*/
#menubar li:hover {
	background: #fff;	/*背景色*/
}
/*メニュー用アイコン設定（menu1〜memu4までの共通設定）*/
.menuimg a {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	display: inline-block;
	background-image: url(../images/icon_menu.png);	/*背景画像の読み込み*/
	background-repeat: no-repeat;
	background-size: 50px 200px;	/*背景画像のサイズ。※実寸は100pxと400pxだが、高解像度の端末用に50%のサイズで指定している。*/
}
.menu1 a {
	background-position: 0 0px;		/*背景画像の左から0px、上から0pxの部分を読み込む指定*/
}
.menu2 a {
	background-position: 0 -50px;	/*背景画像の左から0px、上から-50px（※マイナス記号をつける）の部分を読み込む指定*/
}
.menu3 a {
	background-position: 0 -100px;	/*背景画像の左から0px、上から-100px（※マイナス記号をつける）の部分を読み込む指定*/
}
.menu4 a {
	background-position: 0 -150px;	/*背景画像の左から0px、上から-150px（※マイナス記号をつける）の部分を読み込む指定*/
}

/*ドロップダウンメニュー用
---------------------------------------------------------------------------*/
/*ドロップダウンブロックの設定*/
#menubar ul.ddmenu {
	position:absolute;
	visibility: hidden;
	z-index: 101;
	padding-top: 1px;
	-webkit-box-shadow: 2px 2px 4px rgba(0,0,0,0.1);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.1が透明度。*/
	box-shadow: 2px 2px 4px rgba(0,0,0,0.1);			/*同上*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.9);	/*背景色。rgbaは色設定で255,255,255は白。0.9は透明度90%の事。*/
	border: none;
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
}

#menubar ul.ddmenu li a {
	background: none;
}
/*マウスオン時の設定*/
#menubar ul.ddmenu li a:hover {
	background: #fff;	/*背景色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*コンテンツ（main、subを囲むボックス。１カラム時でも使用。）
---------------------------------------------------------------------------*/
.contents {
	clear: both;
	overflow: hidden;
	padding: 40px 1%;	/*上下、左右へのボックス内の余白。*/
}
/*サイト幅にしたcontents内のブロック*/
.contents .inner {
	max-width: 1000px;	/*幅*/
	margin: 0 auto;
}
/*背景色つきタイプ*/
.contents.bg1 {
	background: #f3f3f3;	/*背景色*/
	border-top: 1px solid #e4e4e4;		/*上の線の幅、線種、色*/
	border-bottom: 1px solid #e4e4e4;	/*下の線の幅、線種、色*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
.main {
	float: right;	/*右側に回り込み*/
	overflow: hidden;
	width: 75%;	/*幅*/
	padding-bottom: 30px;
}
.c1 .main {
	float: none;
	width: 100%;
}
/*メインコンテンツのh2タグの設定*/
.main h2 {
	clear: both;
	margin-bottom: 15px;
	color: #FFF;		/*文字色*/
	padding: 5px 15px;	/*上下、左右への余白*/
	background: #4fa14d;	/*背景色*/
	-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2);			/*同上*/
}
/*メインコンテンツのh3タグの設定*/
.main h3 {
	clear: both;
	margin-bottom: 15px;
	padding: 4px 15px;	/*上下、左右への余白*/
	background: #fff;	/*背景色*/
	border: solid 1px #ccc;	/*線の線種、幅、色*/
	-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.1);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.1が透明度。*/
	box-shadow: 1px 1px 2px rgba(0,0,0,0.1);	/*同上*/
}
/*メインコンテンツの段落タグ設定*/
.main p {
	padding: 0px 15px 14px;	/*上、左右、下への余白*/
}

/*メインコンテンツ内のボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.main .list {
	float: left;	/*左に回り込み*/
	width: 31%;		/*幅*/
	overflow: auto;
	background: #fff;	/*背景色*/
	margin-left: 1.5%;	/*ボックス同士の左右間の余白*/
	margin-bottom: 20px;	/*ボックス同士の上下間の余白*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ。この行削除すれば通常の長方形になる。*/
	height: 430px;			/*高さ（下の「.list a」の高さと揃える）*/
	line-height: 1.4;
	position: relative;
	-webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
	box-shadow: 0px 0px 3px rgba(0,0,0,0.3);			/*同上*/
}
.main .list a {
	display: block;
	overflow: auto;
	text-decoration: none;
	height: 430px;	/*高さ（上の「.list」の高さと揃える）*/
}
.main .list a:hover {
	background: #000;	/*マウスオン時の背景色*/
	color: #fff;		/*マウスオン時の文字色*/
}
/*ボックスにリンク指定がされた場合に出る「→」マーク*/
.main .list a::before {
	content: "→";	/*この文字を出す。他の文字に変えても可だが機種依存文字は化けるので使わない。*/
	position: absolute;
	right: 20px;	/*ボックスの右から20pxの場所に配置*/
	top: 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;	/*マウスオン時の「→」マークの背景色*/
}
/*ボックス内の画像設定*/
.main .list figure img {
	width: 100%;	/*画像の幅*/
	height: auto;	/*画像の高さ*/
	padding-bottom: 10px;	/*画像下に空ける余白*/
}
/*ボックス内のh4（見出し）タグ設定*/
.main .list h4 {
	padding-left: 15px;
	padding-bottom: 5px;
	font-size: 16px;	/*文字サイズ*/
}
/*ボックス内のp（段落）タグ設定*/
.main .list p {
	font-size: 12px;	/*文字サイズを少し小さく*/
}

/*ブログページ
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.main .blog {
	overflow: hidden;
	margin-bottom: 20px;	/*ボックス同士の上下に空けるスペース*/
}
.main .blog a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	border: 5px solid #eee;	/*枠線の幅、線種、色*/
	padding: 20px;			/*ボックス内の余白*/
}
/*マウスオン時*/
.main .blog a:hover {
	border: 5px solid #4fa14d;	/*マウスオン時の枠線の設定*/
	color: #000;				/*文字色*/
}
/*h3タグの設定*/
.main .blog h3 {
	border: none;
	background: transparent;
	padding: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #4fa14d;	/*文字色*/
	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;
	color: #666;
	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%の事。*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
.sub {
	float: left;	/*左に回り込み*/
	width: 21%;	/*幅*/
}
.c1 .sub {
	display: none;
}
/*subコンテンツ内のh2タグ設定*/
.sub h2 {
	margin-bottom: 10px;
	background: transparent;
	padding: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #333;	/*文字色*/
}
/*subコンテンツのh2タグの１文字目への設定*/
.sub h2::first-letter {
	border-left: 3px solid #4fa14d;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
.sub .submenu {
	margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #e4e4e4;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
.sub .submenu li {
	background: #fff;	/*背景色*/
	border-bottom: solid 1px #e4e4e4;	/*下の線の線種、幅、色*/
}
.sub .submenu li a {
	text-decoration: none;
	display: block;
	padding: 2px 10px;	/*メニュー内の余白。上下、左右への設定。*/
}
/*liタグが入れ子になった場合*/
.sub .submenu li li {
	padding: 0px 10px;
	border: none;
}

/*サブコンテンツ内のbox1と、ウィジェットの各メニュー用追加
---------------------------------------------------------------------------*/
.sub .box1,
.sub .widget_archive, .sub .widget_categories, .sub .widget_pages {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	background: #f3f3f3;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.05);	/*背景色。rgbaは色設定で0,0,0は黒。0.05が透明度。*/
	border: solid 1px #ccc;	/*線の線種、幅、色*/
	-webkit-box-shadow: 0px 0px 1px 1px #fff inset;	/*ボックスの影。内側に白のラインを入れる。*/
	box-shadow: 0px 0px 1px 1px #fff inset;
}
/*box1内のメニューの設定*/
.sub .box1 .submenu {
	margin-bottom: 0px;
}

/*subコンテンツ内のlistボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.sub .list {
	border-top: 1px solid #ccc;	/*上線の幅、線種、色*/
	font-size: 12px;				/*文字サイズ*/
	line-height: 1.2;				/*行間*/
	overflow: hidden;
	padding: 10px;
}
.sub .list a {
	overflow: hidden;
}
/*h4タグ設定*/
.sub .list h4 {
	font-size: 14px;	/*文字サイズ*/
	font-weight: bold;
}
/*ボックス内の画像の設定*/
.sub .list figure img {
	float: left;	/*左に回り込み*/
	margin-right: 10px;
	width: 25%;		/*画像幅*/
}
/*最後のボックスの下線を入れる設定*/
.sub .list:last-child {
	border-bottom: 1px solid #ccc;
}

/*subブロック内の検索ブロック
---------------------------------------------------------------------------*/
#searchform  {
	text-align: center;	/*文字をセンタリング*/
}
/*デフォルトで出る「検索：」の文字を消す設定*/
#searchform .screen-reader-text {
	display: none;
}

/*ウィジェットカレンダー用
---------------------------------------------------------------------------*/
#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: #4fa14d;	/*リンクテキストの色*/
}

/*カスタムフィールド出力用（擬似テーブル）
---------------------------------------------------------------------------*/
/*ブロック全体*/
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;		/*ボックス内の余白*/
}

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

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	background: #4fa14d;	/*背景色*/
	color: #fff;			/*文字色*/
}
footer a {
	color: #fff;
}
footer a:hover {
	color: #fff;
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*メニューボックス全体*/
#footermenu {
	max-width: 1000px;	/*幅*/
	margin: 0 auto;
	overflow: hidden;
	padding: 20px 0px;
	text-align: center;
}
#footermenu li {
	display: inline;
	padding: 10px;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #333;	/*背景色*/
}
#copyright a {
	text-decoration: none;
}

/*お知らせ用の設定
---------------------------------------------------------------------------*/
/*ボックス１個あたり*/
.news {
	padding: 5px 20px;	/*上下、左右へのボックス内の余白*/
}
/*日付ブロック*/
.news dt {
	float: left;	/*左に回り込み*/
	width: 7em;		/*幅。日付の出力を変更した際はここも調整して下さい。*/
	color: #4fa14d;	/*文字色*/
}
/*アイコンとテキストブロック（日付以外の部分）*/
.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: #4fa14d;	/*背景色*/
	color: #FFF;
}

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

/*テーブル
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin-bottom: 15px;
}
.contents .list .ta1 {
	margin-bottom: 0;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #666;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #666;	/*背景色（古いブラウザ用）*/
	color: #fff;	/*文字色*/
}
/*ta1の右側ボックス*/
.ta1 td {
	background: #fff;	/*背景色*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	background: #f3f3f3;	/*背景色（古いブラウザ用）*/
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	max-width: 100%;
}
/*ta1内のpタグ*/
.ta1 p {
	padding: 0 !important;
}

/*フォーム用ボタン
---------------------------------------------------------------------------*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	border: 1px solid #4fa14d;	/*枠線の幅、線種、色*/
	border-radius: 4px;		/*角丸のサイズ*/
	padding: 5px 20px;		/*上下、左右へのボックス内の余白*/
	background: #4fa14d;	/*背景色*/
	color: #fff;		/*文字色*/
	font-size: 16px;	/*文字サイズ*/
}
/*マウスオン時*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	border: 1px solid #000;	/*枠線の幅、線種、色*/
	background: #fff;	/*背景色*/
	color: #000;		/*文字色*/
}

/*ページ内メニュー（サービスページ内でジャンルを指定した場合に出る見出し下のメニュー）
---------------------------------------------------------------------------*/
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: #4fa14d;}

/*ページナビ
---------------------------------------------------------------------------*/
/*ボックス全体*/
.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 {color:#fff;background: #666;padding:5px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.mb30 {margin-bottom: 30px;}
.mt-top {margin-top: 650px;}
.mt-top2 {margin-top: 250px;background: rgba(255,255,255,0.7);}
.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {color: #4fa14d;}
.color2 {color: #1C00EF;}
.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: 30px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}
.sh{display:none;}
.dn{display:none;}



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

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

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

/*ドロップダウンメニュー用
---------------------------------------------------------------------------*/
/*ドロップダウンブロックの設定*/
#menubar ul.ddmenu {
	display: none;	/*ドロップダウンを非表示にする*/
}
	
/*コンテンツ（main、subを囲むボックス。１カラム時でも使用。）
---------------------------------------------------------------------------*/
.contents {
	padding: 20px 3%;	/*上下、左右へのボックス内の余白。*/
}
/*サイト幅にしたcontents内のブロック*/
.contents .inner {
	width: auto;
}

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

/*メインコンテンツ内のボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.main .list {
	float: none;
	width: 98%;
	margin: 0 auto 20px;
	height: auto;			/*高さ（下の「.list a」の高さと揃える）*/
}
.main .list a {
	height: auto;
	margin: 2%;
	padding-right: 40px;
}
/*ボックス内の画像設定*/
.main .list figure img {
	width: 20%;	/*画像の幅*/
	height: auto;	/*画像の高さ*/
	padding-bottom: 0px;
	float: left;
	margin-right: 2%;
}
/*ボックス内のh4（見出し）タグ設定*/
.main .list h4 {
	padding-top: 5px;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
.pagetop {
	width: auto;
}

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

/*その他
---------------------------------------------------------------------------*/
.mt-top {margin-top: 450px;}
.mt-top2 {margin-top: 150px;}
.s-n .sub {display: none;}

}



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

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar-s {
	position: absolute;
	top: 70px;	/*headerの高さと同じサイズにする*/
	width: 100%;
	z-index: 102;
	-webkit-box-shadow: 0px 0px 8px rgba(0,0,0,0.3);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.3は透明度15%の事。*/
	box-shadow: 0px 0px 8px rgba(0,0,0,0.3);			/*同上*/
}
/*メニュー１個あたりの設定*/
#menubar-s li {
	border-bottom: 1px solid #ccc;	/*右の線の幅、線種、色*/
	background: rgba(255,255,255,0.9);
	line-height: 50px;	/*高さ*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる設定。不要ならこの行削除。*/
}
#menubar-s a {
	display: block;
	width: auto;
	text-decoration: none;
	padding-left: 50px;
}
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 10px;		/*上から10pxの場所に配置*/
	right: 10px;	/*右から10pxの場所に配置*/
	width: 30px;	/*幅*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	padding: 12px 10px 5px;	/*上、左右、下へのボックス内余白*/
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 3px solid #fff;	/*枠線の幅、線種、色*/
	margin-bottom: 7px;	/*バー同士の余白*/
}

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

/*お知らせ用の設定
---------------------------------------------------------------------------*/
/*コメント*/
.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;		/*幅*/
}

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

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: #4fa14d url(../images/btn_minus.png) no-repeat right center/34px 34px;
}
section#new h2.close {
	background: #4fa14d url(../images/btn_plus.png) no-repeat right center/34px 34px;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 95%;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.sh{display:block;}
.pc{display:none;}
.mt-top {margin-top: 350px;}
.mt-top2 {margin-top: 100px;}

}


/*カスタマイズ追加分
---------------------------------------------------------------------------*/
header,
footer,
.main h2,
.pagetop a {
	background: #895687;
}
a:hover {
	color: #895687;
}
.main blog a:hover {
	border: 5px solid #895687;
}
.sub h2::first-letter {
	border-left: 3px solid #895687;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;
}
.news dt {
	color: #895687;
}
input[type="submit"],
input[type="button"],
input[type="reset"] {
	border: 1px solid #895687;
	border-radius: 4px;		
	padding: 5px 20px;		
	background: #895687;	
	color: #fff;		
	font-size: 16px;
}
#wp-calendar a {
	color: #895687;	
}
.news .category-news .category a {
	background: #895687;
}
.faq dt,
.faq dt a {
	color: #895687;	
}
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: #895687;
}
.color1 {
	color: #895687;
}
section#new h2.open {
	background: #895687 url(../images/btn_minus.png) no-repeat right center/34px 34px;
}
section#new h2.close {
	background: #895687 url(../images/btn_plus.png) no-repeat right center/34px 34px;
}

#menubar li {
	width: 20%;
}

.list-disc {
	list-style-type:disc;
}
.padding-base {
	padding: 0px 15px 14px;
}
.ml1_5em {
	margin-left: 1.5em;
}
.tableborder {
	border-top:1px solid #ccc;
	border-left:1px solid #ccc;
}
.tableborder th,
.tableborder td {
	border-right:1px solid #ccc;
	border-bottom:1px solid #ccc;
	padding:4px;
}
.tableborder th,
.tableborder tr:first-child td {
	background: #eee;
}


div#wpcf7cpcnf {
	position: static;
}
#wpcf7cpcnf table {
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	width: 100%;
}
#wpcf7cpcnf th,
#wpcf7cpcnf td {
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 8px 10px;
}
#wpcf7cpcnf th {
	background: #eee;
	text-align: left;
	width: 30%;
	max-width: 220px;
}
#wpcf7cpcnf th p,
#wpcf7cpcnf td p {
	margin: 0;
	padding: 0;
}

button.wpcf7cp-cfm-edit-btn,
button.wpcf7cp-cfm-submit-btn {
	padding: 12px 12px 11px 12px;
}
button.wpcf7cp-cfm-submit-btn {
	  color: #fff;
    font-weight: normal;
    background: #895687;
    border: 1px solid #895687;
}
button.wpcf7cp-cfm-submit-btn:hover {
	color: #000;
	border-color:#000;
	background-color: #fff;
}
.custom-wpcf7cp-confirm.wpcf7cp-form-hide {
	height: 0;
}

