@charset "UTF-8";
/*---------------------------------------------------------
Theme Name: neru
Theme URI: https://neru-sleep.com/
Description: yamatsu
Author: ty
Author URI: https://yamatsu-web.com/
Version: 20180928
---------------------------------------------------------*/
/************************************
** ベース文字サイズ
************************************/
html{
    font-size: 62.5%; /* sets the base font to 10px for easier math */
	}

/************************************
** Typography
************************************/
blockquote{
	margin-bottom: 2em;
	margin-left: 20px;
	padding-left: 20px;
	border-left: 5px solid #ddd;
}


/************************************
** WordPress Misc
************************************/
.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.alignleft {
	float: left;
}

.alignright {
	float: right;
}

img.alignright {
    display: inline-block;
    margin: 0 0 1em 1.5em;
}

img.alignleft {
    display: inline-block;
    margin: 0 1.5em 1em 0;
}
h2.widgettitle{
	font-size: 14px; font-size: 1.4rem;
	}

/* Reset css
---------------------------------------------------------*/
*{
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, "ＭＳ Ｐゴシック", sans-serif;
	margin: 0;
	padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
	font-style:normal;
	font-weight: normal;
	vertical-align: baseline;
	}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
	}

html{
    overflow-y: scroll;
	}
body {
    position: relative;
	-webkit-text-size-adjust: 100%;
	min-width: 320px;
	word-wrap: break-word;
	color: #444;
}
blockquote, q {
	quotes: none;
	}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
	}

a { }
input, textarea,{
	margin: 0;
	padding: 0;
	}
input[type="text"],input[type="search"],textarea {
    -webkit-appearance: none;
    border-radius: 0;
	background: #FFF;
	border: 1px solid #999;
	border-radius: 3px; 
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px; 
	}
input[type="text"]:focus,input[type="search"]:focus,textarea:focus {
	outline: 0;
	border-color: #0090bc;
	}

img{ 
    vertical-align : middle;
	border: none;
	max-width: 100%;
    }
ol, ul{
	list-style:none;
	margin: 0;
	padding: 0;
	line-height: 1.6;
	}
table{
    border-collapse: collapse; 
    border-spacing:0;
	}
caption, th{
    text-align: left;
	}

a:focus {
	outline:none;
	}
.cf:after { /*floatの解除、ここがポイント*/
    display:block;
    clear:both;
    height:0px;
    visibility:hidden;
    content:".";
    }
	
.clear{ clear: both;}

fieldset{
	border: none;
	}

input[type=text], select { 
   outline: none;
}

input ,select {
	position: relative;
	top: 5px;
}
input[type="radio"] { height:20px;width:20px;margin:0 3px 10px 5px; } 
input[type="checkbox"] { height:20px;width:20px;margin:0 3px 10px 5px; }

/* リンクの色 */
a {
	color: #0033cc;
}
/* リンクにマウスオーバーした時の色 */
a:hover {
	color: #b22222;
}
video, object {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: bottom;
	display: block;
}
/* 画像リンクのマウスオーバーに透かし */
a:hover img {
	-moz-opacity: 0.8;
	opacity: 0.8;
}
img.size-full, img.size-large {
	margin-bottom: 10px;
	height: auto;
	max-width: 100%;
}
.wp-caption{
	height: auto;
	max-width: 100%;
}

/* ブログ記事内の画像 */
.blog_content img{
	margin-bottom: 1.5em;
	}
/* ブログ記事内のサムネイル */
.attachment-post-thumbnail{
	width: 100px;
	height: 100px;
	object-fit: cover;
	}
@media only screen and (min-width: 768px) {
.attachment-post-thumbnail{
	width: 100%;
	height: 100%;
	object-fit: contain;
	}
	}

/************************************
** 表示（Display）
************************************/
/* スマホで非表示しない */
.smanone, .smanone-inline, .smanone-cell {
	display: none;
}
/* スマホのみセンタリング */
.smacenter {
	display: block;
	margin: 0 auto;
}

@media only screen and (min-width: 768px) {	
/************************************
** 表示切替
************************************/
.smanone {
	display: block;
	}
.pcnone {
	display: none !important;
	}
.smanone-inline {
    display: inline;
	}
.smanone-cell {
    display: table-cell;
	}
/* スマホのみセンタリング */
.smacenter {
	margin: 0;
}
	
}
@media (min-width: 768px) {
.tabpcnone {
	display: none !important;
	}
}
@media only screen and (max-width: 1031px) {
.smatabnone {
	display: none !important;
	}
}


