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

/************************************
** 内部リンクカード
************************************/
.internal-blogcard::after {
    content: '記事を読む \00bb';
    position: absolute;
    bottom: .5rem;
    right: 1rem;
    font-size: 70%;
    background-color: #ffd242;
    padding: .4em 3em;
    font-weight: bold;
    color: #fff;
    border-radius: 2px;
}

/************************************
** ヘッダーロゴ
************************************/
.site-logo-image.header-site-logo-image {
    width: auto !important;
    height: auto !important;
    aspect-ratio: 350 / 88;
}

/************************************
** ボーダー・シャドウ削除
************************************/
#container,
#content,
.content-in,
#main {
    border: none !important;
    box-shadow: none !important;
}

/************************************
** トップページ：非表示要素
************************************/
.home .sns-share {
    display: none;
}
.sns-follow-buttons {
    display: none;
}
.sns-follow-message {
    display: none;
}

/************************************
** モバイル用アピールエリア画像切り替え
************************************/
@media screen and (max-width: 834px) {
    .appeal {
        background-image: url(https://sister-ley.com/wp-content/uploads/2026/05/sister-leys-whisky-blog-coloring-daily-life-with-whisky-blog-mobile.webp) !important;
        background-position: center center !important;
        background-size: cover !important;
    }
}
/* モバイル：ナビゲーションカードを横一列スクロール */
@media screen and (max-width: 834px) {
    .recommended-in {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 8px;
        gap: 6px;
    }
    .recommended-in::-webkit-scrollbar {
        display: none;
    }
    .navi-entry-cards {
        display: contents !important;
    }
    .navi-entry-card-link {
        flex: 0 0 130px !important;
        width: 130px !important;
    }
    .navi-entry-card-image {
        width: 130px !important;
        height: 80px !important;
        object-fit: cover !important;
    }
}
/* トップページ見出しデザイン */
.home .entry-title,
.home .widget-title,
.home .widgettitle {
    position: relative;
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    padding: 0.5em 0 0.8em;
    margin-bottom: 1.2em;
}
.home .entry-title::after,
.home .widget-title::after,
.home .widgettitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #c8a96e;
    border-radius: 2px;
}
/* トップページ見出し：横線で囲むスタイル */
.home h2 {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    border: none;
    padding: 0.5em 0;
    margin: 1.5em 0 1em;
}
.home h2::before,
.home h2::after {
    content: '';
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: #c8a96e;
}