/* カスタム CSS をここに入力してください */

/* アンダーラインマーカー */
i, em {
    background: linear-gradient(transparent 60%,#abe8ff 0);
    font-style: unset;
    font-weight: bold;
}

/* タイトル付きボックス */
.box26 {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 0.5em;
    border: solid 3px black;
    border-radius: 8px;
}
.box26 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: black;
    font-weight: bold;
}
.box26 p {
    margin: 0; 
    padding: 0;
}

/* グレー背景のBOX */
.box3 {
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #2c2c2f;
    background: #F2F2F2;/*背景色*/
}
.box3 p {
    margin: 0; 
    padding: 0;
}

/* テキストウィジェットのスタイル */
.textwidget{
    font-size: 14px;
	  line-height: 1.3;
}

/* 人気記事、新着記事ウィジェットのスタイル */
.widget-entry-card{
    font-size: 14px;
	  line-height: 1.3;
}

/* SNSフォローのデザイン */
.sidebar .sns-follow-buttons a {
  width: 30%; /*ボタンの幅*/
}
.sidebar .sns-follow {
  margin: 0 0 24px 0;
}
.sidebar .sns-follow-buttons a {
  background: none !important;
  border: 1px solid #444d53;
  color: #444d53;
  border-radius: 50px;
}
.sidebar .twitter-button:hover {
  background-color: #1da1f2 !important;
  color: #fff;
  border-color: #1da1f2;
}
.sidebar .feedly-button:hover {
  background-color: #2bb24c !important;
  color: #fff;
  border-color: #2bb24c;
}
.sidebar .rss-button:hover {
  background-color: #f26522 !important;
  color: #fff;
  border-color: #f26522;
}

/* 見出しカスタマイズ */
/* H2 */
.article h2{
background:none;
padding: 0;
}
 
/* H3 */
.article h3{
border-top:none;
border-bottom:none;
border-left:none;
border-right:none;
padding: 0;
}
 
/* H4 */
.article h4{
border-top:none;
border-bottom:none;
padding: 0;
}

/* 見出し1 */
.article h2 {
  position: relative;
  padding: 0.6em;
  background:  #EEEEEE;
}

.article h2:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid  #EEEEEE;
  width: 0;
  height: 0;
}


/* 見出し2 */
.article h3 {
    color: #111111; /* ⑨文字色 */
    font-size: 21px; /* ⑩文字サイズ */
    background: #FFFFFF; /* ⑪背景色 */
    border-left: 6px solid #111111; /* ⑫左側の線:太さ 線種 色 */
    border-bottom: 2px solid #111111; /*　⑬下側の線:太さ 線種 色 */
    padding: 0px 10px 0px 10px; /* ⑭文字と枠の間の余白 上右下左の順 */
}

/* 見出し3 */
.article h4 {
    color: #111111; /* ⑮文字色 */
    font-size: 19px; /* ⑯文字サイズ */
    background: #FFFFFF; /* ⑰背景色 */
    border-left: 4px solid #111111; /* ⑱左側の線:太さ 線種 色 */
    border-bottom: 0px solid #111111; /* ⑲下側の線:太さ 線種 色 */
    padding: 0px 6px 0px 6px; /* ⑳文字と枠の間の余白 上右下左の順 */
}

/* サイドバーの見出しデザイン */
.sidebar h3 {
    padding: 6px;
    font-size: 1em;
    letter-spacing: 0.4px;
    border-bottom: 1px solid #595857;
    background-color: transparent;
}

/* サイトタイトルのデザイン修正 */
.site-name-text{
	  font-size:30px;
    font-weight:bold;	
}
#header-container{
	border-top: solid;
	border-bottom: solid;
}
.logo-text {
    padding: 30px 0 30px;
}
@media screen and (max-width: 834px){
#header .site-name-text {
    font-size: 30px;
}
}
@media screen and (max-width: 480px){
#header .site-name-text {
    font-size: 22px;
}
}

/* 記事一覧のデザイン修正 */
.e-card-title{
	font-size:18px;
}
.e-card-snippet{
	font-size:16px;
}

/* 記事内の画像を中央寄せ */
.entry-content img{
margin:auto;
display:block;
}
.wp-caption{
margin:auto;
}
.figure-image{
margin:auto;
}

.widget_categories ul li a { /*親カテゴリ用のコード*/
    color: #333;
    text-decoration: none;
    padding: 6px 0;
    display: block;
    padding-right: 4px;
    padding-left: 4px;
    border-top: 1px dotted #ccc; /*上部にボーダーを引く*/
    font-size: 16px;
}
.widget_categories ul li a::before { /*親カテゴリのアイコン*/
    font-family: FontAwesome;
    content: "\f0da";
    padding-right: 10px;
}
.widget_categories > ul > li > a:first-child { 
    border-top: none; /*最初の親カテゴリは上部ボーダーを消す*/
}
.widget_categories > ul > li > a:last-child {
    border-bottom: 1px dotted #ccc; /*最後の親カテゴリは下部ボーダーを引く*/
}
.widget_categories ul li a .post-count { /*記事数用のコード*/
    display: block;
    float: right;
    background: #ededed;
    padding: 0 1em;
    font-size: 14px;
    margin-top: .2em;
    border-radius: 4px;
}
.widget_categories ul li a:hover { /*親子共通マウスホバー時*/
    background: none;
    transition: 0.5s;
    color: #72c7e6;
}
.widget_categories ul li a:hover .post-count { /*記事数のマウスホバー時*/
    background: #72c7e6;
    color: #fff;
    transition: 0.5s;
}
.widget_categories ul li ul { /*子カテゴリのボックス*/
    border-bottom: 1px dotted #ccc;
}
.widget_categories ul li ul li a { /*子カテゴリ用のコード*/
    color: #333;
    text-decoration: none;
    padding: 0 4px 4px 4px;
    display: block;
    border: none;
}
.widget_categories ul li ul li a::before { /*子カテゴリのアイコン*/
    font-family: FontAwesome;
    content: "・";
    padding: 0;
}


