@charset "utf-8";



/*メニューで使うGoogle Fontsの読み込み
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Julius+Sans+One');



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

/*全体の設定
---------------------------------------------------------------------------*/
html,body {height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #f4b5c1;	/*背景色*/
	-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%;font-weight: normal;}
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;	/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #fff;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*トップページのボックス
---------------------------------------------------------------------------*/
#topcontents {
	min-height: 100%;
	background: url(../images/bg_s.png) no-repeat right top;	/*背景画像の読み込み。リピートせず、右側・上部に配置。（古いブラウザ用）*/
	background: url(../images/bg.png) no-repeat right top/60%;	/*背景画像の読み込み。リピートせず、右側・上部に配置。幅60%*/
	overflow: auto;
}

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	max-width: 1200px;	/*サイトの最大幅*/
	margin: 0 auto;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo {
	width: 300px;	/*ロゴ画像の幅*/
	float: left;
}
/*ロゴ画像（※トップページ用の追加設定）*/
body.home header #logo {
	width: 500px;	/*ロゴ画像の幅*/
}

/*メインメニュー（※トップページ以外）
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	text-align: center;	/*文字をセンタリング*/
	font-size: 12px;	/*文字サイズ*/
	padding-top: 60px;	/*ボックス内、上側に空ける余白*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	margin-left: 40px;	/*メニュー同士の余白*/
}
#menubar li a {
	text-decoration: none;
	display: block;
	color: #333;	/*文字色*/
}
/*マウスオン時*/
#menubar li a:hover {
	color: #fff;	/*文字色*/
}
/*英語表記*/
#menubar span {
	font-size: 24px;	/*文字サイズ*/
	display: block;
	font-family: 'Julius Sans One', sans-serif;	/*Google Fontsの指定*/
}
/*現在表示中のメニューの設定*/
#menubar li.current-menu-item a {
	color: #fff;	/*文字色*/
}

/*トップページのメニューブロック
---------------------------------------------------------------------------*/
#menubar-top {
	clear: left;
	width: 500px;	/*ブロック幅。ロゴの幅と合わせるといい。*/
	font-size: 12px;	/*文字サイズ*/
	line-height: 1;		/*行間*/
	text-align: center;	/*文字をセンタリング*/
	padding-top: 60px;	/*ボックス内、上側に空ける余白*/
}
/*トップページの英語表記*/
#menubar-top span {
	font-size: 40px;	/*文字サイズ*/
	display: block;
	padding-bottom: 10px;
	font-family: 'Julius Sans One', sans-serif;	/*Google Fontsの指定*/
}
/*トップページのメニュー１個あたりの設定*/
#menubar-top li a {
	text-decoration: none;
	display: block;
	margin-bottom: 30px;
	color: #333;	/*文字色*/
}
/*メニュー１個あたりのマウスオン時の設定（※トップページ用の設定）*/
#menubar-top li a:hover {
	letter-spacing: 0.2em;	/*文字間隔を少し広げる*/
	color: #fff;	/*文字色*/
}

/*小さな端末用用メニューを表示させない
---------------------------------------------------------------------------*/
#menubar-s {
	display: none;
}

/*３本バーアイコンを表示させない
---------------------------------------------------------------------------*/
#menubar_hdr {
	display: none;
}

