@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);
	border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
  filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.2));
}
.result_box .result_img img {
  aspect-ratio: 5 / 3;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}
.txt_wrap {
	padding:0 10px 20px;
}
.txt_wrap p.cat {
   width: 100%;
  background: var(--base-color01);
  padding: 5px;
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
.txt_wrap .date {
  text-align: right;
  width: 100%;
  justify-content: flex-end;
  margin: 10px 0;
  line-height: 1.0;
	font-size: 90%;
}

.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) {

}






