@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; /* 太字に固定 */
}

/* 全体のグリッド設定 */
.writer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* 各ライターの箱 */
.writer-box a {
    text-decoration: none;
    color: #333;
    display: block;
    text-align: center;
    transition: transform 0.2s;
}

.writer-box a:hover {
    transform: scale(1.05); /* マウスホバーで少し大きく */
}

.writer-image img {
    width: 100%;
    height: auto;
    border: 3px solid #000; /* オモコロ風の太い枠線 */
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* キャッチコピーと名前 */
.writer-tagline {
    display: block;
    font-size: 12px;
    color: #ef454a; /* アクセントカラー */
    margin-top: 10px;
    font-family: "UD新ゴNT", sans-serif;
}

.writer-name {
    font-size: 18px;
    font-weight: 900;
    font-family: "UD新ゴNT", sans-serif;
    margin: 0;
}

/* オモコロ風の「見出し」デザイン */
.waku-title {
    font-family: "UD新ゴNT", sans-serif;
    font-weight: 900;
    border-left: 10px solid #000;
    padding-left: 15px;
    margin-bottom: 30px;
    font-size: 28px;
}