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

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

/* 記事一覧の背景色変更 2025/02/26 */
.a-wrap{
    background-color: #f0f8ff;
}

/* コンテンツ下部「つぶやき」の文字色変更 2025/02/27 */
h2.widget-content-bottom-title.main-widget-label.widget-title {
    color: #81b742;
}

/* コンテンツ右側の最近の投稿背景色変更 2025/02/27 */
a.wp-block-latest-posts__post-title{
    background-color: #f0f8ff;
    margin: 5px;
}

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

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

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

/* つぶやきセクション */
.tweet-list {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.tweet-list h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
}

.tweet-item {
    border-bottom: 1px solid #ddd;
    padding: 5px 0;
}

.tweet-item:last-child {
    border-bottom: none;
}

.tweet-item a {
    text-decoration: none;
    color: #333;
}

.tweet-date {
    font-size: 0.8em;
    color: #999;
}

.tweet-item-title {
    font-size: 0.8em;
    color: #0056b3;
    margin: 2px 0;
}

.tweet-item:hover .tweet-item-title {
    color: #0073e6;
}

