@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){
  /*必要ならばここにコードを書く*/
}
function add_purchase_button($content) {
    if (is_single()) {
        $button = '
        <div style="
            background:#F5F0E8;
            border-radius:12px;
            padding:20px;
            text-align:center;
            border:1px solid #DDD0BA;
            margin-top:40px;
        ">
            <div style="font-size:13px;color:#8B6F47;margin-bottom:6px;">
                新潟の酒蔵から届く
            </div>
            <div style="font-size:16px;font-weight:700;color:#3A2A1E;margin-bottom:14px;">
                本物の酒粕を購入する
            </div>
            <a href="https://sakekasu.online" 
               style="
                   display:block;
                   background:#5C4433;
                   color:#fff;
                   padding:12px;
                   border-radius:8px;
                   text-decoration:none;
                   font-size:14px;
                   font-weight:700;
                   margin-bottom:8px;
               ">
                酒粕オンラインへ →
            </a>
            <a href="https://miniapp.line.me/2009486550-f6gMgN0L"
               style="
                   display:block;
                   background:#06C755;
                   color:#fff;
                   padding:12px;
                   border-radius:8px;
                   text-decoration:none;
                   font-size:14px;
                   font-weight:700;
               ">
                レシピをLINEで見る →
            </a>
        </div>';
        $content = $content . $button;
    }
    return $content;
}
add_filter('the_content', 'add_purchase_button');