/* ==========================================================
*
*  商品を探す
*
========================================================== */

@charset "UTF-8";



/******************************************
*
ラインナップ
*
******************************************/


/* ---------------------------------------------
*   タイトル
---------------------------------------------*/
#lineupTtl {
	display: block;
	overflow: hidden;
	width: 100%;
	margin: 0 0 0;
	padding: 25px 25px;
	border: 1px solid #cccccc;
}

#lineupTtl .innerFrame {
	display: block;
	overflow: hidden;
	height: 127px;
	padding-left: 90px;
	position: relative;
}

#lineupTtl a {
	display: inline-block;
	overflow: hidden;
	position: absolute;
	top: 50%;
	left: 300px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

#lineupTtl a:hover span::after {
	margin-left: 1.0em;
	margin-right: 0;
}

#lineupTtl a>h2 {
	display: inline-block;
	overflow: hidden;
	font-size: 2.6rem;
	line-height: 125%;
}


#lineupTtl a>h2::after {
	display: block;
	overflow: hidden;
	content: "";
	width: 2.5em;
	margin-top: 0.5em;
	border-bottom: 2px solid #eb7730;
}

#ttlThum {
	display: inline-block;
	/*
	overflow:hidden;
*/
	width: 156px;
	height: 124px;
}

#ttlThum>img {
	width: auto;
	height: 100%;
}


/* for Tb --------------------*/
@media screen and (max-width:980px) {

	#lineupTtl {
		padding: 10px;
		margin: 25px 0 0;
	}

	#lineupTtl .innerFrame {
		height: 76px;
		padding-left: 0;
	}

	#lineupTtl a {
		left: 120px;
	}

	#lineupTtl a>h2 {
		font-size: 1.8rem;
	}

	#ttlThum {
		width: 95px;
		height: 76px;
	}
}

/* ---------------------------------------------
*   タイトル（クラスで定義ver）
---------------------------------------------*/
.lineup-card {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	padding: 25px 25px;
	border: 1px solid #cccccc;
	text-decoration: none;
}

.lineup-card:hover {
	opacity: 0.5;
	text-decoration: none;
}

.lineup-card__inner {
	padding-left: 90px;
}

.lineup-card__img-wrapper {
	width: 160px;
	height: 120px;
}

.lineup-card__img-wrapper>img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.lineup-card__title {
	font-size: 2.6rem;
	line-height: 125%;
}

.lineup-card__arrow::after {
	font-family: 'ycota_ift';
	content: "\e917";
	color: #eb7730;
	margin-left: 0.5em;
	margin-right: 0.5em;

	transition: all 0.2s ease 0s;
	-webkit-transition: all 0.2s ease 0s;
}

/* for Tb --------------------*/
@media screen and (max-width:980px) {
	.lineup-card {
		padding: 10px;
		gap: 10px;
	}

	.lineup-card__img-wrapper {
		width: 120px;
		height: 75px;
	}

	.lineup-card__title {
		font-size: 1.8rem;
	}
}

/* ---------------------------------------------
*   タグリスト
---------------------------------------------*/
#tagList {
	display: none;
	margin: 30px 0;
}

/* ---------------------------------------------
*   商品リスト
---------------------------------------------*/
#lineupList {
	display: block;
	overflow: hidden;
	margin-bottom: 45px;
}


#lineupList ul {
	display: block;
	/*overflow:hidden;*/
	padding-right: 2px;
	margin: 20px 0 50px;
}

#lineupList ul>li {
	display: block;
	overflow: hidden;
	width: 100%;
	border: 1px solid #cccccc;
	margin-bottom: 10px;

	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	-o-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

#lineupList ul>li>a {
	display: block;
	overflow: hidden;
	min-height: 160px;
	padding: 12px 30px;
	position: relative;
	color: #000000;
}

.pc #lineupList ul>li>a:hover {
	background-color: #cccccc;
}