/************************************
** 入力フォーム（input）
************************************/
input[type="text"],
input[type="url"],
input[type="password"],
input[type="email"],
input[type="search"],
input[type="tel"],
textarea {
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
  color: #333;
  display: block;
  line-height: 1.42857;
  padding: 6px 12px;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


/* レイアウト
---------------------------------------------------------*/
/************************************
** スマートフォン用レイアウト
************************************/
body{ }
.wrapper {
}
article{
    line-height: 1.8;
	}
article { * zoom: 1;}
article:after {
    content: "";
	display: block;
	clear: both;
	}
	
.content{
	width: 100%;
	position: relative;
	z-index: 0;
	overflow-x:hidden;
	background: #FFF;
	}
.content_in{
    width: 100%;
}
.post{
	overflow: hidden;
	border: none;
    padding: 10px;
	padding-bottom: 2em;
	}
.post-full{
	padding-bottom: 2em;
	}
p{
	margin-bottom: 30px;
	}
	
.side{
	padding: 0 10px;
	}
section {
}

/* トップ用2カラムブロック */
.main_2col_wrap{
	padding: 30px 10px;
	}

@media only screen and (min-width: 768px) {
/************************************
** タブレット＆PCレイアウト
************************************/
body { 
  width: 100%;
  }
.wrapper {
}
.content_in, .content_in_full, content_in_page{
    width: 100%;
	}
		
.content{
	overflow:hidden;
	background: #FFF;
	}
.content_in{
	position: relative;
    overflow: hidden;
	padding: 20px 20px 20px 20px;
	background: #FFF;
}
.content_in_full{
	position: relative;
    overflow: hidden;
	background: #FFF;
	padding: 0;
}

.post {
    width: 100%;
	padding: 0;
	}
	
.post-full {
    width: 100%;
	padding: 0;
}

}

@media only screen and (min-width: 1031px) {
/************************************
** タブレット＆PCレイアウト
************************************/
body { min-width: 1240px;}
.content{
	}
.content_in{
	width: 1030px;
	margin: 0 auto;
	}
		
.content_in_full{
	width: 1030px;
	margin: 0 auto;
	}
	
}

/* フォントサイズ設定
---------------------------------------------------------*/
/************************************
** スマホ
************************************/
body{
	font-size: 16px; font-size: 1.6rem;
    }
.post table{
    }
h1,h2,h3,h4,h5,
.post h2, .post h3, .post h4, .post h5,
ol,ul,li,
ul.list,ul.number,p{
	max-height: 100%;
    }
textarea.txt-template {
	font-size: 16px; font-size: 1.6rem;
	border-color: #0090bc;
	}
.txt_small{
	font-size: 12px; font-size: 1.2rem;
	}
.txt_ssmall{
	font-size: 11px; font-size: 1.1rem;
	}
.txt_small_sponly{
	font-size: 14px;
	}
.txt_middle{
	font-size: 14px; font-size: 1.4rem;
	}
.txt_bigbigbig{
	font-size: 24px; font-size: 2.4rem;
	}
.txt_bigbig{
	font-size: 20px; font-size: 2.0rem;
	}
.txt_big{
	font-size: 18px; font-size: 1.8rem;
	}
.txt_top_title{
	font-size: 20px; font-size: 2.0rem; font-weight: bold;
	}
@media only screen and (min-width: 1031px) {
.txt_tiop_title{
	font-size: 32px; font-size: 3.2rem; font-weight: bold;
	}
}
	
/* 記事タイトル */
/************************************
** 見出し（H1-6）
************************************/
h1,h2,h3,h4,h5{ font-weight: normal; line-height: 1.2; color: #333;}

h1{	font-size: 24px; font-size: 2.4rem;}
h2{	font-size: 22px; font-size: 2.2rem;}
h3{	font-size: 18px; font-size: 1.8rem;}
h1,h2,h3{
	margin-bottom: 1em;
	}

h4{	font-size: 16px; font-size: 1.6rem;
	margin-bottom: 1em;
	}
h5{	font-size: 16px; font-size: 1.6rem;}

/* ブログ見出し */
.entry_title{
	font-weight: bold;
	background:rgba(0,0,0,.04);
	padding:.8em 16px;
	border:solid rgba(0,0,0,.08);
	border-width:2px 0;
	position:relative;
	clear:both;
}
.entry_title:before{
	width:200px;
	width:min(32.877vw,200px);
	content:"";
	height:2px;
	background:#309fd7;
	position:absolute;
	left:0;top:-2px;
	}
.entry_title a{text-decoration:none}

h1.deco , .post-full h1.deco{font-size: 24px; font-size: 2.4rem;}
.post h2.deco, h3.deco{
  padding: .7em .7em .65em 2.5em;
  border: 1px solid #ccc;
  border-top: 3px solid #38A0D7;
  background: url(img/icon/moon.png) center left 7px no-repeat, -webkit-linear-gradient(top, #fff 0%, #f0f0f0 100%), linear-gradient(to bottom, #fff 0%, #f0f0f0 100%);
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 1) inset;
  margin-right: -10px;
  margin-left: -10px;
  }
h3.catch{
  font-size: 20px; font-size: 2.0rem;
  }
  
h1.decora, h2.decora{
	background:url(img/base/bg_title_h2.png) no-repeat top center;
	padding-top: 72px;
	color: #207AA6;
	text-align: center;
	font-weight: bold;
	}
.post h2, .post-full h2{
	font-size: 22px; font-size: 2.2rem;
	background:#33a8e3;
	color: #FFFFFF;
	border-radius: 5px;
	padding: .7em;
	text-align: left;
	}
.post h3, .post-full h3{
	font-size: 22px; font-size: 2.2rem;
	border-top: 1px solid #2987b6;
	border-bottom: 1px solid #309fd7;
	padding: .5em .2em .5em .2em;
	text-align: left;
	color: #2987b6;
	fot-weight: bold;
	}
.post h2.no_bg{
	background:none;
	padding: 0;
	}
  
.post h2.kotira, .post-full h2.kotira{
  font-weight: bold;
  font-size: 24px; font-size: 2.4rem;
  padding: 1.8em 5em 0 0;
  border-bottom: 10px solid #48311a;
  background: url(img/sozai/pause_kotira.png) bottom right no-repeat;
  background-size: 150px 150px;
  min-height: 150px;
  color: #444;
  }
.post h2.kotira span, .post-full h2.kotira span{
  display: inline;
  font-weight: bold;
  font-size: 30px; font-size: 3.0rem;
  }
  
.post-full h2.guts,.post-full h3.guts,.post h2.guts,.post h3.guts{
  font-weight: bold;
  font-size: 24px; font-size: 2.4rem;
  padding: 1.8em 5em 0 0;
  border-top: none;
  border-bottom: 10px solid #48311a;
  background: url(img/sozai/pause_guts.png) bottom right no-repeat;
  background-size: 150px 150px;
  min-height: 150px;
  color: #444;
  }
.post-full h2.guts span,.post-full h3.guts span,.post h2.guts span,.post h3.guts span{
  display: inline;
  font-weight: bold;
  font-size: 30px; font-size: 3.0rem;
  }
  
.title_caution{
  padding: .5em .5em .5em 2.5em;
  border-top: none;
  border-bottom: 1px dashed #555;
  background: url(img/icon/caution.png) left 5px center no-repeat;
  background-size: 22px 20px;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 1) inset;
  }
  	
.post-full h2.kyoutyou,.post h2.kyoutyou,.post-full h3.kyoutyou,.post h3.kyoutyou{
  font-weight: bold;
  font-size: 24px; font-size: 2.4rem;
  padding: .5em .5em .5em 1em;
  border-top: none;
  border-bottom: 10px solid #48311a;
  color: #444;
  background-color: transparent;
  }
.post-full h2.kyoutyou span,.post h2.kyoutyou span,.post-full h3.kyoutyou span,.post h3.kyoutyou span{
  display: inline;
  font-weight: bold;
  font-size: 30px; font-size: 3.0rem;
  }
  	
.post-full h2.kyoutyou_noline,.post h2.kyoutyou_noline,.post-full h3.kyoutyou_noline,.post h3.kyoutyou_noline{
  font-weight: bold;
  font-size: 24px; font-size: 2.4rem;
  padding: .3em;
  color: #444;
  }
.post-full h2.kyoutyou_noline span,.post h2.kyoutyou_noline span,.post-full h3.kyoutyou_noline span,.post h3.kyoutyou_noline span{
  display: inline;
  font-weight: bold;
  font-size: 30px; font-size: 3.0rem;
  }
/* 2colorborder見出し
.post h3{
	position: relative;
	overflow: hidden;
	padding: .25em 0 .75em 0;
	}
.post h3::before,
.post h3::after{
	content: "";
	position: absolute;
	bottom: -2px;
}
.post h3:before{
	border-bottom: 6px solid #22924E;
	width: 100%;
}
.post h3:after{
	border-bottom: 6px solid #D8D8D8;
	width: 100%;
} */
.post h4{
	border-bottom: 3px solid #D8D8D8;
	padding: .25em 0 .5em 0;
	}

/* ワードプレス */
.wp-caption-text a, .wp-caption-text{
	font-size: 12px; font-size: 1.2rem;
	color: #ccc;
}
/* 投稿日など */
.blogbox {
	display: none;
	}

@media only screen and (min-width: 768px) {
h1.deco, .post-full h1.deco{
  font-size: 32px; font-size: 3.2rem;
	}

.post h2.deco, h3.deco{
  background: url(img/icon/moon.png) center left 10px no-repeat, -webkit-linear-gradient(top, #fff 0%, #f0f0f0 100%), linear-gradient(to bottom, #fff 0%, #f0f0f0 100%);
  margin-right: 0;
  margin-left: 0;
  }
h3.catch{
  font-size: 30px; font-size: 3.0rem;
  }
.txt_small{
	font-size: 12px; font-size: 1.2rem;
	}
.txt_ssmall{
	font-size: 11px; font-size: 1.1rem;
	}
.txt_small_sponly{
	font-size: 12px; font-size: 1.2rem;
	}
.txt_big{
	font-size: 22px; font-size: 2.2rem;
	}
.txt_bigbig{
	font-size: 30px; font-size: 3.0rem;
	}
.txt_bigbigbig{
	font-size: 36px; font-size: 3.6rem;
	}
}

@media only screen and (min-width: 1031px) {
/************************************
** フォントサイズ設定（タブレット＆PC）
************************************/
body{
    font-size: 16px; font-size: 1.6rem;
}

.post p {
	line-height: 2;
	}
.txt_small{
	font-size: 13px; font-size: 1.3rem;
	}
.txt_ssmall{
	font-size: 13px; font-size: 1.3rem;
	}
.txt_small_sponly{
	font-size: 14px;
	}

/************************************
** 見出し（H1-6）
************************************/
/* 見出しのフォントサイズ */
h1.entry_title{ font-size: 32px; font-size: 3.2rem;}
h1.deco, .post-full h1.deco{
  font-size: 40px; font-size: 4.0rem;
	}
h2{ font-size: 24px; font-size: 2.4rem;}

h3,h4,h5{
    font-size: 20px; font-size: 2.0rem;
    }

/* ブログ見出し */
h1.entry_title{
  }
p.entry_title{
  font-weight: bold;
  font-size: 32px; font-size: 3.2rem;
  }
.post h2,.post-full h2{
  font-size: 32px; font-size: 3.2rem;
  line-height: 1.2;
  }
.post h3, .post-full h3{
	font-size: 24px; font-size: 2.4rem;
	padding: .75em .2em .5em .75em;
	}
.post-full h2.kotira{
  font-weight: bold;
  font-size: 36px; font-size: 3.6rem;
  border-bottom: 15px solid #48311a;
  padding: 1.1em 4.5em 0 0;
  background-size: 200px 200px;
  min-height: 200px;
  background: url(img/sozai/pause_kotira.png) bottom right 30px no-repeat;
  background-color: none;
  }
.post-full h2.kotira span{
  font-size: 42px; font-size: 4.2rem;
  }
  
.post h2.kotira{
  font-weight: bold;
  font-size: 36px; font-size: 3.6rem;
  border-bottom: 15px solid #48311a;
  padding: 1.1em 4.5em 0 0;
  background-size: 200px 200px;
  min-height: 200px;
  background: url(img/sozai/pause_kotira.png) bottom right 30px no-repeat;
  background-color: none;
  }
.post h2.kotira span{
  font-size: 42px; font-size: 4.2rem;
  }
  
  
.post-full h2.guts,.post-full h3.guts,.post h2.guts,.post h3.guts{
  font-weight: bold;
  font-size: 36px; font-size: 3.6rem;
  border-bottom: 15px solid #48311a;
  padding: 1.1em 4.5em 0 0;
  background-size: 200px 200px;
  min-height: 200px;
  background: url(img/sozai/pause_guts.png) bottom right 30px no-repeat;
  background-color: none;
  }
.post-full h2.guts span,.post-full h3.guts span,.post h2.guts span,.post h3.guts span{
  font-size: 42px; font-size: 4.2rem;
  }
  
.post-full h2.kyoutyou,.post h2.kyoutyou,.post-full h3.kyoutyou,.post h3.kyoutyou{
  font-weight: bold;
  font-size: 36px; font-size: 3.6rem;
  border-bottom: 15px solid #48311a;
  padding: .5em .5em .5em 1em;
  background-color: transparent;
  }
.post-full h2.kyoutyou span,.post h2.kyoutyou span,.post-full h3.kyoutyou span,.post h3.kyoutyou span{
  font-size: 42px; font-size: 4.2rem;
  }
.post-full h2.kyoutyou_noline,.post h2.kyoutyou_noline,.post-full h3.kyoutyou_noline,.post h3.kyoutyou_noline{
  font-weight: bold;
  font-size: 32px; font-size: 3.2rem;
  }
.post-full h2.kyoutyou_noline span,.post h2.kyoutyou_noline span,.post-full h3.kyoutyou_noline span,.post h3.kyoutyou_noline span{
  font-size: 42px; font-size: 4.2rem;
  }
  
h3.catch{
  font-size: 32px; font-size: 3.2rem;
  }
/* 2colorborder見出し
.post h3{ padding: .5em 0 .75em 0;}
.post h3::before,
.post h3::after{
	content: "";
	position: absolute;
	bottom: -2px;
} */
	
/* 見出しのデザイン */
h1, h2, h3, h4, h5, h6{
	line-height: 1.1;
	}
	
.wp-caption-text a,.wp-caption-text{
	font-size: 14px; font-size: 1.4rem;
	}
}
	

/* リスト（ul,li）
---------------------------------------------------------*/
/* list */
ul.list{
	list-style: none;
	line-height: 1.4;
	margin-left: 5px; margin-bottom: 20px; padding: 0;
	}
ul.list-none{
	line-height: 1.8;
	}
.post table ul.list{
	margin-bottom: 0;
    }
.list li{
	position: relative;
	margin-bottom: 5px;
	padding: 8px 0 8px 22px;
}
.list li:before{
	position: absolute;
    top: 7px;
	left: 0;
	font-family: "FontAwesome";
    content: "\f046";
	text-shadow: 1px 1px 2px #CCC;
	padding: 0;
	color: #e63d00;
	}
.list li.title{
	padding-left: 0;
	}
.list li.title:before{
    content: "";
	}
ul.list_top{
	line-height: 1.2;
	margin-top: -15px;
	margin-bottom: 10px;
	}
ul.list_top li{
	padding: 4px 0 4px 22px;
	}
/* number */
ul.number{

	margin-left: 0; margin-bottom: 20px; padding: 0;
	}
ul.number li{
	margin-left: 25px; padding-bottom: 6px; padding-left: 0; list-style-type: decimal; background-image: none;
	margin-bottom: 10px;
	}
ul.number li:before{
	content:"";
	}

/* radio box */
ul.list-radio{
	list-style: none;
	line-height: 1.5;
	margin-left: 5px;
	}
ul.list-radio li{
	padding: 5px 0;
}

ul.list-radio li:first-child{
	padding-top: 10px;
	}
ul.list-radio li:last-child{
	padding-bottom: 10px;
	}

/* etc */
ul.mu0{
	margin-bottom: 0 !important;
	}

ul li.title{
	background: none;
	padding-left: 0;
	font-weight: bold;
	}
	
.list_line_simple{
	display: block;
	list-style: none;
	line-height: 1.5;
	margin: 0; padding: 0;
	}
	
.list_line_simple li{
	position: relative;
	padding: 8px 1em 8px 7px;
	display: inline-block;
}
.list_line_simple li:before{
	position: absolute;
    top: 7px;
	left: 0;
	font-family: "FontAwesome";
    content: "\f0da";
	text-shadow: 1px 1px 2px #CCC;
	padding: 0;
	color: #b31031;
	}	


/************************************
** リスト（dl,dt,dd）
************************************/
dl.default dt{
	font-weight: bold;
	margin: 0 0 10px 0;
	}
dl.default dd{
	margin: 0 0 15px 1em;
	}
	
dl.description dt{
	font-weight: bold;
	margin: 0 0 10px 0;
	}
dl.description dt a{font-weight: bold;}
dl.description dd{
	margin: 0 0 15px 1em;
	border: 1px dashed #CCC;
	padding: 7px;
	}
dl.description dd p:last-child{
	margin-bottom: 0;
	}

/* アンケートのQ＆A▶︎ */
.qa_ank *, .qa_ank *:after, .qa_ank *:before {
	font-family: 'FontAwesome', sans-serif;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.qa_ank dt,.qa_ank dd {
	position: relative;
	padding: 0.5em;
	box-shadow: 0px 1px 1px rgba(0,0,0,0.2);
	border-radius: 0.3em;
}
.qa_ank dt {
	margin: 0 3em 1em 3em;
	background: #ffe0b2;
}
.qa_ank dd {
	margin: 0 3em 3em 3em;
	background: #ceeaf7;
}
/* 吹き出し▶︎ */
.qa_ank dt::before,.qa_ank dd::before{
	position: absolute;
	z-index: 99;
	top: 0.5em;
	display: inline-block;
	width: 0;
	height: 0;
	content: '';
	border-style: solid;
}
/* 質問吹き出し▶︎ */
.qa_ank dt::before {
	left: -0.5em;
	border-width: 5px 8.7px 5px 0;
	border-color: transparent #ffe0b2 transparent transparent;
}
/* 答え吹き出し▶︎ */
.qa_ank dd::before {
	right: -0.5em;
	border-width: 5px 0 5px 8.7px;
	border-color: transparent transparent transparent #ceeaf7;
}
/* ?!アイコン */
.qa_ank dt::after,.qa_ank dd::after {
	font-size: 1.2em;
	position: absolute;
	top: 0;
	color: #ffffff;
	border-radius: 50%;
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	line-height: 1.2em;
}
/* ?アイコン */
.qa_ank dt::after {
	left: -2.5em;
	margin: 0 0.5em 0 0;
	padding: 0.2em 0.4em;
	content: '\f128';
	background: #f57c00;
}
/* !アイコン */
.qa_ank dd::after {
	right: -2.5em;
	margin: 0 0 0 0.5em;
	padding: 0.2em 0.55em;
	content: '\f12a';
	background: #309fd7;
}

@media only screen and (min-width: 1031px) {
/************************************
** リスト（ul,li）
************************************/
ul.number li{
	margin-left: 35px;}
	
ul.mu0{
	margin-bottom: 0;
	}
}


/*--------------------------------
横並びのナビゲーション
---------------------------------*/
.snavi {
	margin-bottom: 20px;
	line-height: 2;
	}
.snavi li {
	position: relative;
	display:inline-block;
	list-style-type:none;
	margin-right: 5px;
	}
.snavi li a {
	padding: 5px 5px 5px 11px;
	}
.snavi li a:before {
	position: absolute; top: -3px; left: 0;
	font-family: "FontAwesome";
    content: "\f0da";
	padding: 0;
	color: #C0392B;
	font-size: larger;
	text-shadow: 1px 1px 1px #BBB;
	}

.tab_link{
	overflow:hidden;
	border: 1px #CCC dashed;
	padding: 5px;
	background: #F9F9F9;
	margin-bottom: 10px;
	}
.tab_link li{
	float: left;
	background: #FFF;
	padding: 5px 15px;
	margin: 4px 8px 4px 4px;
	border: 1px #879de0 solid;
    border-radius: 5px; -webkit-border-radius: 5px;	-moz-border-radius: 5px;
	}
.tab_link li.title{
	float: none;
	background: none;
	border: none;
	padding: 5px 0;
	font-weight: bold;
	}


/* テーブル（Layout）
---------------------------------------------------------*/
.post table{
	width: 100%;
	border-top:1px solid #CCC;
	border-left:1px solid #CCC;
	border-collapse:collapse; border-spacing:0; empty-cells:show;
	margin-bottom: 20px;
}

.post tr:nth-child(even){
    background:#F3F3F3;
}
.post tr:nth-child(odd){
    background:#FFF;
}
.post th{
	background-color: #637180;
    color: #FFFFFF;
	border-right:1px solid #CCC; border-bottom:1px solid #CCC;
    padding: 5px;
    text-align: center;
}
.post td{
	border-right:1px solid #CCC;
	border-bottom:1px solid #CCC;
	padding: 5px;
}

table.txt_c{ text-align: center;}
th.vtop, td.vtop{ vertical-align: top;}
table.txt_l td{	text-align: left;}
table .ttd_c{ text-align: center;}
table .ttd_r{ text-align: right;}
table.mu0{ margin-bottom: 0 !important;}
		
/************************************
** シンプルテーブル（アンケート）
************************************/
table.tb_ank{
	width: 100%;
	border-top:1px solid #309fd7;
	border-left:1px solid #309fd7;
	border-collapse:collapse; border-spacing:0; empty-cells:show;
	margin-bottom: 2em;
}
table.tb_ank th{
	background-color: #207aa6;
    color: #FFFFFF;
	border-right:1px solid #309fd7; border-bottom:1px solid #309fd7;
    padding: 5px;
    text-align: center;
}
table.tb_ank td{
	border-right:1px solid #309fd7;
	border-bottom:1px solid #309fd7;
	padding: 5px;
}
		
/************************************
** メニュー用テーブル
************************************/
table.tb_menu{
	width: 100%;
	border-top:1px solid #309fd7;
	border-left:1px solid #309fd7;
	border-collapse:collapse; border-spacing:0; empty-cells:show;
	margin-bottom: 2em;
}
table.tb_menu th{
	background-color: #207aa6;
    color: #FFFFFF;
	border-right:1px solid #309fd7; border-bottom:1px solid #309fd7;
    padding: 5px;
    text-align: center;
}
table.tb_menu td{
	border-right:1px solid #309fd7;
	border-bottom:1px solid #309fd7;
	padding: 7px 3px 7px 3px;
}
table.tb_menu{
	font-size: 14px; font-size: 1.4rem;
}
table.tb_menu .txt_small{
	font-size: 12px; font-size: 1.2rem;
}
@media (min-width: 768px) {
table.tb_menu{
	font-size: 12px; font-size: 1.2rem;
}
table.tb_menu .txt_small{
	font-size: 12px; font-size: 1.2rem;
}
}
@media only screen and (min-width: 1031px) {
table.tb_menu{
	font-size: 16px; font-size: 1.6rem;
}
table.tb_menu .txt_small{
	font-size: 14px; font-size: 1.4rem;
}
}
table.tb_menu .bg_kugiri{
	background:#B6E3FE;
}

.link_menu_block {
	text-align: center;
	}
.link_menu_block a{
	text-decoration: none;
	color: #444;
	font-weight: bold;
	}
.link_menu_block span{
	width: 200px;
	display: block;
	padding: .5em 1em;
	border-radius: 2em;
	background: #F60;
	color: #FFF;
	margin: .5em auto 0;
	}

		
/************************************
** メニュー個別ページ料金表テーブル
************************************/
table.tb_menu_single {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #388ac2;
}

table.tb_menu_single td, table th {
  border: 1px solid #388ac2;
  padding: 8px;
}

/* 各行（tr）に枠線 */
table.tb_menu_single tr {
  border: 1px solid #388ac2;
}

/* 1列目の右側に線なし（2列目の左線を消す） */
table.tb_menu_single td:first-child,
table.tb_menu_single th:first-child {
  border-right: none;
}

/* 2列目の左側に線なし（1列目の右線を消す） */
table.tb_menu_single td:nth-child(2),
table.tb_menu_single th:nth-child(2) {
  border-left: none;
}

/************************************
** 固定ページ用2col枠なしテーブル
************************************/
.post table.tb-simple-2col{
	border-top:none;
	border-left:none;
	border-spacing: 5px;
}

.post .tb-simple-2col tr:nth-child(even),.post .tb-simple-2col tr:nth-child(odd){
    background:none;
}
.post .tb-simple-2col th{
	background-color: #FFF;
    color: #333;
	border-bottom:1px solid #FFF;
	border-right:none;
    padding: 10px 5px 10px 5px;
    text-align: left;
	font-weight: bold;
}
.post .tb-simple-2col td{
	border-bottom:1px solid #CCC;
	border-right:none;
    margin: 10px 5px 10px 5px;
}
.post .tb-simple-2col th:first-child, .post .tb-simple-2col td:first-child{
	padding-top: 0;
	}

/************************************
** ボーダーテーブル
************************************/
.post table.tb-price{
	border-top:none;
	border-left:none;
	border-spacing: 5px;
}
.post .tb-price tr:nth-child(even),.post .tb-price tr:nth-child(odd){
    background:none;
}

.post table.tb-price th{
	border-bottom:1px dashed #CCC;
	border-right: none;
	background: none;
	text-align: left;
    color: #333;
}
.post table.tb-price td{
	border-bottom:1px dashed #CCC;
	border-right: none;
	background: none;
	text-align: right;
}

/************************************
** トップ比較テーブル
************************************/
table.tb-hikaku{
	border-top:1px solid #309fd7;
	border-left:1px solid #309fd7;
	border-collapse:collapse; border-spacing:0; empty-cells:show;
	border-spacing: 5px;
}

table.tb-hikaku th{
	border-right:1px solid #309fd7; border-bottom:1px solid #309fd7;
	border-bottom:1px solid #309fd7;
	font-weight: bold;
	text-align: center;
	padding: 10px 2px;
}
table.tb-hikaku td{
	border-right:1px solid #309fd7; border-bottom:1px solid #309fd7;
	border-bottom:1px solid #309fd7;
	padding: 10px 5px;
}

table.tb-hikaku .first{
	background: #448CF2;
	color: #FFF;
}
table.tb-hikaku .th{
	background: #d1e7ff;
}
table.tb-hikaku .second{
	background: #e3f0fd;
}

/************************************
** ただの青枠テーブル
************************************/
table.tb-blue{
	border-top:1px solid #309fd7;
	border-left:1px solid #309fd7;
	border-collapse:collapse; border-spacing:0; empty-cells:show;
	border-spacing: 5px;
}

table.tb-blue td{
	border-right:1px solid #309fd7; border-bottom:1px solid #309fd7;
	border-bottom:1px solid #309fd7;
	padding: 10px 5px;
}


/************************************
** アイコンテーブル
************************************/

table.tb-icon td.td_list{
	padding: 10px 5px;
}


/* ヘッダー（header）
---------------------------------------------------------*/
/************************************
** スマホ
************************************/
header {
	position:relative;
    min-width: 100%;
    height:45px;
	background: rgba( 255, 255, 255, 0.8);
	box-shadow: 0px 8px 5px -5px rgba(0,0,0,0.05);
	-webkit-box-shadow: 0px 8px 5px -5px rgba(0,0,0,0.05);
	-moz-box-shadow: 0px 8px 5px -5px rgba(0,0,0,0.05);
}
.header_in{}
header .logo{
	display: block;
	width: 100%;
    float: none;
    text-align: center;
    margin: 0;
	padding-top: 6px;
	}
header .logo img{
	text-align: center;
	margin: 0 auto;
    max-height: 32px;
	}

@media only screen and (min-width: 768px) {
/************************************
** ヘッダー（header）
************************************/
}

@media only screen and (min-width: 1031px) {
/************************************
** ヘッダー（header）
************************************/
}
	
/* パンくずリスト（breadcrumb）
---------------------------------------------------------*/
/************************************
** スマホ
************************************/
.breadcrumb {
	display: block;
	width: 100%;
	padding: 10px;
	margin-top:10px;
	margin-bottom:10px;
	overflow-x: auto;
	overflow-y: hidden;
	font-size: 14px; font-size: 1.4rem;
	}
.breadcrumb::-webkit-scrollbar { height: 4px;}
.breadcrumb::-webkit-scrollbar-track { border-radius: 4px; background: #EAEAEA;}
.breadcrumb::-webkit-scrollbar-thumb { border-radius: 4px; background: #999;}
	
.breadcrumb ul{	display: table;}
	
.breadcrumb a {
	text-decoration: none;
	color: #666;
	}
.breadcrumb li {
	position: relative;
	display: table-cell;
	white-space: nowrap;
	padding: 0 12px 0 18px;
	}
.breadcrumb li:before {
	position: absolute;
    top: -3px;
	left: 0;
	font-family: "FontAwesome";
    content: "\f105";
	padding: 0;
	font-size: 18px; font-size: 1.8rem;
	}
.breadcrumb li.home:before {
	position: absolute;
    top: -3px;
	left: 0;
	font-family: "FontAwesome";
    content: "\f015";
	padding: 0;
	font-size: 18px; font-size: 1.8rem;
	}

@media only screen and (min-width: 768px) {
/************************************
** パンくずリスト
************************************/
.breadcrumb {
	background: none;
	padding: 0;
	font-size: 16px; font-size: 1.6rem;
	}
.breadcrumb ul{
    width: 100%;
	margin: 0 auto;
	display: block;
	padding: 0 15px;
	}
.breadcrumb li {
	display: inline-block;
	margin-right: 12px;
	padding: 0 0 0 18px;
}
.breadcrumb li:before {
	position: absolute;
    top: -3px;
	left: 0;
	padding: 0;
	font-size: 18px; font-size: 1.8rem;
}
.breadcrumb li.home:before {
	position: absolute;
    top: -3px;
	left: 0;
	padding: 0;
	font-size: 18px; font-size: 1.8rem;
}

.breadcrumb-page {
	position: absolute;
	top:10px; left:0;
	color: #FFF;
	}	
.breadcrumb-page a {
	color: #FFF;
}
.breadcrumb-page ul{
	margin-top: 0;
	}
.breadcrumb-page li:before {
	color: #FFF;
}
.breadcrumb-page li.home:before {
	color: #FFF;
}
}

@media only screen and (min-width: 1031px) {
/************************************
** パンくずリスト
************************************/
.breadcrumb {
	}
.breadcrumb ul{
    width: 100%;
	}
.breadcrumb li {}
.breadcrumb li:before {}
.breadcrumb li.home:before {}

.breadcrumb-page {}	
.breadcrumb-page a {}
.breadcrumb-page ul{}
.breadcrumb-page li:before {}
.breadcrumb-page li.home:before {}
}


/* フッター（footer）
---------------------------------------------------------*/
/************************************
** スマホ
************************************/
footer {
	width: 100%;
	clear: both;
	background: #E6F5FB;
}
.footer_in{
	width: 100%;
	padding: 20px 10px 30px 10px;
}
	
.footer_in .foot_logo{
	font-size: 12px; font-size: 1.2rem;
	margin-bottom: 0.5em;
	}
.footer_in .foot_logo a{
	display: block;
	text-decoration: none;
	color: #359FD7; 
	font-weight: bold;
	}
.footer_in .foot_logo img{
	max-width: 200px;
	}
	
.footer_in .address p{
	font-size: 13px; font-size: 1.3rem;
	line-height: 1.4;
	margin-bottom: 10px;
	color: #555;
	}
.footer_in .foot_adr_title{
	display: inline-block;
	margin-bottom: 2px;
	font-weight: bold;
	font-size: 14px; font-size: 1.4rem;
	}

.foot_caution{
	border: 1px dashed #999;
	color: #777;
	padding: 5px;
	margin-bottom: 20px;
	}
.foot_copy {
	text-align: center;
	font-size: 10px; font-size: 1.0rem;
	border-top: 1px #777 solid;
	border-bottom: 1px #777 solid;	
	padding: .5em .2em;
	}
.foot_caution p, .foot_copy p{
	margin-bottom: 0;
	}
.foot_copy a{
	text-decoration: none;
	color: #555;
	}


/************************************
** ページトップ
************************************/
#page-top {
	position: fixed;
	z-index: 9999;
	bottom: 80px;
	right: 10px;
}
#page-top a {
	width: 40px;
	height: 40px;
	border-radius: 3px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
	background: #665e53;
	text-decoration: none;
	color: #fff;
	text-align: center;
	display: block;
	-moz-opacity: 0.5;
	opacity: 0.5;
}
#page-top a:hover {
	text-decoration: none;
	background: #999;
	color: #fff;
}


@media only screen and (min-width: 768px) {
/************************************
** フッター（footer）
************************************/
footer {
    clear: both;
	font-size: 14px; font-size: 1.4rem;
	margin-bottom: 0;
}
.footer_in{
	width: 100%;
	margin: 0 auto;
	padding: 20px 10px 10px 10px;
	}
	
.footer_in .foot_logo{
	}
.footer_in .foot_logo a{
	font-weight: normal;
	}
.footer_in .foot_logo img{
	}
	
.foot_caution{
	padding: 1.5em;
	}
.foot_copy {
	font-size: 12px; font-size: 1.2rem;
	border: none;
	}
}

@media only screen and (min-width: 1031px) {
/************************************
** フッター（footer）
************************************/
footer {
}
.footer_in{
	padding: 30px 20px 20px 20px;
	width: 1030px;
	margin: 0 auto;
	}
	
.footer_in .foot_logo{
	font-size: 16px; font-size: 1.6rem;
	margin-bottom: 1em;
	}
.footer_in .foot_logo a{
	}
.footer_in .foot_logo img{
	max-width: 210px;
	}
	
.footer_in .address{
	}
.footer_in .address p{
	font-size: 13px; font-size: 1.3rem;
	line-height: 1.4;
	margin-bottom: 15px;
	}
.footer_in .foot_adr_title{
	margin-bottom: 4px;
	font-size: 16px; font-size: 1.6rem;
	}
}

	
/************************************
** タグスタイル（スマホPC共通）
************************************/
.tag_cat{
	display: inline-block;
	padding: 2px 3px;
	margin-right: 3px;
	border: 1px solid #CCC;
	background: #EEE;
	text-decoration: none;
	border-radius: 2px; 
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	color: #FFF;
	}
.tagst{
	display: inline-block;
	padding: 2px 4px;
	margin-right: 4px;
	margin-bottom: 3px;
	border: 1px solid #fe69b3;
	background: #ff9acc;
	text-decoration: none;
	border-radius: 3px; 
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	color: #FFF;
	}

.blog_info{
	display: none;
	}
	
/************************************
** コメントスタイル（スマホ）
************************************/
.comments{
	background: #F9F9F9;
	border:none;	
	border-radius: 5px; 
	padding: 15px;
	margin-bottom: 20px;
	font-size: 14px; font-size: 1.4rem;
	}
.post .comments h3{ font-size: 14px; font-size: 1.4rem;}
.comments .comments_title{
	background: url(img/come.png) left center no-repeat;
	border-bottom: #CCC 4px solid;
	border-left: none;
	padding: .5em 0 .75em 3em;
	}
	
.comments .comments_title::before,
.comments .comments_title::after{
	display: none;
	}	
	
.comment-form-author{
	display:block;
	width: 50%;
	margin-bottom: 20px;
	}
.comment-form-author:after {
    display:block;
    clear:both;
    height:0px;
    visibility:hidden;
    content:".";
    }
.comment-form-author label{
	display: block;
	width: 30%;
	float: left;
	text-align: center;
	padding: 10px;
	}
.comment-form-author input{
	display: block;
	width: 70%;
	float: right;
	padding: .5em 1em;
	}

.comment-form-comment label{display: none;}
.form-allowed-tags{margin-bottom: 0;}
.comments .form-submit, .comments .form-submit input{
	margin-bottom: 1.5em;
	}
	
#commets ol ul,
#commets ul ul{
  margin-left: 1.5em;
}

.required{ color: #fe56aa;}

.commets_list,
.trackback-list{
  margin-top: -20px;
  margin-bottom: 40px;
}
.commets_list li,
.trackback-list li{
  margin-top: -1px;
  padding: 1em 0 0.75em 0;
  width: 100%;
  border-bottom: 1px dashed #CCC;
}
.commets_list .avatar{
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

.comment-meta,
.reply,
.comment-notes,
.form-allowed-tags,
span.small{
	font-size: 14px; font-size: 1.4rem;
}

.comment-body p{
	clear: both;
	margin-bottom: 0;
	}
.reply{
	text-align: right;
	}

.bypostauthor{
  /* 記事投稿者のコメントのスタイル */
}

.children{ padding-left: 2em;}

#respond{ margin-bottom: 20px;}

.comment-listCon{
	border-bottom: dashed 1px #999;
	padding-bottom: 10px;
	}
.comment-info, .comment-author, .comment-id{
	font-weight:bold;
	}
.comment-info{
	line-height: 1.2;
	margin-bottom: 10px;
	}
.comment-id{
	margin-left:10px;
	}
.comment-edit{
	font-size: 12px; font-size: 1.2rem;
	margin-left:5px;
	}
.comment-text p{
	font-size: 12px; font-size: 1.2rem;
	line-height: 1.4;
	margin-bottom: 5px;
	padding: 0;
	}
.comment-reply{
	font-size: 12px; font-size: 1.2rem;
	display: block;
	text-align: right;
	}
	
@media only screen and (min-width: 1031px) {
/************************************
** コメントスタイル
************************************/
.post .comments h3{ font-size: 16px; font-size: 1.6rem;}
.comment-edit{
	margin-left:5px;
	}
.post .comment-text p{
	line-height: 1.5;
	}
.comment-reply{
	}
}


/************************************
** 関連記事
************************************/
.post .related_entrie_title{ font-size: 16px; font-size: 1.6rem;}
.post .related_entrie_title{
	position: relative;
	padding: 10px 5px 8px 30px;
	margin-bottom: 10px;
	border-left: none;
	border-bottom: 4px #DDD solid;
	border-top: none;
	}
.post .related_entrie_title:before{	
	font-family: "FontAwesome";
	position: absolute; top: 6px; left: 2px;
    content: "\f0f6";
	padding: 0;
	font-size: 22px; font-size: 2.2rem;
	color: #444;
	border: none;
	}
.post .related_entrie_title:after{
	display: none;
	}
	
	
.related-entries ul{
	margin-bottom: 30px;
	}
.related-entries ul li{
	position: relative;
	font-size: 16px; font-size: 1.6rem;
	border-bottom: 1px #AAA dashed;
	padding: 10px 0 10px 26px;
	}
.related-entries ul li:before{	
	font-family: "FontAwesome";
	position: absolute; top: 50%; left: 2px;
	margin-top: -16px;
    content: "\f101";
	padding: 0;
	font-size: 20px; font-size: 2.0rem;
	color: #cc0029;
	}
/* 抜粋文字 */
.related-entries-box p{
	}


/************************************
** 記事下のカテゴリページへのリンク
************************************/
.category-other-link, .category-other-link a {
	color: #FFF;
	text-align: center;
	text-decoration:none;
}
.category-other-link {
	width:100%;
	margin-bottom: 5px;
}
.category-other-link a{
	position:relative;
	display:block;
	padding: 10px;
	border-radius: 5px;
	background:#22924E;
	box-shadow:0 5px 0 #0e843c;
}
.category-other-link a:hover {
	-webkit-transform: translate3d(0px, 5px, 1px);
	-moz-transform: translate3d(0px, 5px, 1px);
	transform: translate3d(0px, 5px, 1px);
	box-shadow:none;
}

@media only screen and (min-width: 1031px) {
/************************************
** 関連記事
************************************/
.post .related_entrie_title{ font-size: 16px; font-size: 1.6rem;}
.related-entries ul li:before{	
	margin-top: -17px;
	}
.related-entries-none{
	font-size: 18px; font-size: 1.8rem;
	}
}


/************************************
** ページャー
************************************/
.pagination {
	clear: both;
	position: relative;
	font-size: 14px;
	line-height: 13px;
	margin-bottom: 20px;
	padding-top: 20px;
	padding-right: 0;
	padding-bottom: 20px;
	padding-left: 0;
}
.pagination span, .pagination a {
	display: block;
	float: left;
	margin: 2px 2px 2px 0;
	padding: 6px 9px 5px 9px;
	text-decoration: none;
	width: auto;
	color: #fff;
	background-color: #999;
}
.pagination a:hover {
	color: #fff;
	background-color: #666666;
}
.pagination .current {
	padding: 6px 9px 5px 9px;
	color: #fff;
	background-color: #CCCCCC;
}

@media only screen and (min-width: 1031px) {
.pagination span, .pagination a {
	margin: 2px 2px 4px 0;
	}
}


/* ワードプレス用その他
---------------------------------------------------------*/
/************************************
** ブログカード
************************************/
.blog_card_wrap{
	border-top: 1px dashed #CCC;
	padding: .75em 0;
	}
dl .blog_card_wrap:first-child{
	border-top:none;
	padding-top: 0;
	}
.blog_card_img{
	float: right;
	width: 30%;
	}
.blog_card_sentence{
	float: left;
	width: 69%;
	}
.blog_card_sentence .title{
	font-size: 16px; font-size: 1.6rem;
	margin-bottom: .5em;
	color: #0033cc;
	line-height: 1.1;
	}
.blog_card_sentence a{
	text-decoration: none;
	}
.blog_card_desc p{
	color: #444;
	margin-bottom: 0;
	}
	
@media only screen and (min-width: 1031px) {
.blog_card_wrap{
	padding: 1em 0;
	}
dl .blog_card_wrap:first-child{
	padding-top: 0;
	}
.blog_card_img{
	width: auto;
	text-align: right;
	margin: 0 0 0 10px;
	}
.blog_card_sentence{
	float: none;
	width: auto;
	}
.blog_card_sentence .title{
	font-size: 20px; font-size: 2.0rem;
	margin-bottom: .4em;
	}
.blog_card_desc{
	display: block;
	}
}


/*--------------------------------
カテゴリページ
---------------------------------*/
.cat-disc {
	margin: 0.25em 0 2em 0;
	background-color: #fbfaf8;
	padding: 3%;
	border-radius: 8px;
	border: 1px solid #ddd;
}	
.cat-disc p:last-child{
	margin-bottom: 0;
}	

/*--------------------------------
問合せ確認用 Contact Form 7 add confirm
---------------------------------*/
/* 注意フキダシ */
.wpcf7-not-valid-tip{
    position: relative;
	width: 96%;
	margin: 15px auto 20px auto;
	padding: 15px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px; 
	background: #EFEFEF;
	}
span.wpcf7-not-valid-tip{display:block;}
.wpcf7-not-valid-tip:before {
    border-style:solid;
    border-width:0 10px 10px;
    border-color:#EFEFEF transparent;
    content: " ";
    top:-10px;
    left:10px;
    position:absolute;
    background-color:transparent;
	}
	
/* エラー */
div.wpcf7-validation-errors, div.wpcf7-acceptance-missing{
	border: 2px solid #be0000 !important;
	border-radius: 5px;
	padding: 1em !important;
	}
/* 戻るボタン等 */
.wpcf7c-btn-back{
	margin-right: 1em !important;
	padding: 1em 2em !important;
	}
.wpcf7-submit{
	padding: 1em 2em !important;
	}
/* 送信完了 */
.wpcf7-mail-sent-ok{
	border: 2px solid #669900 !important;
	border-radius: 5px;
	padding: 1em !important;
	}
/* チェックボックスを縦並び */
span.wpcf7-list-item {
display: block!important;
padding: 6px 0;
}

/*--------------------------------
エディタ用
---------------------------------*/
/*画像 */
img.alignright {
	display: block;
	margin: 0 0 0 auto;
}
img.alignleft {
	display: block;
	margin: 0 auto 0 0;
}
img.aligncenter {
	display: block;
	margin: 0 auto;
}
img.float-left {
	float: left;
}
img.float-right {
	float: right;
}
.post img.img-inline {
	display: inline;
	margin:0;
}
.wp-caption {
	text-align: center;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.ie8 img {
	width: auto;
}


/*--------------------------------
カレンダー
---------------------------------*/
#wp-calendar {
	border-collapse: collapse;
	border-top-width: 1px;
	border-right-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-top-color: #999;
	border-right-color: #999;
	width: 100%;
}
#wp-calendar thead tr th {
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #999;
	border-left-color: #999;
	font-size: 14px; font-size: 1.4rem;
	padding: 3px;
	text-align: center;
	background-color: #f3f3f3;
}
#wp-calendar td {
	text-align: center;
	padding: 0px;
	background-color: #fff;
}
#wp-calendar caption {
	font-weight: bold;
	text-align: left;
	padding-top: 10px;
	padding-bottom: 5px;
	font-size: 14px; font-size: 1.4rem;
}
#wp-calendar tbody tr #today {
	background-color: #b0e0e6;
}


