@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Template:   cocoon-master
Version:    0.0.5
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
input::placeholder{
	font-size:14px;/*「サイト内を検索」の文字サイズ*/
}
.search-edit{
	border-radius:0.3em;/*検索ボックスの角のまるさ*/
}
.search-submit{
	top:0px;
	line-height:0.25;
	bottom:0;
}
.search-submit:hover::before{
	color:#ffbc00;/*検索ボタンホバー時の色*/
}
h3 {
padding: 0.25em 0.5em;/*上下 左右の余白*/
color: #494949;/*文字色*/
background: transparent;/*背景透明に*/
}
.box27 {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #62c1ce;
}
.box27 .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    vertical-align: middle;
    font-size: 17px;
    background: #62c1ce;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.box27 p {
    margin: 0; 
    padding: 0;
}
@media screen and (max-width: 768px) {
	.single #header-container,
	.single #notice-area {
		display: none;
	}
}
.article h2 {
  font-size: 24px;
  background: #50b0e8;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 17px 23px;
  border-radius: 0.3em;/*角の丸み*/
}
.aligncenter {
 text-align:center;
 margin:0 auto;
}
div.btn a {
 color:white;
 text-decoration:none;
}
div.btn:hover a,
div.btn a:hover{
 color:black;
 text-decoration:none;
 transition:all .5s ease;
}
div.btn p {
 margin:0;
}
.toc {
    border: 1px solid #ff8eb6; /*全体の枠線の色*/
    font-size: 14px;
    line-height: 1.5;
    padding: 0;
    margin-bottom: 1em;
    display: block; /*横幅いっぱいに広げる*/
}
.toc-title {
　　　　　background: #50b0e8; /*目次タイトルの背景色*/
    color: #fff; /*目次タイトルの文字色*/
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    padding: 6px 16px;
}
.toc-content {
    padding: 8px;
}
.toc ul.toc-list>li>a, .toc ol.toc-list>li>a {
    font-weight: bold;
    font-size: 16px;
}
.navi-in>ul {
    font-weight: bold;
}
.post ol {
	counter-reset: li;
}

.post ol > li {
	list-style: none;
	position: relative;/*リストの項目の位置を基準に*/
	padding-left: 2.5em; /*li:before分左に余白を。調整可*/
	/*margin-bottom: 0.8em;*//*リストの数字がくっついてしまう場合*/
}

.post ol > li:before {
	counter-increment: li;
	content: counter(li);
   font-size: 14px;
	margin-right: 1em;
	background: #50b0e8; /*薄いピンク*/
	color: #ffffff; /*白*/
	border-radius: 50%; /*丸く*/
	text-align: center; /*端に寄ってる数字を真ん中に*/
	width: 1.6em; /*幅を決めるheightと同じ数値に*/
	height: 1.6em; /*高さ。widthと同じ数値に。数値変更した場合はline-heightで調整を*/
	position: absolute; /*リストの基準から移動させる*/
	left: 0em; /*項目の基準、左にあわせる*/
	top: 4px; /*基準の上から2pxの位置に表示。テーマによって位置がずれる場合は修正を*/
	line-height: 1.7;/*数字の位置あわせで数値を指定*/
}
.entry-content ul {
	list-style: none;
	margin-bottom: 1.5em;
}
.entry-content ul li {
	position: relative;
	padding-left: 0.9em;
	margin: 0.8em 0;
}
.entry-content ul > li:before {
	content: "\f00c";
	font-family: FontAwesome;
	color: #50b0e8;
	text-align: center;
	margin-right: 0.4em;
	width: 1.3em;
	height: 1.3em;
	position: absolute;
	left: -15px;
	top: 3px;
	line-height: 1.4;
}
.entry-content ul li ul {
	margin: 0 0.4em 0 -1.2em;
}
/* toc */
#toc_container .toc_list li:before {
  content: none;
}
.sidebar {
  width: 356px;
  font-size: 14px;
  padding: 14px;
  border-radius: 4px;
  background-color: #fff;
}
.sidebar h3 {
  letter-spacing: 0.04em;/*文字間*/
　　　font-size: 14px;
  background-color: #50b0e8;
  padding: 14px 10px;
  border-radius: 0.3em;/*角の丸み*/
  margin: 14px 0;
}
/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1240px以下*/
@media screen and (max-width: 1240px){
  /*必要ならばここにコードを書く*/
}

/*1030px以下*/
@media screen and (max-width: 1030px){
  /*必要ならばここにコードを書く*/
}

/*768px以下*/
@media screen and (max-width: 768px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}