@charset "utf-8";

/*----------------------------------------大門久恵さんのHPのstyle.css----------------------------------------*/

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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;padding: 0px;
	color: #252525;	/*全体の文字色*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	-webkit-text-size-adjust: none;
	background: #f7f6f5;	/*背景色（古いブラウザ用）*/
}
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: #5f5f5f;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	text-decoration: underline;
	text-decoration-color: #252525; /* 色の指定 */
	text-decoration-style: solid; /* 線の種類 (solid, double, dotted, dashed, wavy) */
}
a:hover {
	color: #252525;				/*マウスオン時の文字色*/
	text-decoration: none;		/*マウスオン時にリンクの下線を消す設定*/
}

/*リンクバナー画像オンマウス透過の設定*/
.link :hover {
	opacity: 0.9;	/*透明度0.6は60%の透明度という意味*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}

/*リンクボタンの設定*/
.btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 300px;
	height: 60px;
	background-color: rgba(102,90,26,0.8);
	border: 1px solid #252525;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.3s;
	margin-bottom:20px;
}
.btn a:hover {
	color: #f2f2f2;
}
.btn06 a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	transform: rotate(45deg) translateY(-50%);
	width: 6px;
	height: 6px;
	border-width: 2px 2px 0 0;
	border-style: solid;
	border-color: #fff;
}

.btn06 a:hover {
	background-color: #665a1a;
	border: 1px solid #252525;
}

.btn06 a:hover::after {
	border-color: #f2f2f2 #f2f2f2 transparent transparent;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
.redlink{line-height: 1.5;		/*行間*/}
.redlink a {
	font-size:15px;
	font-weight:bold;
	color: #da81b2;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
.redlink a:hover {
	color: rgba(179,43,63,0.7);				/*マウスオン時の文字色*/
	text-decoration: none;		/*マウスオン時にリンクの下線を消す設定*/
}

/*パソコン・スマホ 表示・非表示設定*/
.pc_look {display:block;}
.m_look{display:none;}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
header {
	background: #fff;	/*背景色*/
}
header .inner {
	height: 125px;	/*ヘッダーの高さ*/
	position: relative;
}
h1{
	color: #000;
	font-size:14px;
	font-weight: normal;
	padding-left: 1.5%;
}
/*ロゴ画像*/
#logo img {
	width: 350px;	/*画像幅*/
	position: absolute;
	left: 1%;	/*左から3%の場所に配置*/
	top: 40px;	/*上から32pxの場所に配置*/
}
/*ヘッダー内ミニバナー*/
.minibanner {
	display: block;
	padding-top:55px;
}
/*ヘッダー右側のアイコン類*/
#h-nav {
	display: block;
	position: absolute;
	right: 3%;	/*右から3%の場所に配置*/
	top:20px;	/*上から34pxの場所に配置*/
}
/*ヘッダー右側のアイコン類（１個あたり）*/
#h-nav li {
	float: left;
	margin-left: 15px;	/*アイコン間の余白*/
}
/*ヘッダー右側のアイコン類（画像）*/
#h-nav li img {
	display: block;
	width: 55px;	/*幅*/
	height: 55px;	/*高さ*/
	background: #fff;	/*背景色*/
	border-radius: 50%;	/*角丸のサイズ。50%にすると正円になる。*/
}

#h-nav_m {display: none;}

/*電話アイコンのオンマウス文字表示設定*/
.mouse {
  position   : relative;
}
.mouse:hover .word {
  display: inline;
}

/*電話アイコンのオンマウス文字スタイル設定*/
.word {
  position   : absolute;
  display: none;
  padding: 2px;
  color: #fff;
  border-radius: 5px;
  background-color:#26a159;
  width:200px;
  top: 63px;
  left: -75px;
  font-size: 14px;
  text-align: center;
}

/*ヘッダー内リンクバナー画像オンマウス透過の設定*/
header .link :hover {
	opacity: 0.8;	/*透明度0.6は60%の透明度という意味*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}

#m_mainimg {display: none;}			/* 表示形式 */

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar {
	background: #da81b2;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#da81b2, rgba(218,129,178,0.8) 100%);/*グラデーション*/
	overflow: hidden;
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;
	text-align: center;			/* 文字揃え */
	font-family:"游ゴシック","Yu Gothic",serif;	/*フォント種類*/
	margin-left: 3%;
	overflow: hidden;
	letter-spacing: 0.3em;
	color: #fff;	/*文字色*/
	line-height: 22px;	/*高さ。ここを変える場合、fixmenu.cssの「body.is-fixed header」のサイズも変える。*/
	padding-top: 4px;	/*上にあける余白。下の「border-bottom」のサイズと合わせる。*/
	padding-left: 0.3em;	/*上のletter-spacingの数字と揃える*/

}
#menubar li a {
	color: #fff;	/*文字色*/
	text-decoration: none;
	display: block;
}
/*下線のアニメーション設定*/
#menubar li::after {
	-webkit-transition: 0.5s;transition: 0.5s;	/*0.5秒かけてアニメーションを実行する。*/
	content: "";
	display: block;
	border-bottom: 4px solid #F7E7CE;	/*下線の幅、線種、色*/
	position: relative;left: 0px;bottom: -4px;	/*bottomのサイズは上のborder-bottomの数字と合わせる。マイナス記号は残したまま。*/
}
#menubar li:hover::after,#menubar li.current-menu-item::after {bottom: 0px;}

