@charset "utf-8";


/*-------------------------------------------------------------------------
LAYOUT
-------------------------------------------------------------------------*/

.l-result {
    display              : grid;
    gap                  : 10px 30px;
    grid-template-columns: 277px 833px;
    grid-template-areas: 
        "header header"
        "side   primary";
}
    .l-result__header  { grid-area: header;}
    .l-result__primary { grid-area: primary;}
    .l-result__side    { grid-area: side;}

/* 大見出し
--------------------------- */
.result__headline {
    font-size  : 22px;
    font-weight: bold;
}

/*-------------------------------------------------------------------------
PRIMARY
-------------------------------------------------------------------------*/

.result__header {
    display        : flex;
    align-items    : center;
    justify-content: space-between;
    margin-block: 0 10px;
}
    .result__header-left,
    .result__select {
        display    : flex;
        gap        : 10px;
        align-items: center;
    }
    .result__select-mypage {
        display        : flex;
        gap            : 10px;
        align-items    : center;
        justify-content: flex-end;
    }
        .result__cnt span {
            font-size: 18px;
        }
    .result__select select {
        width: auto;
        font-size: 13px;
    }
    .result__select svg {
        width: 15px;
        height: 15px;
        fill: var(--light-text-color);
    }
    .result__select-mypage select {
        width: auto;
        border: 1px solid var(--border-color);
        background-color: rgba(236, 239, 241, .2);
        font-size: 13px;
        text-align: left;
    }
    #icn-arw-under-select-icon {
        width: 10px;
        height: 10px;
        position: relative;
        right: 20px;
    }