.pc #lineupList ul>li>a:hover .arrow-link::after {
	margin-left: 1.0em;
	margin-right: 0;
}

#lineupList ul>li .itemPct {
	width: 182px;
	height: 135px;
	float: left;
}
#lineupList .itemCard__tag-wrep {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 10px;
	margin: 10px 10px 0;
}

#lineupList .itemCard__tag {
	display: block;
	margin-left: 0;
}

#lineupList ul>li.itemCard:hover {
	background-color: #ccc;
}
.innerBox {
	display: inline-block;
	width: calc(100% - 265px);
	overflow: hidden;
	float: right;
	/*position:absolute;
    top:50%;
    right:0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);*/
}

.innerBox>h5 {
	font-size: 1.8rem;
	line-height: 125%;
}

.innerBox>p {
	font-size: 1.6rem;
	margin: 1em 0;
	line-height: 155%;
	padding-right: 10px;
}

.innerBox>h5>span::after {
	font-family: 'ycota_ift';
	content: "\e917";
	color: #eb7730;
	font-weight: normal;
	margin-left: 0.5em;
	margin-right: 0.5em;
	padding: 3px 0;
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
}

a:hover .innerBox>h5>span::after {
	margin-left: 1.0em;
	margin-right: 0.0em;
}
@media print,
 screen and (min-width:981px) {	

#lineupList ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0 2%;
}

#lineupList ul>li {
	width: 49%;
 }

 #lineupList .itemCard__image {
	width: 100%;
	aspect-ratio: 182/135;
}

#lineupList .itemCard__prices {
	flex-direction: column;
	grid-column-start: 1;
	grid-row-start: 3;
	grid-row-end: 4;
}

#lineupList .itemCard__tag-wrep {
	width: 100%;
}

#lineupList .itemCard__product-types {
	width: 100%;
}
}

/* for Tb --------------------*/
@media screen and (max-width:980px) {
itemCard
	#lineupList {
		margin-bottom: 0;
	}

	#lineupList ul {
		margin: 20px 0 25px;
	}

	#lineupList ul>li>a {
		display: block;
		overflow: hidden;
		height: auto;
		min-height: 150px;
		padding: 12px 10px;
	}
	#lineupList ul>li .itemPct {
		width: 110px;
		height: auto;
		min-height: 150px;
	}

	.innerBox {
		width: calc(100% - 120px);
		padding: 0 10px;
	}

	.innerBox>h5 {
		font-size: 1.6rem;
	}


	.innerBox>p {
		font-size: 1.4rem;
		margin: 1em 0;
	}
}

/* ---------------------------------------------
*   電動車椅子試乗体験バナー
---------------------------------------------*/
#testdriveBnrArea {
	display: block;
	overflow: hidden;
	width: 100%;
	padding: 25px 25px;
	border: 1px solid #cccccc;
	margin-top: 10px;
}

#testdriveBnrArea .innerFrame {
	display: block;
	overflow: hidden;
	height: 127px;
	padding-left: 90px;
	position: relative;
}

#testdriveBnrArea .innerBnr {
	display: inline-block;
	width: 156px;
	height: 124px;
}

#testdriveBnrArea .innerBnr img {
	width: 100%;
	height: 100%;
}

#testdriveBnrArea .innerFrame a {
	display: inline-block;
	overflow: hidden;
	position: absolute;
	top: 50%;
	left: 300px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	text-decoration: none;
	font-weight: bold;
}

#testdriveBnrArea .innerFrame a p {
	font-size: 1.6rem;
	margin: 1em 0;
	line-height: 155%;
	padding-right: 10px;
}

#testdriveBnrArea .bnrTitle {
	display: inline-block;
	overflow: hidden;
	font-size: 2.6rem;
	line-height: 125%;
}

#testdriveBnrArea .orangeUnder {
	display: block;
	overflow: hidden;
	width: 4.6em;
	margin-top: 0.5em;
	border-bottom: 2px solid #eb7730;
}

