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

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


/* =======================================
   1. 絞り込みフォーム（フィルター）部分
======================================= */
/*最新スケジュール5件*/
/* 最新スケジュール特有の調整 */
.today-summary.recent-schedule-history .schedule-item {
    padding: 15px !important; /* 縦余白を少し増やして窮屈さを解消 */
    flex-direction: column !important; /* 縦並びを強制（スマホで自然に） */
    align-items: flex-start !important;
}

.today-summary.recent-schedule-history .schedule-meta {
    display: flex !important;
    flex-wrap: wrap !important; /* スマホで折り返しやすく */
    gap: 8px !important;
}

.today-summary.recent-schedule-history .schedule-content {
    margin-top: 8px !important; /* 上段と下段の間隔を追加 */
}

.today-summary.recent-schedule-history .event-sub-info {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important; /* メンバーと場所の間隔 */
}

/* スマホ特化（メディアクエリで） */
@media (max-width: 768px) {
    .today-summary.recent-schedule-history .schedule-item {
        padding: 12px !important; /* スマホでコンパクトに */
    }
    .today-summary.recent-schedule-history .date {
        font-size: 1rem !important; /* 日付を少し目立たせて */
    }
}

/*最新スケジュール5件ここまで*/
/*スケジュールまとめの絞込*/
/* フォーム自体 */
.filter-form {
    display: flex;
    flex-direction: column;
}