/*コンテンツ
---------------------------------------------------------------------------*/
.contents {
	clear: both;
	overflow: hidden;
	padding: 40px 10px;	/*上下、左右に空けるボックス内の余白*/
}
/*コンテンツのh2タグの設定*/
.contents h2 {
	clear: both;
	font-size: 22px;	/*文字サイズ*/
	line-height: 1.4;	/*行間*/
	margin-bottom: 20px;
	padding: 10px 20px;	/*上下、左右への余白*/
	background: #aeaeae;	/*背景色（古いブラウザ用）*/
	background: url(../images/bg1.png) no-repeat right top, linear-gradient(#aeaeae, #979797);	/*背景画像とグラデーション*/
	border-bottom: 1px solid #666;	/*メニュー下の線の幅、線種、色*/
	border-top: 4px solid #fff;	/*メニュー上の線の幅、線種、色*/
	color: #fff;	/*文字色*/
}
/*コンテンツのh2タグ内のspanタグ設定（色付き文字部分）*/
.contents h2 span {
	display: block;
	color: #fff71d;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広げる設定*/
}
/*コンテンツのh3タグの設定*/
.contents h3 {
	clear: both;
	margin-bottom: 20px;
	padding: 5px 20px;	/*上下、左右への余白*/
	background: #fff;	/*背景色*/
	color: #666;	/*文字色*/
}
/*コンテンツの段落タグ設定*/
.contents p {
	padding: 0px 20px 15px;	/*上、左右、下への余白*/
}
.contents h2 + p,
.contents h3 + p {
	margin-top: -10px;
}

/*色付きタイプのコンテンツ
---------------------------------------------------------------------------*/
.contents.bg1 {
	background: #e7e7e7;	/*背景色*/
	color:#333;				/*文字色*/
}
.contents.bg1 a {
	color:#333;	/*リンクテキストの色*/
}
/*h2タグ*/
.contents.bg1 h2 {
	color: #fff;	/*文字色*/
}
/*color1（強調色）*/
.contents.bg1 .color1 {
	color: #ff0000;	/*文字色*/
}
/*サービス用のlistボックス内のh4タグ*/
.contents.bg1 .list h4 {
	color: #333;	/*文字色*/
}
/*トップページ内「更新情報・お知らせ」ブロックの日付*/
.contents.bg1 #new dt {
	color: #000;	/*文字色*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
.main {
	overflow: hidden;
	float: right;	/*右に回り込み*/
	width: 72%;		/*幅*/
}

/*Serviceページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
	position: relative;
	overflow: hidden;
	padding: 20px;
	border-bottom: 1px solid #fff;	/*下線の幅、線種、色*/
}
/*１つ目のlistボックス（古いブラウザは適用されません）*/
.list:first-of-type {
	border-top: 1px solid #fff;	/*上の線の幅、線種、色*/
}
/*ボックスにリンクをはった場合*/
.list a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	padding: 20px;
	margin: -20px;
}
/*マウスオン時の背景色*/
.list a:hover {
	background: #fff;	/*背景色*/
	color: #000;			/*文字色*/
}
/*リンクを貼った際に出る「→」マーク*/
.list a::before {
	content: "→";	/*出力する文字。変更しても構いませんが機種依存文字は化けるので使わないで下さい。*/
	font-size: 12px;	/*文字サイズ*/
	display: block;
	position: absolute;
	right: 10px;	/*ボックスの右から10pxの場所に配置*/
	bottom: 20px;	/*ボックスの下から20pxの場所に配置*/
	width: 30px;	/*幅*/
	line-height: 30px;	/*高さ*/
	text-align: center;
	background: #333;	/*背景色*/
	color: #fff;	/*文字色*/
	border-radius: 50%;	/*角丸のサイズ。50%にすると円になる。*/
}
/*ボックス内のh4タグ設定*/
.list h4 {
	font-size: 20px;	/*文字サイズ*/
	color: #fff;	/*文字色*/
}
.list a:hover h4 {
	color: #000;	/*マウスオン時*/
} 
/*ボックス内のp(段落)タグ設定*/
.list p {
	padding: 0 20px 0 0 !important;
}
/*ボックス内の画像*/
.list figure img {
	float: left;	/*左に回り込み*/
	width: 20%;		/*幅*/
	height: auto;		/*高さ*/
	border-radius: 8px;	/*角丸のサイズ*/
	margin-right: 20px;	/*画像右側にあけるスペース*/
}
/*ターム*/
.list .terms {
	color: #999;	/*文字色*/
	font-size: 12px;	/*文字サイズ*/
}

