@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){
  /*必要ならばここにコードを書く*/
}

/* ①タブ一覧*/
.index-tab-button {
	font-size: 16px !important;
	transition: 0.3s;
	padding: 9px 13px !important;
	background-color: #E9E8E6 !important;
	box-shadow: 2px 6px 10px -5px rgb(0 0 0 / 25%);
}

/* ②タブ一覧(hover) */
@media screen and (min-width: 980px) {
	.index-tab-button:hover {
	  color: #8cab8b;
	}
}

/* ③タブ一覧（選択カテゴリー） */
#index-tab-1:checked~.index-tab-buttons .index-tab-button[for=index-tab-1],
#index-tab-2:checked~.index-tab-buttons .index-tab-button[for=index-tab-2],
#index-tab-3:checked~.index-tab-buttons .index-tab-button[for=index-tab-3],
#index-tab-4:checked~.index-tab-buttons .index-tab-button[for=index-tab-4]{
	color: #FFF;
	background: #8cab8b !important;
	border-color: #728f71;
	font-weight: 500;
	transform:scale(0.97,0.97);
   -webkit-transform:scale(0.97,0.97);
   -moz-transform:scale(0.97,0.97);
}

/* ④エントリーカード */
.entry-card-wrap {
	padding: 0px;
	margin-top: 11px;
	border-radius: 8px;
	box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

/* ⑤エントリーカード(hover) */
@media screen and (min-width: 980px) {
	.entry-card-wrap:hover {
		background-color: #F8F8F6;
		box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
		transform: translate(0px,-5px);
	}
}

/* ⑥エントリーカード - 上部 */
.entry-card-thumb-image {
	border-radius: 8px 8px 0px 0px;
}

/* ⑦エントリーカード - 下部 */
.entry-card-content {
	padding: 3px 15px 30px 15px;
}

/* ⑧エントリーカード - 投稿日・更新日 */
.post-date, .post-update {
	padding: 0px 10px 7px 0px;
}

/* ⑨エントリーカード - タイトル */
.card-title {
	color: #4D4435;
}

/* ⑩エントリーカードのカテゴリーを消す */
.entry-card .cat-label{
	display: none;
}

/* ⑪もっと見るボタン */
.list-more-button {
	font-size: 16px !important;
	transition: 0.3s;
	padding: 4px 18px !important;
	background-color: #E9E8E6 !important;
	border: 1px solid #ccc;
	box-shadow: 2px 6px 10px -5px rgb(0 0 0 / 25%);
}

/* ⑫もっと見るボタン (hover)*/
@media screen and (min-width: 980px) {
	.list-more-button:hover {
		color: #8cab8b;
	}
}

/* ⑬現在ページ */
.pagination .current {
	background-color: #8cab8b;
	color: #fff; 
	border-radius: 50%;
	border: none;
}

/* ⑭次のページリンクを消す */
.pagination-next {
	display: none;
}