/*menubarコンテンツ内のspanタグ設定*/
#menubar span {
	display: block;
	font-size: 10px;	/*文字サイズ*/
	text-align: center;			/* 文字揃え */
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	letter-spacing: normal;	/*文字間隔を標準に戻す設定*/
}

/*ドロップダウンメニュー用
---------------------------------------------------------------------------*/
/*ドロップダウンブロックの設定*/
#menubar ul.ddmenu {
	position: absolute;
	z-index: 6;
	padding-top: 4px;
	margin-left: -9px;
	font-size: 13px;	/*文字サイズ*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	background: rgba(218,129,178,0.8);
	border-bottom: 1px solid #fff;
	width: 250px;		/*メニュー幅*/
	text-align: left;			/* 文字揃え */
	padding: 3px 5px 7px 5px;
}
/*オンマウス時の設定*/
#menubar ul.ddmenu li:hover{ 
	-webkit-transition: 0.5s;transition: 0.5s;	/*0.5秒かけてアニメーションを実行する。*/
	content: "";
	background: rgba(218,129,178,0.8);	/*背景色。rgbaは色設定で255,255,255は白。0.9は透明度90%の事。*/
	text-decoration: underline;
}
/*下線のアニメーションなしの設定*/
#menubar ul.ddmenu li::after { border-bottom: none;}

/*小さい端末用(画面幅800px以下)メニューを表示させない*/
#menubar-s {display: none;}
.moji {display:none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	margin: 3% 3% 3% 3%;	/*ボックスの外側にとる余白*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツブロック*/
#main {
	float: right;	/*右に回り込み*/
	width: 72%;		/*ボックス幅*/
}
/*メインコンテンツブロック（１カラム時）*/
.c1 #main {
	float: none;
	width: 100%;
}
/*メインコンテンツのh2タグ*/
#main h2 {
	clear: both;
	margin-bottom: 20px;
	padding: 8px 20px;	/*上下、左右への余白*/
	color: #252525;	/*文字色*/
	font-size: 20px;
	font-family:"游ゴシック","Yu Gothic",serif;	/*フォント種類*/
}
#main h2::first-letter {
	border-left: 3px solid #da81b2;	/*左側のアクセントラインの幅、線種、色*/
	padding: 20px 0px 20px 10px;
}
/*メインコンテンツのh3タグ*/
#main h3 {
	clear: both;
	padding: 0.2em;/*文字周りの余白*/
	margin-bottom:20px;
	color: #252525;/*文字色*/
	background: rgba(177,160,138,0.3);/*背景色*/
	border-bottom: solid 3px #b1a08a;/*下線*/
	font-size: 20px;
	font-family:"游ゴシック","Yu Gothic",serif;	/*フォント種類*/
}
#main h3::first-letter {
	padding-left: 10px;
}
/*h3タグ赤ver.の設定*/
#main .garnet {
	color: #942343;/*文字色*/
	background: rgba(148,35,67,0.1);/*背景色*/
	border-bottom: solid 3px #942343;/*下線*/
}

/*メインコンテンツの段落タグ*/
#main p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}

/*SERVICEページ
---------------------------------------------------------------------------*/
/*各ボックスの設定（共通）*/
#main .list {
	background: #fff;	/*背景色*/
	position: relative;
	overflow: hidden;
	box-shadow: 1px 1px 3px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、広げる幅、0,0,0は黒で0.2は透明度20%の事。*/
	margin-bottom: 20px;
}
#main .list a {
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*画像の設定*/
#main .list img.img {
	float: left;
	width: 25%;	/*画像の幅。ここを変更する場合は、下の.list .textのmargin-leftの数字も調整する。*/
}
/*右側のテキスト欄*/
#main .list .text {
	padding: 2% 60px 2% 2%;	/*上、右、下、左への余白*/
	margin-left: 27%;		/*左の画像とのバランスをとって設定*/
}
/*h4見出しタグの設定*/
#main .list h4 {
	color: #5f5f5f;	/*文字色*/
}
/*pタグの設定*/
#main .list p {
	padding: 0 !important;
}

