.pankuzu {
    margin-bottom: 50px;
}

@media screen and (max-width: 1200px){
.sec>.inner{
    padding: 0 20px;
}
}
/*************************************************************

メインエリア

*************************************************************/
/*----------------------------
メインレイアウト
----------------------------*/
#SearchBody {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}

#SearchBody::before {
    content: "";
    width: calc(100%/3 - 20px);
    order: 1;
}

#SearchBody>.SearchItem {
    flex: 0 1 calc(100%/3 - 20px);
    margin-bottom: 40px;
}

@media screen and (max-width:1240px) {
    #SearchBody>.SearchItem {
        flex: 0 1 calc(100% / 2 - 20px);
        margin-bottom: 40px;
    }
}

@media screen and (max-width:599px) {
    #SearchBody>.SearchItem {
        flex: 0 1 100%;
        padding-bottom: 20px;
        border-bottom: solid 1px #ccc;
        margin-bottom: 20px;
    }
}

#SearchBody a {
    color: inherit;
    text-decoration: none;
}

#SearchBody img {
    max-width: 100%;
}


/*----------------------------
検索結果　アイテム
----------------------------*/


.SearchItem .FlexArea {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

@media screen and (max-width:599px) {
    .SearchItem .FlexArea {
        align-items: center;
        gap: 10px;
    }
}

.SearchItem .FlexArea>div {
    flex: 120px 0 1;
}

.SearchItem .FlexArea>div.ItemContent{
    flex: 0 1 calc(100% - 120px);
    position: relative;
    padding: 0 0 20px;
}

.SearchItem .FlexArea>div.ItemContent .Time{
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.SearchItem .PriceArea{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px
}

.SearchItem .PriceArea>div {
    text-align: center;
    max-width: 30px;
}

.SearchItem h3.Title {
    margin: 0 0 10px;
    border-bottom: dashed 1px #ccc;
}

.SearchItem h3.Title span{
    margin: 0 0 10px;
    text-align: justify;
    word-break: break-all;
    font-size: 16px;
    line-height: 1.2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    height: 3.5em;
}


@media screen and (max-width:599px) {
    .SearchItem .PriceArea>div {
        width: 30px;
    }
}

.SearchItem .PriceArea p {
    font-size: 26px;
    color: #ff0000;
    font-weight: 900;
    text-align: center;
    font-style: italic;
    white-space: nowrap;
}

.SearchItem .PriceArea p>span {
    font-size: 18px;
    font-weight: 400;
}


.SearchItem div.moreBT {
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
    color: #00246d;
    padding-right: 1.5em;
}
.SearchItem div.moreBT::before, .SearchItem div.moreBT::after{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: solid 2px #00246d;
    border-right: solid 2px #00246d;
    transform: translate(0, -50%) rotate(45deg);
}
.SearchItem div.moreBT::after{
    right: 6px;
}


/*----------------------------
ページネーション
----------------------------*/
.pagination nav {
    background: none;
    text-align: center;
    transform: none;
    opacity: 1;
    position: static;
}

.pagination nav a {
    margin-bottom: 10px;
}
