@import url("root.css");
/***************************************
-------------- ITEM DETAIL --------------
***************************************/
#items_detail .items_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

#items_detail .items_ttl_img {
  width: 100%;
  margin-bottom: 15px;
  text-align: center;
}

#items_detail .items_ttl_img img {
  min-width: 200px;
}

#items_detail .subtitle {
  text-align: center;
  font-size: 1.2em;
}

#items_detail .result_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 2%;
  width: 100%;
}

#items_detail .result_img img {
  width: 100%;
}

#items_detail .result_txt .date {
  font-size: 1.4rem;
  line-height: 1;
  margin: 5px auto;
}

#items_detail .result_txt .date:before {
  content: "";
  display: inline-block;
  background-image: url(../img/cal_bk.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  width: 12px;
  height: 12px;
  margin-right: 5px;
}

#items_detail .result_txt .category {
  width: 100%;
  font-size: 1.6rem;
  color: #fff;
  background: var(--base-color01);
  margin-bottom: 5px;
  padding: 5px;
  line-height: 1;
  text-align: center;
}

#items_detail .result_txt .text {
  font-size: 1.6rem;
  height: 5.1em;
  text-align: justify;
  overflow-y: scroll;
  padding-right: 5px;
}

#items_detail .item_images li {
  border: solid 4px #f0d9e0;
}

/* =======================
  PC
======================== */
/* =======================
  TABLET
======================== */
@media screen and (max-width: 1199px) {
  #items_detail .result_wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 599px) {
  #items_detail .items_ttl_img {
    width: 100%;
  }
  #items_detail .subtitle {
    width: 100%;
  }
  #items_detail .result_wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* =======================
  SP
======================== *//*# sourceMappingURL=items_detail.css.map */