/*背景色なしのボックスの設定*/
#main .list_wht {
	margin: 20px 0px 20px 0px;	/*ボックスの下に空ける余白*/
	padding: 15px 10px 0px 15px;		/*ボックス内の余白*/
	overflow: hidden;	/*飛び出る要素を消す設定。これがないと右下に入れる帯が飛び出る。*/
	text-shadow: none;	/*文字の影をなくす設定。残すとぼやけて見づらいので。*/
	position: relative;	/*右下の帯を絶対配置させる為に必要なスタイルです*/
	background: #ffffff; /* Old browsers */
	border: 1px solid #888888;	/*枠線の幅、線種、色*/
	border-radius: 5px;
	z-index: 0;
}
#main .list_wht a {
	text-decoration: none;	/* 下線など */
}
#main .list_wht a :hover {
	opacity: 0.9;	/*透明度0.6は60%の透明度という意味*/
}
/*ボックス内の段落タグ設定*/
.list_wht p {
	padding: 20px 0px 20px 0px;
}
/*ボックス内の写真設定*/
#main .list_wht figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 30%;		/*写真の幅*/
	background: #fff;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 1%;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 5px;
	margin-right: 1%
}
/*ボックス内のh3タグ設定*/
#main .list_wht h3 {
	margin: 5px 0px 10px 0px;
	color: #e95464;/*文字色*/
	background: none;/*背景色*/
	border-bottom: none;/*下線*/
}
#main .list_wht h3::first-letter {
	background: none;	/*左側のアクセントラインの幅、線種、色*/
	padding: 15px 0px 3px 0px;
}
/*h3タグ直下に画像がある場合の段落タグ設定*/
#main .list_wht h3 + figure ~ p {
	margin-left: 32%;	/*左側の写真幅とのバランスをとって設定*/
}
/*h3タグ直下に画像がある場合のtableタグ設定*/
#main .list_wht h3 + figure ~ table {
	margin-left: 34%;	/*左側の写真幅とのバランスをとって設定*/
	width: 65%;			/*テーブル幅*/
}

/*背景グラデーションのボックスの設定
---------------------------------------------------------------------------*/
#main .list_gradation {
	margin-bottom: 25px;	/*ボックスの下に空ける余白*/
	padding: 0 15px 5px 15px;		/*ボックス内の余白*/
	overflow: hidden;	/*飛び出る要素を消す設定。これがないと右下に入れる帯が飛び出る。*/
	text-shadow: none;	/*文字の影をなくす設定。残すとぼやけて見づらいので。*/
	position: relative;	/*右下の帯を絶対配置させる為に必要なスタイルです*/
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+70,ffe6e6+100 */
background: #fff; /* Old browsers */
background: -moz-linear-gradient(top,  #fff 0%, #fff 70%, #EDE8E6 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #fff 0%,#fff 70%,#EDE8E6 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #fff 0%,#fff 70%,#EDE8E6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#EDE8E6',GradientType=0 ); /* IE6-9 */
	border: 1px solid #888888;	/*枠線の幅、線種、色*/
	border-radius: 5px;
	z-index: 0;
}
#main .list_gradation a {
	text-decoration: none;	/* 下線など */
}
#main .list_gradation a :hover {
	opacity: 0.9;	/*透明度0.6は60%の透明度という意味*/
}
/*ボックス内の段落タグ設定*/
.list_gradation p {
	padding: 2px 0 20px 10px;
}
/*ボックス内の写真設定*/
#main .list_gradation figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 40%;		/*写真の幅*/
	background: #fff;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 1%;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 5px;
	margin-right: 1%
}
/*ボックス内のh4タグ設定*/
#main .list_gradation h4 {
	margin: 5px 0px 10px 0px;
	color: #5f5f5f;/*文字色*/
	font-size:18px;
	background: none;/*背景色*/
}
#main .list_gradation h4::first-letter {
	background: none;	/*左側のアクセントラインの幅、線種、色*/
	padding: 15px 0px 3px 0px;
}
/*h4タグ直下に画像がある場合の段落タグ設定*/
#main .list_gradation h4 + figure ~ p {
	margin-left: 42%;	/*左側の写真幅とのバランスをとって設定*/
}
/*h4タグ直下に画像がある場合のtableタグ設定*/
#main .list_gradation h4 + figure ~ table {
	margin-left: 34%;	/*左側の写真幅とのバランスをとって設定*/
	width: 65%;			/*テーブル幅*/
}

/*写真左配置、枠なしのボックス
---------------------------------------------------------------------------*/
.list_l {
	margin: 0px 15px 15px 15px;	/*ボックス外に空ける余白*/
	padding: 10px 0px 5px 5px;		/*ボックス内の余白*/
	overflow: hidden;	/*飛び出る要素を消す設定。これがないと右下に入れる帯が飛び出る。*/
	position: relative;	/*右下の帯を絶対配置させる為に必要なスタイルです*/
	border-radius: 5px;/*枠線の角丸*/
}
/*ボックス内の段落タグ設定*/
.list_l p {
	padding: 0px;
}
/*ボックス内の写真設定*/
.list_l figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 40%;		/*写真の幅*/
	background: none;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 1%;			/*余白。ここに上の行で設定した背景色が出ます。*/
	margin-right: 1%
}
/*ボックス内のh4タグ設定*/
.list_l h4 {
	margin: 5px 0px 10px 0px;
	color: #5f5f5f;/*文字色*/
	font-size:20px;
	background: none;/*背景色*/
}
/*h4タグ直下に画像がある場合の段落タグ設定*/
.list_l h4 + figure ~ p {
	margin: 5px 0 0 41%;	/*左側の写真幅とのバランスをとって設定*/
}

