@charset "utf-8";

/*=======================================
    新着情報一覧
==================================== */

/*----------------------------------------
    カードリストレイアウト
----------------------------------------*/

/* 上余白と共通コンテナ */
.list_inner{
    margin: 0 auto;
    max-width: 1200px;
    display: block; /* SPの基本はブロック要素で縦積み */
    /* padding: 0 10px; */
}

@media (min-width: 768px) {
    .list_inner{
        margin: 0px auto;
        display: flex; /* PC版では flex に変更 */
        justify-content: space-between;
        align-items: flex-start;
        padding: 0;
    }
}

/* レイアウト */
.media_list  {
    /* display: grid;
    grid-template-columns: 1fr;
    justify-self: center;
    gap: 30px; */
    display: flex; /* 10/16変更 */
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

@media  (min-width: 768px) {
    .media_list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-self: center;
    }
}
@media (min-width: 1280px) {
    .media_list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-self: center;
    }
}


.media_item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: relative;
    border: solid 1px var(--character-color);
    border-radius: 20px;
    background-color: var(--base-color);
    max-width: 300px;
    height: 375px;
    margin: 0 auto;
}


.media_item a {
    display: block;
    padding: 30px 20px 20px;
    background-color: var(--base-color);
    border-radius: 20px;
    height: 100%;
    width: 100%;
}
@media  (min-width: 1280px) {
.media_item a{
    padding: 30px 25px;
    height: 390px;
}
}



@media  (min-width: 768px) {
    .media_item {
    max-width: 280px;
    height: 372px;
    }
}
@media  (min-width: 1280px) {
    .media_item {
        margin: 20px auto;
        height: 390px;
    }
}


/*----------------------------------------
    枠 (ノート風) の調整
----------------------------------------*/

.list_wrap{
    position: relative;
    z-index: 3;

    /* ★ノート装飾をリセット */
    border: none; /* 枠線を削除 */
    border-radius: 0; /* 角丸を削除 */
    background-image: none; /* 方眼を削除 */
    background-color: transparent;
    margin-top: 30px;
    /* padding: 30px 15px; */
}

@media (min-width: 768px) {
    .list_wrap{
        /* PC版ではノート風デザインに戻す */
        border: solid 1px var(--character-color);
        border-radius: 20px;
        background-image: linear-gradient(to right, #e9edf0 1px, transparent 1px),
        linear-gradient(to bottom, #e9edf0 1px, transparent 1px);
        background-size: 20px 20px;
        background-color: var(--base-color);

        /* 穴のスペース */
        padding: 50px 50px 50px 80px;
        min-width: 570px;
        min-height: 660px;
        flex-grow: 1;
    }
}
@media (min-width: 1280px) {
    .list_wrap{
        padding: 60px 80px 60px 100px;
        min-width: 900px;
    }
}


/*----------------------------------------
    穴
----------------------------------------*/
/* ★SP: 穴は非表示 */
.holes_container {
    display: none;
}
@media (min-width: 768px) {
    /* PC版では表示に戻す */
    .holes_container {
        display: flex;
        position: absolute;
        flex-direction: column;
        justify-content: space-around;
        height: 100%;
        top: 0;
        left: 20px;
        padding: 20px 0;
    }
    /* 装飾 */
    .holes_container .hole {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: rgba(187, 187, 187, 0.477);
        box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.2);
    }
    .holes_container .hole:nth-child(n+6) {
        display: none;
    }
}

@media (min-width: 1280px) {
    .holes_container {
        padding: 35px 0;
    }
}


/*----------------------------------------
    media_itemの中身・カテゴリー
----------------------------------------*/

.media_item_meta{
    margin: 0 ;
    display: flex;
    max-width: 270px;
    /* ここでカテゴリー範囲の高さを指定 今の設定は2行分*/
    height: 53px;
    align-items: flex-start;
}
@media (min-width: 768px) {
.media_item_meta{
        height: 63px;
}
}

/* 更新日 */
.media_item_time {
    font-size: 1.2rem;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    padding-bottom: 10px;
    text-align: left;
    flex-shrink: 0;
}

/* カードの中のカテゴリーリスト */
.media_item_meta ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

/* ★SP:カテゴリーデザイン変更 */
.media_item_category {
    display: block;
    font-size: 1.2rem;
    margin: 10px 5px 0px 1px;
    padding: 4px 8px;
    border: 1px solid var(--character-color);
    border-radius: 4px;
    background-color: var(--base-color);
    color: var(--character-color);
    text-align: left;
    line-height: 1;
    flex-grow: 0;
    width: fit-content;
    writing-mode: horizontal-tb; /* 縦書き防止 */
}




/* h3（記事タイトル）文字サイズ・装飾 */
.media_item h3 {
    text-align: left;
    font-size: 1.6rem;
    font-weight: 400;
    margin: 20px 0 10px 0;
    line-height: 1.5;
    /* height: 4.5em;  */
    /* 3行分の高さ (1.5 * 2 = 4.5) */
    overflow: hidden; /* はみ出しを隠す */

    /* 三点リーダーを表示するためのプロパティ */
    display: -webkit-box; /* FlexboxをWebKit boxとして使用 */
    -webkit-box-orient: vertical; /* 垂直方向に要素を並べる */
    -webkit-line-clamp: 3; /* 表示する行数を「3行」に指定 */
}
.media_item p{
    line-height: 1.5;
}



/* カードの画像 */
.media_item img {
    display: block;
    margin: 0 auto;
    /* 修正: 親要素 (media_item) の幅いっぱいに広げる */
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/9;
    object-position: top;
}

/*----------------------------------------
    マスキングテープ(作品ページ以外)
----------------------------------------*/

/* テープ本体のスタイル (SP/PC共通) */
.media_item::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 35px;
    background-color: var(--accent-orange);
    opacity: 0.8;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    z-index: 5;
    border-radius: 3px;
    background: repeating-linear-gradient(
        -45deg,
        var(--base-color),
        var(--base-color) 3px,
        var(--accent-orange) 3px,
        var(--accent-orange) 6px
    );
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .media_item::before {
        width: 100px;
    }
}
@media (min-width: 1280px) {
    .media_item::before {
        width: 120px;
    }
}

