@charset "UTF-8";
/* Google FontsからZen Maru Gothicを読み込む */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;700&display=swap');

/* サイト全体のフォントをZen Maru Gothicに指定 */
body {
    font-family: "Zen Maru Gothic", sans-serif !important;
}

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

/* 画像とボタンの角を丸くして優しく */
img, .btn, .wp-block-button__link {
    border-radius: 20px !important;
}

/* 見出し前後の「静かな余白」設定 */
.article h2 {
    margin-top: 60px !important;
    margin-bottom: 40px !important;
    border-radius: 10px;
    background-color: #FF6F61; /* 見出しもビッピの色に */
    color: #fff;
    padding: 1rem 1.5rem;
}

/* 記事エリアをTシャツのアイボリー色に */
#main {
    background-color: #FFF4D6;
    border-radius: 15px;
    padding: 20px;
}

