@charset "euc-jp";

.ranking_text {
  color: #333333;
  line-height: 1;
  float: right;
  margin-right: 0;
}

.ranking_text span {
  font-size: 12px;
  font-weight: normal;
  padding-left: 4px;
}

.ranking_view {
  width: 301px;
  margin: 8px auto 22px;
}

.star_list {
  margin-left: 0;
}

.star_list::after {
  content: none;
}

.star_item {
  margin: 0 10px 0 0;
}

.chart_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 304px;
  margin: 0 auto;
}

.chart_wrap ul li {
  width: 121px;
  color: #474747;
  font-size: 14px;
  text-align: left;
  position: relative;
  padding-bottom: 14px;
}

.chart_wrap ul li span {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  left: 93px;
}

.review_catch_PC td {
  vertical-align: top;
  padding: 32px 24px;
  box-sizing: border-box;
}

.review_catch_PC .review_catch_item {
  display: flex;
  align-items: center;
  min-height: 42px;
}

.review_catch_PC .review_catch_item .review_catch_star {
  white-space: nowrap;
}

.review_catch_PC .review_catch_item .review_catch_star img {
  vertical-align: -26%;
}

.review_catch {
  width: 247px;
  max-height: 42px;
  text-align: left;
  line-height: 1.5;
  color: #333333;
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
}

.review_catch::before,
.review_catch::after {
  content: '...';
  line-height: 1;
  position: absolute;
  right: 0.5em;
  top: 1.5em;
  -ms-wrap-flow: start;
}

.review_catch::after {
  background: currentColor;
  color: white;
  top: auto;
}

@supports (-webkit-line-clamp: 2) {
  .review_catch {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .review_catch::before,
  .review_catch::after {
    content: normal;
  }
}

.review_catch_num {
  font-size: 18px;
  color: #333333;
  font-weight: bold;
  vertical-align: middle;
  padding: 0 12px 0 10px;
}

.review_catch_PC .link_arrow_catch {
  position: relative;
  display: block;
  font-size: 14px;
  padding: 0 18px 0 0;
  margin-bottom: 24px;
}

.review_catch_PC .link_arrow_catch::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 50%;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-top: 1px solid #ff0000;
  border-right: 1px solid #ff0000;
  -webkit-transform: translate(-50%,0) rotate(45deg);
  -ms-transform: translate(-50%,0) rotate(45deg);
  transform: translate(-50%,0) rotate(45deg);
}

.review_catch_PC .ranking_link {
  text-align: left;
}

.review_catch_PC .link_arrow {
  background-position: 0 3px;
  margin-top: 0;
  padding: 0 0 0 25px;
}

.ranking_view .review_star,
.review_catch_wrap,
.show_more,
.compare_rev_link  {
  display: none;
}

@media screen and (max-width: 768px) {
  .chart_wrap,
  .review_catch_PC,
  .show_add {
    display: none;
  }

  .table_detail {
    padding-top: 16px;
  }

  .ranking_text {
    font-size: 23px;
  }

  .ranking_text span {
    padding-left: 8px;
  }

  .ranking_view {
    width: 100%;
  }

  .ranking_view .review_star {
    display: inline-block;
    padding-top: 9px;
  }

  .ranking_view .review_star::after {
    content: none;
  }

  .review_star img {
    width: auto;
    margin-right: 8px;
  }

  .chart_table {
    width: 98px;
  }

  .chart_title {
    color: #474747;
    width: 72px;
  }

  .chart_detail {
    font-size: 18px;
    color: #333333;
    font-weight: bold;
  }

  .review_catch_wrap {
    display: block;
    text-align: left;
    border-top: 1px solid #E4E4E4;
    padding: 8px 0 0;
    margin: 16px 16px 0;
    position: relative;
  }

  .review_catch_wrap .gradient {
    width: 100%;
    height: 30px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgb(255, 255, 255, 0) 0%, rgb(255, 255, 255, 1) 70%);
  }

  .review_catch_wrap .link_arrow {
    border: none;
    padding: 8px 20px 8px 0;
  }

  .link_arrow_wrap .link_arrow::before {
    right: 0;
  }

  .toggle_cont .link_arrow::after {
    content: none;
  }

  .review_catch_wrap .review_star {
    padding-bottom: 4px;
  }

  .review_catch_wrap .review_star img {
    vertical-align: sub;
  }

  .review_catch_wrap .review_star span {
    font-size: 16px;
    color: #333333;
    font-weight: bold;
    vertical-align: middle;
  }

  .review_catch_wrap p {
    line-height: 1.5;
    font-size: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: 36px;
  }

  .show_more {
    text-align: center;
    font-weight: bold;
    position: relative;
    display: inherit;
    padding: 16px 0;
    margin: 0 16px;
    border-bottom: 1px solid #E4E4E4;
  }

  .show_more::before {
    display: block;
    content: "";
    position: absolute;
    top: 0; 
    right: -80px;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 12px;
    height: 2px;
    background-color: #E00923;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
  }

  .show_more::after {
    display: block;
    content: "";
    position: absolute;
    top: 0; 
    right: -80px;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 12px;
    height: 2px; 
    background-color: #E00923;
  }

  .show_more.open::before {
    content: none;
  }

  .compare_rev_link {
    width: 100%;
    display: inline-block;
    padding: 24px 0 18px;
    border-bottom: 1px solid #E4E4E4;
  }

  .compare_rev_link tbody,
  .compare_rev_link tr {
    width: 100%;
    display: inherit;
  }

  .compare_rev_link .table_detail {
    padding: 0;
  }

  .compare_rev_link .ranking_link {
    padding: 0 45px 0 10px;
    margin-top: 0;
  }
}
