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

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

/** 要素フェードイン **/
.fadein {
	opacity: 0;
	transform: translateY(30px);
	transition-property: transform, opacity;
	transition-duration: 1.0s;
	transition-delay: 0.1s;
}
.fadein.is-active {
	opacity: 1;
	transform: translateY(0);
}

/** ページ全体フェードイン **/
.body {
	animation: fadein 2s forwards;
}
@keyframes fadein {
	0% {opacity: 0} 
	100% {opacity: 1} 
}

/** 画像を揺らすエフェクト **/
.shakeimage{
 animation: fluffy1 1.5s ease infinite; 
}
@keyframes fluffy1 {
  0% {
    transform: translateY(0); }
  5% {
    transform: translateY(0); }
  10% {
    transform: translateY(0); }
  20% {
    transform: translateY(-10px); }
  25% {
    transform: translateY(0); }
  30% {
    transform: translateY(-10px); }
  50% {
    transform: translateY(0); }
  100% {
    transform: translateY(0); } }

/* Cocoon(子)の仕様でテーブル背景がデフォルトでもスプライトになるため書き換える */
table tr:nth-of-type(2n + 1) {
  background-color: inherit;
}

/* ハンバーガーボタンとフッターモバイルメニューのアイコンサイズ */
.mobile-menu-buttons .menu-icon {
  font-size: 30px;
}
#search-menu-open {
  display: none;
}

/** 見出しカスタマイズ（h1-3) **/
.article h1
,.article h2
,.article h3
/*,.article h4*/
/*,.article h5*/
/*,.article h6*/
{ /*見出し初期化*/
  padding: 0;
  margin: 0;
  font-size: medium;
  border-collapse: separate;
  border-spacing: 0;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: none;
  line-height: normal;
  position:relative;
}
.article h1{ 
  /*background: #ffddee; */
  font-size: 22px; /*フォントサイズ*/
  letter-spacing: 1px; /*文字間隔*/
  margin: -8px -8px 20px -8px;
  padding: 9px 10px 9px 10px;
  /*border-left: 10px solid #fe619a;*/
  border-left: 0px;
  line-height: 35px; /*高さ*/
  /*border-radius: 3px; 角丸コーナー*/
  }
.article h2{ 
  /*background: #fff2f9; */
  font-size: 20px; /*フォントサイズ*/
  letter-spacing: 2px; /*文字間隔*/
  margin: 35px -8px 20px -8px;
  padding: 10px 7px 10px 10px;
  /*border-left: 7px solid #fe619a; */
  border-left: 0px;
  border-bottom: 0px;
  /*border-bottom: 1px solid #fe619a; */
  line-height: 27px; /*高さ*/
  --skin-grayish-site-main-hover: 0px;
}
.article h3{ 
  /*background: #fff2f9; */
  font-size: 18px; /*フォントサイズ*/
  letter-spacing: 2px; /*文字間隔*/
  margin: 35px -8px 20px -8px;
  padding: 9px 7px 9px 10px;
  /*border-left: 5px solid #fe619a;*/
  line-height: 25px; /*高さ*/
}

/** マーカー **/
.marker01 {
  background-image: linear-gradient(120deg, #EFDFE1,#EEEDED 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: 0 90%;
  transition:background-size 1.5s;
}
.marker01.on {
  background-size: 100% 100%;
}

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

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

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