@charset "utf-8";


/*商品一覧
---------------------------------------------------------------------------*/
.oil_list .item a .title,
.oil_list .item a .detail .viscosity ,
.oil_list .item a .detail .api ,
.oil_list .item a .detail .desc {
font-family: Roboto-M,arial,helvetica,"Noto Sans Japanese","ヒラギノ角ゴ Pro W6","ヒラギノ角ゴ ProN W6","Hiragino Kaku Gothic Pro","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ6",Meiryo,メイリオ,"游ゴシック",YuGothic,"Yu Gothic",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

.oil_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.oil_list .item {
  margin: 0 .625rem 1.25rem;
  display: block;
  width: 180px;
  width: 11.25rem;
  border: 1px solid #555;
  border-radius: 5px;
  background: #fff;
}
.oil_list .item a {
  width: 100%;
  height: 100%;
}
.oil_list .item .title {
  padding: .3125rem;
  font-size: 16px;
  font-size: 1rem;
  font-style: italic;
  background: #555;
  line-height: 1;
  color: #fff;
}

.oil_list .item .thumbnail {
  position: relative;
  height: 160px;
  height: 10rem;
  overflow: hidden;
  z-index: 999;
  background: url(../images/item_bg.jpg) no-repeat center center;
  background-size: cover;
}

.oil_list .item .thumbnail img {
  margin-top: -.9375rem;
  margin-left: -2.8125rem;
  height: 180px;
  height: 11.25rem;
  -webkit-transition: .2s ease-out;
  transition: .2s ease-out;
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
}
.oil_list .item .detail .viscosity {
  display: block;
  padding: .3125rem;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  background: #ccc;
  z-index: 3;
}
.oil_list .item .detail .api {
  text-align: center;
  font-size: 12px;
  font-size: .75rem;
  border-bottom: 1px dotted #222;
  z-index: 2;
}
.oil_list .item .detail .desc {
  margin: .625rem;
  font-size: 12px;
  font-size: .75rem;
  word-break: break-all;
  z-index: 1;
}
/* hover */
.oil_list .item a:hover{
  opacity: 0.7;
}
.oil_list .item a:hover .thumbnail img {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

/* no_item */
p.no_item {
  margin: 20px;
  font-size: 18px;
}
