@charset "UTF-8";
/* Google口コミ */
/* ========================================
   店舗切り替えタブ
   ======================================== */
.shop-tabs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  gap: 0.9375em;
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: none;
}

.shop-tab-btn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  height: 3.6111111111em;
  border: 1px solid #0f65b6;
  background: #fff;
  color: #0f65b6;
  font-size: 1.125em;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s ease;
}
.shop-tab-btn.active {
  position: relative;
  border-color: #0f65b6;
  background: #0f65b6 !important;
  color: #fff;
  pointer-events: none;
}
.shop-tab-btn:hover {
  background: #f1f3f4;
}

/* ========================================
   口コミコンテナ
   ======================================== */
.reviews-container {
  position: relative;
  margin-top: 0.9375em;
  border: 1px solid #0f65b6;
  background: #fff;
}

.reviews-content {
  -webkit-animation: fadeIn 0.3s ease;
  display: none;
  animation: fadeIn 0.3s ease;
}
.reviews-content.active {
  display: block;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ========================================
   総合評価
   ======================================== */
.overall-rating {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  gap: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  background: #0f65b6;
  color: #fff;
}
.overall-rating .star {
  color: #5298db;
}
.overall-rating .star.empty {
  color: #5298db;
}

.rating-score {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.rating-score .intro {
  margin-top: 0.3em;
  font-size: 1.125em;
  font-weight: bold;
}
.rating-score .score {
  color: #fff;
  font-size: 2.25em;
  font-weight: 700;
}
.rating-score .stars {
  margin-left: 0.2em;
  font-size: 1.25em;
}

.rating-count {
  margin-top: 0.3em;
  font-size: 1.125em;
  font-weight: bold;
}

/* ========================================
   レビューリスト
   ======================================== */
.reviews-list {
  gap: 0;
  display: -ms-grid;
  display: grid;
  padding: 1.25em;
}

.review-item {
  -webkit-transition: none;
  padding: 1.25em 0;
  border: none;
  border-top: 1px solid #e0e0e0;
  border-radius: 0;
  background: #fff;
  transition: none;
}
.review-item:first-child {
  padding-top: 0;
  border-top: none;
}
.review-item:last-child {
  padding-bottom: 0;
}

.review-header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 0.625em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 0.75em;
}

/* アバターや詳細は現状非表示 */
.reviewer-info,
.reviewer-avatar,
.reviewer-details {
  display: none;
}

.reviewer-name {
  margin: 0;
  font-size: 0.875em;
}

.review-date {
  font-size: 0.8125em;
}

.review-rating {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.review-rating .stars {
  gap: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.review-text {
  margin-top: 0;
  font-size: 0.9375em;
  line-height: 1.6;
}

/* ========================================
   星評価
   ======================================== */
.stars {
  gap: 2px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  white-space: nowrap;
}

.star {
  display: inline-block;
  position: relative;
  color: #e3e3e3;
  font-size: inherit;
  line-height: 1;
}
.star.full {
  color: #fbb104;
}
.star.half::before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  overflow: hidden;
  color: #fbb104;
  content: "★";
}
.star.empty {
  color: #e3e3e3;
}

/* ========================================
   続きを読むボタン
   ======================================== */
.read-more-btn {
  -webkit-transition: opacity 0.2s ease;
  display: inline-block;
  margin-top: 0.3125em;
  border: none;
  background: none;
  color: #0f65b6;
  font-size: 0.875em;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.read-more-btn:hover {
  opacity: 0.8;
}

/* ========================================
   もっと見るボタン
   ======================================== */
.view-more-wrapper {
  padding: 1.25em;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.view-more-btn {
  -webkit-transition: 0.3s ease;
  display: inline-block;
  padding: 0.5em 2em;
  border-radius: 100em;
  background: #0f65b6;
  color: #fff;
  font-size: 0.9375em;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}
a.view-more-btn {
  color: #fff;
  text-decoration: none;
}

.view-more-btn:hover {
  background: #006dd3;
  opacity: 1;
}

@media screen and (max-width: 1900px) {
  /* Google口コミ */
}

@media screen and (max-width: 1540px) {
  /* Google口コミ */
}

@media screen and (max-width: 1260px) {
  /* Google口コミ */
}

@media screen and (max-width: 1100px) {
  /* Google口コミ */
}

@media screen and (max-width: 840px) {
  /* Google口コミ */
}

@media screen and (max-width: 480px) {
  /* Google口コミ */
  .shop-tabs {
    gap: 0.3125em;
  }
  .shop-tab-btn {
    font-size: 0.85em;
  }
  .overall-rating {
    font-size: 0.9em;
  }
  .rating-score .score {
    font-size: 1.75em;
  }
  .reviews-list {
    padding: 0.9375em;
  }
  .review-item {
    padding: 0.9375em;
  }
}