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


/************************************
** 読みやすさ調整（2026-07-05追加）
** 表のヘッダー強調・縞模様・リスト行間
************************************/
.entry-content table th{
  background:#eaf3fb;
  font-weight:700;
}
.entry-content table tr:nth-child(even)>td{
  background:#f7fafd;
}
.entry-content table th,
.entry-content table td{
  padding:10px 12px;
}
.entry-content li{
  margin-bottom:.4em;
}
.entry-content li:last-child{
  margin-bottom:0;
}

/************************************
** 記事内H3の青字・下線を外す（2026-07-18追加）
** スキンveilnui-simplog-blueがh2〜h6を一括で青字＋下線に
** しており、H2とH3の階層差が出ないため
************************************/
#main .entry-content h3{
  color:inherit;
  border-bottom:0 none;
  padding-left:0;
  padding-right:0;
}