/*ブログページ
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.blog {
	overflow: hidden;
	margin-bottom: 20px;	/*ボックス同士の上下に空けるスペース*/
}
.blog a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	border: 5px solid #eee;	/*枠線の幅、線種、色（古いブラウザ用）*/
	border: 5px solid rgba(255,255,255,0.3);	/*枠線の幅、線種、色*/
	padding: 20px;			/*ボックス内の余白*/
}
/*マウスオン時*/
.blog a:hover {
	border: 5px solid #fff;	/*マウスオン時の枠線の設定*/
}
/*h3タグの設定*/
.blog h3 {
	border: none;
	background: transparent;
	padding: 0;
	color: #fff;	/*文字色*/
	font-size: 24px;	/*文字サイズ*/
}
/*段落タグ*/
.blog p {
	padding: 0;
}
/*figure画像の設定*/
.blog figure {
	float: left;	/*左に回り込み*/
	margin-right: 20px;
}
/*コメント数、日付の行*/
.blog .date {
	font-size: 12px;	/*文字サイズ*/
	margin-top: 10px;	/*上に空けるスペース*/
}

/*ブログページのフィードバック以降のブロック
---------------------------------------------------------------------------*/
/*コメントのリストタグ*/
ol.commentlist {
	color: #666;		/*文字色*/
}
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;
	color: #333;
}
/*「返信」した記事*/
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%の事。*/
}

/*subコンテンツ
---------------------------------------------------------------------------*/
/*subブロック*/
.sub {
	float: left;	/*左に回り込み*/
	width: 24%;		/*幅*/
}
/*subコンテンツ内のh2タグ設定*/
.sub h2 {
	margin-bottom: 0;
	box-shadow: none;
	font-size: 16px;	/*文字サイズ*/
	text-align: center;	/*内容をセンタリング*/
	padding: 15px;		/*ボックス内の余白*/
	border: 1px solid #fff !important;	/*メニューの線の幅、線種、色*/
	background: rgba(0,0,0,0.1);	/*背景色。0,0,0は黒のことで0.1は透明度10%のこと*/
}
/*subコンテンツ内の段落タグ設定*/
.sub p {
	margin: 0 !important;
	padding: 10px !important;
}

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

/*subコンテンツ内のbox1と、ウィジェットの各メニュー用追加
---------------------------------------------------------------------------*/
.sub .box1,
.sub .widget_archive, .sub .widget_categories, .sub .widget_pages {
	overflow: hidden;
	padding: 10px;			/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	border: solid 1px #fff;	/*線の線種、幅、色*/
}
/*h2直下にbox1が続いた場合のみ、box1の上の線を消す設定*/
.sub h2 + .box1 {
	border-top: none;
}
/*h2直下にlistボックスが続いた場合のみ、１つ目のlistボックスの上の線を消す設定*/
.sub h2 + .list:first-of-type {
	border-top: none;
}

/*subコンテンツ内のlistボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.sub .list {
	border-bottom: 1px solid #fff;	/*下線の幅、線種、色*/
	font-size: 12px;				/*文字サイズ*/
	line-height: 1.2;				/*行間*/
	overflow: hidden;
	padding: 10px 0;
}
.sub .list a {
	display: inline;
	text-decoration: underline;
	margin: 0;
	padding: 0;
}
.sub .list a:hover {
	background: transparent;
	text-decoration: none;
}
/*subコンテンツ内のbox内のlist内のh2タグ設定*/
.sub .box1 .list h2 {
	clear: none;
	padding: 0;
	border: none !important;
	background: transparent;
	font-size: 14px;	/*文字サイズ*/
	text-align: left;	/*文字を左側に*/
	font-weight: bold;
}
.sub .box1 .list h2 a {
	color: #fff;
}
/*ボックス内の画像の設定*/
.sub .list figure img {
	float: left;	/*左に回り込み*/
	margin-right: 10px;
	width: 25%;		/*画像幅*/
}
/*最後のボックスの下線を消す設定*/
.sub .list:last-child {
	border-bottom: none;
}
.sub .list a::before {
	display: none;
}

/*subブロック内の検索ブロック
---------------------------------------------------------------------------*/
#searchform  {
	text-align: center;	/*文字をセンタリング*/
	padding: 20px 0;	/*上下、左右へのボックス内の余白*/
}
/*デフォルトで出る「検索：」の文字を消す設定*/
#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: #ff1a00;	/*リンクテキストの色*/
}

