@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){
  /*必要ならばここにコードを書く*/
}
投稿テンプレの本文内の "%%site_title%%" を WordPressのサイトタイトルに置き換える

// ▼▼▼ 投稿テンプレート用：ショートコードとタイトル置換の処理 ▼▼▼

function replace_site_title_tag($content) {
    // 本文内の "%%site_title%%" を WordPressのサイトタイトルに置き換える
    return str_replace('%%site_title%%', get_bloginfo('name'), $content);
}

add_filter('the_content', 'replace_site_title_tag');
// 本文（the_content）にフィルターをかけて、%%site_title%% を置換する

// ショートコード：[fanza_template] を使えるようにする
add_shortcode('fanza_template', 'render_fanza_template');

// ▲▲▲ 投稿テンプレート用：ショートコードとタイトル置換の処理ここまで ▲▲▲

/* ===== 記事タイトル非表示 ここから ===== */
.entry-title {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px); /* 画面外に追い出す */
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
/* ===== 記事タイトル非表示 ここまで ===== */

/* ===== 黒背景・白背景の影コード ここから ===== */
.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;

  /* 背景に応じて反転する影 */
  filter: drop-shadow(0 4px 6px black);
  mix-blend-mode: difference;

  transition: transform 0.2s ease, filter 0.2s ease;
}

.aff-button-wrap a:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 6px 12px black);
}
/* ===== 黒背景・白背景の影コード ここまで ===== */
/* プロフィールリンク用デザイン */
p.sidebar-custom-profile-link {
  margin-top: 18px;
}
.sidebar-custom-profile-link a {
  text-decoration: none;
}
/* プロフィールリンク用デザイン */

