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


.center {
  text-align: center;
  margin-bottom: 0;
}

.center p {
  margin-bottom: 0;
  /* 真ん中寄せ本文にHTMLも必要 */
}



.button-container {
  text-align: center;
}

.hulu-button {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 10px 20px;
  background-color: #3de133;
  color: #000;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.hulu-button::before {
  content: "";
  position: absolute;
  left: -50%;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  transform: skewX(-25deg);
  transform-origin: bottom right;
}

.hulu-button:hover::before {
  animation: shine 0.5s forwards;
}

@keyframes shine {
  100% {
    left: 100%;
  }
}


/* アフィリエイトの文言をヘッダーに入れた時に文字を大きくした。カスタマイズからキャッチフレーズを入れた2023.9.30 */
.tagline{
font-size: 14pt;
}


h1, h2, h3, h4, h5, h6 {
  margin-top: 5em; /* 見出しの上に空白5em.2024.8/15 */
}