/* for Tb --------------------*/
@media screen and (max-width: 980px) {
	#testdriveBnrArea {
		padding: 10px;
		margin: 25px 0 0;
	}

	#testdriveBnrArea .innerFrame {
		height: 80px;
		padding-left: 0;
	}

	#testdriveBnrArea .innerBnr {
		width: 95px;
		height: 80px;
	}

	#testdriveBnrArea .innerFrame a {
		left: 120px;
	}

	#testdriveBnrArea .bnrTitle {
		font-size: 1.8rem;
	}
}

/* ---------------------------------------------
*   電動車椅子試乗体験ボタン
---------------------------------------------*/
#testdriveBtn {
	margin-top: 20px;
}

/******************************************
*
商品詳細
*
******************************************/


/* ---------------------------------------------
*  商品写真
--------------------------------------------- */
#productImages {
	display: block;
	overflow: hidden;
}

#itemImage {
	display: block;
	overflow: hidden;
	width: 500px;
	height: 370px;
	margin: 0 auto;
	text-align: center;
}

#itemImage>p {
	width: 500px;
	height: 370px;
}

#productImages>ul {
	display: block;
	width: 500px;
	font-size: -.4em;
	margin: 10px auto;
}

#productImages>ul>li {
	display: block;
	width: 25%;
	text-align: center;
	float: left;
}

.ogLine {
	margin: 45px auto;
	border: none;
	border-top: 2px solid #eb7730;
	width: 60px;

}

/* 商品スライダーカスタム */
.itemImage_slider {
	width: 500px;
	height: 370px;
	margin: 0 auto;
	position: relative;
}

.productImages_thumbs .itemPct.current {
	border: 2px solid #ec7731;
	pointer-events: none;
}

.productImages_thumbs .slick-slide {
	width: 80px;
	margin-right: 10px;
}

#productImages .productImages_thumbs>p {
	display: block;
	overflow: hidden;
	width: 100px;
	height: 100px;
	padding: 5px;
	line-height: 100%;
	text-align: center;
	border: 1px solid #cccccc;
}

.productImages_thumbs li p {
	width: 100px;
	height: 100px;
	padding: 5px;
	line-height: 100%;
	text-align: center;
	border: 1px solid #cccccc;
}

.itemImage_slider .itemPct {
	position: relative;
	width: 100%;
	height: 370px;
}

/* 商品スライダーボタン */
.slick-prev {
	left: 0;
}

.slick-prev,
.slick-next {
	top: 50%;
	width: 45px;
	height: 45px;
	z-index: 99;
}

.slick-prev:before,
.slick-next:before {
	font-size: 35px;
	color: #EA7600;
	opacity: 1;
}
.slick-next{
	right: 0;
}

/* for Tb --------------------*/
@media screen and (max-width:980px) {

	#itemImage {
		width: 100%;
		height: auto;
		margin-top: 10px;
	}

	.productImages_thumbs {
		width: 100%;
		max-width: 360px;
	}

	.productImages_thumbs li p {
		width: 75px;
		height: 75px;
		margin: 0 auto;
	}

	.itemImage_slider .itemPct {
		height: auto;
		min-height: 265px;
		aspect-ratio: 4 / 3;
	}

}



/* for Sp --------------------*/
@media screen and (max-width:320px) {

	#productImages>ul>li>a {
		width: 70px;
		height: 70px;
		margin: 0 auto;
	}
}


/* ---------------------------------------------
*  商品情報
--------------------------------------------- */
#productData {
	display: block;
	overflow: hidden;
	width: calc(100% - 470px - 35px);
	float: left;
}


#productData>h3 {
	font-size: 2.2rem;
	line-height: 125%;
	color: #0c1544;
}

#productData>ul {
	margin: 1em;
}

#productId {
	display: inline-block;
	overflow: hidden;
	float: right;
}

