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

/************************************
** 子テーマ用のスタイルを書く
************************************/


/* ===== PC表示 ===== */
.top-manga-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* 左：アイキャッチ */
.top-manga-thumb {
    flex-shrink: 0;
}

.top-manga-thumb img {
    width: 200px;
    height: auto;
    display: block;
}

/* 右：テキスト */
.top-manga-title {
    font-size: 1.5em;
    margin: 0;
}

.top-manga-title a {
    text-decoration: none;
    color: inherit;
}

.top-manga-title a:hover {
    text-decoration: underline;
}
/* 更新日 */
.top-manga-date {
    font-size: 0.9em;
    color: #666;
    margin-top: 4px;
}
/* ===== スマホ表示 ===== */
@media screen and (max-width: 768px) {

    /* 縦並び */
    .top-manga-item {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    /* タイトルを上に */
    .top-manga-text {
        order: -1;              /* 画像より上に配置 */
        padding: 0 4px;
    }

    .top-manga-title {
        font-size: 1.2em;
        text-align: left;       /* 左寄せ */
    }

    .top-manga-thumb img {
        width: 100%;
    }
}

/* 漫画用：PC・スマホ共通 */
.manga-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* スマホ専用調整 */
@media screen and (max-width: 768px) {
    .manga-image img {
        width: 100vw;
        max-width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
}

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

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

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