/**************************
文字
**************************/
/* タイトルに適用 */
.post .entry-title {
	font-size: 30px;
	font-weight: 500;
	font-family: "Noto Serif", serif,'游ゴシック', YuGothic, PT Sans Caption,Josefin Sans,"メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, "ＭＳ Ｐゴシック", sans-serif !important;
}

/* コンテンツに適用 */
.entry-content {
	font-family: '游ゴシック', YuGothic, PT Sans Caption,Josefin Sans,"メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, "ＭＳ Ｐゴシック", sans-serif !important;
}

/* H2に適用 */
.entry-content h2 {
	margin-top: 50px !important;
	margin-bottom: 45px !important;
	padding: 18px;
	font-size: 25px;
	font-weight: bold;
	background-color: #a3d6cc;
}

/* H3に適用 */
.entry-content h3 {
	margin-top: 45px !important;
	margin-bottom: 45px !important;
	padding: 10px;
	font-size: 23px;
	font-weight: bold;
	border-left: solid 5px #a3d6cc;
}

/* H4に適用 */
.entry-content h4 {
	margin-top: 45px !important;
	margin-bottom: 45px !important;
	font-size: 21px;
	font-weight: bold;
}

/* テキストリンクに適用 */
.entry-content a:link {
	color: #008db7;
}
.entry-content a:visited {
	color: #2b2b2b;
}
.entry-content a:hover {
	color: #00afcc;
}

/* パラグラフに適用 */
p {
	font-size: 18px;
	font-weight: 500;
	line-height: 2.2em;
	margin-bottom: 25px;
	color: #2b2b2b;
}

/* 太字 */
strong,
em {
	font-style: normal;
	font-weight: bold;
	color: #2b2b2b;
}

/* 青系マーカー */
.posi {
	font-weight: bold;
	background: linear-gradient(transparent 60%, #ccffe5 60%);
}

/* 赤系マーカー */
.nega {
	font-weight: bold;
	background: linear-gradient(transparent 60%, #ffcccc 60%);
}

/* 小さい文字 */
.small {
	font-size: 80%;
}

/**************************
リスト
**************************/
/* リスト */
.entry-content ul {
	margin: 40px 0px;
	padding: 0;
	position: relative;
}

.entry-content ul li {
	list-style-type: none!important;
	margin-bottom: 3px;
	padding: 0.5em 1em 0.5em 2em;
	color: #404040;
	font-weight: bold;
	line-height: 1.5em;
	background-color: whitesmoke;
}

.entry-content ul li:before {
	font-family: FontAwesome;
	content: "\f00c";
	position: absolute;
	left : 0.8em;
	color: #a3d6cc;
}

/* ナンバーリスト */
.entry-content ol {
	margin: 40px 0px;
	counter-reset:number;
	list-style-type: none!important;
	padding:0.5em;
}

.entry-content ol li {
	position: relative;
	margin-bottom: 3px;
	padding: 0.5em 1em 0.5em 2.5em;
	color: #404040;
	font-weight: bold;
	line-height: 1.5em;
	background-color: whitesmoke;
}

.entry-content ol li:before{
	position: absolute;
	counter-increment: number;
	content: counter(number);
	display: inline-block;
	background: #a3d6cc;
	color: whitesmoke;
	font-family: 'Avenir','Arial Black','Arial',sans-serif;
	font-weight:bold;
	font-size: 15px;
	border-radius: 50%;
	left: 0.8em;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* リンクリスト */
.link-ul {
	padding: 0;
}

.link-ul li {
	list-style-type: none!important;
	padding: 0.5em;
	margin-bottom: 4px;
	position:relative;
	line-height: 1.5;
	background-color: whitesmoke;
	border-left : solid 35px #a3d6cc;
}

.link-ul li:before {
	font-family: FontAwesome;
	content: "\f101";
	position: absolute;
	display: block;
	padding: 0.5em;
	width: 1.2em;
	color: whitesmoke;
	font-weight: normal;
	text-align: center;
	left : -35px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

/**************************
定義
**************************/
.entry-content dl {
	margin: 40px 0px;
	padding: 10px 15px 10px 15px;
	background-color: whitesmoke;
}

.entry-content dl dt{
	margin: 0px 0px;
	padding: 5px 0px;
	font-size: 110%;
	font-weight: bold;
	color: #404040;
	border-bottom:2px dotted #a3d6cc;
}

.entry-content dl dd{
	margin: 0px 0px;
	padding: 5px 0px 10px 0px;
	font-weight: 500;
	line-height: 1.8em;
}

/**************************
引用
**************************/

/* 引用 */
blockquote {
	margin-top: 40px !important;
	margin-bottom: 40px !important;
	padding:20px;
	font-size:17px;
	font-style:normal;
	border-left:solid 5px #d2d2d2;
	background-color: whitesmoke;
}

/**************************
テーブル
**************************/
table {
	margin-top: 40px;
	margin-bottom: 40px;
	border-collapse: collapse;
}

table th, td {
	border: 2px #ffffff solid !important;
}

table tr th {
	padding: 10px 8px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	line-height: 1.5em;
	background-color: #a3d6cc;
}

table tr td {
	padding: 10px 8px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5em;
	background-color: whitesmoke;
}

/**************************
画像
**************************/
.imgbox {
	margin-bottom: 40px !important;
	padding: 10px;
	border-top: 1px solid #f2f2f2;
	border-right: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	border-left: 1px solid #f2f2f2;
}

/* 写真の下の余白を狭く */
.caption {
	margin-bottom: 5px !important;
}

/**************************
ボックス
**************************/
.gray-box {
	margin: 40px 0px;
	padding: 10px 10px;
	background-color: whitesmoke;
}