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

/***************************************
-------------- ITEM DETAIL --------------
***************************************/


#items_detail .result_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(25px, 5vw, 50px) 2%;
}

.txt_wrap {
  width: 100%;
  p.cat {
    width: 100%;
    background: #333;
    padding: 5px;
    text-align: center;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    margin: 0;
  }
  .date {
    text-align: right;
    width: 100%;
    justify-content: flex-end;
    margin: 10px 0;
    line-height: 1.0;
  }
  .text_more {
    width: 100%;
  }
}

.result_box {
  width: calc(94% / 4);
  .result_img img {
    width: 100%;
    height: auto;
    aspect-ratio: 5/3;
    object-fit: cover;
  }
}

.item_detail_txt {
   h2.subttl {
    width: 100%;
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: bold;
    margin-top: clamp(15px, 3vw, 30px);
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--base-color01);
    margin-bottom: 2rem;
   }
   p {
    margin-bottom: 2rem;
   }
}


@media (max-width: 768px) {
  .result_box {
    width: calc(96% / 3);
  }
  #items_detail .desc {
    text-align: left;
  }
}
@media (max-width: 599px) {
  .result_box {
    width: calc(98% / 2);
  }
}








/*******注意書き********/
#items_detail .tips_wrap {
  display: block;
  width: 100%;
  background: #fafafa !important;
  padding: min(10px, 1.5%) min(20px, 2.5%);
  border: 4px double var(--base-color01);
}

#items_detail .tips {
  width: 100%;
}

#items_detail .tips dt {
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #333;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 2px dotted #ddd;
  margin-bottom: 1rem;

}
#items_detail .tips dt::before {
  content: "";
  display: block;
  background: url(../img/svg/icn_check_rd.svg) no-repeat;
  background-position: top center;
  background-size: contain;
  width: 20px;
  height: auto;
  margin-top: 3px;
  margin-right: 10px;
  aspect-ratio: 86/75;
  object-fit: cover;
}

#items_detail .tips dd {
  font-size: 18px;
  margin-left: 20px;
  line-height: 1.5;
}

#items_detail .tips dd::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--base-color01);
  margin-right: 10px;
  margin-left: -20px;
}



/* =======================
  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) {
}