/*写真右配置、枠なしのボックス
---------------------------------------------------------------------------*/
.list_r {
	margin: 0px 15px 15px 0px;	/*ボックス外に空ける余白*/
	padding: 10px 0px 5px 0px;		/*ボックス内の余白*/
	overflow: hidden;	/*飛び出る要素を消す設定。これがないと右下に入れる帯が飛び出る。*/
	position: relative;	/*右下の帯を絶対配置させる為に必要なスタイルです*/
	border-radius: 5px;/*枠線の角丸*/
}
/*ボックス内の段落タグ設定*/
.list_r p {
	padding: 0px;
}
/*ボックス内の写真設定*/
.list_r figure img {
	float: right;	/*画像を右へ回り込み*/
	width: 40%;		/*写真の幅*/
	background: none;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 1%;			/*余白。ここに上の行で設定した背景色が出ます。*/
	margin-right: 1%
}
/*ボックス内のh4タグ設定*/
.list_r h4 {
	margin: 5px 0px 10px 20px;
	font-size:20px;
	color: #5f5f5f;/*文字色*/
	background: none;/*背景色*/
}
/*h4タグ直下に画像がある場合の段落タグ設定*/
.list_r h4 + figure ~ p {
	margin: 5px 0 0 5px;	/*左側の写真幅とのバランスをとって設定*/
}

/*３カラムタイプのボックス設定*/
#main .list.c3 {
	width: 31%;	/*ボックスの幅*/
	margin: 20px 1% 40px;	/*上、左右、下へのボックスの外側にとる余白*/
	float: left;
	height: 300px;	/*高さ。下の「.list.c3 a」のheightと合わせる。*/
	text-align: center;	/*文字をセンタリング*/
}
#main .list.c3 a {
	height: 300px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	color: #252525;
}
#main .list.c3 a:hover {
	opacity: 0.8;	/*透明度0.6は60%の透明度という意味*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	color: #252525;
}
/*３カラムタイプの画像設定*/
#main .list.c3 img.img {
	float: none;
	width: 100%;
}
#main .list.c3 .text {
	padding: 5px;
	margin-left: 0;
	line-height: 1.5;
}
#main .list.c3 h4{
	margin: 0 0 0 0;
	font-size: 17px;
	width: 100%;
	border: none;
}
/*ボックスにリンク指定がされた場合に出る「→」マーク*/
#main .list a::before {
	content: "→";	/*この文字を出す。他の文字に変えても可だが機種依存文字は化けるので使わない。*/
	position: absolute;
	right: 20px;	/*ボックスの右から20pxの場所に配置*/
	top: 190px;		/*ボックスの上から20pxの場所に配置*/
	background: #b1a08a;	/*背景色（古いブラウザ用）*/
	background: #b1a08a;	/*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 4px;		/*角丸のサイズ*/
	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/
	text-align: center;
}
/*１カラムでページを表示時の３カラムボックスの高さ*/
.c1 #main .list.c3,
.c1 #main .list.c3 a {
	height: 400px;
}

/*レンタルリストテーブル
---------------------------------------------------------------------------*/
.example table {
	float: left;
	width: 31%;
	border: 1px #000000 solid;
	background-color: #ffffff;
	text-align: center;
	margin: 0px 1% 20px 1%;
}
.example td {
	border: 1px #000000 solid;
	padding: 2px 0px 2px 0px;
}
.example td a {
	color: #fff;
	background-color:#043c78;
	padding:3px 8px 3px 8px;
	text-decoration: none;		/*マウスオン時にリンクの下線を消す設定*/

}
.example td a:hover {
	color: #043c78;
	background-color:#fff;			/*マウスオン時の文字色*/
}
.example th {
	border: 1px #000000 solid;
	background: #043c78; 
	color: #fff;
	padding: 2px 5px 2px 5px;
	font-weight: bold;
}
.example th a {
	color: #fff;
}
.example th a:hover {
	color: #fff;
	text-decoration: none;		/*マウスオン時にリンクの下線を消す設定*/
}


/*ターム*/
#main .list .terms {
	color: #999;	/*文字色*/
	font-size: 12px;	/*文字サイズ*/
}

