@charset "utf-8";
@import url("root.css");
/***************************************
-------------- ITEMS --------------
***************************************/

#items .subtitle {
  margin: 30px auto;
}

#items .item_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px calc(20 / 1200 * 100%);
}

#items .item_list li {
  width: calc((100% - (20 / 1200 * 100%) * 3) / 4);
}

#items .item_list li .bg {
  background: var(--base-color02);
  text-align: right;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 5px 8px;
}

/* SP */
@media screen and (max-width: 599px) {
  #items .item_list {
    gap: 10px;
  }

  #items .item_list li {
    width: calc((100% - 10px) / 2);
  }

  #items .item_list li .bg {
    padding: 2px 5px;
  }
}

/* =======================
  PC
======================== */
@media screen and (min-width: 1200px) {
}
/* =======================
  TABLET
======================== */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 599px) {
}
/* =======================
  SP
======================== */
@media screen and (max-width: 599px) {
}
