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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/* CTAボックスの背景を透明にする */
.cta-box {
  background-color: transparent !important;
  box-shadow: none !important; /* 影がある場合は消す */
  border: none; /* 枠線がある場合は消す（必要に応じて） */
	
	/* サイズ調整 */
  max-width: 60px;        /* 最大幅を指定（例：800px） */
  margin: 20px auto;       /* 上下余白40px、中央寄せ */
  padding: 5px;           /* 内側の余白 */
  box-sizing: border-box;  /* パディング込みでサイズを計算 */
	
}








/* ボタン内の画像サイズを調整（必要な場合） */
.article .button-caption img,
.article .entry-content .btn img {
  width: 100px !important;
  height: auto !important;
}








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

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

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