/*ブログページ
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .blog {
	overflow: hidden;
	margin-bottom: 20px;	/*ボックス同士の上下に空けるスペース*/
}
#main .blog a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	border: 5px solid #dddddd;	/*枠線の幅、線種、色*/
	padding: 20px;			/*ボックス内の余白*/
	background: #fff;
	color: #252525;				/*文字色*/
}
/*マウスオン時*/
#main .blog a:hover {
	border: 5px solid #043c78;	/*マウスオン時の枠線の設定*/
	color: #000;				/*文字色*/
}
/*h3タグの設定*/
#main .blog h3 {
	border: none;
	background: transparent;
	padding: 0;
	color: #252525;	/*文字色*/
	font-size: 20px;	/*文字サイズ*/
}
/*段落タグ*/
#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: #252525;		/*文字色*/
}
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 #dddddd;	/*枠線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
	color: #252525;			/*文字色*/
	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%の事。*/
}
/*「次回のコメントで使用するためブラウザーに自分の名前、メールアドレス、サイトを保存する。」チェックと文字を非表示*/
.comment-form-cookies-consent {display:none;}

/*サブコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツブロック*/
#sub {
	float: left;	/*左に回り込み*/
	width: 24%;		/*幅*/
}
/*メインコンテンツブロック（１カラム時）*/
.c1 #sub {
	display: none;	/*非表示にする設定*/
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	padding: 0px 15px;	/*上下、左右へのボックス内の余白*/
	background: none;	/*背景色（サンプルテンプレートでは以下のキーボードやグリーンの背景画像とともに設定しているので注意）*/
	padding: 0.3rem 0.7rem;
	border-top: 4px double #acacac;
	border-bottom: 4px double #acacac;
	font-size: 18px;
	font-family:"游ゴシック","Yu Gothic",serif;	/*フォント種類*/
}
/*navの直後にnavとh2が続いた場合と、navタグの直後にh2が続いた場合に、h2の上のラインを消す設定*/
#sub nav + nav h2,
#sub nav + h2 {
	border-top: none;
}
/*subコンテンツ内のh2タグ内のspanタグ設定*/
#sub h2 span {
	display: block;
	font-size: 13px;	/*文字サイズ*/
	letter-spacing: normal;	/*文字間隔を標準に戻す設定*/
}
/*bg1背景（キーボード）、bg2背景（グリーン）共通設定*/
#sub h2.bg1, #sub h2.bg2 {
	padding: 40px 15px;		/*上下、左右へのボックス内の余白*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準にする設定*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
	font-size: 28px;		/*文字サイズ*/
	line-height: 1.5;		/*行間*/
}
/*bg1背景（キーボード）*/
#sub h2.bg1 {
	background: #fff url(../images/bg1.png) no-repeat right center;	/*背景色、背景画像読み込み、rightは右寄せ、center上下の中央という意味*/
}
/*bg2背景（グリーン）*/
#sub h2.bg2 {
	background: #fff url(../images/bg2.png) no-repeat right center;	/*背景色、背景画像読み込み、rightは右寄せ、center上下の中央という意味*/
}
/*subコンテンツ内のpタグ設定*/
#sub p {
	padding: 15px;
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub .submenu {
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
}
/*h2タグの直後にsubmenuが入った場合にsubmenuの上のラインを消す設定*/
#sub h2 + .submenu {
	border-top: none;
}
/*メニュー１個ごとの設定*/
#sub .submenu a {
	display: block;
	text-decoration: none;
}
#sub .submenu li {
	padding: 7px 12px;	/*上下、左右へのメニュー内の余白*/
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
}
/*「>」マーク*/
#sub .submenu li::before {
	display: block;
	float: right;	/*右側に配置*/
	content: "➤";	/*このテキストを表示させる。変更してもOKですが機種依存文字は使わないように。*/
	color: #b32b3f;	/*文字色*/
}
/*マウスオン時の「>」マーク*/
#sub .submenu li:hover::before {
	color: rgba(179,43,63,0.7);	/*文字色*/
}
/*liタグが入れ子になった場合*/
#sub .submenu li li {
	padding: 0px 0px 0px 10px;
	border: none;
}

/*subコンテンツ内のbox1と、ウィジェットの各メニュー用追加
---------------------------------------------------------------------------*/
#sub .box1,
#sub .widget_archive, #sub .widget_categories, #sub .widget_pages {
	overflow: hidden;
	padding: 10px;			/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	border: solid 1px #dcdcdc;	/*線の線種、幅、色*/
	box-shadow: 0px 0px 20px rgba(177,160,138,0.5) inset;	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒の事で0.1は透明度10%の事。insetは内側への影、という意味。*/
}
/*h2直下にbox1が続いた場合のみ、box1の上の線を消す設定*/
#sub h2 + .box1 {
	border-top: none;
}

/*subコンテンツ内のlistボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub .list {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	font-size: 12px;				/*文字サイズ*/
	line-height: 1.2;				/*行間*/
	overflow: hidden;
	padding: 7px 0;
}
#sub .list a {
	overflow: hidden;
}
/*subコンテンツ内のbox内のlist内のh2タグ設定*/
#sub .box1 .list h2 {
	background: transparent;
	padding: 0;
	margin-bottom: 5px;
	border: none;
	font-size: 16px;
	font-family:"游ゴシック","Yu Gothic",serif;	/*フォント種類*/
	text-align: left;	/*文字を左側に*/
	font-weight: bold;
}
/*ボックス内の画像の設定*/
#sub .list figure img {
	float: left;	/*左に回り込み*/
	margin-right: 10px;
	width: 25%;		/*画像幅*/
}
/*最後のボックスの下線を消す設定*/
#sub .list:last-child {
	border-bottom: none;
}
/*段落タグ*/
#sub .list p {
	padding: 0;
}

