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

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

/* メインコンテンツ（サイドバーなしVer）の最大幅を設定 */
.no-sidebar .content .main{
  max-width: 860px;
}

/* 記事内広告でad-labelがnoneになるので強制表示 */
.article-footer .ad-label-invisible .ad-label{
  display: block !important;
}

/* カテゴリー一覧タイトルのbeforeアイコンを非表示 */
.archive-title .fa::before{
  display: none;
}

/* ADラベル */
.ad-label {
	font-size:14px;
	color:#999;
	text-transform: uppercase;
	padding: 0 0 16px;
}
.ad-label:before {
    background: #ccc;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 50%;
    width: 100%;
}

#div-gpt-ad-rectangle-1 {
	min-height: 250px;
}

/* 記事画像サイズの調整 */
.wp-block-image img{
  width: 100%;
  max-width: 800px;
}

@media screen and (max-width: 1023px){
  .wp-block-image img{
    width: auto;
    max-width: 100%;
  }
}
---------------------------------

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
	
	/* SP下ナビゲーションのアイコンを非表示 */
  .mobile-menu-buttons .menu-caption{
    display: none;
  }
}

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

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