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

/* サイト全体のトーンを整える（30代男性向けダーク/シック） */
body {
    background-color: #f4f4f4; /* 少し落ち着いた背景 */
    color: #333;
}

/* 記事カードを浮かせて高級感を出す */
.entry-card-wrap {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.entry-card-wrap:hover {
    transform: translateY(-5px);
}

/* フッター全体の背景色と文字色 */
.footer {
    background-color: #1a1a1a; /* 深い黒 */
    color: #cccccc;
}

/* フッター内のリンク色 */
.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: #d4af37; /* ホバー時にゴールド */
}

/* コピーライト部分の装飾 */
.source-org {
    font-size: 12px;
}
