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

/* サイト全体の文字デザインをプロ仕様にする */
body, h1, h2, h3, h4, h5, h6, p, a, li, dt, dd, input, textarea, select {
    /* フォント名を正確に指定（TypeSquareの指定に合わせる） */
    font-family: "UD新ゴNT", sans-serif !important;
    
    /* プロの技：文字詰め（ペアカーニング）を有効にする */
    font-feature-settings: "palt"; 
    
    /* 読みやすさのために少しだけ文字間を広げる */
    letter-spacing: 0.03em;
    
    /* 行間をオモコロっぽく少し広めにとる */
    line-height: 1.8;
}

/* 記事タイトルのデザインを際立たせる */
.entry-title, .widget-title {
    font-weight: 700; /* 太字に固定 */
}