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

/************************************
** 子テーマ用のスタイルを書く
************************************/
.cta-button {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #ff2a68, #6c00ff);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #6c00ff, #ff2a68);
}

.cta-button:active {
  transform: scale(0.98);
  box-shadow: none;
}

.tagline {
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.05em;
  color: #222222cc; /* 落ち着いた黒（80%不透明） */
  margin: 16px 0;
  text-align: center;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* 控えめな立体感 */
  animation: fadeInUp 1s ease-out both;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


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

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

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


