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

/* 全体フォントと背景 */
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  background-color: #f5f5f5;
  color: #2b2b2b;
}

/* 記事カード全体 */
.entry-card-wrap {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.entry-card-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* サムネイルの角を丸く */
.entry-card-thumb img {
  border-radius: 12px 12px 0 0;
}

/* 記事タイトル */
.entry-card-title {
  color: #2a2a2a;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 0.5em;
  transition: color 0.3s;
}
.entry-card-title:hover {
  color: #a78e44; /* 高級感のあるゴールド */
}

/* 抜粋テキスト */
.entry-card-snippet {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* カード内リンク（ホバー時色変更） */
.entry-card-link {
  text-decoration: none;
  display: block;
  padding: 20px;
}
.entry-card-link:hover {
  background-color: #faf8f3;
}
