@charset "UTF-8";

/*------------------------------------------------------------
ブラウザ固有のCSSをリセット
-------------------------------------------------------------*/

*{ letter-spacing: 0; }

html{ overflow-y: scroll; }

body,div,ol,ul,li,
h1,h2,h3,h4,h5,h6,pre,form,fieldset,
input,p,blockquote{
	margin: 0;
	padding: 0;
}

address,caption,cite,code,dfn,var,h1,h2,h3,h4,h5,h6{
	font-style: normal;
	font-weight: normal;
}

h1,h2,h3,h4,h5,h6,small{
	font-size: 100%;
	font-weight: normal;
}

fieldset,img,abbr{ border: 0; }

caption{ text-align: left; }

q{ quotes: none; }

q:before,q:after{
	content: '';
	content: none;
}

a{ text-decoration: none; }

a:hover,
a:active{ outline: 0; }

img{
	border: 0;
	vertical-align: bottom;
	-ms-interpolation-mode: bicubic;
}

b,strong{ font-weight: bold; }

div{ word-wrap: break-word; }

sub,sup{
	position: relative;
	line-height: 0;
	vertical-align: baseline;
	font-size: 75%;
}
sup{ top: -0.5em; }
sub{ bottom: -0.25em; }

pre,code{
	font-size: 1em;
	font-family: sans-serif;
}

pre{
	overflow: auto;
	white-space: pre-wrap;
	word-wrap: break-word;
}

form{ margin: 0; }

button,input,select,textarea,optgroup,option{
	margin: 0;
	font-family: sans-serif;
	font-size: 100%;
	vertical-align: baseline;
}

* html button,
* html input,
* html select,
* html textarea{ vertical-align: middle; } /* IE6 */

*+html button,
*+html input,
*+html select,
*+html textarea{ vertical-align: middle; } /* IE7 */

button,input{ line-height: normal; }

* html button,
* html input{ overflow: visible; } /* IE6 */

*+html button,
*+html input{ overflow: visible; } /* IE7 */

textarea{
	overflow: auto;
	vertical-align: top;
}

input[type="text"],textarea{ padding: 2px; }

button,
input[type="button"],
input[type="reset"],
input[type="submit"]{ -webkit-appearance: button; }

button::-moz-focus-inner,
input::-moz-focus-inner{
	margin: 0;
	padding: 0;
	border: 0;
}

/*--------------------------------------------------------
レイアウトの初期設定
-------------------------------------------------------*/
body{
	font-family: 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	font-size: 62.5%;
	font-style: normal;
	color:#000000;
	line-height: 2.0;
}

table{
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	word-break: break-all;
	word-wrap: break-word;
}

* html table{ border-collapse: collapse; } /* IE6 */
*+html table{ border-collapse: collapse; } /* IE7 */

hr{
	clear: both;
	height: 1px;
	margin: 0 0 1.5em;
	padding: 0;
	border: 0;
	border-top: 1px solid #ccc;
	color: #ccc;
	font-size: 1.0em;
	line-height: 1.0em;
}
* html hr{ margin: 0 0 1.2em; } /* IE6 */
*+html hr{ margin: 0 0 1.2em; } /* IE7 */


/*--------------------------------------------------------
モバイル時に表示させる/させない
-------------------------------------------------------*/

/* モバイル時にのみ表示させる要素 */
.onlymbl{
	display:none;
}

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

.onlymbl{
	display:block;
}

/* モバイルで表示させない要素 */
.nombl{
	display:none!important;
}

} /*@media*/


/*--------------------------------------------------------
PS Auto Sitemap用（開発元リンクを非表示）
-------------------------------------------------------*/

.ps_auto_sitemap address{
	display:none;
}

/* ▼▼▼▼▼▼▼▼ヘッダーパーツ▼▼▼▼▼▼▼▼ */


/*==================================================
トップメニュー検索フォーム
--------------------------------------------------*/

#header-searchform {
	padding:0; 
	height:30px;
	-webkit-border-radius: 3px; 
	-moz-border-radius: 3px; 
	border-radius: 3px; 
}

/* 検索ボタン */
.search-btn{ 
	float:right;
	display:block;
	cursor: pointer;
	width:28px!important;
	height:28px!important;
  	background: url(/assets/icon-search-white.png) center no-repeat;
  	-webkit-background-size: 28px 28px;
 	background-size: 28px 28px;
	margin-left:6px;
}

/* 入力部分 */

.search-input { 
	color:#888888; 
	display:none;
	position:absolute;
	top: 100%; /* 出現位置 (#headerが起点) */
	right:0px; /* 出現位置 (#headerが起点) */
	width:50%; /* 横幅 (#containerが起点) */
	z-index:999!important;
	background:#EFEFEF;
	border:solid 1px #CCCCCC;
	padding:20px;
	text-align:center;
}

