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

.notice-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #00796b;
  color: #fff;
  text-align: center;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
  z-index: 9999;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
}

.notice-bar a {
  color: #ffd700;
  text-decoration: underline;
}

/* スマホ表示時に改行を入れる */
@media (max-width: 768px) {
  .notice-bar strong:first-of-type::after {
    content: "\A";  /* 改行コード */
    white-space: pre;
  }
}