/************************************
** 前の記事へ、次の記事へ
************************************/
.navigation{
  clear: both;
  overflow: hidden;
  margin-bottom: 20px;
  font-size: 14px; font-size: 1.4rem;
}
.navigation > div{
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.navigation > div + div{
  border-top: 0;
  border-bottom: 1px solid #ddd;
}


.navigation .alignright{
  text-align: right;
}

.navigation a{
  display: block;
  padding: 1em;
  border: none;
}

.navigation a i{
  color:#ddd;
  padding-right:10px;
  margin-top:-4px;
  clear:left;
}
.navigation a:hover{
  background: #eee;
}

.navigation .alignright a:hover{
  border-left: 1px solid #ddd;
}


/* 固定ページ用CSS
---------------------------------------------------------*/
.content_full_wrap p:last-child{
	margin-bottom: 0;
	}
	

/************************************
** フルブロック
************************************/
.content_full_wrap{
	padding: 40px 0;
	}
.content_full_wrap:first-child{
	padding-top: 0;
	}
.bg_desc{
	background: url(img/bana/bg_desk.jpg) center center no-repeat;
	background-size: cover;
	}
	
.content_full_txt{
	padding: 0 10px;
	}
.content_full_txt h2{
	margin-bottom: 30px;
	text-align: center;
	}
.content_full_txt h2 span{
	display: block;
	padding-top: 0.5em;
	}

.touka_white{
    background: rgba(255,255,255,0.5);
	padding: 1.5em;
	border-radius: 3px;
	}
.content_full_txt .touka_white h3{
	border-bottom: 1px dashed #444;
	padding: 0 0 .5em 0;
	margin-bottom: 0;
	}
.content_full_txt .touka_white p{
	display: block;
	padding: 1em 0 0 0;
	margin-bottom: 0;
	}
	
@media only screen and (min-width: 768px) {
.content_full_txt{
	width: 100%;
	padding: 0x;
	margin: 0 auto;
	}
}

@media only screen and (min-width: 1031px) {
.content_full_wrap{
	padding: 60px 0;
	}
.content_full_wrap:first-child{
	padding-top: 0;
	}
.content_full_txt{
	width: 100%;
	}
.content_full_txt h2{
	margin-bottom: 40px;
	}
.content_full_txt h2 span{
	}
	
.touka_white{
	padding: 2em;
	}
.content_full_txt .touka_white h3{
	padding: 0 0 1em 0;
	}
}


/* ナビゲーション
---------------------------------------------------------*/
#foot-fix-nav{
    width: 100%;
	height: 60px;
    display: table;
	z-index: 5;
    box-shadow: 0 -1px 10px rgba(0, 0, 0, .2);
	}

