@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

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

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

a {
    text-decoration: none; /* 下線を削除 */
}

/* 「新着記事」を非表示にするCSS */
div#list-wrap .list-new-entries {
  display: none;
}

#sidebar .card-thumb img{
 width: 90px;
 height: 90px;
 object-fit: cover;
}
#sidebar .widget-entry-cards figure {
 width: 90px;
}
#sidebar .widget-entry-card-content {
 margin-left: 100px;
}

/*画像にキャプションを重ねる*/
figure {
	position: relative; /*図形やビデオを相対位置関係に指定する*/
	display: inline-block;
}
	figure img {
		vertical-align: top; /*画像の範囲をどこからにするか指定している*/
	}
	figure figcaption {
		position: absolute; /*キャプションを絶対位置として指定できるようにする*/
		right: 1px; /*キャプション表示位置を指定する*/
		bottom: 22px;
		color: #fff; /*文字の色*/
		background: #ff617f; /*バックグラウンドの色*/
	}

.blogcard-post-date {
    display: none;
}


/* メールアドレス欄を非表示にする */
.comment-form-email {
  display: none;
}
/* チェックボックスとその説明文を非表示にする */
.comment-form-cookies-consent {
  display: none;
}
.comment-reply-title {
    display: none; /* メッセージタイトルを非表示 */
}

/* コメントフォームをコメントリストの上に表示 */
/*.comment-area {*/
/*  display: flex;*/
/*  flex-direction: column-reverse;*/
/*}*/
