﻿/* ///////////////////////////////////////////////////////////////////
一覧
/////////////////////////////////////////////////////////////////// */
.arrange {
    padding: 16px 20px;
    border: solid 1px var(--color-black30);
    border-radius: var(--radius-s);
    margin-bottom: 24px;
}
.arrange .arrange_innner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.arrange .number_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.arrange .border {
    width: 1px;
    height: 24px;
    background-color: rgba(0,0,0,.08);
}
.arrange .number_wrap .number{
    color: var(--color-black60);
}
.arrange .number em{
    font-style: normal;
    margin: 0 4px;
}
.arrange .sort_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.arrange .result,.arrange .showArea{
	display: flex;
    align-items: center;
    color: var(--color-black60);
}
.arrange .result select,.arrange .showArea select {
    background-color: var(--color-black10);
    padding: 8px 36px 8px 16px;
    border-radius: var(--radius-m);
    margin-left: 8px;
}
.arrange .result select {
    width: 112px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: var(--main-txtM-size);
    line-height: var(--main-txt-height);
    font-weight: var(--main-txt-weight);
    letter-spacing: var(--main-txt-spacing);
}
.arrange .showArea select {
    width: 125px;
}
.navi {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-turquoise50);
    width: fit-content;
    margin: 32px auto 0 auto;
}
.navi span {
    font-size: 20px;
    color: var(--color-turquoise40);
}
.navi a {
    line-height: 0;
}
.navi a.navi_back {
    margin-right: 10px;
}
.navi a.navi_next {
    margin-left: 10px;
}
.navi p {
    width: 40px;
    text-align: center;
}
.navi .page_current {
    text-decoration: underline;
    text-underline-offset: 3px;
}
#items {
    display: flex;
    flex-wrap: wrap;
    gap: 0 24px;
}
#items li {
    width: 224px;
    margin-bottom: 24px;
}
#items li .product_img {
    position: relative;
    width: 100%;
    height: 224px;
    border-radius: var(--radius-m);
    overflow: hidden;
    line-height: 0;
    margin-bottom: 8px;
    border: 1px solid var(--color-black30);
}
#items li .product_img img {
    max-width: 100%;
    height: auto;
}
#items li .product_img img.iabs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.item_title {
    color: var(--color-black60);
    min-height: 3em;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.item_title a{
	text-decoration: none;
}

.item_price{
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--color-black60);
}
.item_buttons{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	margin-top: 8px;
    gap: 4px 8px;
}
.bnr_kv {
    border-radius: var(--radius-m);
    overflow: hidden;
    line-height: 0;
    margin-bottom: 24px;
}
.item_lst_uni_kw {
    color: var(--color-black80);
    font-weight: 600;
}
.item_lst_uni_fb {
    margin-bottom: 8px;
}