@charset "UTF-8";

/*!
Theme Name: Simplicity2 child
Template:   simplicity2
Version:    20161002
*/

/* Simplicity子テーマ用のスタイルを書く */

/*ベース*/

body {
    letter-spacing: 0.06em;
}
div#main {
    word-break: break-all;
}
div#navi {
    background-color: #00c3ea;
    border-color: #00c3ea;
}

@media (min-width: 1111px) {
	#navi ul {
	    display: flex;
		border-right: 1px solid #fff;
	}
	#navi ul > li {
	    flex: 1 0 auto;
	    min-width: 1px;
	    text-align: center;
		border-left: 1px solid #fff;
	}
	#navi ul.menu > li > a {
		font-size: 14px;
	}
}
@media (max-width: 1110px) {
	#navi #navi-in ul li a {
		padding: 5px 10px 5px 20px;
		border-top: 1px solid #fff;
		font-size: 14px;
	}
	#navi #navi-in ul li a:before {
		font-family: FontAwesome;
		padding-right: 10px;
		content: "\f0da";
	}
}

.post-meta {
    background-color: #ffffff;
    color: #888;
    font-size: 13px;
}
.box {
    display: table-cell;
}
@media screen and (min-width:640px){
.entry-read {
    display: block;
    width: auto;
    background-color: #f3f3f3;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    padding: 5px;
    text-decoration: none;
    color: #111;
    margin-top: 18px;
}
	}
.entry-read a {
    color: #00c3ea;
}
/* .entry-read:before {
    content: "\f054";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    margin-right: 5px;
	color: #00c3ea;
} */
.exLink:after {
    margin: 0 3px;
    font-family: FontAwesome;
    vertical-align: middle;
    content: '\f08e';
}
.footer-comment {
    text-align: left;
    margin: 10px;
}
.footer-comment p {
    margin: 0;
	color: #bbb;
}

/*トップページ新着情報欄*/
.boxlist {
    margin-top: 0px;
}
ul.display-posts-listing {
    padding: 0em;
}
.boxlist ul.display-posts-listing > li {
    list-style: none;
    display: inline-block;
    vertical-align: top;
    white-space: normal;
    word-wrap: break-word;
    padding: 10px;
    border-bottom: 1px dashed #ccc;
}
.display-posts-listing li > a > img {
    display: block;
	border: 1px solid #ccc;
	padding: 3px;
    width: 150px;
    max-width: inherit;
    float: left;
    margin: 0px 20px 5px 0px;
}
.title {
    font-weight: bold;
}
.excerpt {
    font-size: 15px;
}

/*アーカイブ・関連記事*/
div#under-entry-body h2 {
    background-color: #00c3ea;
    color: #fff;
    padding: 10px;
}
.related-entry-title a {
    color: #f34949;
}
.entry h2 {
    border-bottom: dashed #ff6a00 2px;
    padding-bottom: 5px;
}
.entry-thumb img {
    padding: 3px;
    border: solid #ccc 1px;
}
.related-entry-thumb img {
    padding: 3px;
    border: solid 1px #ccc;
}

/*ボタン*/
.btn-oya {
    text-align: center;
    margin: 10px 0;
}
i.fa.fa-chevron-right {
    margin-right: 5px;
}
.btn-base {
    padding: 15px 70px;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
}
.btn-base:hover {
    opacity: 1.0;
	color: #2b9060 !important;
}
.btn3d {
    background-color: #3cc584;
    color: #fff;
    box-shadow: 0 5px #2b9060;
}
.btn3d:hover {
    -ms-transform: translateY(4px);
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    border-bottom: none;
    box-shadow: none;
}

/*見出し*/
.entry h2 a {
    color: #f34949;
}
.widget_title {
    border-bottom: dashed 2px #ff6a00;
}
.article h1 {
    border-bottom: 3px dashed #ff6a00;
    padding-bottom: 10px;
}
.entry-content h2 {
    background: #fff2e8;
    border-left: solid 10px #ff6a00;
}
.article h3 {
    border-bottom: 5px solid #00c3ea;
}
.article h4 {
    border-bottom: 5px dashed #b1d2a3;
}

.cn {
    text-align: center;
}

/*改行*/
.br1 {
    margin-bottom: 2em;
}
.br1-top {
    margin-top: 2em;
}
.br2 {
    margin-bottom: 3.5em;
}
.br2-top {
    margin-top: 3.5em;
}
.top-br-1 {
    margin-top: -2.5em;
}

/*チェックボックス*/
.fa-check-square-o:before {
    content: "\f046";
    color: #e50202;
    padding-right: 5px;
}

/*番号リスト*/
ol{
	counter-reset:number; /*数字をリセット*/
	list-style-type: none!important; /*数字を一旦消す*/
	padding:0.5em;
	background: #fffdf5;
}
ol li{
	position: relative;
	padding-left: 30px;
	line-height: 1.5em;
	padding: 3px 10px 3px 40px;
}

ol li:before{
	/* 以下数字をつける */
	position: absolute;
	counter-increment: number;
	content: counter(number);
	/*以下数字のデザイン変える*/
	display:inline-block;
	background: #ff976e;
	color: white;
	font-family: 'Avenir','Arial Black','Arial',sans-serif;
	font-size: 20px;
	border-radius: 50%;
	left: 0;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align:center;
	/*以下 上下中央寄せのため*/
	top: 50%;
		-moz-transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
}

ul.no-list {
    list-style: none;
    font-weight: bold;
}

ul.no-list li {
    padding: 3px 10px 3px 0px;
	font-size: 18px;
}

/* 画像枠線 */
.border {
    border: solid 1px #ccc;
    padding: 2px;
}

/* 下矢印 */
.fa-chevron-down {
    color: #ff6a00;
    font-size: 6em;
}
/* チェックリスト */
ul.check-li {
    list-style: none;
    padding: 0.5em;
}
.check-li li {
    padding: 0.2em 1em;
    font-weight: bold;
    font-size: 20px;
}
/* インフォ枠 */
.sp-info {
    background-color: #ffeeea;
    border-color: #ff491b;
}
/* テキスト装飾 */
.bold-blue {
    font-weight: bold;
    color: #0b64ef;
}
/* 灰色テキスト */
.gray {
    color: #a0a0a0;
}
/* 画像周りborder */
.bd {
    border: 1px solid #ccc;
    padding: 2px;
}
img.alignleft {
    margin-right: 10px;
}