.fixed_nav{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	}

#foot-fix-nav li {
    width: 25%;
	display: table-cell;
    border-left: 1px solid rgba(0, 0, 0, .2);
    border-right: 1px solid rgba(255, 255, 255,.2);
    border-top: 1px solid rgba(255, 255, 255,.2);
    padding: 5px 0;
	background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #fafafa 50%, #fafafa 100%);
}
#foot-fix-nav li .fnav-btn{
    color: #444 !important;
	display: block;
    position: relative;
	text-decoration: none;
    text-align: center;
	font-size: 12px; font-size: 1.2rem;
    padding: 34px 0 5px 0;
	}
.spn2 {background: url(img/icon/mail_999.svg) no-repeat center 2px / 20px; background-size: 22px 22px;}
.spn3 {background: url(img/icon/karute_999.svg) no-repeat center 0 / 20px; background-size: 24px 24px;}
.spn4 {background: url(img/icon/mappin_999.svg) no-repeat center 0 / 20px; background-size: 28px 28px;}

#foot-fix-nav.fixed_nav li{
	background: #309fd7;
	}
#foot-fix-nav.fixed_nav .spn2 {background: url(img/icon/mail.svg) no-repeat center 6px / 20px; background-size: 22px 22px; color: #FFF !important;}
#foot-fix-nav.fixed_nav .spn3 {background: url(img/icon/karute.svg) no-repeat center 4px / 20px; background-size: 24px 24px; color: #FFF !important;}
#foot-fix-nav.fixed_nav .spn4 {background: url(img/icon/mappin.svg) no-repeat center 4px / 20px; background-size: 28px 28px; color: #FFF !important;}