#productId>p {
	display: inline-block;
	font-size: 1.4rem;
	line-height: 100%;
	background-color: #f2f2f2;
	padding: 0.5em 1em;
}


/* for Tb --------------------*/
/*@media screen and (max-width:980px) {*/
@media screen and (max-width:1150px) {

	#mainBody h2.lined {
		margin: 1em 0 0.5em;
	}


	#productId {
		display: block;
		float: none;
	}

	#productData {
		width: 100%;
		float: none;
	}

	#productData>h3 {
		font-size: 1.8rem;
		line-height: 125%;
		padding-right: 1em;
	}

}

@media screen and (max-width:980px) {

	#productData>h3 {
		padding-right: 0;
	}

}

/* ---------------------------------------------
*  商品価格
--------------------------------------------- */
#productPrice {
	display: block;
	overflow: hidden;
	width: 470px;
	padding: 35px;
	float: right;
	background-color: #f2f2f2;
}

#productPrice>h3 {
	font-size: 2.2rem;
	line-height: 125%;
	color: #0c1544;
}

#productPrice>ul {
	display: block;
	overflow: hidden;
	background-color: #ffffff;
	margin: 1em 0 0.5em;
}

#productPrice>ul>li {
	clear: both;
	display: block;
	overflow: hidden;
	padding: 1em;
	border-top: 2px solid #f2f2f2;
}

#productPrice>ul>li:last-child>.priceTxt {
	padding-right: 0px;
}

.priceTxt {
	display: inline-block;
	overflow: hidden;
	float: right;
}

.priceTxt>strong {
	font-size: 1.8rem;
	font-weight: bold;
}

.priceTxt>span {
	font-size: 1.0rem;
}


#productPrice>p {
	text-align: right;
	font-size: 1.2rem;
	padding-right: 20px;
}


/* for Tb --------------------*/
/*@media screen and (max-width:980px) {*/
@media screen and (max-width:1150px) {

	#productPrice {
		width: 100%;
		padding: 20px;
		float: none;
		margin-top: 35px;
	}

	#productPrice>h3 {
		font-size: 1.8rem;
		line-height: 125%;
	}

}



/* ---------------------------------------------
*  追加情報
--------------------------------------------- */
#moreData {
	clear: both;
	display: block;
	overflow: hidden;
	text-align: center;
	padding: 60px 0;
}

#moreData>a {
	display: inline-block;
	overflow: hidden;
	margin: 0 20px;
}


/* for Tb --------------------*/
@media screen and (max-width:980px) {

	#moreData {
		padding: 30px 0;
	}

	#moreData>a {
		display: block;
		margin: 0 0;
	}

	#moreData>a img {
		width: 100%;
		height: auto;
		/*max-width:*/
	}

}

/* ---------------------------------------------
*  問合せ・購入ボタンエリア
--------------------------------------------- */
.bl_digiCatalogArea {
	display: flex;
	justify-content: center;
	margin-right: 10px;
}

.bl_digiCatalogArea_btn {
	display: inline-block;
	width: 300px;
	height: 60px;
	max-width: 100%;
	padding: 15px 10px;
	text-align: center;
	text-decoration: none;
	background-color: #ffffff;
	color: #002169;
	border: 2px solid #cccccc;
	border-radius: 6px;
}

.bl_digiCatalogArea_btn:hover,
.bl_digiCatalogArea_btn:focus {
	text-decoration: none;
	color: #002169;
	opacity: 0.5;
}

.bl_digiCatalogArea_btnText {
	margin: auto 0;
	font-size: 2.25rem;
	font-weight: bold;
}

.bl_contactArea {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 20px 0;
}

.bl_contactArea_btn {
	display: inline-block;
	width: 330px;
	height: 80px;
	max-width: 100%;
	padding: 15px 10px;
	text-align: center;
	text-decoration: none;
	background-color: #ec7731;
	color: #ffffff;
	border-radius: 6px;
}

.bl_contactArea_btn:hover,
.bl_contactArea_btn:focus {
	text-decoration: none;
	color: #ffffff;
	opacity: 0.5;
}