/* details要素のグループ */
.filter-group {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

/* summary（タイトル） */
.filter-summary {
    background: #eee;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
    list-style: none; /* マーカー非表示 */
}

/* details open時のスタイル */
.filter-group[open] .filter-summary {
    background: #ddd;
}

/* コンテンツエリア */
.filter-content {
    padding: 10px;
    display: flex;
    flex-wrap: wrap; /* 横並びで折り返し */
    gap: 10px; /* 項目間の間隔 */
}

/* 各ラベル（チェックボックス項目） */
.filter-label {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.filter-label:hover {
    background: #f0f7ff;
}

/* チェックボックス */
.filter-label input[type="checkbox"] {
    margin-right: 5px;
}

/* リセットリンク */
.filter-reset {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.filter-reset:hover {
    text-decoration: underline;
}

/* 選択状態のラベル（全体に色付け） */
.filter-label:has(input[type="checkbox"]:checked) {
    background-color: #007bff !important; /* 青色（メインカラー例） */
    color: #fff !important; /* テキストを白に */
    border-color: #0056b3 !important; /* ボーダーも少し濃く */
}

/* ホバー時との区別（任意） */
.filter-label:hover:has(input[type="checkbox"]:checked) {
    background-color: #0056b3 !important; /* ホバーで少し暗く */
}
/*スケジュールまとめの絞込CSSここまで*/
/* --- 絞り込みフォーム --- */
.filter-section { margin-bottom: 20px; padding: 0 10px; }
.filter-group { background: #f8f8f8; border-radius: 8px; margin-bottom: 12px; border: 1px solid #eee; overflow: hidden; display: block !important; width: 100%; }
.filter-summary { display: block !important; padding: 5px 50px 5px 15px !important; font-weight: bold; font-size: 0.85rem; cursor: pointer; position: relative; list-style: none; background: #f8f8f8; }
.filter-summary::-webkit-details-marker { display: none; }
.filter-summary::marker { content: ""; }
.filter-summary::after { content: "＋"; position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: #e91e63; font-weight: bold; }
.filter-group[open] .filter-summary::after { content: "－"; }
.filter-content { padding: 12px; background: #fff; display: flex; flex-wrap: wrap; gap: 8px; border-top: 1px solid #eee; }
.filter-label { cursor: pointer; margin: 0 !important; }
.filter-label input { display: none; }
.filter-label span { display: inline-block; padding: 2px 5px; border: 1px solid #ddd; border-radius: 10px; font-size: 0.8rem; background: #fff; }
.filter-label input:checked + span { background: #e91e63; color: #fff; border-color: #e91e63; }
.filter-reset { display: block; text-align: center; font-size: 0.8rem; color: #888; margin-top: 10px; text-decoration: underline; }
/*縦型に並べる*/
/* --- 縦型カードのグリッドレイアウト（画面幅で列数を制御） --- */
.update-list {
    display: grid;
    gap: 20px; /* カード間のスペース */
    /* デフォルト（PC）は3列 */
    grid-template-columns: repeat(3, 1fr);
}

/* タブレット〜スマホ横向き（画面幅992px以下）の時は2列または3列お好みで */
@media (max-width: 992px) {
    .update-list {
        grid-template-columns: repeat(3, 1fr); /* iPadなどでは3列キープでもOK */
    }
}

/* スマホ縦向き（画面幅600px以下）の時は強制的に2列 */
@media (max-width: 600px) {
    .update-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px; /* スマホの時は隙間を少し狭くして圧迫感を減らす */
    }
    
    /* スマホで2列にするなら、文字サイズなども少し小さくすると綺麗に収まります */
    .update-thumb-wrapper {
        aspect-ratio: 1 / 1; /* スマホで2列だと横幅が狭いので、正方形にするとサムネが映えます（お好みで） */
    }
    .update-desc {
        font-size: 0.85rem !important; /* 説明文を少し縮小 */
    }
}
/* --- 投稿リスト全体 --- */
.update-item {
    display: flex;
    flex-direction: column;  /* 縦型に */
    background: #fff;  /* カード背景を明確に */
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;  /* 角丸で綺麗に */
}
.update-item:hover {
    background-color: #fafafa; /* ホバー時に少し色を変える */
}

/* カード全体を覆う隠しリンク */
.stretched-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* 通常のコンテンツより上 */
}
/* SNSアイコンなど、個別にクリックしたい要素 */
.relative-link {
    position: relative;
    z-index: 2; /* 全体リンクよりさらに上にする */
}

/* --- ③ サムネイル拡大と調整 --- */
.update-thumb-wrapper {
    position: relative;
    width: 100%;  /* 横幅フル */
    aspect-ratio: 16 / 9;  /* 固定比率（例: 動画風。写真なら4/3や1/1に調整） */
    overflow: hidden;  /* クロップ維持 */
}
.update-thumb {
    display: block;
    width: 100%;
    height: 100%;
}

.update-thumb img {
    width: 100%;
    height: 100%;  /* フルフィット */
    object-fit: cover;  /* つぶれ防止で中央クロップ */
    object-position: center;  /* 中央固定 */
}

.thumb-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;  /* 固定幅（調整可能、例: 50-80px） */
    height: 60px;  /* 正方形に固定して変形防止 */
    display: flex;
    align-items: center;
    justify-items: center;  /* アイコンを中央に */
    font-size: 2rem;  /* アイコンサイズ調整 */
    color: white;
    background: rgba(0,0,0,0.5);  /* 半透明背景 */
    border-radius: 50%;  /* 円形に（変形しにくく、モダン） */
    text-align: center;  /* アイコン中央寄せ */
}
.thumb-overlay i {
    margin: auto;  /* アイコンを完全に中央に */
}

.meta-sns-area {
    display: flex; gap: 5px; align-items: center;
}


.update-bottom-area {
    margin-top: auto;
    display: flex;
    justify-content: center;
    padding: 10px 5px 15px;
    width: 100%;
}
/* モバイル調整（オプション） */

@media (max-width: 768px) {
    .update-card-inner {
        flex-direction: column;  /* 縦並びに変更 */
        align-items: center;
    }

    .update-meta {
        justify-content: center;  /* 中央寄せ */
    }
}
/* サムネイルオーバーレイ */
.thumb-overlay {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.9); font-size: 1.6rem;
    text-shadow: 0 0 10px rgba(0,0,0,0.5); pointer-events: none;
}

/* --- 情報エリア --- */
.update-info { flex-grow: 1; min-width: 0; display: flex; flex-direction: column; min-height: 100px; } /* サムネイルの高さに合わせる */

.update-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin: 5px 3px; }
.update-date { font-size: 0.9rem; font-weight: bold; color: #555; }

/* --- ② アイコン中央揃えの徹底修正 --- */
.update-sns-icon {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 28px; /* 少しだけ大きくすると見栄えが良くなります */
    height: 28px;
    border-radius: 50%;
    line-height: 0 !important; /* 行間によるズレをゼロにする */
    overflow: hidden;
    vertical-align: middle;
}
.update-sns-icon i {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px; /* アイコン自体のサイズ */
    display: block !important;
    /* X(Twitter)など特定のアイコンが少し浮く場合は、ここで微調整 */
    transform: translateY(0.5px); 
	color: #FFF;
}
.icon-youtube { background-color: #ff0000; }
/* X(Twitter)のブランドカラー（黒）を設定 */
.icon-twitter {
    background-color: #000 !important;
}
.icon-instagram { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.icon-tiktok { background-color: #000; }

/* --- レイアウト調整 --- */
.update-card-inner {
    display: flex;
    flex-direction: column;  /* 縦型を維持 */
    height: 100%;  /* カード全体の高さをフルに */
    justify-content: space-between;  /* 上部コンテンツと下部を離す */
}
/* 媒体ラベル */
.update-category { font-size: 0.7rem !important; padding: 2px 8px !important; border-radius: 4px !important; color: #fff !important; font-weight: bold; text-decoration: none !important; }
.cat-weibo { background: #df2029; }
.cat-mnet_free, .cat-mnet_pay { background: #ff005a; }
.cat-bilibili { background: #00a1d6; }

.media-type-label {
    position: absolute;
    top: 6px; /* 少し端に寄せて余白を広げる */
    left: 6px;
    z-index: 1;
    font-size: 0.65rem; /* サイズを少し絞る */
    font-weight: 700;
    padding: 3px 8px; /* 縦横のバランスを調整 */
    background: rgba(0, 0, 0, 0.7); /* 半透明のダーク背景でスタイリッシュに */
    color: #ffffff !important; /* 文字は白で統一 */
    border-radius: 4px; /* シャープな角丸 */
    letter-spacing: 0.5px; /* 字間を少し空けて読みやすく */
    text-transform: uppercase; /* 英字を大文字に統一して揃える */
    backdrop-filter: blur(2px); /* 背景を少しぼかす（すりガラス効果） */
    box-shadow: none; /* 影は外してフラットに */
}
/* 個別に色をつけたい場合は、透明度（0.85など）を持たせると今風です */
.type-photo { background: rgba(25, 118, 210, 0.85); }
.type-movie { background: rgba(194, 24, 91, 0.85); }
.type-youtube { background: rgba(215, 0, 0, 1 ); }
/* --- 本文とメンバー --- */
.update-desc { font-size: 1rem !important; font-weight: bold !important; color: #222 !important; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin: 0px 3px; text-decoration: none !important; }
.source-brand { color: #e91e63; }

.update-member-row { display: flex; flex-wrap: wrap; gap: 6px; align-items: center;padding: 0px 3px; }
.member-tag { font-size: 0.75rem; background: #f5f5f5; color: #555; padding: 1px 10px; margin: 8px 0px 0px 2px; border-radius: 12px; border: 1px solid #eee; }
.challenge-tag { font-size: 0.75rem; color: #e91e63; font-weight: bold; background: #fff0f5; padding: 1px 8px; border-radius: 4px; }

/* --- 下部エリア --- */

.read-more-btn {
    display: inline-block;
    width: 85%;              /* 80%より少し広げて余裕を持たせる */
    white-space: nowrap;     /* 【重要】絶対に改行させない */
    text-align: center;
    background: transparent !important;
    color: #888 !important;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s;
    
    /* PCでのデフォルトサイズ */
    font-size: 0.85rem !important;
    padding: 6px 10px;
}
/* スマホ（横2列）の時だけさらに微調整 */
@media (max-width: 600px) {
    .read-more-btn {
        font-size: 0.7rem !important; /* 文字を一段階小さくして収める */
        padding: 4px 5px;            /* 上下左右の余白を削る */
        letter-spacing: -0.5px;      /* ほんの少し字間を詰めて横幅を稼ぐ */
    }
}
.read-more-btn:hover {
    background: #f0f0f0 !important;   /* ホバー時のみ少し色をつける */
    color: #333 !important;
    border-color: #bbb;
}
.read-more-btn::after {
    content: " ≫";
}

.update-pagination { margin-top: 30px; text-align: center; }
.icon-youtube:before {
    content: "";  /* 空に設定して擬似要素を無効化 */
}

/* Twitter用の余計なbeforeを消去 */
.icon-twitter:before {
    content: none !important; 
}

/*公式投稿まとめCSSここまで*/
/*フロントページの４つメニュCSS*/
/* ナビ全体のラッパー */
.kpop-grid-nav {
    margin: 20px auto;
    padding: 0 10px;
    max-width: 800px;
    box-sizing: border-box;
}

/* 強制的に横2列を作る設定 */
.kpop-grid-container {
display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* 絶対に2列 */
    border-top: 1px solid #333;
    border-left: 1px solid #333;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
}
/* 親要素：ここがセンターの基準 */
.kpop-grid-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important; /* 文字を真ん中に */
    position: relative !important;
    padding: 10px 12px !important;
    height: 60px !important;
    background: #fff !important;
    border-right: 1px solid #333 !important;
    border-bottom: 1px solid #333 !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
}

/* ラベル：ここが効かない場合は display: block を追加 */
.kpop-grid-item .kpop-label {
    display: block !important; /* 確実に1つの塊として扱う */
    font-size: 14px !important;
    font-weight: bold !important;
    color: #000 !important;
    text-align: center !important;
    line-height: 1.2 !important;
    width: auto !important;
}

/* 矢印：右端に固定 */
.kpop-grid-item .kpop-arrow {
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) rotate(45deg) !important; /* 垂直中央に */
    width: 7px;
    height: 7px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
}

/* HTML内の邪魔な改行を消滅させる */
.kpop-grid-container br {
    display: none !important;
}

/* タップ・ホバー時の背景色変更 */
.kpop-grid-item:hover, .kpop-grid-item:active {
    background-color: #f5f5f5 !important;
}

/* スマホ向けの微調整 */
@media screen and (max-width: 480px) {
    .kpop-label {
        font-size: 12px;
    }
    .kpop-grid-item {
        padding: 10px 8px;
        height: 55px;
    }
}
/*フロントページの4つメニューCSSここまで*/
/*フロントページのCSS*/

.schedule-more-link {
    text-align: right !important;
  /*  margin-top: 15px !important;*/
}

.schedule-more-link a {
    font-size: 0.9rem !important;
    color: #666 !important; /* 主張しすぎないグレー */
    text-decoration: none !important;
    font-weight: bold !important;
    transition: color 0.2s !important;
}

.schedule-more-link a:hover {
    color: #ff4757 !important; /* ホバー時に推しカラーに */
    text-decoration: underline !important;
}
/* メンバー名のスタイル */
.member-names {
    font-size: 0.85rem;
    color: #888;
    margin-left: 5px;
}

/* 配信場所（location）のスタイル */
.location-tag {
    display: block; /* 改行して表示する場合 */
    font-size: 0.8rem;
    color: #aaa;
}

/* 予定がない時のスタイル */
.no-event {
    color: #999;
    justify-content: center;
    padding: 30px 0 !important;
}
/* CocoonのH2/H3デザインを打ち消してリセット */
.hero-schedule .hero-title,
.custom-today-summary .custom-section-title {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 0 15px 0 !important;
    color: inherit !important;
}
.hero-schedule .hero-title::before,
.hero-schedule .hero-title::after,
.custom-section-title::before,
.custom-section-title::after {
    display: none !important; /* Cocoonのアイコン等を消す */
}

/* --- バナー全体のデザイン --- */
.custom-schedule-banner {
    margin: 40px 0;
    padding: 10px 20px;
    background: linear-gradient(135deg, #1a1c2c 0%, #4a192c 100%); /* 深みのある紺から紫へのグラデ */
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* --- CocoonのH3スタイルを徹底的に消す --- */
h3.banner-title-reset {
    all: unset !important; /* すべてのスタイルを一度リセット */
    display: block !important;
    font-family: 'serif', 'Noto Serif JP' !important; /* 少し高級感を出す */
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #f1c40f !important; /* ゴールド系の落ち着いた黄色 */
    margin-bottom: 10px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
}

.banner-subtitle {
    font-size: 0.9rem !important;
    color: rgba(255,255,255,0.8) !important;
    margin-bottom: 25px !important;
    background: none !important;
}

/* --- ボタンを上品なゴールド枠に --- */
.banner-btn {
    display: inline-block !important;
    background: transparent !important;
    color: #f1c40f !important;
    border: 2px solid #f1c40f !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
}

.banner-btn:hover {
    background: #f1c40f !important;
    color: #1a1c2c !important;
    transform: scale(1.05);
}


/* もしこれでも「EVENT」になる場合、タクソノミーのスラグが本当に 
   'update_type' か、管理画面の URL 等で再確認してみてください */

/* ヒーローセクション */
.hero-schedule {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('背景画像のURL') no-repeat center/cover !important;
    color: #fff !important;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 30px;
}
.hero-description {
    font-size: 0.85rem !important; /* 少し小さく設定 */
    margin-bottom: 25px !important;
    opacity: 0.8 !important;      /* 少し薄くすることで、メインタイトルを際立たせます */
    line-height: 1.6 !important;
    font-weight: normal !important;
    background: none !important;  /* Cocoonの背景設定をクリア */
    padding: 0 !important;
}
/* 本日のスケジュール：エリア全体 */
.today-summary {
    background: #f9f9f9 !important; /* 薄いグレーの背景 */
    padding: 5px !important
    border-radius: 12px !important;
    border: 1px solid #eee !important;
    margin: 20px 0 !important;
	
}

/* タイトル部分：最初の提案の色 (#333) に戻しました */
.today-summary .section-title {
    display: block !important;
    font-size: 1.1rem !important;
    font-weight: bold !important;
    margin-bottom: 10px !important;
    border-left: 4px solid #333 !important; /* ここを元の濃いグレーに修正 */
    padding: 2px 0 2px 10px !important;
    background: transparent !important;
    color: #333 !important;
    margin-left: 5px;
	margin-top: 10px;
}

.update-summary{
    margin-bottom: 10px !important;
}
/* リスト・アイテム設定 */
.today-summary .schedule-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* すべてのアイテムに線を引く */
.today-summary .schedule-item {
    position: relative; /* stretched-linkの起点 */
    display: flex !important;
    align-items: center !important;
    padding: 15px !important; /* 内側に余白を作る */
    background: #fff !important; /* 背景を白にして「カード」に見せる */
    border: 1px solid #eee !important; /* 四方を囲む */
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    border-bottom: 1px solid #eee !important; /* 元の指定を上書き */
}
.today-summary .schedule-item:hover::after {
    color: #007bff;
}


/* ホバー時の挙動を強化 */
.today-summary .schedule-item:hover {
    background-color: #f0f7ff !important;
    border-color: #007bff !important; /* メインカラー（例）に変える */
    transform: translateY(-2px); /* 少し浮かせる */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
/* 右端に「進む」アイコンを擬似要素で作成 */
.today-summary .schedule-item::after {
    content: "\f105"; /* FontAwesomeの矢印（>） */
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    transition: color 0.3s;
}
.today-summary .schedule-item::before { display: none !important; }
.schedule-item {
    transition: background-color 0.2s ease;
}
.schedule-item:hover {
    background-color: #f0f7ff; /* マウスを乗せたときに少し色を変える */
    cursor: pointer;
}

/* 各パーツの色合い */
.today-summary .time {
    font-weight: bold !important;
    width: 60px !important;
    color: #666 !important; /* 時刻は少し薄めのグレー */
}
/* 最新スケジュール特有の調整: .time の固定幅を無効化 */
.today-summary.recent-schedule-history .time {
    width: auto !important; /* 自然な幅に戻す（または unset !important; で完全にリセット） */
}

.today-summary .category {
    font-size: 0.7rem !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
    margin-right: 12px !important;
    color: #fff !important;
    font-weight: bold !important;
    min-width: 70px !important;
    text-align: center !important;
}
/* ここに色設定を追加・変更します */
.today-summary .cat-offline { background: #6f42c1 !important; } /* スラグが youtube の場合 */
.today-summary .cat-comeback_info      { background: #d63384 !important; } /* スラグが tv の場合 */
.today-summary .cat-stage     { background: #fd7e14 !important; } /* スラグが sns の場合 */
.today-summary .cat-concert     { background: #198754 !important; }
.today-summary .cat-brand     { background: #6c757d !important; }
.today-summary .cat-yonton     { background: #20c997 !important; }
.today-summary .cat-radio     { background: #ffc107 !important; }
.today-summary .cat-award     { background: #f03e3e !important; }
.today-summary .cat-tv     { background: #e95295 !important; }
.today-summary .cat-release     { background: #6610f2 !important; }
.today-summary .cat-member_birthday     { background: #e64980 !important; }
.today-summary .cat-live     { background: #15aabf !important; }
.today-summary .cat-important_info     { background: #212529 !important; }
.today-summary .cat-musictv     { background: #228be6 !important; }

/* 何にも当てはまらない時のデフォルト色 */
.today-summary .cat-default { background: #999 !important; }
/* カテゴリー別カラー（最初の提案の色味） */

.today-summary .event-title {
    flex: 1 !important;
padding-right: 20px;
    color: #333 !important; /* メインテキストは濃いグレー */
}

.today-summary .member-names {
    font-size: 0.85rem !important;
    color: #888 !important; /* メンバー名はさらに薄く */
}
/* Cocoonのリンク色設定を上書き */
.hero-schedule .hero-content a.hero-button {
    display: inline-block !important;
    padding: 15px 40px !important;
    background-color: #ff69b4 !important; /* ボタンの色（お好みで） */
    color: #ffffff !important;           /* 文字色は白 */
    text-decoration: none !important;
    border-radius: 50px !important;
    font-weight: bold !important;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4) !important;
    transition: all 0.3s ease !important;
    margin-top: 10px !important;
    line-height: 1 !important; /* 行間をリセット */
}

/* ホバー（マウスを乗せた時）の動き */
.hero-schedule .hero-content a.hero-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.6) !important;
    background-color: #ff1493 !important; /* 少し明るく */
    color: #ffffff !important;
}

/* ボタンが自動で<p>タグに囲まれてしまった場合の余白調整 */
.hero-content p {
    margin-bottom: 10px !important;
}
/* カテゴリーの色をタクソノミー名に合わせて自動で変えたい場合は、
   PHP側で class="category cat-<?php echo $types[0]->slug; ?>" とすると制御しやすくなります */

/* 手書き更新日の装飾 */
.manual-update-date {
    display: flex;
    align-items: center;
    justify-content: center; /* 中央寄せ */
    font-size: 11px;
    color: #888; /* 控えめなグレー */
    margin: 10px 0 20px 0;
    letter-spacing: 0.05em;
}

.manual-update-date::before {
    content: '🕒'; /* 時計の絵文字（またはアイコン） */
    margin-right: 5px;
    font-size: 12px;
}

.update-label {
    font-weight: bold;
    margin-right: 5px;
}
/*TOPページ*/
/* --- 1. ヒーローエリア（スケジュール案内） --- */
/* --- 1. ヒーローカード（スケジュール案内） --- */
.hero-section {
    padding: 20px 10px !important;
}

.hero-card {
    display: block !important;
    position: relative;
    width: 100%;
    background-color: #333333 !important; /* シックな単色グレー */
    border-radius: 8px !important;
    overflow: hidden;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    min-height: 160px !important;
}

.hero-content {
    padding: 35px 20px !important;
    color: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; /* 中央配置 */
    text-align: center !important;
}

.hero-tag {
    background: rgba(255,255,255,0.15) !important;
    padding: 2px 12px !important;
    border-radius: 2px !important;
    font-size: 10px !important;
    margin-bottom: 12px !important;
    display: inline-block !important;
}

.hero-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    margin: 0 0 8px 0 !important;
    letter-spacing: 1.5px !important;
    border: none !important;
}

.hero-subtitle {
    font-size: 12px !important;
    color: #bbbbbb !important;
    margin-bottom: 20px !important;
    display: block !important;
}

.hero-btn {
    background: #ffffff !important;
    color: #333333 !important;
    padding: 6px 25px !important;
    border-radius: 2px !important;
    font-size: 11px !important;
    font-weight: bold !important;
    display: inline-block !important;
}

/* --- 2. クイックナビ（アイコンメニュー） --- */
.quick-nav {
    margin: 20px 0 40px 0 !important;
}

.quick-nav-list {
    display: flex !important;
    flex-wrap: wrap !important; /* 増えた時に折り返せるように設定 */
    justify-content: center !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 -5px !important;
}

.quick-nav-list li {
    width: 25% !important; /* 4つ並び */
    min-width: 80px !important;
    margin-bottom: 15px !important;
    text-align: center !important;
}

.nav-icon {
    width: 55px;
    height: 55px;
    background: #ffffff !important;
    border: 1px solid #dddddd !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
    margin: 0 auto 8px auto !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
}

.quick-nav-list span {
    font-size: 10px !important;
    color: #333333 !important;
    font-weight: 600 !important;
    display: block !important;
    line-height: 1.2 !important;
}
/*内部リンクCSS*/
/*カテゴリラベル*/
.category-label {
    display: inline-block;
    margin-right: 2px;
    margin-bottom: 6px;
    padding: 3px 10px; /* 上下左右の余白を少し増やして存在感を出す */
    border-radius: 4px;
    font-size: 0.85rem; /* 0.75から0.85へアップ */
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.03em; /* 文字を少し離すと読みやすくなります */
}

/* 最後のタグだけ右側のマージンを消す（任意） */
.category-label:last-child {
    margin-right: 0;
}

/* ナビゲーション全体のコンテナ */
.schedule-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin: 50px 0;
}

/* 共通のボタン基本スタイル */
.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 6px; /* 緩やかな角丸で上品に */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    min-width: 260px;
    justify-content: center;
    letter-spacing: 0.04em;
}

/* 今後の予定：明るいルミナスベージュ（透明感のあるオレンジ系） */
.current-btn {
    background-color: #fff4e6; /* 明るく、透明感のある淡いオレンジベージュ */
    color: #b38b6d !important; /* 文字は少し明るめのブラウンで馴染ませる */
    border: 1px solid #ffe8cc;
}

/* 過去ログ：明るいソフトホワイトグレー */
.archive-btn {
    background-color: #fafafa; /* ほぼ白に近い、明るいグレー */
    color: #90a4ae !important; /* 清潔感のあるブルーグレー */
    border: 1px solid #f0f0f0;
}

/* ホバー時の挙動（優しく光るような演出） */
.current-btn:hover {
    background-color: #ffedda; /* ほんの少しだけ色を乗せる */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 232, 204, 0.5); /* オレンジ系の光の影 */
    text-decoration: none;
}

.archive-btn:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    text-decoration: none;
}

/* スマホ対応 */
@media (max-width: 600px) {
    .nav-btn {
        width: 100%;
        min-width: auto;
    }
}
/* 共通のアイコンサイズ */
.nav-icon {
    font-size: 1.1em;
}
/*フロントページのスケジュールまとめのCSS*/
.all-schedule-banner {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #333 0%, #000 100%); /* シックな黒グラデ */
    border-radius: 12px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.all-schedule-banner::before {
    content: "\f073"; /* カレンダーアイコンのうっすら背景 */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 8rem;
    opacity: 0.1;
}

.banner-content h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    letter-spacing: 2px;
    color: #fff !important;
}

.banner-content p {
    font-size: 0.85rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.banner-link {
    display: inline-block;
    background: #e91e63; /* アクセントカラー（ピンク系） */
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 0.9rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.banner-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
    background: #ff4081 !important;
}
/*フロントページのスケジュールまとめCSSここまで*/
/* ========================================
   ① 最上部の「スケジュール追加」ボタン（控えめ）
   ======================================== */
.add-schedule-top-wrapper {
    display: flex;
    justify-content: flex-end; /* 右寄せ（左寄せがいい場合は flex-start に変更） */
    margin-bottom: 15px; /* 下の絞り込みメニューとの余白 */
    padding: 0 10px;
}

.subtle-submit-btn {
    background-color: #ffffff; /* 白背景で控えめに */
    color: #ff9800 !important; /* 文字をオレンジに */
    border: 1.5px solid #ff9800; /* オレンジの枠線 */
    text-decoration: none;
    padding: 6px 15px;
    border-radius: 10px; /* 角丸 */
    font-size: 0.85rem; /* 少し小さめ */
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}

.subtle-submit-btn:hover {
    background-color: #fffaf0; /* マウスオーバーでうっすら色をつける */
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(255, 152, 0, 0.2);
}

/* ========================================
   ② 絞り込みメニュー直後の「過去ログ」リンク
   ======================================== */
.past-schedule-mid-wrapper {
    display: flex;
    justify-content: flex-end; /* 右寄せでスッキリ見せる */
    margin-top: 10px; /* 上の絞り込みメニューとの余白 */
    margin-bottom: 20px; /* 下の告知文との余白 */
    padding: 0 10px;
    border-bottom: 1px dotted #ccc; /* 下に薄い点線を引いて区切る */
    padding-bottom: 10px;
}

.past-schedule-text-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.past-schedule-text-link:hover {
    color: #ff9800;
    text-decoration: underline;
}
/*ユーザースケジュール追加フォーム*/
/* フォーム全体の枠組み */
.schedule-submit-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fffaf0; /* 柔らかいクリーム色 */
    border-radius: 15px;
    border: 2px solid #ffedcc;
    font-family: sans-serif;
}

/* ラベルの文字を少し太く */
.schedule-submit-form label {
    font-weight: bold;
    color: #555;
    display: block;
    margin-bottom: 8px;
}

/* タグ選択（チェックボックスのカスタマイズ） */
/* タグコンテナ：全体の隙間を詰める */
.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px; /* 10pxから6pxに。タグ同士の距離を縮める */
    margin-top: 5px; /* 上のラベルとの距離を縮める */
    margin-bottom: 10px; /* 下の項目との距離を調整 */
}

/* 個別のタグ：よりコンパクトなボタンに */
.selectable-tag input[type="checkbox"] {
    display: none; /* 本物のチェックボックスは隠す */
}
.selectable-tag span {
    display: inline-block;
    padding: 1px 7px; /* 8px 15pxから大幅に縮小 */
    border: 1.5px solid #ddd; /* 線を少し細く */
    border-radius: 7px; /* サイズに合わせて角丸も調整 */
    background: #fff;
    font-size: 0.85rem; /* 文字を少し小さくして密度を上げる */
    transition: all 0.2s;
    font-weight: normal;
}
/* 選択された時のスタイル */
.selectable-tag input[type="checkbox"]:checked + span {
    background: #ff9800; /* オレンジ系で親しみやすさを */
    color: #fff;
    border-color: #ff9800;
}
/* フォーム全体の余白も少し詰める */
.schedule-submit-form p {
    margin-bottom: 12px; /* 各項目の上下の間隔を少し詰める */
}

/* ラベル（タイトル部分）のサイズも微調整 */
.schedule-submit-form label {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

/* 日付と時間の横並び設定 */
.datetime-row {
    display: flex;
gap: 10px;
    flex-wrap: wrap;
}

.datetime-row p {
    flex: 1;
    min-width: 150px;
margin-bottom: 12px;
}

/* 入力フィールド全般のスタイル */
.schedule-submit-form input[type="text"],
.schedule-submit-form input[type="date"],
.schedule-submit-form input[type="time"],
.schedule-submit-form input[type="url"],
.schedule-submit-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box; /* 幅突き抜け防止 */
}

/* 送信ボタン */
#submit-btn {
    width: 100%;
    padding: 15px;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px #388e3c;
    margin-top: 20px;
    transition: 0.2s;
}

#submit-btn:active {
    box-shadow: none;
    transform: translateY(4px);
}

#submit-btn:disabled {
    background: #ccc;
    box-shadow: none;
    cursor: not-allowed;
}
/*スマホのli表示*/
@media screen and (max-width: 834px) {
  .article ul,
  .article ol {
    padding-left: 0;
    list-style: none;
  }

  .article li {
    margin-bottom: 0.4em;
  }
}
/* 時間：少しだけ大きくして視認性アップ */
.event-time {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}


/* 最後のタグだけ右側のマージンを消す（任意） */
.category-label:last-child {
    margin-right: 0;
}
/*必要ならばここにコードを書く*/
.content {
    margin-top: 5px;
}

/*メンバー名を赤*/
.card-members {
    font-size: 0.85rem;
    color: #999; /* 「メンバー:」の文字はかなり薄いグレーに */
}
.member-names {
color: #cc0000; /* 赤色を少し深みのあるシックな色へ */
    font-weight: 600; /* 名前の方を太くして目立たせる */
}
/* メモ：ここがポイント！ */
.card-memo {
font-size: 0.85rem;    /* 読みやすいサイズに */
    color: #666;           /* メモの内容はしっかり読める濃さのグレーに */
    padding: 10px 12px;
    border-radius: 6px;
    line-height: 1.6;
    position: relative;
}
/*ビリビリ用*/
.bili-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 比率 */
  height: 0;
}

.bili-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*写真まとめ一覧デザイン*/
/* 検索フォームの余計な枠線を除去（Cocoonデフォルト上書き） */
/* 公式情報やお知らせのボックス全体 */
.important-info-box {
    background-color: #f9f9f9; /* 優しいグレー */
border-left: 4px solid #58d68d;
    padding: 5px 3px;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.important-info-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 4px;
    margin-bottom: 10px;
}

/* リスト部分 */
.important-info-box ul {
    list-style: none; /* デフォルトの点を消す */
    margin: 0;
    padding: 0;
}

.important-info-box li {
    margin-bottom: 6px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.important-info-box li a {
    color: #D4766E; /* リンク色をオレンジに */
    text-decoration: none;
}

.important-info-box li a:hover {
    text-decoration: underline;
}

.search-form > div,
.search-form .schedule-filter-container,
.search-form .filter-group {
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-left: 0 !important;
    background: none !important;
    box-shadow: none !important;
}

/* フィルターラベル周りの微調整（必要に応じて） */
.search-form .filter-group {
    margin-bottom: 10px !important; /* グループ間の間隔を保つ */
}

/*ヘッダー文字*/
.tagline {
    margin: 0px !important;
}
.logo-text {
    padding-top:0px !important;
	padding-bottom:0px !important;
}
/*番組名の太文字*/
.card-program {
    font-size: 1.1rem;
    margin: 6px 0;
    color: #333;
    line-height: 1.4;
}

/* スマホ用にさらに行間を狭める場合 */
@media (max-width: 640px) {
  .card-content {
    line-height: 1.3 !important; /* 行間を強制狭く */
    margin: 0 !important; /* 親からの余白リセット */
  }

  .card-content .card-time,
  .card-content .card-program,
  .card-content .card-members,
  .card-content .card-memo {
    margin-bottom: 0.1em !important; /* 各divの間隔を最小に */
    margin-top: 0 !important;
    padding: 0 !important; /* div内の余白もカット */
    line-height: 1.25 !important; /* 子要素も念のため */
  }

  /* テキスト要素の追加リセット（spanやstrong内） */
  .card-content p,
  .card-content span,
  .card-content strong {
    margin: 0 !important;
    padding: 0 !important;
    line-height: inherit !important; /* 親のline-heightを継承 */
  }
}}
/*スケジュール内のカテゴリ表記色*/
.event-type-label {
color: #ffb380;
    font-weight: bold;
padding-right:8px;
	border-radius: 4px;
}

/*youtube 埋め込み中央配置*/
.video-container {
margin: 0px auto;
}

/*見出し*/
.article h2 {
    margin-top: 5px; /* お好みの値に調整 */
margin-bottom: 8px;}
.page-id-5006 .article p {
    margin-bottom: 5px;
}

/* Cocoon YouTube埋め込み幅調整 */
/* バナー共通スタイル */
  .banner-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
  }

.banner-item {
  display: flex;
  align-items: center;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.2s;
  text-decoration: none; /* aタグの下線を消す */
  color: inherit;        /* テキスト色を継承 */
  display: flex;
text-align: center;
}

  .banner-item:hover {
  transform: translateY(2px) scale(0.98);
  box-shadow: 0 1px 4px rgba(0,0,0,0.);
  }
  .banner-item img {
    width: 50%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  .banner-text {
    padding: 20px;
    font-size: 1.2em;
    flex: 1;
  }

  .banner-text a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
  }

  .banner-text a:hover {
    text-decoration: underline;
  }


  @media (max-width: 600px) {
    .banner-item {
      flex-direction: column;
      text-align: center;
    }

    .banner-item img {
      width: 100%;
    }

    .banner-text {
      padding: 15px;
    }
  }
/* メンバー用チェックボックス */
input.filter-member[type="checkbox"] {
    accent-color: #ff9ca3; /* 赤系に変更 */
}

/* カテゴリ用チェックボックス */
input.filter-category[type="checkbox"] {
    accent-color: #ffb380; /* 青系以外の色に変更 */
}

/* カテゴリ用チェックボックス */
input.filter-toukousha[type="checkbox"] {
    accent-color: #a3d2ff; /* 青系以外の色に変更 */
}
/* フィルターラベル・チェックボックス */
.schedule-filter-container > span {  /* > で直下の子要素だけ対象 */
    display: inline-block;
	    font-size: 0.9rem;
    font-weight: 600; /* 読みやすさを保つ太さ */
    font-family: inherit; /* サイトのデフォルトフォントで統一感 */
	margin-top: 5px;
    margin-bottom: 5px;
    background-color: #f0f0f0; /* 控えめなグレー背景 */
    color: #222222;             /* 高いコントラストで即読可能 */
    padding: 0em 0.35em;      /* コンパクトに収めてスペース効率よく */
    border-radius: 4px;         /* 最小限の丸角でクリーン */

    text-shadow: none;
    box-shadow: none; /* 影なしでフラット、速い読み込みとシンプルさ */
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-label {
    display: inline-flex;
    align-items: center;
    margin-right: 5px;
    margin-bottom: 1px;
		    font-size: 0.9rem;
}

.filter-label input[type="checkbox"] {
    margin-right: 8px;
}


/*スケジュールタイプの日付h3*/
h3.schedule-date {
all: unset; /* ←まず既存のh3スタイルをリセット */
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 700; /* 600 → 700 に変更 */
  font-size: 1.3em;
  color: #222;
  border-radius: 30px;
  padding: 6px 12px;
  display: inline-block;
}
/* カード */

hr {
    display: none;
}
.schedule-card {    display: flex;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
	margin-bottom: 5px;

    /* 浮いた印象と柔らかさ */
    background: #fff; /* 白で清潔感 */
    border: 1px solid #e0e0e0; /* 柔らかい境界線 */
    box-shadow: 0 3px 6px rgba(0,0,0,0.1); /* 軽めの影で浮き感 */
    cursor: pointer; /* 押しやすさ強調 */
}




.schedule-card:hover {
  transform: translateY(2px) scale(0.98);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  text-decoration: none; /* aタグの下線を消す */
  color: inherit;        /* テキスト色を継承 */
}
.schedule-cards .card-thumb {
    width: 120px;  /* 左固定幅 */
    height: 120px; /* 高さ固定 */
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
}

.schedule-cards .card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* トリミングで余白消す */
    display: block;    /* 下余白消す */
}

.schedule-cards .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.schedule-cards .card-link {
    display: inline-block;
    margin-top: auto; /* テキストの下に寄せる */
    text-align: right;
}
/* スマホ対応 */
@media (max-width: 768px) {
    .schedule-card {
        flex-direction: row; /* 縦型から横型に変更 */
    }
    .card-thumb {
        width: 100px;   /* PCより小さめに調整 */
        height: 100px;
    }
}

.entry-content iframe[src*="youtube.com"] {
  width: 100%;       /* 記事幅の80% */
  max-width: 100%;  /* 画面が狭くなったときは100%以内に */
  height: auto;     /* 高さ自動調整 */
  aspect-ratio: 16 / 9; /* 16:9比率を維持 */
  display: block;   /* ブロック要素にして中央寄せ可能 */
  margin: 0 auto;   /* 中央寄せ */
}
/*見出しの設定*/
ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 6px;
}

a {
  color: #007acc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
/*ヘッダーのフォント*/
header { font-family: 'M PLUS Rounded 1c', sans-serif; }


/* 基本のフォントサイズ調整 */
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* アイコンリンク部分（Flex対応） */
.icon-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.icon-box {
  text-align: center;
  width: 120px;
}

.icon-box img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.2s;
}

.icon-box img:hover {
  transform: scale(1.05);
}

/* 写真履歴横スクロール */
.photo-scroll {
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 10px;
}

.photo-scroll a {
  display: inline-block;
  margin-right: 10px;
}

.photo-scroll img {
  height: 120px;
  border-radius: 8px;
}

/* スマホ対応（メディアクエリ） */
@media screen and (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .icon-box {
    width: 100px;
  }

  .photo-scroll img {
    height: 100px;
  }
}

/* 埋め込み全体のコンテナを調整 */
.wp-block-embed__wrapper {
    display: flex;
    justify-content: center; /* 中央寄せで左右に余白を作る */
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
.logo-text {
    padding-top:21px !important;
	padding-bottom:0px !important;
}
	
.banner-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: 800px;
    margin: 0 auto;
}
.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
}
.filter-label input[type="checkbox"] {
    margin-right: 3px;
}
	
.filter-label {
    margin-right: 8px;
}
/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
.zbgazou{
	width:48%;
	list-style: none;
display: inline-block;
}
}

/*480px以下*/
@media screen and (max-width: 480px){

}