@media screen and (max-width: 320px) {
/* 320pxまでの幅の場合に適応される */
#foot-fix-nav li.mail a{
    font-size: 10px;; font-size: 1.0rem;
	}
#foot-fix-nav li a img.mail{
    margin-bottom: 6px;
}
}

/*ハンバーガー */
#foot-fix-nav li .fnav-btn-menu{
    color: #444 !important;
	display: block;
	text-decoration: none;
    text-align: center;
	font-size: 12px; font-size: 1.2rem;
    position: relative;
	}
#foot-fix-nav.fixed_nav .fnav-btn-menu{
    color: #fff !important;
	}
.ffnav-btn{
    width: 30px;
    height: 20px;
    position: absolute;
	top: -28px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
}
.fnav-btn-menu .ffnav-btn{
	top: -32px;
	}
.ffnav-btn:before,
.ffnav-btn:after,
.ffnav-btn span{
    display: block;
    width: 80%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
.ffnav-btn span{
    height: 2px;
    background-color: #555;
    top: calc(50% - 1.5px);
}

.ffnav-btn:before{
    content: "";
    top: calc(25% - 3px);
    border-top: 2px solid #555;
}
.ffnav-btn:after{
    content: "";
    bottom: calc(25% - 3px);
    border-bottom: 2px solid #555;
}
#foot-fix-nav.fixed_nav .ffnav-btn span{
    background-color: #FFF;
	}
