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


/*test*/

/* CTAボタン */
.cta-button-wrap {
  text-align: center;
  margin: 30px 0 50px;
}

.cta-button {
  display: inline-block;
  padding: 20px 50px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(180deg, #ff9a2e 0%, #ff6b00 100%);
  border-radius: 50px;  /* ← ここを大きく */
  box-shadow: 
    0 5px 0 #cc5500,
    0 8px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  position: relative;
  top: 0;
}

.cta-button:hover {
  background: linear-gradient(180deg, #ffaa4d 0%, #ff7b1a 100%);
  top: 3px;
  box-shadow: 
    0 2px 0 #cc5500,
    0 5px 8px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
  top: 5px;
  box-shadow: 
    0 0 0 #cc5500,
    0 2px 4px rgba(0, 0, 0, 0.2);
}