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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/*ヘッダーの横幅をフルに変更*/
.header-container-in.hlt-top-menu {
  width: 100%;
}

/*ヘッダーロゴを左寄せに変更*/
.logo-menu-button.menu-button {
  justify-content: flex-start;
  padding-left: 10px;
}

/*グローバルメニュー 文字の大きさを変更*/
#navi .navi-in > .menu-header .item-label {
  font-size: 13px;
  font-weight: bold;
  color: #333333;
}

/* === フロントページの entry-title（PCで下余白を減らす） === */
.entry-title {
  display: inline-block;
  padding: 0 .4em .2em;
  border-bottom: 3px solid #282828;
  background-color: #ffffff;
  color: #333333;
  font-size: 15px;
}

/* === 【新規】固定ページの entry-title（PCでさらに小さく） === */
body.page .entry-title {
  font-size: 14px !important;
  padding: 0 .3em .1em !important;
}

/* === 【PC専用】1024px以上で下余白をさらに小さく === */
@media screen and (min-width: 1024px) {
  .entry-title {
    padding-bottom: .1em !important;
  }
  body.page .entry-title {
    padding-bottom: .05em !important;
  }
}

/* ===============================
   H2タグ：下線なし、グラデーション文字 + PC・スマホ対応サイズ
   =============================== */
.entry-content h2,
.page-content h2,
.entry h2,
.article h2 {
  /* グラデーション：黄緑 → 青 */
  background: linear-gradient(90deg, #93FF00, #00c3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;

  font-size: 1.9em;
  line-height: 1.3;
  margin: 2.6em 0 1em; /* PC */
  padding: 0;
  font-weight: 900;
}

/* ===============================
   H3タグ：装飾なし、文字色 #333333 に統一
   =============================== */
.entry-content h3,
.page-content h3,
.entry h3,
.article h3 {
  font-size: 1.5em;
  line-height: 1.4;
  margin: 1.9em 0 0.8em;
  padding: 0;
  color: #333333;
  font-weight: 900;
  background: none;
  border: none;
  border-radius: 0;
}

/* ===============================
   【基本スタイル】：entry-content / page-content / entry 向け
   =============================== */
.entry-content p,
.page-content p,
.entry p {
  line-height: 1.8;
  margin-bottom: 1.2em;
  color: #444;
}

/* 引用ブロック */
.entry-content blockquote,
.page-content blockquote,
.entry blockquote,
.entry-content .wp-block-quote,
.page-content .wp-block-quote,
.entry .wp-block-quote {
  border-left: 4px solid #93FF00;
  background-color: #fcfff5;
  padding: 1.2em 1.5em;
  margin: 1.5em 0;
  color: #333;
  font-style: normal;
  border-radius: 0 4px 4px 0;
}

/* ===============================
   グループブロック：奇数番目を白、偶数番目を薄いグレー
   =============================== */
.wp-block-group:nth-child(odd) {
  background-color: #ffffff;
  padding: 2rem 1.5rem; /* PC */
  border-radius: 8px;
}

.wp-block-group:nth-child(even) {
  background-color: #f9f9f9;
  padding: 2rem 1.5rem; /* PC */
  border-radius: 8px;
}

/* ===============================
   グループブロックを画面いっぱいに（全幅）
   =============================== */
.wp-block-group.alignfull,
.wp-block-group.is-layout-full {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: none;
  width: auto;
}

.wp-block-group.alignfull > *,
.wp-block-group.is-layout-full > * {
  box-sizing: border-box;
}

.entry-content .wp-block-group.alignfull,
.entry-content .wp-block-group.is-layout-full {
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

/************************************
** レスポンシブデザイン（タブレット・スマホ）
************************************/
@media screen and (max-width: 1023px) {
  .entry-content h2, .page-content h2, .entry h2,
  .article h2 {
    font-size: 1.7em;
    margin: 1.4em 0 1em; /* 上余白を1.4emに縮小 */
  }
  .entry-content h3, .page-content h3, .entry h3,
  .article h3 {
    font-size: 1.4em;
    margin: 1.8em 0 0.8em;
  }
  .entry-content p, .page-content p, .entry p {
    line-height: 1.75;
  }
  .wp-block-group {
    padding: 0.7rem 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .entry-content h2, .page-content h2, .entry h2,
  .article h2 {
    font-size: 1.6em;
    margin: 1.2em 0 0.9em; /* 上余白を1.2emに縮小 */
    line-height: 1.35;
  }
  .entry-content h3, .page-content h3, .entry h3,
  .article h3 {
    font-size: 1.3em;
    margin: 1.6em 0 0.7em;
    line-height: 1.4;
  }
  .entry-content p, .page-content p, .entry p {
    font-size: 0.95em;
    line-height: 1.7;
    margin-bottom: 1.1em;
  }
  .wp-block-group {
    padding: 0.6rem 1rem;
  }
}