/* 横長系一覧
--------------------------- */
.result-list {
    margin-block: 0 66px;
}
.result-list > * + * {
    margin: 16px 0 0;
}
    .result-list__title {
        font-weight: bold;
    }
    .result-list__panel {
        border-radius: 4px; 
        border: 1px solid var(--border-color);
        overflow: hidden;
    }
    .result-list__panel.room-list__panel {
        display: flex;
    }
        .result-list__panel-body {
            width: 100%;
        }
        .result-list__link {
            background-color: #fff;
            display: flex;
            position: relative;
        }
            /* 画像  */
            .result-list__img {
                position: relative;
                width: 200px;
                height: 175px;
            }
            .result-list__favorite {
                position: absolute;
                bottom  : 10px;
                right   : 10px;
            }
                .result-list__favorite svg {
                    width: 28px;
                    height: 26px;
                }

                /* 情報  */
                .result-list__info {
                    flex: 1;
                    display        : flex;
                    justify-content: space-between;
                    padding: 12px;
                    position: relative;
                }
                    .result-list__info-left {
                        flex: 1;
                    }
                        .result-list__address {
                            display    : flex;
                            gap        : 3px;
                            align-items: center;
                            margin-block: 0 4px;
                            line-height: 1;
                        }
                            .result-list__address svg {
                                width: 10px;
                                height: 10px;
                            }
                        .result-list__cost {
                            display    : flex;
                            flex-wrap  : wrap;
                            column-gap : 8px;
                            align-items: baseline;
                        }
                        .result-list__price {
                            color: #e70d32;
                            font-weight: bold;
                        }
                            .result-list__price span {
                                font-size  : 22px;
                                font-weight: bold;
                            }
                            .result-list__price span.result-list__kanrikyoeki {
                                display: inline-block;
                                color: black;
                                font-weight: normal;
                                font-size: 14px;
                            }
                            .price-down {
                                display: inline-block;
                                margin: 0 0 3px;
                                padding: 1px 5px 0;
                                border: 1px solid var(--strong-color);
                                font-size: 12px;
                                vertical-align: middle;
                                color: var(--strong-color);
                                position: relative;
                                top: -3px;
                            }
                            .result-list__archive {
                                font-size: 22px;
                                font-weight: bold;
                            }
                            .result-list__rimawari {
                                width: 100%;
                            }
                            .result-list__kanri {
                                display: flex;
                                gap    : 5px;
                            }
                        .result-list__walk {
                            margin-block: 2px 0;
                            display: grid;
                            gap    : 5px;
                        }
                            .result-list__walk-item {
                                display    : flex;
                                align-items: center;
                                line-height: 1;
                            }
                                .result-list__walk-item svg {
                                    width: 10px;
                                    height: 10px;
                                }
                    .result-list__info-right {
                        display    : flex;
                        gap        : 20px;
                        align-items: flex-end;
                        flex: 1;
                        margin-right: 15px;
                    }
                        .result-list__label {
                            display  : flex;
                            gap      : 6px;
                            flex-wrap: wrap;
                        }
                    .result-list__info-right-table {
                        display: flex;
                        flex-wrap: wrap;
                        gap: 0 8px;
                        margin-block: 3px;
                        text-align: center;
                    }
                        .result-list__info-right-table dl {
                            display: flex;
                        }
                        .result-list__info-right-table dl:after {
                            content: "/";
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            padding-left: 8px;
                            color: var(--border-color);
                        }
                            .result-list__info-right-table dt:after {
                                content: "：";
                            }
                    .resit-list__count {
                        padding: 0 12px 12px 12px;
                        display: flex;
                        gap: 8px;
                        position: absolute;
                        bottom: 0;
                        right: 0;
                    }
                /* 矢印  */
                .result-list__arw {
                    position: absolute;
                    top: 0;
                    bottom: 0;
                    right: 14px;
                    margin: auto;
                }

        /* コメント */
        .result-list__comment,
        .result-list-card__point-comment {
            background-color: #fff;
            padding: 10px;
        }
        .result-list__comment {
            border-top   : 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
            .result-list-card__point-comment {
                border-top: 1px solid var(--border-color);
            }
                .result-list__comment p,
                .result-list-card__point-comment p {
                    font-size: 12px;
                    color    : var(--gray-text);
                    overflow          : hidden;
                    display           : -webkit-box;
                    -webkit-box-orient: vertical;
                }
                .result-list-card__point-comment p {
                    -webkit-line-clamp: 5;
                }
        .result-list__empty-list {
            padding: 4px 10px;
            font-size: 14px;
            font-weight: bold;
            border: 1px solid var(--border-color);
            background: #fff;
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
            max-height: 68px;
        }

/*
省略されたテキストを「もっと見る」で開く用
JSで生成されるclass
--------------------------- */
.more-link {
    font-size: inherit;
    color    : inherit;
    text-decoration: underline;
}

.more-link:hover {
    text-decoration: none;
}

/* #
--------------------------- */
.result-list__section {
    background-color: #fff;
    border    : 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 4px 4px;
}
    .result-list__ttl {
        background-color: var(--bg-light-gray);
        padding: 5px 10px;
        font-size: 13px;
        border-top: #fff solid 2px;
        font-weight: bold;
    }
    .result-list__all-view {
        border-top: 1px solid var(--border-color);
        padding: 10px;
        display        : flex;
        align-items    : center;
        justify-content: center;
    }
        .result-list__all-view a {
            width: 200px;
        }
.result-list__checkbox-label {
    padding: 0 1px 0 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-right: 1px solid var(--border-color);
}

/* #
--------------------------- */
.empty-list__ttl {
    max-height: 68px;
    background: #fff;
    border-left  : 3px solid var(--main-color);
    border-top   : 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 4px 10px;
    overflow: hidden;
    display           : -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size  : 14px;
    font-weight: bold;
}
    .empty-list__ttl span,
    .result-list__empty-list span {
        color: var(--main-color);
        font-size: 18px;
        font-weight: bold;
    }
    .l-mypage .result-list__bkn {
        display: flex;

        .result-list__checkarea {
            display: flex;
            align-items: center;
            margin-left: 4px;
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 4px 0 0 4px;

            .result-list__check {
                margin-left: 4px;
                height: 100%;
                align-items: center;
                display: flex;
            }
        }
        .result-list__link {
            width: 100%;
            border-radius: 0 4px 4px 0;
        }
    }
.empty-list__inner {
    padding: 3px 0;
}

/* TABLE LAYOUT
--------------------------- */
.empty-list__table {
    background-color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
    .empty-list__table th {
        border-right: 3px solid #fff;
        font-size: 90%;
    }
        .empty-list__table th span {
            display: block;
            background-color: var(--main-heighlight-color);
            font-size: 13px;
            line-height: 1.5;
            text-align: center;
            padding: 4px 9px;
            box-sizing: border-box;
            white-space: nowrap;
            min-width: 58px;
        }
    .empty-list__table td {
        padding: 3px 0;
    }
    .empty-list__table td:first-child {
        padding: 0 3px
    }    

/* TABLE CONTENTS
--------------------------- */
.empty-list__table td:first-child label {
    padding: 8px 0;
    cursor: pointer;
}
.empty-list__table td:first-child input {
    margin: 0;
}    
.empty-list__table td a.ui-btn--detail_link {
    background-color: var(--main-color);
    color: var(--main-font-color);
    padding: 0 10px;
    height: 24px;
}
.empty-list__table td .detail_linkBox a:only-child {
    margin: 0;
    width: 100px;
}
.empty-list__table td a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 6px;
    height: 24px;
    box-sizing: border-box;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
    background-color: #fff;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    font-size: 13px;
    width: 100px
}
.empty-list__table td .price {
    font-size: 16px;
    color: #de2f2f;
    font-weight: bold;
}
.bkn_detail2_price {
    font-size: 11px;
    color: #de2f2f;
}
.empty-list__table td:nth-last-child(-n + 2){
    width: 111px
}
.empty-list__table-data label {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.empty-list__table-data input[type="checkbox"] {
    cursor: pointer;
}
.empty-list__price {
    font-size: 11px;
    color: #de2f2f;
}
.bkn_detail2 table td {
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 10px;
    background-color: #fff;
}
.bkn_detail2 table td .contact_submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 7px;
    padding: 8px 10px;
    height: 30px;
    box-sizing: border-box;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: var(--main-font-color);
    font-size: 13px;
    font-weight: bold;
    border-radius: 6px;
    line-height: 1.1;
}

/*-------------------------------------------------------------------------
フロートボタン
-------------------------------------------------------------------------*/

.action-btn {
    width: 240px;
    height: 44px;
    cursor: pointer;
}
    .searchlist_float-btnlist {
        width: 240px;
        display: flex;
        gap: 20px;
        margin: 8px auto;
    }

/*-------------------------------------------------------------------------
#
-------------------------------------------------------------------------*/

.favorite-icon {
    z-index: 2;
    height: 18px;
    width: 35px;
    fill: none;
    stroke: #fff;
}
.building-table {
    border-collapse: collapse;
    width: 100%;
}




    .room-card-list {
        position: relative;
    }
        .room-card-list_checkbox {
            position: absolute;
            top: 50%;
            left: 5%;
            transform: translate(-50%, -50%);
        }
        .result-list__walk .result-list__walk-svgIcon {
            display: block;
            line-height: 1;
            margin-left: 0.8em;
            text-indent: -0.8em;
        }
        .result-list__point-comment {
            padding-left: 8px;
            padding-right: 8px;
        }
        .point-comment-toggle {
            display: none;
        }
.md-archive-card__btn {
    display        : flex;
    gap            : 5px;
    align-items    : center;
    justify-content: center;
    margin: auto;
    padding: 2px 40px 11px;
    font-size  : 13px;
    font-weight: bold;
    color      : #1976D2;
}
.md-archive-card__btn svg {
    width: 18px;
    height: 18px;
    fill: #1976D2;
}
/* #
--------------------------- */
.result-list .room-list {
    margin: 0 10px;
}
.room-list > * + * {
    border-top: 1px solid var(--border-color);
}
.room-list > div > * + * {
    border-top: 1px solid var(--border-color);
}
    .room-list__link {
        display        : flex;
        align-items    : center;
        justify-content: space-between;
        padding: 10px;
    }
    .result-list .room-list__link {
        padding-right: 4px;
    }
    .room-card-list .room-list__link {
        margin-left: 19px;
    }
        .room-list__info {
            display    : flex;
            gap        : 10px;
            align-items: center;
        }
        .room-list__info .result-list__archive {
            font-size: 18px;
            font-weight: 700;
        }
        .room-list__info > div > .result-list__archive {
            font-size: 16px;
            font-weight: 700;
        }
            .md-result-list__info .md-members-only-info__text {
                font-size: 16px;
            }
            .room-list__img {
                width: 80px;
                height: 70px;
            }
            .room-list__num {
                width: 42px;
            }
            .room-list__price {
                font-weight: bold;
                color: #e30a2e;
            }
                .room-list__price span {
                    font-size: 18px;
                    font-weight: inherit;
                    color: inherit;
                }
            .room-list__text {
                font-size: 12px;
            }
            .room-list .ui-favorite-btn {
                position: absolute;
                top: 12px;
                right: 20px;
            }
            .room-list .ui-favorite-btn svg {
                width: 26px;
                height: 20px;
            }

/* カード型一覧
--------------------------- */
.result-card {
    width: 710px;
    margin: 0 auto 66px;
    display              : grid;
    gap                  : 38px;
    grid-template-columns: 335px 335px;
}
.result-card__box {
    display: block;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}
    .result-card__link {
        display: block;
        background-color: #fff;
        border-radius: 4px;
        box-shadow: var(--box-shadow);
        overflow: hidden;
    }
    .result-card__box .result-list__section {
        background-color: #fff;
        border: none;
        border-radius: 0 0 4px 4px;
    }
    .result-card__box .room-list__img .md-members-only-img__center {
        width: 80px;
        height: 70px;
    }
    .result-card__box .room-list__img .md-members-only-img__center svg {
        width: 20px;
        height: 20px;
    }
    .result-card__box .room-list__img .md-members-only-img__text {
        font-size: 12px;
    }
        .result-card__img {
            height: 180px;
            position: relative;
        }
            .result-card__overlay {
                position: absolute;
                top     : 10px;
                left    : 10px;
            }
                .result-card__overlay label,input[type="checkbox"] {
                    cursor: pointer;
                }
        .result-card__info {
            padding: 10px 10px 6px;
        }
            .result-card__between {
                display        : flex;
                justify-content: space-between;
            }
                .result-card__address {
                    display    : flex;
                    gap        : 3px;
                    align-items: center;
                    font-size: 12px;
                    color    : var(--light-text-color);
                }
                .result-card__address svg {
                        min-width: 10px;
                        width: 10px;
                        height: 10px;
                        fill: var(--light-text-color);
                }
                .result-card__favorite {
                    position: relative;
                    margin-block: -22px 0;
                }
            .result-card__cost {
                display    : flex;
                flex-wrap  : wrap;
                column-gap        : 10px;
                align-items: baseline;
            }
                .result-card__price {
                    align-items: baseline;
                    font-weight: bold;
                    color: #fc0c33;
                    > span {
                        font-size: 18px;
                    }
                }
                .result-card__price span.result-card__kanrikyoeki {
                    display: inline-block;
                    color: black;
                    font-weight: normal;
                    font-size: 14px;
                }
                .result-card__rimawari {
                    width     : 100%;
                }
                .result-card__kanri {
                    display: flex;
                    gap    : 5px;
                }
            .result-card__walk {
                text-overflow: ellipsis;
                overflow     : hidden;
                white-space  : nowrap;
                margin: 2px 0 0;
            }
                .result-card__walk-item {
                    margin-inline: 0 5px;
                    display: inline;
                }
                    .result-card__walk-item svg {
                        width: 10px;
                        height: 10px;
                    }
    .result-link a {
        font-weight: bold;
    }
    .result-list__info-left .result-list__address {
        margin-block: 0;
    }
    .result-list__info-left .result-list__walk {
        display: grid;
        margin-block: 0;
        gap: 0;
    }
    .result-card__address a,
    .result-list__address a {
        font-weight: bold;
        font-size: 12px;
    }
    .result-icon__member {
        padding: 2px 5px 1px;
        color: #fff;
        font-size: 13px;
        background-color: var(--strong-color);
    }
    .result-card__tn a {
        font-size: 18px;
        font-weight: bold;
    }
    /* pcの設備ラベル */
    .md-facility-card-pc {
        padding: 0 10px 10px;
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }
/*-------------------------------------------------------------------------
SIDE
-------------------------------------------------------------------------*/

.result__condition {
    background-color: #fff;
    border: 1px solid var(--border-color);
    padding: 15px 10px;
}
.result__condition_mypage {
    background-color: #fff;
    padding: 15px 10px;
    height: inherit;
    overflow-y: auto;
    grid-area: 1 / 2;
}
    .result__selected {
        margin-block: 0 16px;
    }
.ui-select svg {
    pointer-events: none;
}

/* #
--------------------------- */
.result-form {
    display: grid;
    gap    : 16px;
}
    .result-form__ttl {
        font-size  : 15px;
        font-weight: bold;
    }
    .result-form__ttl.ui-ttl-accordion {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
    .result-form__contents {
        display: grid;
        gap    : 6px;
    }
    .result-form__class-title {
        font-size  : 13px;
        font-weight: bold;
        padding    : 5px 0 0 10px;
    }
    .result-form__ttl.ui-ttl-accordion button {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        cursor: pointer;
    }
    .result-form__ttl.ui-ttl-accordion button i {
        vertical-align: middle;
        display: inline-block;
        line-height: 1.5;
    }
    .result-form__ttl.ui-ttl-accordion button p {
        display: flex;
        align-items: center;
    }
    .condition-line {
        width: 100%;
        height: 1px;
        background-color: #cccccc;
    }
    .facility-category {
        margin-top: 8px;
    }

/* サイドバーの間取り
--------------------------- */
.ui-check-list--grid-md {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.ui-check-list--grid-md li {
    margin: 0;
}

/* SELECT
--------------------------- */
.result-form__select {
    display        : flex;
    gap            : 5px;
    align-items    : center;
    justify-content: space-between;
}
    .result-form__select .ui-select {
        flex: 1;
    }
.result-form select {
    background-color: rgba(236, 239, 241, .2);
}

/*-------------------------------------------------------------------------
検索結果
-------------------------------------------------------------------------*/

.search-result {
    width: 240px;
    height: 160px;
    background-color: var(--bg-dark-transparent);
    border-radius: 10px;
    position: fixed;
    inset   : 0;
    margin  : auto;
    padding: 24px 0 0;
    text-align: center;
    z-index: 3;
}
    .search-result svg {
        width: 60px;
        height: 60px;
        fill: #fff;
        margin-block: 0 7px;
    }
    .search-result__text {
        font-size  : 15px;
        font-weight: bold;
        color      : #fff;
    }
    .search-result__text span {
        font-size  : 24px;
        font-weight: inherit;
        color      : inherit;
        line-height: 1;
    }
.kodawariImage {
    max-width: 100%;
    text-align: center;
}

/*-------------------------------------------------------------------------
検索結果が0件のときの再検索フォーム
-------------------------------------------------------------------------*/
.empty-search-message {
    margin: 50px 0;
    text-align: center;
}
    .empty-search-comment {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 16px;
    }
.empty-search-content {
    width: 700px;
    margin: auto;
}
    .empty-search-freeword {
        background-color: var(--bg-light-gray);
        padding: 40px;
    }
        .empty-search-freeword .search_txt {
            color: var(--gray-text);
            margin: 0 0 10px;
        }
        .empty-search-form {
            background-color: #fff;
            border: 1px solid var(--border-color);
            border-radius: 4px;
        }
        #resultEmptyFreeWordForm {
            display: flex;
        }
        .empty-search-freeword input[type="text"] {
            height: 44px;
            border: none;
            flex: 1;
        }






































/*-------------------------------------------------------------------------
リクエスト
-------------------------------------------------------------------------*/

.result-request {
    padding: 10px 0;
    text-align: center;
}
    .result-request__ttl {
        margin: 0 0 4px;
        font-size  : 16px;
        font-weight: bold;
    }
    .result-request__btn {
        gap: 4px;
        height: 72px;
        margin: 0 0 8px;
        box-shadow: var(--box-shadow);
        font-size  : 16px;
        font-weight: bold;
        color      : var(--sub-color);
    }
        .result-request__btn span {
            background-color: var(--sub-light-color);
            border-radius: 50px;
            padding: 5px 10px 3px;
            font-size  : 13px;
            font-weight: normal;
            color      : inherit;
            line-height: 1;
        }
    .result-request__note {
        font-size: 12px;
    }

/*-------------------------------------------------------------------------
お気に入り
-------------------------------------------------------------------------*/

.md-archive-card {
    display              : grid;
    grid-template-columns: 32px 1fr;
}
    .md-archive-card__check {
        background-color: var(--bg-light-gray);
        display        : flex;
        justify-content: center;
        padding: 52px 0 0;
    }
        .md-archive-card__check input {
            margin: 0;
        }
    .md-archive-card__right {
        padding: 10px;
    }
        .md-archive-card__top {
            display              : flex;
            gap                  : 10px;
            align-items: flex-start;
            margin: 0 0 10px;
        }
            .md-archive-card__img {
                min-width: 100px;
                width: 100px;
                height: 100px;
            }
            .md-archive-card__info {
                flex: 1;
            }
            .md-archive-card__delete {
                display    : flex;
                gap        : 3px;
                align-items: center;
                font-size: 10px;
                color    : #78909C;
                white-space: nowrap;
            }
                .md-archive-card__delete svg {
                    width: 12px;
                    height: 12px;
                    fill: #78909C;
                    margin: -1px 0 0;
                }
        .md-archive-card__bottom.is-toggle {
            display: none;
        }

/*---------------------------------------------------------------------------------
沿線エリアコンテンツ
-----------------------------------------------------------------------------------*/
#titleContents {
    width: var(--screen-size);
    margin: 0 auto 40px;
    padding: 15px;
    display: grid;
    grid-template-columns: 184px 1fr;
    grid-template-areas: "image text";
    gap: 15px;
    border: 1px solid var(--border-color);
    background-color: #fff;
}
    .titleContents-text-title {
        font-size: 15px;
        font-weight: bold;
        color: var(--main-color);
    }
    .titleContents-text-desc {
        line-height: 1.6;
    }

#kodawariContents {
    width: 950px;
}

