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

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

/*タイトルフォント*/
.site-name-text{font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 50px
}


/*アニメーション*/
.body {
	animation: fadein 2s forwards; /*アニメーション指定*/
}

@keyframes fadein {
	0% {opacity: 0} /*アニメーション開始時*/
	100% {opacity: 1} /*アニメーション終了時*
}

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

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

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

/* 一覧アイキャッチのカテゴリ非表示 */
.cat-label {
  display: none;
}

/* カテゴリ名と画像サムネイル上のタイトルだけに白色＋影を適用 */
div.navi-entry-card-title.widget-entry-card-title.card-title {
  font-family: "Noto Sans JP", "Kosugi Maru", "Meiryo", sans-serif !important;
  font-weight: 900 !important;
  font-size: 22px !important;
  color: #fff !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7) !important;
  text-align: center;
}

.warm-message {
  font-weight: bold !important;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6) !important;
  font-size: 1.2em !important;
  color: white !important;
}

.tagline {
  font-size: 14px !important;
  font-weight: bold !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6) !important;
  color: white !important;
  line-height: 1.4 !important;
}