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

/* ===== 黒背景以外の影コード ここから ===== */
.aff-button-wrap a {
  display: inline-block;
  position: relative; /* ← フラッシュに必要 */
  padding: 14px 24px;
  background-color: #e60033;  /* FANZAレッド */
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;

  /* ✅ くっきり濃い影 */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.7),
              0 2px 4px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aff-button-wrap a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.75),
              0 4px 6px rgba(0, 0, 0, 0.5);
}

@keyframes flash-slide {
  0%   { left: -75%; }
  50%  { left: 100%; }
  100% { left: 100%; }
}
/* ===== 黒背景以外の影コード ここまで ===== */

/* プロフィールリンク用デザイン */
p.sidebar-custom-profile-link {
  margin-top: 18px;
}
.sidebar-custom-profile-link a {
  text-decoration: none;
}
/* プロフィールリンク用デザイン */