/* 通常時：フォームを隠す */
.search-input{ display: none; }

/* ボタンクリック時：メニューを表示 */
.showInput{
	display: block!important;
}

#header-searchform input[type=text] { 
	-webkit-appearance: none; 
	outline: none; 
	top:3px !important; 
	width:70%;
	height:30px;
	-webkit-border-radius: 3px; 
	-moz-border-radius: 3px; 
	border-radius: 3px;
-moz-box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.5);
-webkit-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.5);
box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.5);
	border:solid 1px #CCCCCC;
	color:#999;
	padding-left:10px;
	font-size:14px;
	margin:0!important;
}

#header-searchform input[type=submit]{
	-webkit-appearance: none;
	outline: none;
	border:none!important;
	-webkit-border-radius: 3px; 
	-moz-border-radius: 3px; 
	border-radius: 3px;
	background:#333333;
	color:#FFFFFF;
	padding:11px 12px 11px 12px;
	cursor: pointer;
	margin:0!important;
}

#header-searchform input[type="text"]::-webkit-search-decoration, 
#header-searchform input[type="text"]::-webkit-search-cancel-button {
 display: none;
}

/*==================================================
トップメニューフォントサイズ変更
--------------------------------------------------*/
#header-bar-fontsize { 
	float:left; 
	margin:0;
	margin:0 10px 5px 10px;
}

#f-minus { 
	float:left; 
	margin:0 5px 0 0; 
	width:25px; 
	height:25px; 
	cursor:pointer; 
	background:url(/assets/hb-font-minus.png) 0 0 no-repeat; 
}

#f-reset { 
	float:left; 
	margin:0 5px 0 0; 
	width:70px; 
	height:25px; 
	cursor:pointer; 
	background:url(/assets/hb-font-reset.png) 0 0 no-repeat; 
}

#f-plus { 
	float:left; 
	width:25px; 
	height:25px; 
	cursor:pointer; 
	background:url(/assets/hb-font-plus.png) 0 0 no-repeat; 
}

#f-minus:hover, #f-reset:hover, #f-plus:hover { background-position:0 -25px; }

/*==================================================
トップメニューSNSボタン
--------------------------------------------------*/
#header-bar-links { 
	float:right; 
}

#header-bar-links li { 
	float:left; 
	width:28px; 
	height:28px;
	margin-right:6px;
	list-style:none;
	cursor: pointer;
}
#header-bar-links li a { 
	display:block; 
	width:28px; 
	height:28px;
}

#header-bar-links li.blog-fc2 a { background:url(/assets/hb-bt-fc2.png) 0 0 no-repeat; }
#header-bar-links li.blog-ameba a { background:url(/assets/hb-bt-ameba.png) 0 0 no-repeat; }
#header-bar-links li.blog-hamazo a { background:url(/assets/hb-bt-hamazo.png) 0 0 no-repeat; }
#header-bar-links li.blog-yahoo a { background:url(/assets/hb-bt-yahoo.png) 0 0 no-repeat; }
#header-bar-links li.blog-eshizuoka a { background:url(/assets/hb-bt-eshizuoka.png) 0 0 no-repeat; }

#header-bar-links li.blog-ameba a:hover, 
#header-bar-links li.blog-hamazo a:hover, 
#header-bar-links li.blog-yahoo a:hover, 
#header-bar-links li.blog-eshizuoka a:hover, 
#header-bar-links li.blog-fc2 a:hover{ 
	background-position:0 -25px; 
}

/*==================================================
ヘッダーパーツ（レスポンシブ時）
--------------------------------------------------*/

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

#header-bar-sitesearch,
#header-searchform{
	border:none;
	padding:0;
	margin:0;
	froat:left;
}

.search-input { 
	width:90%;
	padding:5%;
}



#header-bar-fontsize{
	display:none;
}

#header-bar-links{
	width:100%;
	float:none;
	border:none;
	padding:0;
	height:auto;
}

}

/*--------------------------------------------------------
ソーシャルボックス（スクロール追従型）
-------------------------------------------------------*/
/*
#social_box {
	display: inline-block;
	display:none;
   	position:fixed;
   	left:10px;
   	top:200px;
   	background:#FFFFFF;	
   	padding:6px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;	
}

.hatena-box{min-width:80px;max-width:125px; margin-top:10px;}
.facebook-box{min-width:70px;max-width:200px; margin-top:10px;}
.twitter-box{min-width:87px;max-width:90px; margin-top:10px;}
.gplus-box{min-width:50px;max-width:80px; margin-top:10px;}
*/