#foot-fix-nav.fixed_nav .ffnav-btn:before{
    border-top: 2px solid #FFF;
	}
#foot-fix-nav.fixed_nav .ffnav-btn:after{
    border-bottom: 2px solid #FFF;
	}
#foot-fix-nav.fixed_nav .fnav-btn-menu .ffnav-btn{
	top: -28px;
	}
.mm-opened .ffnav-btn span{
    display: none;
}

.mm-opened .ffnav-btn:before{
    top: calc(50% - 1.5px);
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
}
.mm-opened .ffnav-btn:after{
    bottom: calc(50% - 1.5px);
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
}

/*PC版ナビゲーション */
.main_nav_wrap{
	width: 100%;
	background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #fafafa 50%, #fafafa 100%);
	}
.main_nav_in{
	width: 1030px;
	margin: 0 auto;
	}
.main_nav_in #foot-fix-nav li {
    width: 16.7%;
}
.main_nav_in #foot-fix-nav li:first-child {
    width: 16.5%;
}
.spn5 {background: url(img/icon/hand_999.svg) no-repeat center -2px / 20px; background-size: 32px 32px;}
.spn6 {background: url(img/icon/karute_999.svg) no-repeat center 2px / 20px; background-size: 22px 22px;}
.spn7 {background: url(img/icon/heart_999.svg) no-repeat center 4px / 20px; background-size: 20px 20px;}
#foot-fix-nav.fixed_nav .spn5 {background: url(img/icon/hand.svg) no-repeat center 2px / 20px; background-size: 32px 32px; color: #FFF !important;}
#foot-fix-nav.fixed_nav .spn6 {background: url(img/icon/karute.svg) no-repeat center 4px / 20px; background-size: 22px 22px; color: #FFF !important;}
#foot-fix-nav.fixed_nav .spn7 {background: url(img/icon/heart.svg) no-repeat center 8px / 20px; background-size: 20px 20px; color: #FFF !important;}
	
