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


.ero-button-wrapper {
  text-align: center;
  margin: 30px 0;
}

.custom-ero-button {
  display: block;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 18px 24px;
  background: #f13661;
  background: linear-gradient(to right, #f13661, #ff7f50);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
  line-height: 1.4;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
}

.custom-ero-button:hover {
  /* opacity削除 */
  /* opacity: 0.9; 削除 */

  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);

  /* 文字の視認性をキープ */
  color: #fff; /* 文字色を白に固定 */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  background: linear-gradient(to right, #e63358, #ff7043); /* 少し暗めのグラデに変更 */
}


.main-image {
  text-align: center;
}
.main-image img {
  display: inline-block; /* 画像の余計な幅をなくす */
  max-width: 100%;       /* 画像のはみ出し防止 */
  height: auto;          /* 縦横比を維持 */
}

