@charset "utf-8";
/* ================================================================ */
/* 共通 */
/* ================================================================ */
#RentalProductFv {
    background: #ffffff;
}
@media screen and (max-width:1024px) {
}
@media screen and (max-width:840px) {
}
@media screen and (max-width:640px) {
}
/* ================================================================ */
/* 一覧ページ */
/* ================================================================ */
.contentWrap__rentalProductList_body {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 5em 0;
    width: 98%;
    max-width: 1200px;
    position: relative;
}
.rentalProductsWrap {
    width: calc(100% - 250px);
    order: 2;
    padding: 2em 0 0 5%;
}
.rentalProducts {
    display: flex;
    flex-flow: row wrap;
}
.rentalProducts_item {
    width: 48%;
    position: relative;
}
.rentalProducts_item:nth-child(2n+1) {
    margin: 0 2% 4% 0;
}
.rentalProducts_item > a {
    display: block;
}
.rentalProducts_item .bespe_link {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    background-color: #00AFCC;
    color: #fff;
    font-weight: bold;
    font-size: .8em;
    line-height: 1;
    font-weight: 500;
    padding: 0.5em;
    z-index: 1;
    font-weight: bold;
}
.rentalProducts_item_img {
    position: relative;
    background: #fff;
}
.rentalProducts_item_img_category {
    position: absolute;
    left: 0;
    bottom: 0;
    display: inline-block;
    padding: 0.5rem 1.0rem;
    background-color: rgba(255,46,46,0.9);
    color: #fff;
    font-size: 0.9rem;
    line-height: 1;
    display: none;
}
.rentalProducts_item_text {
    margin: 1.5rem auto 0;
    width: 92%;
}
.rentalProducts_item_text > h3 {
    font-family: "Noto Sans Japanese";
    font-size: 0.9rem;
    line-height: 1.25;
    font-weight: bold;
    text-align: left;
    min-height: 50px;
}
.rentalProducts_item_text_price {
    color: #FF2E2E;
}
@media screen and (max-width:1024px) {
}
@media screen and (max-width:840px) {
    .rentalProductsWrap {
        order: 1;
        width: 100%;
        padding-left: 0;
    }
}
@media screen and (max-width:640px) {
    .rentalProducts_item {
        width: 95%;
        margin: 0 2.5em 4%;
    }
    .rentalProducts_item:nth-child(2n+1) {
        margin: 0 2.5em 4%;
    }
}
/* サイドバー */
.rentalProductListSidebarWrap {
    padding: 2em 1em;
    width: 250px;
    position: relative;
    order: 1;
}
.rentalProductListSidebar {
    background: rgba(255,255,255,.75);
    top: 100px;
    position: sticky;
}
.rentalProductListSidebar > span {
    display: block;
    color: #000;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 0.5rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    margin: 0 auto .5em;
}
.rentalProductListSidebar > ul {
    width: 100% !important;
}
.rentalProductListSidebar > ul > li > a {
    position: relative;
    display: block;
    padding: 1.2em 1em;
    font-size: 1em;
    line-height: 1;
    color: #333;
    border-bottom: 1px dashed #333;
    transition: all ease 0.5s;
}
.rentalProductListSidebar > ul > li > a:hover {
    color:#00AFCC;
}
.rentalProductListSidebar > ul > li > a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background-color: #00AFCC;
    transition: all ease 0.5s;
}
.rentalProductListSidebar > ul > li > a:hover::before {
    width:100%;
}
@media screen and (max-width:1024px) {
}
@media screen and (max-width:840px) {
    .rentalProductListSidebarWrap {
        width: 100%;
        max-width: 460px;
        order: 2;
        margin: 4em auto;
    }
}
@media screen and (max-width:640px) {
}
/* サイドバー */
.rentalProductList_pagination {
    width: 100%;
    order: 3;
}
.rentalProductList_pagination .page-numbers {
    box-shadow: none;
    border: none;
}
.rentalProductList_pagination .page-numbers:hover {
    background: transparent;
}
.rentalProductList_pagination .page-numbers > li > a {
    background: #ffffff;
    border: 1px solid #00AFCC;
    color: #00AFCC;
}
.rentalProductList_pagination .page-numbers > li > a:hover {
    background: #00AFCC;
    color: #ffffff
}
.rentalProductList_pagination .page-numbers > li > span {
    background: #007396;
    border: 1px solid #007396;
    color: #ffffff
}
.rentalProductList_pagination .page-numbers > li > span:hover {
    background: #007396;
    border: 1px solid #007396;
    color: #ffffff
}
@media screen and (max-width:1024px) {
}
@media screen and (max-width:840px) {
}
@media screen and (max-width:640px) {
}
/* ================================================================ */
/* 詳細ページ */
/* ================================================================ */
.contentWrap__rentalProduct_body {
    margin-top: 4em;
}
.rentalProduct {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 4em 1% 6em;
    background: rgba(255, 255, 255, .65);
}
@media screen and (max-width:1024px) {
}
@media screen and (max-width:840px) {
}
@media screen and (max-width:640px) {
}
/* 画像 */
.rentalProduct_img {
    width: 45%;
}
.rentalProduct_img > img {
    background: #fff;
  }
