@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){
  /*必要ならばここにコードを書く*/
}
/* FANZAリンクボタン */
.fanza-button {
  display: inline-block;
  width: 100%;
  max-width: 520px;
  padding: 16px 20px;
  margin: 10px auto;
  box-sizing: border-box;
  background: #e60033;
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none !important;
  border-radius: 6px;
  box-shadow: 0 3px 0 #a80025;
  transition: 0.2s;
}

.fanza-button:hover {
  opacity: 0.88;
  color: #ffffff !important;
  transform: translateY(1px);
  box-shadow: 0 2px 0 #a80025;
}
/* FANZAリンクボタン */
.fanza-button {
  display: inline-block;
  width: 100%;
  max-width: 520px;
  padding: 16px 20px;
  margin: 10px auto;
  box-sizing: border-box;

  background: #f4a261;      /* 淡いオレンジ */
  color: #ffffff !important;

  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none !important;

  border-radius: 12px;      /* 少し丸み */
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);

  transition: all .2s ease;
}

.fanza-button:hover {
  background: #ee8f44;
  color: #ffffff !important;

  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}
/* FANZAリンクボタン */
.fanza-button {
  display: inline-block;
  width: 100%;
  max-width: 600px;              /* ボタンを少し横長に */
  padding: 20px 24px;            /* 高さをアップ */
  margin: 15px auto;
  box-sizing: border-box;

  background: #f4a261;
  color: #ffffff !important;

  font-size: 22px;               /* 18px → 22px */
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none !important;

  border-radius: 14px;           /* 少し丸み */
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);

  transition: all .2s ease;
}

.fanza-button:hover {
  background: #ee8f44;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
/* FANZAリンクボタン */
.fanza-button {
  display: block;               /* inline-block → block */
  width: 100%;
  max-width: 600px;
  padding: 20px 24px;

  margin: 20px auto;            /* 左右autoで中央寄せ */

  box-sizing: border-box;

  background: #f4a261;
  color: #ffffff !important;

  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none !important;

  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);

  transition: all .2s ease;
}

.fanza-button:hover {
  background: #ee8f44;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}