.bl_contactArea_rentalBtn {
	background-color: #002169;
	line-height: 2.5rem;
}

.bl_contactArea_iconBtn {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 5px;
}

.bl_contactArea_btnText {
	margin: auto 0;
	font-size: 2.25rem;
	font-weight: bold;
}

/* for Sp --------------------*/
@media screen and (max-width: 750px) {
	.bl_digiCatalogArea {
		margin-right: 0;
	}

	.bl_digiCatalogArea_btn {
		width: 60%;
	}

	.bl_digiCatalogArea_btnText {
		font-size: 1.25rem;
	}

	.bl_contactArea {
		display: block;
	}

	.bl_contactArea_btn {
		width: 100%;
		height: 55px;
	}

	.bl_contactArea_rentalBtn {
		height: 80px;
	}

	.bl_contactArea_iconBtn {
		margin: 10px 0;
	}

	.bl_contactArea_iconBtn_img {
		width: 30px;
	}
}

/* ---------------------------------------------
*  動画エリア
--------------------------------------------- */
#demoVideo {
	display: block;
	overflow: hidden;
	width: 680px;
	height: 383px;
	margin: 0 auto;
}



/* for Tb --------------------*/
@media screen and (max-width:980px) {

	#demoVideo {
		width: 100%;
		height: 0;
		padding-top: 56.25%;
		height: auto;
		position: relative;
	}

	#demoVideo>iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

}
/* ==========================================================
*
*  商品を探す
*
========================================================== */

@charset "UTF-8";

/* 追加された項目のスタイル */
.product-type-terms {
    margin: 20px 0;
    /* background-color: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #002169; */
}

.product-type-term-link {
    display: inline-block;
    padding: 5px 12px;
    margin: 2px 10px;
    background-color: #002169;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.product-type-term-link:hover {
    background-color: #eb7730;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.feature-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
	max-width: 600px;
    border-radius: 8px;
}


.itemCard__image {
	max-width: 180px;
}
/* .feature-icon:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
} */

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 8px;
}

