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

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

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

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

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
/*YouTube動画の中央配置*/
.video-container{
margin: 0px auto;
}


/* 1. 元々のタイトル「コメントをどうぞ」をID指定で確実に消す */
#reply-title, 
.comment-reply-title {
    display: none !important;
}

.comment-title {
    display: block !important;
    text-align: left !important;
    font-size: 20px !important;       /* ほんの少しだけ大きく */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; /* システムフォント系 */
    font-weight: 700 !important;      /* どっしりした太字 */
    color: #1a1a1a !important;
    
    /* 装飾：上の線を消して、左の棒を強調 */
    padding: 4px 0 4px 15px !important;
    border-top: none !important;      /* 上の線を確実に消す */
    border-bottom: none !important;   /* 下の線も消してスッキリ */
    border-left: 5px solid #1a1a1a !important; /* 少し太めの黒棒 */
    
    margin: 50px 0 25px 0 !important; /* 上の余白をさらに広げてセクションを分ける */
    letter-spacing: 0.02em !important;
    line-height: 1.2 !important;
}

/* ついでに「メールアドレスが公開されることは〜」の文字を少し薄くして主役を引き立てる */
.comment-notes {
    font-size: 12px !important;
    color: #888 !important;
    margin-bottom: 25px !important;
    margin-left: 2px !important;
}


#submit {
    width: 100%;
    padding: 14px !important;
    background: #333 !important; /* 濃い色にする */
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    font-weight: bold !important;
    cursor: pointer;
    transition: 0.3s;
}

#submit:hover {
    background: #555 !important;
    opacity: 0.8;
}



/* 1. 各入力項目のラベル（コメント、名前、メール、サイト） */
.comment-form label {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif !important;
    font-size: 13px !important;    /* 12pxだと少し小さすぎるので、読みやすさを考慮して13px */
    font-weight: 600 !important;   /* 少しだけ太くして、視認性を確保 */
    margin-bottom: 5px;
    display: inline-block;
}

/* 2. 「※」の記号（必須項目）のサイズも微調整 */
.required {
    font-size: 11px !important;
    vertical-align: top;
}

/* 「次回のコメントで使用するため〜」のラベルを補足説明文と統一 */
.comment-form-cookies-consent label {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif !important;
    font-size: 12px !important;    /* 補足説明文と同じサイズ */
    color: #888 !important;        /* 補足説明文と同じ薄いグレー */
    font-weight: normal !important; /* 細めに設定 */
    line-height: 1.6 !important;
    margin-left: 5px !important;
    cursor: pointer;
}

/* チェックボックス自体の大きさも少し控えめにしてバランスを取る */
.comment-form-cookies-consent input[type="checkbox"] {
    width: 13px !important;
    height: 13px !important;
    vertical-align: middle !important;
    margin-top: -2px !important;
}


/* 入力欄をクリックした時の青い枠を黒に統一 */
#commentform input:focus, 
#commentform textarea:focus {
    border-color: #333 !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1) !important; /* ほんのりとした影 */
}

/* 「私は人間です」のフォントもラベルと完全に合わせる */
.comment-spam-check label {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #333 !important;
}


/* 4. 入力ボックス内のフォントも統一（ここも大事です） */
#commentform input, 
#commentform textarea {
    font-family: inherit !important;
    font-size: 14px !important;    /* 入力中は少し大きめが使いやすい */
}