/*カスタムフィールド出力用（擬似テーブル）
---------------------------------------------------------------------------*/
/*ブロック全体*/
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;
	background: #222;	/*背景色*/
	color: #fff;		/*文字色*/
	font-size: 85%;		/*文字サイズ*/
}
footer a {
	color: #999;	/*リンクテキストの文字色*/
	text-decoration: none;
}
footer a:hover {
	color: #fff;	/*マウスオン時の文字色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}

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

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #555;	/*背景色*/
	color: #ccc;		/*文字色*/
}
#copyright a {
	text-decoration: none;
	color: #ccc;	/*リンクテキストの文字色*/
}

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

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

/*テーブル
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #fff;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #fff;	/*背景色*/
	color: #666;	/*文字色*/
	font-size: 18px;	/*文字サイズ*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}

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

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

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

/*ページナビ
---------------------------------------------------------------------------*/
/*ボックス全体*/
.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: #333;padding: 5px 10px;border-radius: 4px;color: #fff;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #fff71d;}
.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: 24px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}



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

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	width: auto;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像（※トップページ用の追加設定）*/
body.home header #logo {
	width: 300px;	/*ロゴ画像の幅*/
}

/*メインメニュー（※トップページ以外）
---------------------------------------------------------------------------*/
/*小さな端末用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
	clear: left;
	border-top: 1px solid #999;	/*上の線の幅、線種、色*/
}
/*メニュー１個あたりの設定*/
#menubar-s li {
	float: left;	/*左に回り込み*/
	width: 50%;		/*メニュー幅*/
}
#menubar-s li a {
	display: block;
	text-decoration: none;
	text-align: center;	/*文字をセンタリング*/
	padding: 15px 0;	/*上下、左右へのメニュー内の余白*/
	border-bottom: 1px solid #999;	/*下線の幅、線種、色*/
	border-right: 1px solid #999;	/*右線の幅、線種、色*/
}
/*偶数番目のメニューの右側の線を消す*/
#menubar-s li:nth-child(even) a {
	border-right: none;
}

/*トップページ以外で使っている大きな端末用用メニューを非表示にする
---------------------------------------------------------------------------*/
#menubar {
	display: none;
}

/*トップページのメニューブロック
---------------------------------------------------------------------------*/
#menubar-top {
	width: 300px;	/*ブロック幅。ロゴの幅と合わせるといい。*/
}
/*トップページの英語表記*/
#menubar-top span {
	font-size: 26px;	/*文字サイズ*/
}

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

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

/*subコンテンツ内のlistボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.sub .list {
	font-size: 100%;
	line-height: normal;			/*行間*/
}
/*ボックス内の画像の設定*/
.sub .list figure img {
	width: 15%;		/*画像幅*/
}

/*その他
---------------------------------------------------------------------------*/
body.s-n .sub,body.s-n #footermenu,.m-n {display: none;}
.fl-half{float:left;width:45%;margin-left:3%;}
.sh {display:block;}
.pc {display:none;}

}



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

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

/*トップページのinner
---------------------------------------------------------------------------*/
body.home > .inner:first-child {
	min-height: auto;
	background: none;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像（※トップページ用の追加設定）*/
header #logo {
	width: 100% !important;	/*ロゴ画像の幅*/
}

/*トップページのメニューブロック
---------------------------------------------------------------------------*/
#menubar-top {
	width: auto;
}

/*コンテンツ
---------------------------------------------------------------------------*/
.contents {
	padding: 20px 10px;	/*上下、左右に空けるボックス内の余白*/
}
/*コンテンツのh2タグの設定*/
.contents h2 {
	font-size: 16px;	/*文字サイズ*/
	padding: 5px 10px;	/*上下、左右への余白*/
}
/*コンテンツの段落タグ設定*/
.contents p {
	padding: 0px 10px 15px;	/*上、左右、下への余白*/
}

/*Serviceページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
	padding: 10px;
}
.list a {
	padding: 10px;
	margin: -10px;
}
/*ボックス内のh4タグ設定*/
.list h4 {
	font-size: 16px;	/*文字サイズ*/
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
.sub .submenu li {
	padding: 10px;	/*メニュー内の余白*/
}

/*ブログページのフィードバック以降のブロック
---------------------------------------------------------------------------*/
/*「返信」した記事*/
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;
}

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

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.fl-half{float:none;width:100%;margin-left:0;}

}
