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

/* スマホのブログタイトルを小さくする */
@media screen and (max-width: 480px) {
  .site-name-text {
    font-size: 18px !important;
  }
.logo-text {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
 }
}

h1 {
	font-size: 0.8em !important;
}



/* ===== アーカイブ タイトル直下 アフィリエイトボタン ===== */
.aff-card-btn {
    display: block;
    margin: 6px 12px 4px;
    background: #1a9e5c;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
    border-radius: 6px;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
    /* タップしやすい高さを確保 */
    min-height: 44px;
    line-height: 44px;
    padding: 0;
}

/* PCのみホバーアニメーション */
@media (hover: hover) {
    .aff-card-btn:hover {
        background: #158048;
        transform: translateY(-1px);
        color: #fff !important;
    }
}

/* ===== 記事詳細リンク（サブ・控えめ） ===== */
.aff-card-detail {
    display: block;
    margin: 2px 12px 6px;
    font-size: 12px;
    color: #666 !important;
    text-align: center;
    text-decoration: underline !important;
    position: relative;
    z-index: 2;
    /* タップ領域を広げる */
    padding: 6px 0;
    min-height: 36px;
    line-height: 36px;
}

.aff-card-detail:hover {
    color: #333 !important;
}