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

/***************************************
-------------- review --------------
***************************************/

#review .review_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(25px, 5vw, 50px) 2%;
}
.review_box {
  width: calc(94% / 3);
  border-radius: 5px;
  overflow: visible;
  background-color: #fff;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
  background: #fff;
  padding: 2rem 2rem;
  border: 1px solid #ccc;
  width: 32%;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  min-height: 250px;
  box-sizing: border-box;
}

h3.title {
  font-size: 2rem;
  font-weight: bold;
}

span.evaluation_star {
  display: inline-block;
  margin: 1rem 0;
}

/* 口コミカード内の要素を縦並びに固定 */
.review_box .ttl_wrap {
  width: 100%;
  display: block;
  flex-shrink: 0;
}

.review_box .ttl_wrap h3.title {
  width: 100%;
  display: block;
  margin-bottom: 0.5rem;
}

.review_box .ttl_wrap .star {
  width: 100%;
  display: block;
  margin-bottom: 1rem;
}

.review_box .ttl_wrap .star span.evaluation_star {
  display: inline-block;
  margin: 0;
}

.review_box .text_scl {
  width: 100%;
  flex: 1;
}

.review_box .text_scl .result_txt {
  width: 100%;
  max-height: 14rem;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.5rem;
}

@media (max-width: 768px) {
  .review_box {
    width: calc(96% / 3);
  }
  #review .desc {
    text-align: left;
  }
}
@media (max-width: 599px) {
  .review_box {
    width: calc(98% / 2);
    min-height: 285px;
  }
}

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