@charset "utf-8";

#postScoreButton {
  width: auto;
}
.review_txt {
  border-bottom: 0;
  padding: 0;
}

.moreLead {
  display: none;
}

.pagerRowCountArea {
  display: none;
}

.reviewScoreImageArea > span {
  display: inline-block;
  width: 96px;
}
.reviewScoreImageArea img {
  display: block;
  width: 100%;
}
.reviewTitle {
  font-weight: bold;
}
.reviewContributedDatetime {
  color: #707070;
}
.noReviewPost {
  text-align: center;
}
#postScoreButton {
  position: relative;
  padding-left: 40px;
  border: 1px solid #91bd1d;
  background: #fff;
  color: #91bd1d;
}
#postScoreButton::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  transition: 0.3s;
  background: url("../../commonfiles/images/pen_green.svg") no-repeat center / contain;
}
.review-list-button {
  display: flex;
  justify-content: center;
}
.review-list-button__button {
  position: relative;
  padding-right: 28px;
  color: #333;
}
.review-list-button__button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 7px;
  transform: translateY(-50%);
  transition: 0.3s;
  background: url("../../commonfiles/images/arrow_black.svg") no-repeat center / contain;
}
.review-list-button__button.is-open::before {
  transform: translateY(-50%) rotate(180deg);
}

@media screen and (max-width:768px){
  /* 画面サイズが768pxまではここを読み込む */
  #reviewListArea {
    margin: 0 16px 40px;
  }
  .review_txt .mb10 {
    margin-bottom: 8px;
  }
  .reviewScoreImageArea {
    display: block;
    margin-bottom: 3px;
  }
  .reviewTitle {
    display: block;
    margin-bottom: 3px;
  }
  .reviewTitle >span.mr5 {
    margin-right: 0;
  }
  .review_txt {
    margin-bottom: 16px;
  }
  .view_list03 {
    position: static;
    margin-top: 24px;
  }
  #postScoreButton {
    width: 100%;
  }
  #postScoreButton::before {
    left: calc(50% - 136px);
  }
}

@media screen and (min-width: 769px) {
  /* 画面サイズが769pxからはここを読み込む */
  #reviewListArea {
    width: 1180px;
    margin: 0 auto 80px;
  }
  .review_txt .mb10 {
    margin-bottom: 12px;
  }
  .reviewScoreImageArea {
    margin-right: 16px;
  }
  .reviewTitle {
    margin-right: 11px;
    font-size: 18px;
  }
  .review_txt {
    margin-bottom: 24px;
  }
  .textOverFlow {
    margin-bottom: 5px;
  }
  .view_list03 {
    display: flex;
    position: static;
    justify-content: center;
    height: 56px;
    margin-top: 32px;
  }
  #postScoreButton {
    width: 380px;
  }
  #postScoreButton::before {
    left: 58px;
  }
  #postScoreButton:hover {
    opacity: 1;
    background: #91bd1d;
    color: #fff;
  }
  #postScoreButton:hover::before {
    background: url("../../commonfiles/images/pen_white.svg") no-repeat center / 100% 100%;
  }
}