/*スマホドロワーメニュー */
#drw-menu {
	background: #FFFFFF;
	}
#drw-menu .drw-main-nav{
	display: block;
	margin-bottom: 30px;
	}
#drw-menu .drw-main-nav li{
    position: relative;
	margin: 0 -20px;
	}
#drw-menu .drw-main-nav li:before{
	position: absolute;
    top: 15px;
	right: 15px;
	font-family: "FontAwesome";
    content: "\f054";
	color: #CCC;
	font-size: 9px; font-size: 0.9rem;
	}
#drw-menu .drw-main-nav li.home{
	background: url(img/icon/home_999.svg) no-repeat center left 1px / 9px;
	background-size: 24px 24px;
	padding-left: 8px;
	}
#drw-menu .drw-main-nav li.yoyaku{
	background: url(img/icon/clock_orange.svg) no-repeat center left 1px / 13px;
	background-size: 24px 24px;
	padding-left: 8px;
	color: #FF7900;
	}
#drw-menu .drw-main-nav li.check{
	background: url(img/icon/check_999.svg) no-repeat center left 2px / 8px;
	background-size: 24px 24px;
	padding-left: 8px;
	}
#drw-menu .drw-main-nav li.hajimete{
	background: url(img/icon/hajimete_999.svg) no-repeat center left 6px / 13px;
	background-size: 16px 16px;
	padding-left: 8px;
	}
