.image_upload_box img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  box-sizing: border-box;
  position: relative;
  border-radius: 4px;
}
.item.review-right {
  width: 50%;
}
.review-img-wrap {
  width: 45%;
}
.review-img-slider {
  width: 100%;
  /* padding-top: 100%; */
  position: relative;
  text-align: center;
}
.review-img-slider > img {
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s;
  border-radius: 3px;
  background: #eee;
}
.image_upload_box input[name='slider_switch'] {
  display: none;
}
/* サムネイル */
.image_upload_box label {
  display: inline-block;
  cursor: pointer;
  transition: all 0.5s ease;
  opacity: 0.6;
  border-radius: 3px;
  padding: 0;
  border-width: 2px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0);
}
.image_upload_box label:hover {
  opacity: 0.9;
}
.image_upload_box label img {
  display: block;
  border-radius: 4px;
  height: 90px;
  width: 90px;
  object-fit: cover;
}
.image_upload_box input[name='slider_switch']:checked + label {
  border: 2px solid #555;
  opacity: 1;
  border-radius: 7px;
}
.image_upload_box input[name='slider_switch'] ~ img {
  opacity: 0;
}
.image_upload_box input[name='slider_switch']:checked + label + img {
  opacity: 1;
}

.slider-img-view {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.Arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: #555;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
}
.Arrow.left {
  left: 10px;
}

.Arrow.right {
  right: 10px;
}
.Arrow.left::before {
  content: "";
    left: 12px;
  width: 8px;
  position: absolute;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-135deg);
}
.Arrow.right::before {
  content: "";
  left: 9px;
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.item__body__image {
  width: 100%;
  margin: 0 auto;
}
.item__body__image.modal_img {
  grid-column: 1 / 2;
}
.item__body__image ul {
  display: flex;
  column-gap: 3%;
  justify-content: flex-start;
  margin-top: 3%;
  flex-wrap: wrap;
}
.item__body__response {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 0;
  padding: 3%;
  min-width: 120px;
  max-width: 100%;
  color: #333;
  background: #f5f5f5;
  border-radius: 8px;
}
.item__body__response span {
  position: absolute;
  top: -30px;
  left: 5%;
  border: 15px solid transparent;
  border-bottom: 18px solid #f5f5f5;
}
.useful {
  margin-top: 1.5em;
}
.nothing-border {
  border-width: 0!important;
}
.response_title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1%;
}
.response_date {
  position: absolute;
  top: 16px;
  right: 28px;
  font-size: 1.4rem;
}
.response_text {
  font-size: 1.6rem;
  line-height: 1.75;
  white-space: normal!important;
}
.modModal__contents__inner.review-img {
  padding: 50px;
}
.modModal__contents--review .modModal__contents__inner .reviewBlock__body__list .item__body__comment .bottom {
  grid-column: 1 / 3;
}
.item__body__response--wide {
  grid-column: 1 / 3;
}

@media screen and (max-width: 768px) {
  .item__body__response {
    padding: 5%;
  }
  .item__body__response .time {
    top: 14px;
    right: 22px;
  }
  .review-img-wrap {
    width: 100%;
  }
  .item.review-right {
    width: 100%;
    padding: 4%;
  }
  .response_title {
    font-size: 1.4rem;
  }
  .response_text {
    font-size: 1.4rem;
  }
  .item__body__response {
    padding: 5%;
  }
  .modModal__contents__inner.review-img {
    padding: 10px;
  }
  .Arrow.left {
    display: none;
  }
  .Arrow.right {
    display: none;
  }
}