/* スマホ版 */
/*
@media
only screen and (max-width : 640px){

#social_box {
    display:block!important;
    position:static;
    padding:10px 2px 10px 2px!important;
}

.hatena-box,
.facebook-box,
.twitter-box,
.gplus-box{
	float:left;
	width:22%!important;
	margin-left:5px;
}

}*/

/*--------------------------------------------------------
ソーシャルボックス（固定型）
-------------------------------------------------------*/

#social_box2 {
    display: block;
    padding:10px 6px 20px 6px;
    margin-bottom:20px!important;
    margin-top:20px!important;
}

.hatena-box{
	min-width:80px;
	max-width:125px; 
	margin-left:10px;
	float:left;
}
.facebook-box{
	min-width:70px;
	max-width:200px; 
	margin-left:10px;
	float:left;
}
.twitter-box{
	min-width:87px;
	max-width:90px; 
	margin-left:10px;
	float:left;
}
.gplus-box{
	min-width:50px;
	max-width:80px; 
	margin-left:10px;
	float:left;
}

/* スマホ版 */
@media
only screen and (max-width : 640px){

#social_box2 {
	margin-bottom:20px!important;
	padding-bottom:40px!important;	
}

.hatena-box,
.facebook-box,
.twitter-box,
.gplus-box{
	float:left;
	width:22%!important;
	margin-left:5px!important;
}

}/* media */

/*-----------------------------------------------------
フォーム
-----------------------------------------------------*/


/* ボタン（黒立体バージョン） 
input[type="submit"],input[type="reset"],input[type="button"]{
padding:3px 10px;
background: #4f4d4d;
background: -moz-linear-gradient(top, #4f4d4d 0%, #2e2c2c 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4f4d4d), color-stop(100%,#2e2c2c));
background: -webkit-linear-gradient(top, #4f4d4d 0%,#2e2c2c 100%);
background: -o-linear-gradient(top, #4f4d4d 0%,#2e2c2c 100%);
background: -ms-linear-gradient(top, #4f4d4d 0%,#2e2c2c 100%);
background: linear-gradient(to bottom, #4f4d4d 0%,#2e2c2c 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4f4d4d', endColorstr='#2e2c2c',GradientType=0 );
border:0;
border-radius:3px;
-webkit-border-radius:3px;
-moz-border-radius:3px;
line-height:1.5;
font-size:100%;
color:#fff;
}*/

/* ボタン（黒立体バージョン）：フォーカス時 
input[type="submit"]:hover,input[type="reset"]:hover,input[type="button"]:hover{
background: #4f4d4d;
background: -moz-linear-gradient(top, #2e2c2c 0%, #4f4d4d 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2e2c2c), color-stop(100%,#4f4d4d));
background: -webkit-linear-gradient(top, #2e2c2c 0%,#4f4d4d 100%);
background: -o-linear-gradient(top, #2e2c2c 0%,#4f4d4d 100%);
background: -ms-linear-gradient(top, #2e2c2c 0%,#4f4d4d 100%);
background: linear-gradient(to bottom, #2e2c2c 0%,#4f4d4d 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e2c2c', endColorstr='#4f4d4d',GradientType=0 );
}*/


/*--------------------------------------------------------
コンタクトフォーム7用 For contact form7
-------------------------------------------------------*/

▼▼▼フォーム部分囲み※クラス名変更不可▼▼▼
.contact_form{

}

/* 背景色 */
.contact_form .form_bg{
	/*display:block;*/
	width:92%;
	padding:4%;
	background:#FFFFFF;
	border:solid 1px #CCCCCC;
	-webkit-border-radius: 3px; 
	-moz-border-radius: 3px; 
	border-radius: 3px;
	-moz-box-shadow: 2px 2px 2px #EFEFEF;
	-webkit-box-shadow: 2px 2px 2px #EFEFEF;
	box-shadow: 2px 2px 2px #EFEFEF;
}

/* 確認画面の背景色 */
.confirm .form_bg{
 	background: #ffffe4!important;
	border:solid 1px #CCCCCC;
}


▼▼▼▼▼▼▼▼ラベル▼▼▼▼▼▼▼▼   
.form-title {
   margin-bottom:10px;
   color: #000;
   }

/* 確認画面でのみ表示する */
.confirm_title{
	display:none;
}

▼▼▼▼▼▼▼▼入力欄▼▼▼▼▼▼▼▼

 /* テキスト＆テキストエリア */
.wpcf7 input[type="text"],
.wpcf7-text,
.wpcf7 input[type="textarea"],
.wpcf7-textarea{
	display:block;	
	margin: 6px 0 24px;
	padding: 10px  10px  10px  10px!important;
	width: 84%!important;
	border:solid 1px #CCCCCC;
	-webkit-border-radius: 3px; 
	-moz-border-radius: 3px; 
	border-radius: 3px;
	color: #636063;
	font-size: 16px;
	background-color: #F1F1F1;
}
 
 /* テキスト＆テキストエリア：フォーカス時 */
