@charset "utf-8";
/*
* CSS for New Product List
*
* @version			0.0.1
* @lastmodified 2019/01/07
* @link					https://www.landcomp.co.jp/
* @copyright		Copyright 2019, LAND COMPUTER Co.,Ltd.All rights reserved.
*------------------------------------------------------------------------- */

/* NEW PRODUCT LIST ====================================================== */
.section ul.newProductList {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}
ul.newProductList li {
  overflow: hidden;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
}
ul.newProductList li a {
  display: block;
}
ul.newProductList li span.figure {
  box-sizing: border-box;
  display: block;
  margin-bottom: 0.5rem;
  border: 1px solid #ddd;
}
.figure img { 
  height: auto;
  max-width: 100%;
  width: auto;
}
/* RESPONSIVE ---------------------------------------------------------- */
@media all and (min-width: 480px) {
  ul.newProductList li span.figure {
    float: left;
    width: 33.33%;
    margin-right: 1rem;
  }
  ul.newProductList li span.detail {
    display: block;
    margin-top: 0;
    margin-left: 33.33%;
  }
}
/* mobile - pc line ------------ */
@media all and (min-width: 769px) {
  ul.newProductList li span.figure {
    width: 25%;
  }
  ul.newProductList li span.detail {
    margin-left: 25%;
  }
}