#kodawariContents dl.text {
    width: 950px;
    min-height: 100px;
    float: right;
}
#kodawariContents dl.text dt {
    min-height: 33px;
    font-size: 140%;
    font-weight: bold;
    padding: 5px 0 5px 15px;
    height: 20px;
    color: #af4503;
    border: 1px solid var(--border-color);
    border-bottom: 1px dotted #666;
    border-radius: 5px 5px 0 0;
    background: #fff;
}
#kodawariContents dl.text dd {
    line-height: 1.5;
    padding: 0 20px 6px;
    padding-top: 10px;
    min-height: 75px;
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 5px 5px;
    background: #fff;
    color: #777;
}

.menuInner label {
    cursor:pointer;
}

.menuInner label:hover {
    background:#DDDDDD;
}

/*---------------------------------------------------------------------------------
おすすめのこだわり検索
-----------------------------------------------------------------------------------*/
.kodawari-link,
.search-link {
    width: var(--screen-size);
    margin: 0 auto 20px;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: var(--box-shadow);
}
.kodawari-link__title,
.search-link__title {
    font-weight: bold;
    color: #737373;
}
.kodawari-link__item:not(:last-child):after,
.search-link__item:not(:last-child):after {
    content: "/";
}
.kodawari-link__list,
.search-link__list {
    margin: 10px 0 0 0;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.kodawari-link__item {
    overflow-wrap: anywhere;
}

/*-------------------------------------------------------------------------
KEYWORD
-------------------------------------------------------------------------*/
.result-keyword {
    margin-bottom: 20px;
    background-color: #fff;
}
.keyword__ttl {
    border: 1px solid var(--border-color);
    border-radius: 4px 4px 0 0;
    padding: 13px 20px 8px;
    font-size  : 15px;
    font-weight: bold;
}
.keyword__contents {
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 4px 4px;
    padding: 20px;
}
.keyword__list {
    display  : flex;
    gap      : 5px;
    flex-wrap: wrap;
}
.keyword__link:hover {
    text-decoration: underline;
}
.near-bkn-img{
    border-radius: 8px;
}