.wpcf7 input[type="text"]:focus,
.wpcf7-text:focus,
.wpcf7 input[type="textarea"]:focus,
.wpcf7-textarea:focus{
 	background: #ffffe4!important;
	-moz-box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.5);
	-webkit-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.5);
	box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.5);
}

/* スマホ表示時 */
@media
only screen and (max-width : 640px){

.wpcf7 input[type="text"],
.wpcf7-text,
.wpcf7 input[type="textarea"],
.wpcf7-textarea{
		width: 91%!important;
}

}/* @media */
/* ▼▼▼▼▼▼▼▼セレクトボックス▼▼▼▼▼▼▼▼ */ 
.wpcf7-select,
.wpcf7 .wpcf7-select{
	margin: 6px 0 24px;
    	-webkit-appearance:button;
    	-moz-appearance:button;
    	appearance:button;
	padding:10px 6px 10px 16px;
	background:#EFEFEF;
	border:solid 1px #CCCCCC;
	-webkit-border-radius: 3px; 
	-moz-border-radius: 3px; 
	border-radius: 3px;
}

.wpcf7-select:focus,
.wpcf7 .wpcf7-select:focus{
	background:#ffffe4!important;
}

/* ▼▼▼▼▼▼▼▼チェックボックス▼▼▼▼▼▼▼▼ */

.wpcf7 input[type="checkbox"]{
	margin-top:15px!important;
}

span.wpcf7-list-item{
	margin:15px;
}

/* ▼▼▼▼▼▼▼▼日付入力欄▼▼▼▼▼▼▼▼ */
.wpcf7 input[type="date"],
.wpcf7-date{
	margin: 6px 0 24px;
    	-webkit-appearance:button;
    	-moz-appearance:button;
    	appearance:button;
	padding:10px 6px 10px 16px;
	background:#EFEFEF;
	border:solid 1px #CCCCCC;
	-webkit-border-radius: 3px; 
	-moz-border-radius: 3px; 
	border-radius: 3px;
}



/* ▼▼▼▼▼▼▼▼個人情報確認欄▼▼▼▼▼▼▼▼ */

#privacy_check{
	margin:20px auto 10px auto;
	width:96%;
	padding:2%;
	/*background:#EFEFEF;*/
	border:solid 1px #CCCCCC;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
}

#privacy_check .scr {
  	overflow: scroll;   /* スクロール表示 */ 
	height: 60px;
	margin:10px auto 10px auto;
	border:solid 1px #CCC;
	width:96%;
	padding:2%;
	font-size:0.8em;
}

/*▼▼▼▼▼▼▼▼ボタン▼▼▼▼▼▼▼▼ */ 

/* ボタン囲み */
.submit-container {		
   margin:30px auto 20px auto;
   text-align:center!important;
   }


 /* 単色バージョン */
.wpcf7 input[type="button"],
.wpcf7 input[type="submit"],
.wpcf7-form-control.wpcf7-submit{
	cursor:pointer;
 	width: 40%;
	height: 40px;
	border: none!important;
	background: #333!important;
	color:#FFF;
	font-weight:bold;
	-webkit-border-radius: 3px; 
	-moz-border-radius: 3px; 
	border-radius: 3px; 		
	margin:0 5px 0 5px;
}
 
 /* 単色バージョン：フォーカス時 */
.wpcf7 input[type="button"]:hover,
.wpcf7 input[type="submit"]:hover,
.wpcf7-form-control.wpcf7-submit:hover{
	filter: alpha(opacity=80);
	opacity: .6;
	-moz-transition: all 0.7s ease;
	-webkit-transition: all 0.7s ease;
}


/* ▼▼▼▼▼▼▼▼入力確認画面の表示▼▼▼▼▼▼▼▼ */

.confirm .confirm_title{
	display:block;
	font-weight:bold;
	font-size:1.0em;
	text-align:center;
}

.confirm .wpcf7 input[type="text"],
.confirm .wpcf7-text,
.confirm .wpcf7 input[type="text"]:focus,
.confirm .wpcf7-text:focus
.confirm .wpcf7 input[type="textarea"],
.confirm .wpcf7-textarea,
.confirm .wpcf7 input[type="textarea"]:focus,
.confirm .wpcf7-textarea:focus,
.confirm .wpcf7-select,
.confirm .wpcf7 input[type="date"],
.confirm .wpcf7-date{
	margin:0;
	padding:4px!important;
	border:none!important;
 	background: #ffffe4!important;
	font-weight:bold;
	color:#CC0000!important;
}

.confirm input::-webkit-input-placeholder,
.confirm input:-moz-placeholder {
  color:#FFF!important;
}

.confirm #privacy_check{
	display:none!important;
}