{# Oliver: I removed attach style_prev because it's already in main.css #}
.quicktabs-hide {
  display: none;
}

.quicktabs-tabpage.active {
  display: block;
}

.review-content .views-row:nth-child(n+3) {
  display: none;
}

.review-content.show-all .views-row {
  display: block;
}

.review-content {
	transition: max-height 0.5s ease-out;
}

.review-content.show-all {
  max-height: 1000px; /* ここはコンテンツの高さに合わせて調整 */
}

.review-link .review-btn.more_btn_review {
    font-weight: normal;
    font-size: 20px;
    background-color: #00AFC1;
    border-radius: 5px;
    margin: 0 auto;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    background-image: none;
    height: 53px;
    position: relative;
    cursor: pointer;
}

@media (min-width: 768px) {
    .review-link .review-btn.more_btn_review {
      width: 614px;
    }
}

@media (min-width: 768px) and (max-width: 1199px){
	font-size: 2.4vw;
}

@media (max-width: 767px) {
    .review-link .review-btn.more_btn_review {
        width: 89%;
        margin-top: 0;
			  height: 4.24rem;
        font-size: 14px;
    }
}

.review-btn.more_btn_review::after {
	transition: all .5s ease;
    font-size: 3rem;
    position: absolute;
    right: 3%;
    top: auto;
    bottom: auto;
    line-height: 3rem;
}

.review-btn.more_btn_review::after {
  content: "+";
  font-size: 1.2em;
  margin-left: 10px;
}

.review-btn.more_btn_review.clicked::after {
  content: "-";
  font-size: 1.2em;
  margin-left: 10px;
}