/*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: #785d3c;	/*リンクテキストの色*/
}

/*カスタムフィールド出力用（擬似テーブル）
---------------------------------------------------------------------------*/
/*ブロック全体*/
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;
}
.pagetop a {
	text-decoration: none;
	text-align: center;
	display: block;
	float: center;
	width: 50px;
	margin: 0 auto;
	margin-bottom: 20px;
	color: #FFF;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	padding: 2px 0px;	/*上下、左右へのボックス内余白*/
	background: #da81b2;	/*背景色*/
	border-radius: 20px;	/*角丸のサイズ。左上、右上、右下、左下。*/
}
/*マウスオン時*/
.pagetop a:hover {
	background: rgba(218,129,178,0.8);	/*背景色*/
	color: #fff;			/*文字色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
}
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: rgba(177,160,138,0.3);	/*背景色*/
	color:#252525;
}
#copyright a {
	text-decoration: none;
	color: #252525;
}
#copyright a:hover {
	color: #252525;
}


/*お知らせ用の設定
---------------------------------------------------------------------------*/
/*ボックス１個あたり*/
.news {
	padding: 5px 20px;	/*上下、左右へのボックス内の余白*/
}
/*日付ブロック*/
.news dt {display:none;}

/*日付ブロック元の設定ここから
---------------------------------------------------------------------------
.news dt {
	float: left;	左に回り込み
	width: 0px;		幅。日付の出力を変更した際はここも調整して下さい。
	color: #043c78;	文字色
}
※使用するときは上の「.news dt {display:none;}」を消して、解説の部分にコメントタグを入れること
---------------------------------------------------------------------------
アイコン（共通）元の設定ここまで*/

/*アイコンとテキストブロック（日付以外の部分）*/
.news dd {
	padding-left: 0px;	/*左に空ける余白。上の日付のwidthと合わせる。*/
	position: relative;
	border-bottom: 1px solid #eee;	/*下線の幅、線種、色*/
}
/*投稿内のh4見出し*/
.news h4 {
	font-size: 18px;
	font-weight: bold;	/*太字にする設定*/
	text-align: center;
	border-bottom: 4px double #454545;
	margin:-30px 0px 15px 0px;
	padding: 0px 5px 0px 0px;
}
/*段落タグ*/
.news p {
	padding: 0 !important;
}
/*コメント*/
.news .comment {
	padding: 35px 0px 0px 0px;	/*左に空ける余白。上の「.news dt」や「.news dd」のwidthの値に「1」追加したぐらいでOK。*/
	margin-bottom:50px;
}
/*アイコン（共通）*/
.news .category a {display: none;}

/*アイコン（共通）元の設定ここから
---------------------------------------------------------------------------
.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 .category a {display: none;}」を消して、解説の部分にコメントタグを入れること
---------------------------------------------------------------------------
アイコン（共通）元の設定ここまで*/

/*アイコン「news」*/
.news .category-news .category a {
	background: #785d3c;	/*背景色*/
	color: #FFF;
}

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

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

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 70%;
	line-height: 1.5;
	padding: 0 5px;
	border-radius: 2px;
	margin: 0px 5px;
	display: inline-block;
	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: #785d3c;}

/*ページナビ
---------------------------------------------------------------------------*/
/*ボックス全体*/
.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;	/*枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	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: "»"}

/*コンタクトフォームチェックボックス改行タグ
---------------------------------------------------------------------------*/
span.wpcf7-list-item {
display: block;
}

/*トップページNEWS「Content Views」設定タグ
---------------------------------------------------------------------------*/
#main .pt-cv-wrapper  {
margin:0px 0px 0px 1%;}

#main .pt-cv-wrapper a {
	background: #b1a08a;	/*背景色*/
	border:none;
}
#main .pt-cv-wrapper a:hover {
	background: #252525;	/*背景色*/
}
#main .pt-cv-title a {
	background:none;
	border:none;
}
#main .pt-cv-title a:hover {
	background:none;
}
#main .carousel-control {
	color:#fff;
}

