@charset "UTF-8";
@import url("root.css");
/*-----*ブレイクポイントルール*-----*/
/* スマートフォン：max-width:767px */
/* タブレット：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%;
  margin: 0 0 20px;
}

#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;
}
@media ( max-width : 767px ) {
  #items_detail .subtitle p:first-child span {
    font-size: 1.8rem;
    display: block;
  }
}

#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 .desc {
  max-height: 100px;
  overflow: auto;
}

/*******注意書き********/
.tips_wrap {
  display: block;
  width: 100%;
  background: var(--base-color01) !important;
  padding: 5px;
  margin: 40px 0;
}
@media ( max-width : 767px ) {
  .tips_wrap {
    margin: 20px 0;
  }
}

.tips {
  width: 100%;
  padding: 30px 40px;
  border: 4px double #fff;
}
@media ( max-width : 767px ) {
  .tips {
    padding: 10px 15px;
  }
}

.tips li {
  font-size: 18px;
  margin-left: 20px;
  line-height: 2;
  color: #fff;
}
@media ( max-width : 767px ) {
  .tips li {
    font-size: 14px;
  }
}

.tips li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #fff;
  margin-right: 10px;
  margin-left: -20px;
}

.items_detail_wrap .detail_block {
  border: 1px solid var(--base-color01);
  background: #fff;
}

.items_detail_wrap .detail_block .title {
  color: #fff;
  font-weight: bold;
  padding: 10px 15px;
  background: var(--base-color01);
  margin: 0;
}
@media ( max-width : 767px ) {
  .items_detail_wrap .detail_block .title {
    padding: 5px 10px 8px;
  }
}

.items_detail_wrap .detail_block .desc {
  padding: 1%;
  margin: 0;
}

.past_link a {
  color: var(--base-color01);
}
.past_link a:hover {
  text-decoration: underline;
}