@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
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/* カテゴリページ上部のカテゴリ画像 */
.category-image {
  text-align: center;      /* 中央寄せ */
  margin: 24px auto;       /* 上下余白 */
  max-width: 1100px;       /* 横幅制限 */
}

.category-image img {
  width: 100%;             /* 横いっぱい */
  height: auto;            /* 縦比率維持 */
  border-radius: 12px;     /* 角丸 */
}

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

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

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

/* カテゴリ画像表示用 */
.category-image {
    text-align: center;
    margin: 12px 0;
}

.category-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.category-image img:hover {
    transform: scale(1.02);
}