@charset "UTF-8";
@import url("root.css");
/*-----*ブレイクポイントルール*-----*/
/* スマートフォン：max-width:767 */
/* タブレット：min-width:768px */
/* PC：min-width:1025px */
/***************************************
-------------- ITEM DETAIL --------------
***************************************/
#items_detail .items_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
}

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

#items_detail .subtitle {
  width: 100%;
}

#items_detail .subtitle p:first-child {
  text-align: center;
}

#items_detail .subtitle p:first-child span {
  color: #f00;
  font-size: 2.4rem;
  font-weight: bold;
}

#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;
}

@media screen and (max-width: 1199px) {
  #items_detail .result_wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  #items_detail .items_ttl_img {
    width: 100%;
  }
  #items_detail .subtitle {
    width: 100%;
  }
  #items_detail .result_wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
.item_list {
  margin: 0 0 30px;
  gap: 30px;
}
@media (max-width: 767px) {
  .item_list {
    gap: 20px 15px;
  }
}
.item_list .col-3 {
  background: #fff;
}
.item_list .col-3 .txt_wrap {
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .item_list .col-3 .txt_wrap {
    padding-bottom: 10px;
  }
}
.item_list .col-3 .txt_wrap .cat {
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: 0 0 10px;
  padding: 5px 0 8px;
  letter-spacing: 0.05em;
  background: var(--base-color01);
  font-size: clamp(1.5rem, 1.5vw, 1.8rem);
}
@media (max-width: 767px) {
  .item_list .col-3 .txt_wrap .cat {
    margin: 0 0 5px;
    padding: 3px 0 5px;
  }
}
.item_list .col-3 .txt_wrap .date {
  color: #be8a0c;
  font-weight: bold;
  font-family: "Lato";
  letter-spacing: 0.05em;
  padding: 0;
  font-size: 1.4rem;
  margin: 5px 0;
}
@media (max-width: 767px) {
  .item_list .col-3 .txt_wrap .date {
    padding: 0 5px;
    margin-bottom: 3px;
  }
}
.item_list .col-3 .txt_wrap .desc {
  line-height: 1.6;
  margin-top: 0;
  padding: 0;
  max-height: 100px;
  overflow-y: auto;
  letter-spacing: 0.05em;
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
}
@media (max-width: 767px) {
  .item_list .col-3 .txt_wrap .desc {
    line-height: 1.4;
    padding: 0 5px;
    max-height: 80px;
  }
}

