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

@charset "UTF-8";



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


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

	

}


/* ---------------------------------------------
*   商品リスト
---------------------------------------------*/
#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;
	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;
}

.innerBox{
	display:inline-block;
	width:calc(100% - 265px);
	float:right;
	/*
	overflow:hidden;
    position:absolute;
    top:50%;
    right:0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    */
}

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

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

.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;
}


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

	#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;
		line-height: 125%;
	}


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


/* ---------------------------------------------
*  戻るボタン
--------------------------------------------- */
a.returnBtn{
    display:inline-block;
    overflow:hidden;
    background-color: #e9e9e9;
    
    text-align: center;
    text-decoration:none;
    vertical-align:bottom;
}
a.returnBtn > span{
    display: block;
    width: 100%;
    padding:1em 3em 1em 4em;
    line-height: 100%;
    position: relative;
    /* font-weight: bold; */
    color: #000000;
}

a.returnBtn > span::before{
    display: inline-block;
    font-family: 'ycota_ift';
    content: "\e906";
    /* color: #eb7730; */
    margin-left: 0.5em;
    margin-right:0.5em;
    font-weight: normal;
    /*color: #fc9b5f;*/
    color:#000000;
    font-size: 1.2em;
    position: absolute;
    top: 50%;
    left: 1em;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
}

a.returnBtn:hover > span::before{
    margin-left:0;
    margin-right: 0.5em;
}


