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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

.article h2 {
  font-size: var(--wp--preset--font-size--large, 1.8em); /* Cocoonの大きめ見出しサイズ */
  font-weight: 700;
  color: #000; /* 視認性の高い黒文字 */
  background: var(--wp--preset--color--cocoon-white, #fff);
  
  border-bottom: 3px solid var(--wp--preset--color--vivid-green-cyan);
  border-left: none;
  border-right: none;
  border-top: none;

  padding: 0 var(--wp--preset--spacing--40);
  margin: 1.2em 0 0.8em; /* 上下の余白は調整可 */
}

.article h3{
  padding: 0.6em 0 0.6em 0.8em; /* 上下＆左余白 */
  border-left: 20px solid var(--wp--preset--color--light-green-cyan);
  border-bottom: 1px solid var(--wp--preset--color--light-green-cyan);
  border-top: none;
  border-right: none;
  background: var(--wp--preset--color--cocoon-white, #fff);
  font-weight: 700;
}

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

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

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