/*----------------------------------------
    受賞バッヂ（作品ページのみ）
----------------------------------------*/
.media_item::after {
    display: none;
    /* 基本は非表示にする */
    content: '';
    position: absolute;
    top: -16.5px;
    right: 3px;
    z-index: 10;

    /* バッジのサイズ */
    width: 80px;
    height: 80px;
    background-image: url('../img/works_award_badge_tag.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (min-width: 768px) {
    .media_item::after {
    width: 60px;
    height: 60px;
    top: -12px;
    right: 7px;
}
}

/*----------------------------------------
    受賞バッヂのオン・オフ
----------------------------------------*/
.media_item.use-before::before {
    display: block;
}
.media_item.use-before::after {
    display: none;
}
.media_item.use-after::after {
    display: block;
}
.media_item.use-after::before {
    display: none;
}


/*----------------------------------------
    タイトル省略表記 (SPのみ)
----------------------------------------*/
/* タイトル */
.media_item_title{
    /* 幅を明示的に指定 */
    width: 100%;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 1.3rem; /* SPサイズ */
}

@media (min-width: 768px) {
    .media_item_title{
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        display: block;
        -webkit-line-clamp: unset;
        font-size: 1.6rem; /* Tabletサイズ */
    }
}
@media (min-width: 1280px) {
    .media_item_title {
        font-size: 1.7rem; /* PCサイズ */
    }
}


/*----------------------------------------
    インデックス
----------------------------------------*/
.list_tab_sp {
    display: flex; /* Flexで横並び */
    list-style: none;
    padding: 0 10px 15px;
    margin: 0;

    /* 折り返し設定: 横スクロールをしないようにする */
    overflow-x: hidden;
    white-space: normal;
    flex-wrap: wrap;

    gap: 10px;
    justify-content: flex-start;
}

/* スクロールバーを非表示にする */
.list_tab_sp::-webkit-scrollbar {
    display: none;
}
.list_tab_sp {
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: flex;
    justify-content: center;
}

.list_tab_sp li {
    flex-shrink: 0;
    list-style: none;
    margin: 0;
    border: 1px solid var(--character-color);
    box-shadow: 3px 3px 0px var(--character-color);
    border-radius: 20px;
    background-color: var(--base-color);
    transition: all 0.1s ease;
    cursor: pointer;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;

    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}
    /* ホバー時のスタイル: 押し込み効果 */
    .list_tab_sp li:hover {
        box-shadow: 0px var(--character-color);
        transform: translate(3px, 3px);
        background-color: var(--main-color);
    }

.list_tab_sp li a {
    display: block;
    padding: 8px 16px;
    color: var(--character-color);
    text-decoration: none;
    font-size: 1.4rem;
    line-height: 1.2;
    transition: background-color 0.2s;
}



/* PC用タブコンテナ */
.list_tab_pc {
    display: none; /* SPでは非表示 */
}

@media (min-width: 768px) {
    .list_tab_sp {
        display: none;
    }

    .list_tab_pc {
        display: flex; /* PC版では表示 */
        flex-direction: column;
        gap: 5px;
        margin-top: 70px;
        flex-shrink: 0;
        position: relative;
        left: -3px;
        top: -3px;
    }

    /* インデックス li の装飾 */
    .list_tab_pc li{
        border: solid 1px var(--character-color);
        box-shadow: 3px 3px 0px var(--character-color);
        writing-mode: vertical-rl;
        text-orientation: upright;
        border-top-right-radius: 15px;
        border-bottom-right-radius: 15px;
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 10px;
        margin-left: -1px;
        transition: all 0.1s ease;
        cursor: pointer;
        transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    }

    /* ホバー時のスタイル: 押し込み効果 */
    .list_tab_pc li:hover {
        box-shadow: 0px var(--character-color);
        transform: translate(3px, 3px);
        background-color: var(--main-color);
    }

    /* aタグの当たり判定をliいっぱいに広げる */
    .list_tab_pc li a {
        display: block;
        width: 100%;
        height: 100%;
        padding: 15px 15px;
    }
}

/* ページネーションの装飾 common.cssに置き換えました */
/*==================================
    ページネーション
====================================*/

/* .pagination{
    display: flex;
    justify-content: center;
    margin: 20px ;
} */
/*******************************************************************
* <<<10/3 プラグインPageNavi用のCSSを追加（PageNaviのCSSは未使用）>>> *
********************************************************************/
/* .wp-pagenavi a, .wp-pagenavi span {
    font-family: "Oswald", sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-decoration: none;
    border: none;
    padding: 3px 10px;
    margin: 10px;
} */
/*******************************************************************
* <<< 10/13 検索結果用 By Hara >>>                                  *
********************************************************************/
.list_search {
    width: 100%;
    margin-left: 30px;
}

.list_search h3 {
    display: inline-flex;          /* 他の要素のtext-alignの影響を受けにくい */
    align-items: center;
    gap: 0.4em;                    /* アイコンと文字の間隔 */
    text-align: left;
    white-space: normal;
}

@media (min-width: 425px) {
    .list_search{
        margin-left: 50px;
    }
}

/* タブレット以上で少しサイズ調整 */
@media (min-width: 768px) {
    .list_search{
        margin-left: 80px;
    }
}

/* PC向け調整 */
@media (min-width: 1024px) {
    .list_search {
        margin-left: 100px;
    }
}

@media (min-width: 1440px) {
    .list_search {
        margin-left: 160px;
    }
}

/*******************************************************************
* <<< 10/14 カテゴリータグ 選択時のハイライト化 By Hara >>>           *
********************************************************************/

.list_tab_pc li.current a{
    background-color: var(--main-color);
    border-radius: 0 15px 15px 0;
}
.list_tab_sp li.current a {
    background-color: var(--main-color) ;
    border-radius: 15px 15px 15px 15px;
}

/* ★★★ アクティブなタブの状態 ★★★ */
.list_tab_sp li.current,
.list_tab_sp li.current:hover {
    box-shadow: 0px var(--character-color) ;
    transform: translate(3px, 3px) ;
    background-color: var(--base-color) ;
}
.list_tab_pc li.current,
.list_tab_pc li.current:hover {
    box-shadow: 0px var(--character-color) ;
    transform: translate(3px, 3px) ;
    background-color: var(--base-color) ;
    }

/* アクティブなタブにマウスが乗っても固定状態を維持 */
.list_tab_pc li.current a,
.list_tab_sp li.current a {
    transform: none ;
    box-shadow: none ;
}
