@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
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/* 買出人章申請ボタンのスタイル */

/* PC用ボタン（サイドバー） */
.kaidashi-button-widget {
    margin: 20px 0;
    padding: 0;
}

.kaidashi-btn {
    display: block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: #ffffff !important;
    text-align: center;
    padding: 18px 20px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(255, 82, 82, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #ff5252;
    line-height: 1.6;
}

.kaidashi-btn:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff3838 100%);
    box-shadow: 0 6px 16px rgba(255, 82, 82, 0.4);
    transform: translateY(-2px);
}

.kaidashi-btn .btn-icon {
    font-size: 20px;
    margin-right: 8px;
    display: inline-block;
}

/* モバイル用ボタン（タイトル下） */
.kaidashi-button-mobile {
    margin: 0;
    padding: 15px;
    max-width: 100%;
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
}

.kaidashi-btn-mobile {
    display: block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: #ffffff !important;
    text-align: center;
    padding: 16px 20px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(255, 82, 82, 0.3);
    border: 2px solid #ff5252;
    line-height: 1.5;
}

.kaidashi-btn-mobile .btn-icon {
    font-size: 18px;
    margin-right: 6px;
    display: inline-block;
}
/* PC/モバイル表示切替 */
.pc-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 834px) {
    .pc-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
