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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
.eye-catch {
    position: relative; /* アイキャッチ画像内で配置を調整 */
}

.eye-catch::after {
    content: "PR"; /* 表示したいテキストを設定 */
    position: absolute;
    bottom: 10px; /* 右下に配置 */
    right: 10px; /* 右端に配置 */
    color:#000000; /* テキストを白色に設定 */
    font-size: 13px; /* テキストサイズ */
padding-top: 0px; /* 上方向の余白 */
padding-bottom: 0px; /* 下方向の余白 */
padding-left: 0px; /* 左方向の余白 */
padding-right: 0px; /* 右方向の余白 */

    border: 1px solid #fff; /* 白色の枠線 */
    background: #fff; /* 背景は透過 */
    border-radius: 3px; /* 枠の角を丸くする */
    text-align: center; /* テキストを中央揃え */
    z-index: 10; /* 他の要素より前面に表示 */
    text-transform: none; /* 大文字・小文字の自動変換を防ぐ */
    white-space: nowrap; /* テキストの折り返しを防ぐ */
}
.eye-catch {
    position: relative; /* 配置を調整 */
    margin: 0 auto; /* 要素を中央に配置 */
    display: block; /* block要素として表示 */
    text-align: center; /* 内容を中央揃えに */
}
/*---------------------------------
固定ページのタイトルを非表示にする
--------------------------------*/
.home.page .entry-title{
  display: none;
}
/*---------------------------------
複数の固定ページの日付を非表示にする
--------------------------------*/
.post-305 .date-tags {
  display: none;
	

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

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

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