@charset "utf-8";
/* Experience CSS */

/* MAIN
--------------------------------------------------------------------------------------*/

/* SECTION
*************************************** */
.product_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 10px;
  min-height: 30vw;
}

.detail_box {
  width: 48%;
  max-width: 400px;
  margin: 10px;
}

.jacket_box {
  width: 400px;
  height: 400px;
  margin: 0 auto 15px;
  background-color: #fff;
  border: solid 1px;
}

.jacket {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 400px;
  max-height: 400px;
}

.jacket .image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

h3 {
  font-weight: bold;
  line-height: 1.4;
}

.title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5px;
  font-size: 2rem;
}

.title::before {
  top: 3px;
}

.point {
  font-size: 1.4rem;
}

.attention {
  margin-top: 5px;
  color: #c6000b;
  font-size: 1.2rem;
}

.no_data {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  border: none;
}

.no_data p {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

/* -------------------- for SP (480px) ---480px以下
----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
  /* MAIN
  --------------------------------------------------------------------------------------*/


  /* SECTION
  *************************************** */

  /* PRODUCT
  *************************************** */
  .product_list {
    justify-content: space-between;
  }

  .detail_box {
    width: 48%;
    margin: 0 0 15px;
  }

  .jacket_box {
    width: 43vw;
    height: 43vw;
  }

  .jacket {
    max-width: 205px;
    max-height: 205px;
  }

}
/* (max-width: 480px) end */


/* -------------------- for Tablet (481px) and (1023px) ---481から1023px以内
----------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 481px) and (max-width: 1023px) {
  /* MAIN
  --------------------------------------------------------------------------------------*/

  /* PRODUCT
  *************************************** */
  .detail_box {
    margin: 5px;
    width: 47.5%;
  }

  .jacket_box {
    width: 25vw;
    height: 25vw;
    max-width: 220px;
    max-height: 220px;
  }

  .jacket {
    max-width: 220px;
    max-height: 220px;
  }

}
/* (min-width: 481px) and (max-width: 1023px) end */