@media screen and (max-width:1024px) {
    .rentalProduct_img {
        width: 50%;
    }
}
@media screen and (max-width:840px) {
    .rentalProduct_img {
        width: 100%;
    }
}
@media screen and (max-width:640px) {
}
/* 詳細 */
.rentalProduct_detail {
    width: 50%;
    padding: 0 0 0 2.5%;
}
.rentalProduct_detail > h2 {
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0 0 0.5rem;
    margin: 0 auto 0.5rem;
}
.rentalProduct_detail > h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 5rem;
    height: 3px;
    background-color: #00AFCC;
}
.rentalProduct_detail > dl {
    border-bottom: 1px solid #dcdcdc;
    display: flex;
    flex-flow: row wrap;
    padding: 0.5rem;
}
.rentalProduct_detail > dl > dt {
    width: 135px;
}
.rentalProduct_detail > dl > dd {
    width: calc(100% - 135px);
}
.rentalProduct_detail_links {
    margin: 1rem auto 0;
    display: flex;
    flex-flow: row wrap;
}
.rentalProduct_detail_links > a {
    width: 48%;
    margin: 0 1%;
    display: inline-block;
    padding: .75em 0.25rem;
    font-size: 0.9rem;
    background-color: #00AFCC;
    color: #fff;
    text-align: center;
    transition: all ease 0.3s;
}
.rentalProduct_detail_links > a:hover {
    background: #007396;
}
.rentalProduct_detail_links > a.be-specialized_link.rental_bike
, .rentalProduct_detail_links > a.be-specialized_link.rental_wheel
, .rentalProduct_detail_links > a.be-specialized_link.rental_saddle {
    display: block;
}
.rentalProduct_detail_links > a.be-specialized_link {
    display: none;
    width: 98%;
    margin: 2% 1% 0;
}
@media screen and (max-width:1024px) {
}
@media screen and (max-width:840px) {
    .rentalProduct_detail {
        width: 100%;
    }
}
@media screen and (max-width:640px) {
}
/* テキスト */
.rentalProduct_text {
    margin-top: 3em;
}
.rentalProduct_text > h3 {
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0 0 0.5rem;
    margin: 0 auto 0.5rem;
}
.rentalProduct_text > h3::before {
	content:"";
	position:absolute;
	left:0;
	bottom:0;
	width:5rem;
	height:3px;
	background-color:#00AFCC;
}
@media screen and (max-width:1024px) {
}
@media screen and (max-width:840px) {
}
@media screen and (max-width:640px) {
}
/* カテゴリ一覧 */
.rentalProduct_categories {
    width: 100%;
    margin-top: 3em;
}
.rentalProduct_categories > h2 {
    color: #000;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 0.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
    margin: 0 auto 1rem;
}
.rentalProduct_categories > ul {
    display: flex;
    flex-flow: row wrap;
}
.rentalProduct_categories > ul > li {
    width: 31.333333333%;
    margin: 1%;
}
.rentalProduct_categories > ul > li > a {
    position: relative;
    display: block;
    padding: 1.2rem 1rem;
    font-size: 1rem;
    line-height: 1;
    color: #333;
    border-bottom: 1px dashed #333;
    transition: all ease 0.5s;
}
.rentalProduct_categories > ul > li > a:hover {
	color:#FF2E2E;
}
.rentalProduct_categories > ul > li > a::before {
	content:"";
	position:absolute;
	left:0;
	bottom:-1px;
	width:0;
	height:1px;
	background-color:#FF2E2E;
	transition:all ease 0.5s;
}
.rentalProduct_categories > ul > li > a:hover::before {
	width:100%;
}
.rentalProduct_categories > ul > li > a > i {
	margin:0 10px 0 0;
}
@media screen and (max-width:1024px) {
}
@media screen and (max-width:840px) {
    .rentalProduct_categories > ul > li {
        width: 48%;
    }
}
@media screen and (max-width:640px) {
    .rentalProduct_categories > ul > li {
        width: 98%;
    }
}
