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

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

/* 囲みボタンに影をつける  */
.button-shadow > a  {
	box-shadow: 0px 5px 5px 0px #808080;
	
	/* ホバーしたら沈む */
	&:hover {
	  box-shadow: none;
	  transform: translate3d(0, 2px, 0);
	  transition-duration: 0.2s;
	}
	
	animation-name: updown;   /* アニメーション名の指定 */
	animation-delay: 0s;   /* アニメーションの開始時間指定 */
	animation-duration: 3s;   /* アニメーション動作時間の指定 */
	animation-timing-function: ease-in-out;  /* アニメーションの動き指定（徐々に早く）*/
	animation-iteration-count: infinite; 
}
@keyframes updown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

/* 投稿ページのみヘッダーを消す*/
.single #header-container {
  display: none;
}


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

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

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