﻿/*--- 全体 ---------------------*/
.kashi_wrap {
    padding: 0 10px;
    background: #f8f9fb;
}

/*--- ヒーロー -----------------*/
.kashi_hero {
    position: relative;
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
}

    .kashi_hero img {
        width: 100%;
        display: block;
    }

    .kashi_hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(0,0,0,0.65), rgba(0,0,0,0.3), rgba(0,0,0,0) );
    }

.kashi_hero_text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    z-index: 2;
}

    .kashi_hero_text h1 {
        font-size: 20px;
        margin: 0;
        text-shadow: 0 3px 10px rgba(0,0,0,0.6);
    }

    .kashi_hero_text p {
        font-size: 13px;
        text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    }

/*---------- 検索結果 ----------*/

.search_result {
    width: 90%;
    margin: 30px auto;
    text-decoration: none;
}

.result_title {
    padding: 0 0 5px 0;
    margin-bottom: 5px;
    text-align: left;
    line-height: 20px;
    font-size: 138.5%;
    color: #e9528e;
}

/* --- ページャー用 --- */
.result_pager_base {
    width: 100%;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result_pager {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.my-link {
    margin: 0 5px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px !important;
    height: 40px !important;
    flex: 0 0 40px; /* ← これ重要（flex親対策） */
    border-radius: 50%;
    padding: 0 !important;
    box-sizing: border-box;
    font-size: 115%;
}

