/* Google review 口コミ */
.review-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.review-heading {
    /* width: 30%; */
    width: 100%;
    padding: 1em;
    color: #000;
}

.review-heading img[class*="g-icon"] {
    display: none;
}

.review-heading .place-rating {
    display: inline-block;
    margin-right: 1em;
}

.review-heading .fa-star {
    font-size: 2em;
    color: #fbbc04;
}

.review-heading .review-count {
    display: block;
    margin-top: 0.5em;
}

.review-content {
    /* width: 65%; */
    width: 80%;
    margin: auto;
}

.review {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 2em 1em 2em 5em;
    border-radius: 1em;
    background-size: 3em;
    background-repeat: no-repeat;
    background-position: top 2em left 1em;
    background-color: white;
}

.review+.review {
    margin-top: 1em;
}

.review .review-profile {
  color: #000;
}

.review .review-text {
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 0.5em;
    font-size: 15px;
    white-space: inherit;
    -webkit-line-clamp: 15;
    color: #000;
    text-align: left;
}

.review .review-rate {
    margin-left: 1em;
}

.review .review-rate .fa-star {
    color: #fbbc04;
}

.review .review-rate .review-time-description {
    margin-left: 1em;
    font-size: 70%;
}

.review-btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    /* margin: 1em 0 0 auto; */
    margin: 1em 10% 0 auto;
}

.review-btn a {
    display: inline-block;
    padding: 0.25em 1em;
    color: #000;
}

.place-name {
  font-size: 36px;
  font-weight: bold;
  color: #d7000f;
}

@media (max-width: 1024px) {
    .review-heading {
       /*  width: 35%; */
        width: 100%;
    }

    .review-heading .fa-star {
        font-size: 1.5em;
    }

    .review-content {
        /* width: 60%; */
        width: 100%;
    }
    
    .place-name {
      font-size: 28px;
    }
    
    .review-btn {
      margin: 1em 0 0 auto;
    }
}

@media (max-width: 599px) {
    .review-heading {
        width: 100%;
        text-align: center;
    }

    .review-content {
        width: 100%;
        margin-top: 1em;
    }
    
    .place-name { 
      font-size: 22px;
    }
}
