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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/* 点滅アニメーションの定義 */
@keyframes blinking {
  0%   { opacity: 1; }
  70%  { opacity: 1; }
  85%  { opacity: 0; }
  100% { opacity: 0; }
}
/* 点滅アニメーションを適用 */
.text-blink {
  animation: blinking 2s ease-in-out infinite alternate;
}

/* パルスアニメーションの定義 */
@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}
/* パルスアニメーションを適用 */
p.text-pulse {
  animation: pulse 2s ease-in-out infinite;
  margin-bottom: 0;
  color: #e8383d;
  font-weight: bold;
  font-size: 1.2em;
}
p.text-pulse-sm {
    font-size: 1em;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*769px以上*/
@media screen and (min-width: 769px) {
  /* ここにPC向けのCSSを記述 */
	.is-pcmenu-on .mobile-menu-buttons.mobile-footer-menu-buttons {
		display: none;
	}
}

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

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

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