/*その他
---------------------------------------------------------------------------*/
.look {color:#fff;background: #666;padding:5px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {color: #24140e;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fr {float: right;margin-left: 1%;margin-bottom: 15px;width: 45%;}
.fl {float: left;margin-right: 1%;margin-bottom: 15px;width: 45%;}
.big1 {font-size: 30px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}
.sh {display: none;}
.dn {display: none;}
.size18{font-size: 18px; font-weight: bold;}
.size13{font-size: 13px; font-weight: bold;}
.indigo18{font-size: 18px; color: #043c78; font-weight: bold;}
.garnet18{font-size: 18px; color: #b32b3f; font-weight: bold;}
.red18{font-size: 18px; color: #ff0000; font-weight: bold;}
.red13{font-size: 13px; color: #ff0000; font-weight: bold;}
/*フォームの必須項目タグ*/
.redwaku{
	background-color:#fff;
	font-size:14px;
	color: #ff0000;
	font-weight: bold;
	border: 1px solid #ff0000;
	border-radius:3px;
	padding:2px;
}
/*フォームの任意項目タグ*/
.greenwaku{
	background-color:#fff;
	font-size:14px;
	color: #008000;
	font-weight: bold;
	border: 1px solid #008000;
	border-radius:3px;
	padding:2px;}
/*1文字目がデカいフォントタグ*/
.firstmoji {
  font-size: 20px;
  line-height: 1;		/*行間*/
}
.firstmoji::first-letter {
  font-weight: bold;
  font-size: 33px;
  color: #b32b3f;
}


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

/*SERVICEページ
---------------------------------------------------------------------------*/
/*３カラムタイプのボックスの高さ*/
#main .list.c3,
#main .list.c3 a {
	height: 380px;
}
/*１カラムでページを表示時の３カラムボックスの幅*/
.c1 #main .list.c3 {
	width: 23%;
}

}



/*画面幅1600px以上の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1600px){

/*SERVICEページ
---------------------------------------------------------------------------*/
/*３カラムタイプのボックスの高さ*/
#main .list.c3,
#main .list.c3 a {
	height: 450px;
}
/*１カラムでページを表示時の３カラムボックスの幅*/
.c1 #main .list.c3 {
	width: 18%;
}
/*共通*/
#main .list.c3,
.c1 #main .list.c3 {
	max-width: 400px;	/*この幅以上には広がらないようにする*/
}

}



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

/*パソコン・スマホ 表示・非表示設定*/
.pc_look{display:none;}
.m_look{display:block;}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
header {
	background: rgba(255,255,255,0.9);
	position: fixed; /* 固定 */
	top: 0; /* 一番上に表示 */
	width: 100%; /* 中央に表示 */
	z-index: 3;
	border-bottom: 1px solid #000;	/*背景色*/
}
/*ヘッダー右側のアイコン類*/
header .inner {
	height: 34px;	/*ヘッダーの高さ*/
	position: relative;
}
h1 {display: none;}
/*ロゴ画像*/
#logo img {
	width: 250px;	/*画像幅*/
	left: 13%;	/*左から3%の場所に配置*/
	top: 18px;	/*上から32pxの場所に配置*/
}

#h-nav {
	right: 20%;	/*右から20%の場所に配置*/
}

/*ヘッダー内ミニバナー*/
.minibanner {display: none;}

/*ヘッダー右側のアイコン類*/
#h-nav {display: none;}
#h-nav_m {
	display: block;
	position: absolute;
	right: 0px;	/*右から3%の場所に配置*/
	top:0px;	/*上から34pxの場所に配置*/
}
/*ヘッダー右側のアイコン類（１個あたり）*/
#h-nav_m li {
	float: left;
}
/*ヘッダー右側のアイコン類（画像）*/
#h-nav_m li img {
	display: block;
	width: 53px;	/*幅*/
	height: 60px;	/*高さ*/
	background: #fff;	/*背景色*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar-s {
	display: block;	/*小さい端末用(画面幅900px以下)メニューを非表示から表示に切り替える*/
	position: fixed; /* 固定 */
	background: rgba(218,129,178,0.8);
	overflow: hidden;
	z-index: 2;
	width: 100%;		/*幅*/
}
/*メニュー１個あたりの設定*/
#menubar-s li {
	float: left;
}
#menubar-s li a {
	text-decoration: none;
	display: block;
	text-align: center;
	line-height: 40px;		/*行間（高さ）*/
	color: #fff;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
}
#menubar-s li:nth-child(even) a {
	border-right: none;
}
/*大きな端末用(画面幅801px以上)メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	z-index: 4;
	background: #b1a08a;
	position: fixed; /* 固定 */
	top: 5px;		/*上から25pxの場所に配置*/
	left: 1%;		/*右から3%の場所に配置*/
	width: 30px;	/*幅*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	padding: 7px 10px 1px;	/*上、左右、下へのボックス内余白*/
}
body.home #menubar_hdr {
	border: 1px solid #fff;	/*トップページでの枠線の幅、線種、色*/
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 3px solid #fff;	/*枠線の幅、線種、色*/
	margin-bottom: 5px;			/*バー同士の余白*/
}
body.home #menubar_hdr span {
	border-top: 3px solid #fff;	/*トップページでの枠線の幅、線種、色*/
}

.moji {
	display: block;
	font-size: 13px;
	letter-spacing: 1.5px;
	font-weight: bold;
	padding:0px 0px 0px 10px;
}

