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

/***************************************
-------------- RESULT --------------
***************************************/


#result .result_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(25px, 5vw, 50px) 2%;
}
.result_box {
  width: calc(94% / 4);
}

.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 .result_img img {
  aspect-ratio: 5 / 3;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}

.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);
  }
  #result .desc {
    text-align: left;
  }
}
@media (max-width: 599px) {
  .result_box {
    width: calc(98% / 2);
  }
}



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

}






