@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){
  /*必要ならばここにコードを書く*/
}
/*固定ページの投稿日、更新日、投稿者名を非表示にする*/
.page .date-tags,
.page .author-info {
    display: none;
}
/* ヘッダー・通知エリア周辺の余白調整 */
.notice-area + .content {
    margin-top: 0px;
}
/* フッターウィジェットの余白を小さくする */
.footer-widgets {
    padding-top: 12px !important;
    padding-bottom: 8px !important;
}

/* フッターウィジェット内の余白 */
.footer-widgets .widget {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* フッターの文字を少し小さく */
.footer-widgets {
    font-size: 12px;
}
/* アクセスカウンターをCopyright側へ寄せる */
.footer-widgets {
    padding-bottom: 0 !important;
}

.footer-widgets .widget {
    margin-bottom: -35px !important;
}

.custom-youtube-640 {
  max-width: 640px;
  margin-left: 0;      /* 左端に配置 */
  margin-right: auto;
}

/* レスポンシブ対応（アスペクト比 16:9 の維持） */
.custom-youtube-640 iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

/* ==================================================
   北海道ラジオノート
   トップページ「新着記事」最終版
   ================================================== */

/* 新着記事全体 */
.info-list-box {
    max-width: 700px !important;
    margin: 20px auto 20px !important;
}

/* 「新着記事」見出し */
.info-list-caption {
    font-size: 20px !important;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

/* 各記事 */
.info-list-item {
    padding: 13px 10px !important;
    min-height: auto !important;
}

/* 記事タイトル */
.info-list-item .info-list-title {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
}

/* 日付 */
.info-list-item .info-list-date {
    font-size: 13px;
    color: #999;
}

/* カテゴリー */
.info-list-item .info-list-category {
    display: inline-block !important;
    font-size: 11px;
}

/* リンクの下線を消す */
.info-list-item a {
    text-decoration: none;
}

/* マウスを乗せた時 */
.info-list-item a:hover .info-list-title {
    color: #4F7FA3;
}

/* スマートフォン */
@media screen and (max-width: 600px) {

    .info-list-box {
        width: auto !important;
        margin: 15px 15px 20px !important;
    }

    .info-list-caption {
        font-size: 19px !important;
        margin-bottom: 10px;
    }

    .info-list-item {
        padding: 11px 5px !important;
    }

    .info-list-item .info-list-title {
        font-size: 14px;
        line-height: 1.6;
    }

    .info-list-item .info-list-date {
        font-size: 12px;
    }

    .info-list-item .info-list-category {
        font-size: 10px;
    }
}