/**
 * Template: snow-monkey
 * Theme Name: Snow Monkey Child
 */
/**********************************/
/* reCAPTCHAによる表示調整　　　  */
/**********************************/

/* reCAPTCHA表示削除 */
.grecaptcha-badge { 
	visibility: hidden; 
}
/* 代わりに送信ボタン下に文字で記載 */

/**********************************/
/* レスポンシブ改行調整   　　　  */
/* 例：<br class="sp-cr">         */
/**********************************/
/*PCでは無効（改行しない）*/
.sp-cr{
    display: none;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
    .sp-cr{
        display: block;
    }
}

/**********************************/


/* コピーライト背景色 */
.l-footer .c-copyright {
  background-color: #00a0e8;
}

/* フッターの上線色と背景色 */
.l-footer-widget-area {
	border-top-color:#00a0e8;
  background-color: #ffffff;
}

/* 投稿一覧で日付を消す */
.c-entry-summary__meta {
	display: none;
}

/* 投稿ページの大見出し 
.p-entry-content > h2 {
  position: relative;
  padding: 0.5em;
  background: #00a0e8;
  color: white;
}
.p-entry-content > h2::before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-right: solid 20px rgb(149, 158, 155);
}*/


/* サイドバー見出し */
.c-widget > h2 {
    border-bottom: double 5px #00a0e8;
}
.c-widget > h2::before {
  position: absolute;
}

/* サイドバー見出しの横線を消す*/
.c-widget>h2:after, .c-widget>h2:before{
	height:0px;
}

/* ブログカードを白にする */
.wp-oembed-blog-card {
  background-color: #fff;
}