/*メイン画像*/
#mainimg {
	display: none;				/* 表示形式 */
}

#m_mainimg {
	display: block;				/* 表示形式 */
	clear: left;
	width: 100%;
	margin: 0 auto;
	margin-top:60px;
	position: relative;
	z-index: 1;
}

#main h2 {font-size: 18px;}
#main h3 {font-size: 18px;}

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

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	margin: 25px 2% 1% 2%;	/*ボックスの外側にとる余白*/
}

/*ボックスにリンク指定がされた場合に出る「→」マーク*/
#main .list a::before {
	top: 125px;		/*ボックスの上から20pxの場所に配置*/
}

/*背景色なしのボックスの設定*/
#main .list_wht {
	padding: 10px 10px 10px 10px;		/*ボックス内の余白*/
}
/*ボックス内の段落タグ設定*/
#main .list_wht p {
	padding: 0px 0px 0px 0px;
}

/*背景グラデーションのボックスの設定
---------------------------------------------------------------------------*/
#main .list_gradation figure img {
	float: none;
	margin-right: 0;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin-bottom: 10px;
}
#main .list_gradation h4{font-size:17px;}
/*ボックスh4タグ直下に画像がある場合の段落タグ設定*/
#main .list_gradation h4 + figure ~ p {
	margin: 5px -15px 0 -5px;	/*左側の写真幅とのバランスをとって設定*/
}

/*ボックスの段落タグ*/
#main .list_gradation p {
	padding: 0px 5px 10px;	/*上、左右、下への余白*/
}


/*写真左配置、枠なしのボックス
---------------------------------------------------------------------------*/
.list_l {	
	margin: 0px 10px 15px 10px;	/*ボックス外に空ける余白*/
	padding: 10px 0px 5px 0px;		/*ボックス内の余白*/
}
.list_l figure img {
	float: none;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin: 0px 0px 0px 0px;
}
.list_l h4{font-size:18px;}

/*ボックスh4タグ直下に画像がある場合の段落タグ設定*/
.list_l h4 + figure ~ p {
	margin: 5px -10px 0 -10px;	/*左側の写真幅とのバランスをとって設定*/
}
/*メインコンテンツの段落タグ*/
.list_l p {
	padding: 0px 0px 0px;	/*上、左右、下への余白*/
}

/*写真右配置、枠なしのボックス
---------------------------------------------------------------------------*/
.list_r figure img {
	float: none;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin: 0px 0px 0px 0px;
}
.list_r h4{font-size:18px;}
/*ボックスh4タグ直下に画像がある場合の段落タグ設定*/
.list_r h4 + figure ~ p {
	margin: 5px -10px 0 -10px;	/*左側の写真幅とのバランスをとって設定*/
}
/*メインコンテンツの段落タグ*/
.list_r p {
	padding: 0px 0px 0px;	/*上、左右、下への余白*/
}

/*料金表テーブル
---------------------------------------------------------------------------*/
.example table {
	width: 48%;
	margin: 0px 1% 20px 1%;
}
.example td {font-size:13px;}

/*ta1の左側ボックス*/
.example th {font-size:13px;}


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

/*トップページNEWS「Content Views」(スマホ用に一時期使ったスライド型)設定タグ
---------------------------------------------------------------------------*/
#main .pt-cv-wrapper  {
margin:0px 15px 0px 15px;}


/*ブログコメント欄設定タグ
---------------------------------------------------------------------------*/
/*inputタグ、textareaタグ*/
#respond input, #respond textarea {width: 95%;}
/*フォームの左側の見出し*/
#respond label {
	width: 95%;
	text-align: left;
	vertical-align: top;
}
.submit {
	color:#252525;
	font-size:14px;
}


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

}



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

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
#logo img {
	width: 190px;	/*画像幅*/
	left: 17%;	/*左から3%の場所に配置*/
	top: 20px;	/*上から32pxの場所に配置*/
}
.moji {padding:0px 0px 0px 6px;}

}



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

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s li {
	float: none;
	width: 100%;
}
#menubar-s li a {
	border-right: none;
}

/*SERVICEページ
---------------------------------------------------------------------------*/
/*画像の設定*/
#main .list img.img {
	float: none;
	width: 100%;
}
/*右側のテキスト欄*/
#main .list .text {
	padding: 2%;
	margin-left: 0;
}
/*３カラムタイプのボックス設定*/
#main .list.c3 {
	width: auto;
	margin: 0 0 20px;
	float: none;
	height: auto;
}
#main .list.c3 a {
	height: auto;
}
/*ボックスにリンク指定がされた場合に出る「→」マーク*/
#main .list a::before {
	top: 240px;		/*ボックスの上から20pxの場所に配置*/
}

/*ブログページのフィードバック以降のブロック
---------------------------------------------------------------------------*/
/*「返信」した記事*/
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 {
	font-size: 15px;
	margin: 0px 10px 0px 10px;
}

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

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

}
