@charset "UTF-8";
.itemCard {
  width: 270px;
  height: 460px;
  padding: 8px 12px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.125) 0 2px 4px 0;
          box-shadow: rgba(0, 0, 0, 0.125) 0 2px 4px 0;
  border-radius: 6px;
  margin: 12px 10px;
  position: relative;
  color: #222;
  overflow: hidden;
  cursor: pointer;
  top: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer; }
  .itemCard:hover {
    top: -4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.225) 0 4px 6px 0;
            box-shadow: rgba(0, 0, 0, 0.225) 0 4px 6px 0; }
  .itemCard h1 {
    font-size: 21px;
    line-height: 1.4em; }
  @media screen and (max-width: 770px) {
    .itemCard {
      width: 100%;
      margin: 8px 0px; } }
  .itemCard__sale {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 24px;
    line-height: 24px;
    background-color: #e7424d;
    color: #fff;
    text-align: center; }
  .itemCard__spec {
    height: 24px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    font-size: 12px;
    text-align: center;
    line-height: 24px;
    padding: 0 4px;
    background-color: #222;
    color: #fff;
    position: absolute;
    right: 0;
    top: 170px; }
  .itemCard__image {
    width: 100%;
    height: 200px;
    border-radius: 4px;
    overflow: hidden; }
    .itemCard__image img {
      width: 100%;
      display: block; }
  .itemCard .flex {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .itemCard__desc {
    width: 100%;
    height: 115px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.4em;
    position: relative;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer; }
    .itemCard__desc::before {
      content: "\8A73\3057\304F\898B\308B";
      width: 100%;
      height: 55px;
      position: absolute;
      bottom: 0;
      left: 0;
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#fff));
      background: -webkit-linear-gradient(rgba(0, 0, 0, 0), #fff);
      background: -o-linear-gradient(rgba(0, 0, 0, 0), #fff);
      background: linear-gradient(rgba(0, 0, 0, 0), #fff);
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: end;
      -webkit-align-items: flex-end;
          -ms-flex-align: end;
              align-items: flex-end;
      font-weight: 500; }
    .itemCard__desc:hover {
      opacity: 0.6; }
  .itemCard__priceBox {
    position: absolute;
    right: 12px;
    bottom: -16px; }
  .itemCard__confirm {
    padding: 4px 0;
    font-size: 12px; }
    .itemCard__confirm span {
      padding-right: 8px;
      color: #828282;
      font-size: 11px;
      display: inline-block; }
  .itemCard__price {
    text-align: right;
    font-size: 20px;
    font-weight: bold;
    color: #e7424d;
    letter-spacing: 0.1em; }

#kousakuKikai {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  @media screen and (max-width: 770px) {
    #kousakuKikai {
      padding: 8px 12px;
      display: block; } }