.column-links {
	max-width: 600px;
    margin: 30px auto;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.column-links h3,
.column-links h4 {
    color: #002169;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: bold;
}

.column-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column-links li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.column-links li:last-child {
    border-bottom: none;
}

.column-links a {
    color: #002169;
    text-decoration: none;
    font-size: 1.6rem;
    transition: color 0.3s ease;
}

.column-links a:hover {
    color: #eb7730;
    text-decoration: underline;
}

/* レスポンシブ対応 */
@media screen and (max-width: 980px) {
    /* .product-type-terms {
        margin: 10px;
        padding: 12px;
    } */
    
    .product-type-term-link {
        font-size: 1.2rem;
        padding: 4px 10px;
    }
    
    .feature-icons {
        gap: 10px;
        padding: 15px;
    }
    
 
    .feature-icon img {
        width: 40px;
        height: 40px;
    }
    
    .column-links {
        margin: 20px 0;
        padding: 20px;
    }
    
    .column-links h3,
    .column-links h4 {
        font-size: 1.6rem;
    }
    
    .column-links a {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 750px) {
    /* .product-type-terms {
        margin: 10px;
        padding: 10px;
    }
     */
    .product-type-term-link {
        font-size: 1.1rem;
        padding: 3px 8px;
    }
    
    .feature-icons {
        gap: 8px;
        padding: 12px;
    }
    
 
    .feature-icon img {
        width: 35px;
        height: 35px;
    }
    
    .column-links {
        margin: 15px 0;
        padding: 15px;
    }
    
    .column-links h3,
    .column-links h4 {
        font-size: 1.5rem;
    }
    
    .column-links a {
        font-size: 1.3rem;
    }
}

/* 商品カード内のタグとアイコン */
.itemCard__product-types {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 10px 0;
}

.product-type-term {
    display: inline-block;
    padding: 2px 8px;
    font-size: 1.2rem;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* .product-type-term:hover {
    background-color: #e0e0e0;
    text-decoration: none;
    color: #333;
    transform: translateY(-1px);
} */

.itemCard__feature-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 10px 0;
}


.itemCard__feature-icons .feature-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    margin-bottom: 0;
}

.itemCard__feature-icons .feature-icon__text {
    font-size: 1.2rem;
    color: #666;
}

/* タクソノミーページ用スタイル */
.taxonomy-description {
    margin: 20px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #002169;
    font-size: 1.6rem;
    line-height: 1.6;
}

.related-taxonomies {
    margin: 40px 0;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.related-taxonomies h3 {
    color: #002169;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: bold;
}

.related-taxonomies ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-taxonomies li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.related-taxonomies li:last-child {
    border-bottom: none;
}

.related-taxonomies a {
    color: #002169;
    text-decoration: none;
    font-size: 1.6rem;
    transition: color 0.3s ease;
}

.related-taxonomies a:hover {
    color: #eb7730;
    text-decoration: underline;
}

.term-count {
    color: #666;
    font-size: 1.4rem;
    margin-left: 5px;
}
.sp {
	display: none;
}

@media screen and (max-width: 750px) {

	.sp {
		display: block;
	}
    .itemCard__product-types {
        gap: 3px;
        margin: 5px;
    }
    #lineupList .itemCard__tag-wrep {
        gap: 3px;
        margin: 5px;
    }
    .product-type-term {
        padding: 1px 4px;
        font-size: 1rem;
    }
    
    .itemCard__feature-icons {
        gap: 2px;
        margin: 5px 0;
    }
    

    .itemCard__feature-icons .feature-icon img {
        width: 20px;
        height: 20px;
    }
    
    .itemCard__feature-icons .feature-icon__text {
        font-size: 1rem;
    }
    
    .taxonomy-description {
        margin: 10px 0;
        padding: 12px;
        font-size: 1.3rem;
    }
    
    .related-taxonomies {
        margin: 20px 0;
        padding: 15px;
    }
    
    .related-taxonomies h3 {
        font-size: 1.5rem;
    }
    
    .related-taxonomies a {
        font-size: 1.3rem;
    }
}


.paging-area {
	margin-bottom: 30px;
	text-align: center;
  }
  
  .paging-area .page-numbers {
	display: inline-block;
	overflow: hidden;
	border: 1px solid #012169;
	color: #012169;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	padding: 5px;
	text-decoration: none;
  }
  
  .paging-area a:hover {
	color: #EA7600;
  }
  
  .paging-area .current {
	background-color: #012169;
	color: white;
  }
  .itemCard__container .itemCard__link {
	display: block;
	position: relative;
  }
  .itemCard__detail-bottom {
	display: flex;
}


.itemCard__detail-top-left {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.itemCard__detail-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 10px;
}

/* 商品カードタイトルの縦棒装飾 */
.itemCard__detail-top .itemCard__title span::after {
	display: none;
}
/* 商品カードタイトルの縦棒装飾 */
.itemCard__detail-top .itemCard__title span::before {
	content: "";
	display: inline-block;
	width: 3px;
	height: 1.2em;
	background-color: #eb7730;
	margin-right: .7em;
	vertical-align: middle;
}

.itemCard__detail-bottom [data-type="rental"] .itemCard__price--category,
.itemCard__detail-bottom .itemCard__price--category {
	background-color: inherit;
	color: #000;
}

.itemCard__detail-bottom  [data-type="insurance"] .itemCard__price--value {
	color: #073763;
	width: auto;
}

.itemCard__price--container {
	border-bottom: 1px solid #cccccc;
	padding-bottom: 5px;
}

.itemCard__prices {
	gap: 10px;
}

.itemCard__detail-bottom  [data-type="insurance"] .itemCard__price--value span {
	font-size: 2.2rem;
}
