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

/* エディタ側にも固定サムネ反映 */
.editor-styles-wrapper .fixed-thumb,
.editor-styles-wrapper .fixed-thumb-160 {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  justify-content: flex-start !important;
}

/* 20260301 Yasu for fixed-thumb by chatGPT */
.editor-styles-wrapper .fixed-thumb img {
  width: 120px !important;
  height: 120px !important;
  object-fit: cover !important;
}

.editor-styles-wrapper .fixed-thumb-160 img {
  width: 160px !important;
  height: 160px !important;
  object-fit: cover !important;
}

/* === ブロックエディタ内：横並びを強制（Cocoon/Gutenberg対策） === */
.editor-styles-wrapper .fixed-thumb.wp-block-gallery,
.editor-styles-wrapper .fixed-thumb-160.wp-block-gallery,
.editor-styles-wrapper .fixed-thumb .wp-block-gallery,
.editor-styles-wrapper .fixed-thumb-160 .wp-block-gallery,
.editor-styles-wrapper .fixed-thumb.has-nested-images,
.editor-styles-wrapper .fixed-thumb-160.has-nested-images {
  display: flex !important;
  flex-direction: row !important;   /* ←縦並びを潰す */
  flex-wrap: wrap !important;
  gap: 10px !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}

/* item側も「横に並ぶ前提」に固定 */
.editor-styles-wrapper .fixed-thumb .wp-block-image,
.editor-styles-wrapper .fixed-thumb-160 .wp-block-image,
.editor-styles-wrapper .fixed-thumb figure.wp-block-image,
.editor-styles-wrapper .fixed-thumb-160 figure.wp-block-image,
.editor-styles-wrapper .fixed-thumb .blocks-gallery-item,
.editor-styles-wrapper .fixed-thumb-160 .blocks-gallery-item {
  display: block !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
}

/* 幅はそれぞれ固定 */
.editor-styles-wrapper .fixed-thumb .wp-block-image,
.editor-styles-wrapper .fixed-thumb figure.wp-block-image,
.editor-styles-wrapper .fixed-thumb .blocks-gallery-item {
  width: 120px !important;
}

.editor-styles-wrapper .fixed-thumb-160 .wp-block-image,
.editor-styles-wrapper .fixed-thumb-160 figure.wp-block-image,
.editor-styles-wrapper .fixed-thumb-160 .blocks-gallery-item {
  width: 160px !important;
}