@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 .marker-red, 
body b.marker-red, 
body span.marker-red {
    background: linear-gradient(transparent 20%, #D1C5B3 20%) !important;
}
/* 細いアンダーライン */
body .marker-under-red, 
body b.marker-under-red, 
body span.marker-under-red {
    background: linear-gradient(transparent 70%, #D1C5B3 70%) !important;
}

/* --- 青ボタン：くすみ緑（セージグリーン） --- */
/* 太いマーカー */
body .marker-blue, 
body b.marker-blue, 
body span.marker-blue {
    background: linear-gradient(transparent 20%, #B2C6D3 20%) !important;
}
/* 細いアンダーライン */
body .marker-under-blue, 
body b.marker-under-blue, 
body span.marker-under-blue {
    background: linear-gradient(transparent 70%, #B2C6D3 70%) !important;
}
/* --- 新しく作った4色のライン --- */

/* 1. くすみグリーン */
.m-green {
    background: linear-gradient(transparent 75%, #A1D0B6 75%) !important;
}

/* 2. グレージュ */
.m-beige {
    background: linear-gradient(transparent 75%, #D1C5B3 75%) !important;
}

/* 3. オールドローズ */
.m-rose {
    background: linear-gradient(transparent 75%, #D0A7A1 75%) !important;
}

/* 4. くすみブルー */
.m-blue {
    background: linear-gradient(transparent 75%, #B2C6D3 75%) !important;
}