#drw-menu .drw-main-nav li.kutikomi{
	background: url(img/icon/hukidasi_999.svg) no-repeat center left 1px / 12px;
	background-size: 24px 24px;
	padding-left: 12px;
	}
#drw-menu .drw-main-nav li.map{
	background: url(img/icon/mappin_999.svg) no-repeat center left 0px / 9px;
	background-size: 24px 24px;
	padding-left: 8px;
	}
#drw-menu .drw-main-nav li.flow{
	background: url(img/icon/hand_999.svg) no-repeat center left -1px / 8px;
	background-size: 24px 24px;
	padding-left: 8px;
	}
#drw-menu .drw-main-nav li.price{
	background: url(img/icon/karute_orange.svg) no-repeat center left 2px / 10px;
	background-size: 20px 20px;
	padding-left: 10px;
	color: #FF7900;
	}
#drw-menu .drw-main-nav li span.onayami{
	display: block;
	background: url(img/icon/idea_999.svg) no-repeat center left 1px / 7px;
	background-size: 24px 24px;
	padding: 15px 15px 15px 29px;
	}
#drw-menu .drw-main-nav li.qa{
	background: url(img/icon/qa_999.svg) no-repeat center left -1px / 12px;
	background-size: 36px 36px;
	padding-left: 16px;
	}
#drw-menu .drw-main-nav li.head{
	background: url(img/icon/head_999.svg) no-repeat center left 2px / 9px;
	background-size: 18px 18px;
	padding-left: 8px;
	}
#drw-menu .drw-main-nav li.blog{
	background: url(img/icon/pen_999.svg) no-repeat center left 2px / 9px;
	background-size: 20px 20px;
	padding-left: 8px;
	}

#drw-menu .drw-main-nav a {
    display: block;   /* ← これが最重要 */
    min-height: 44px;
    line-height: 1.4;
	
    text-decoration:none;
	padding: 15px;
	}
#drw-menu .drw-main-nav a:hover {
    text-decoration:none;
	}
#drw-menu .drw-main-nav a.active {
    font-weight: bold;
	}
	
	
#drw-menu .info{
	margin: -10px -10px 20px -10px;
	border: 1px solid #444;
	border-radius: 0 0 10px 10px;
	}
#drw-menu .tel-time{
	background: #FFF;
	border-radius: 0 0 10px 10px; 
	-webkit-border-radius: 0 0 10px 10px;
	-moz-border-radius: 0 0 10px 10px;
	padding: 8px 10px 3px 10px;
	margin-bottom: 10px;
	color: #444;
	text-align: center;
	}
#drw-menu .msg{
	font-size: 18px; font-size: 1.8rem;
	color: #FFF;
	padding: 8px;
	text-align: center;
	background: rgba(0, 0, 0,.75);
	}
#drw-menu .time-msg{
	font-size: 12px; font-size: 1.2rem;
	color: #444;
	}
#drw-menu .tel{
	font-size: 24px; font-size: 2.4rem;
	font-weight: bold;
	}
#drw-menu img.tel-mark{
    width: 25px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 4px;
}
#drw-menu .tel a{
	color: #444;
	text-decoration: none;
	}
#drw-menu .bana{
	display: block;
	}

		
@media only screen and (min-width: 768px) {
/************************************
** スマホ用フッターナビゲーション
************************************/
#drw-menu{
	}
.drw-nav-wrap{
	}
#foot-fix-nav{
	}

}