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

/************************************
** 子テーマ用のスタイルを書く
************************************/
.pr-text {
   font-size: 1rem;
   text-align: center;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
    .amazon-affiliate-button {
      display: flex;
      align-items: center;
      text-decoration: none;
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 4px;
      padding: 10px 30px;
      transition: box-shadow 0.3s;
      max-width: 600px;
      margin: 20px auto;
    }
    .amazon-affiliate-button:hover {
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    .product-image {
      width: 150px;
      height: auto;
      object-fit: cover;
      margin-right: 12px;
      border-radius: 4px;
    }
    .product-info {
      display: flex;
      flex-direction: column;
    }
    .product-title {
      font-size: 16px;
      color: #333;
      margin: 0 0 6px;
      line-height: 1.2;
    }
    .product-meta {
      font-size: 14px;
      color: #666;
      margin: 0;
    }
    p.product-meta {
        font-size: 18px;
    }
    /* 1023px以下 */
    @media screen and (max-width: 1023px) {
      .amazon-affiliate-button {
        padding: 8px;
        max-width: 90%;
      }
      .product-image {
        width: 150px;
        height: auto;
        margin-right: 10px;
      }
      .product-title {
        font-size: 15px;
      }
      .product-meta {
        font-size: 13px;
      }
    }

    /* 834px以下 */
    @media screen and (max-width: 834px) {
      .amazon-affiliate-button {
        padding: 6px;
        max-width: 90%;
      }
      .product-image {
        width: 150px;
        height: auto;
        margin-right: 8px;
      }
      .product-title {
        font-size: 14px;
      }
      .product-meta {
        font-size: 12px;
      }
    }

    /* 480px以下 */
    @media screen and (max-width: 480px) {
      .amazon-affiliate-button {
        flex-direction: column;
        text-align: center;
        padding: 8px;
        max-width: 90%;
      }
      .product-image {
        width: 150px;
        height: auto;
        margin: 0 0 8px;
      }
      .product-info {
        align-items: center;
      }
      .product-title {
        font-size: 15px;
      }
      .product-meta {
        font-size: 13px;
      }
    }
}