@charset "UTF-8";
/* 星 */
.star-rating {
  display: inline-block;
  position: relative;
  font-size: 24px;
  line-height: 1;
  color: lightgray;
  margin-right: 4px; /* 数値との間に少し余白 */
}

.star-rating::before {
  content: "★★★★★";
}

.star-rating::after {
  content: "★★★★★";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffcf48;
  overflow: hidden;
  white-space: nowrap;
  width: 0%;
}

.rating-0::after {
  width: 0%;
}
.rating-0_5::after {
  width: 10%;
}
.rating-1::after {
  width: 20%;
}
.rating-1_5::after {
  width: 30%;
}
.rating-2::after {
  width: 40%;
}
.rating-2_5::after {
  width: 50%;
}
.rating-3::after {
  width: 60%;
}
.rating-3_5::after {
  width: 70%;
}
.rating-4::after {
  width: 80%;
}
.rating-4_5::after {
  width: 90%;
}
.rating-5::after {
  width: 100%;
}

.has-review {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto auto; /* ← 左列は縮ませOK、右は内容幅 */
  align-items: center;
  gap: 12px 16px;
  margin-bottom: 40px;
}

.has-review .title h2 {
    font-size: 2.4rem;
}

.has-review .mv-name {
  margin-bottom: 0;
}

.review_point {
  display: flex;
  align-items: center;
  margin-right: 16px;
  gap: 6px;
}

.js-modal {
  cursor: pointer;
}

.modal__item .review_point {
  padding-bottom: 1px;
}

.review_point .font-red {
  font-size: 24px;
  font-weight: bold;
  color: #f15c5c;
}

.review_point .font-black {
  font-size: 23px;
  color: #372c27;
  font-weight: bold;
}

.review_point .icon {
  display: flex;
  gap: 3px;
  align-items: center;
  opacity: 8;
  margin-top: 7px;
}

.js-modal {
  cursor: pointer;
}

.review_point .icon p {
  text-decoration: underline;
  font-size: 16px;
}

.review_point .icon img {
  display: block;
  width: 21px;
  height: 19px;
}

.review_displaySp {
  display: none;
}

.mv-name-wrap-sp {
  display: none;
}

.triangle {
  display: none;
}

@media screen and (max-width: 960px) {
  .mv-name-wrap {
    display: none;
  }

  .mv-name-wrap-sp {
    display: block;
  }

  .has-review {
    margin-bottom: 16px;
    display: flex;
  }

  .mv-name-wrap-sp .review_point .icon {
    margin: 0;
  }

  .mv-name-wrap-sp .review_point {
    display: flex;
    justify-content: center;
    margin-right: 0;
    margin-top: -13px;
  }

  .mv-name-wrap-sp .review_point .icon img {
    display: none;
  }

  .has-review .mv-sp-detail__title {
    margin-bottom: 8px;
  }

  .mv-name-wrap-sp .review_point .icon p {
    text-decoration: none;
  }

  .review__total {
    position: relative;
  }

  .triangle {
    display: block;
  }

  .triangle {
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px;
    border-color: #f9f9f9 transparent transparent transparent;
  }
}

@media screen and (max-width: 960px) {
  .review_displaySp {
    display: block;
  }
  .review_displayPc {
    display: none !important;
  }
}
/* その他 */

.hall-info--review {
  gap: 0px;
  padding: 0;
  padding-bottom: 19px;
}

.hall-wrap__left--new .hall-info__icon {
  text-align: left;
}

.hall-info__tel {
  margin-right: 4px;
}

.hall-info__icon {
  background: #ffffff;
}

.half-info--review__access {
  display: flex;
  gap: 36px;
}

.half-info--review__access p {
  position: relative;
}

.half-info--review__access .address:before {
  content: "";
  position: absolute;
  background: url(../imges/icon-review-2.svg);
  width: 12px;
  aspect-ratio: 2/3;
  left: -16px;
  top: 6%;
}

.half-info--review__access .access:before {
  content: "";
  position: absolute;
  background: url(../imges/icon-review-2.svg);
  width: 12px;
  aspect-ratio: 2/3;
  left: -16px;
  top: 6%;
}

.half-info--review__access p {
  font-size: 16px;
  color: #473933;
}

.half-info--review__access .address {
  white-space: nowrap;
}

.half-info--review__access .address span {
  all: unset;
}

.customer_review {
  padding: clamp(50px, 13.3vw, 70px) 0 clamp(50px, 13.3vw, 120px);
}

.customer_review__heading {
  text-align: center;
  margin-bottom: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(22px, 5.8vw, 24px);
  font-weight: bold;
}

.customer_review__box {
  max-width: 980px;
  width: 100%;
  background: white;
  margin: 0 auto;
  margin-bottom: 0;
  border-radius: 20px;
  padding: 24px 0 38px;
  flex-direction: column !important;
}

.customer_review__heading .color_green {
  font-size: 28px;
  font-weight: bold;
  color: #5faa69;
}

.review__total {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 24px;
  margin-bottom: 18px;
  border-bottom: 1px solid #f0ebe7;
}

.review__total .total {
  font-size: clamp(16px, 3.2vw, 20px);
  font-weight: bold;
  background: #ededed;
  border-radius: 4px;
  padding: 4px 12px;
  margin-right: 16px;
}

.review__total .review_point {
  margin-top: -6px;
  margin-right: 0;
}

.customer_review__items {
  display: flex;
  padding: 0 36px;
  justify-content: center;
}

.customer_review__items > li:not(:last-child) {
  padding-right: 32px;
  margin-right: 32px;
  position: relative;
}

.customer_review__items > li:not(:last-child):before {
  content: "";
  position: absolute;
  background: url(../images/review/border-review-1.svg);
  width: 2px;
  height: 80%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.customer_review__item .review_point {
  display: flex;
  margin-right: 0;
  margin-bottom: 6px;
  gap: 12px;
}

.customer_review__item .review_point img {
  width: 42px;
  height: auto;
}

.customer_review__item .comment {
  font-size: 16px;
  line-height: 1.5;
  max-width: 287px;
  width: 100%;
}

.customer_review__note {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
}

.customer_review .btn {
  display: flex;
  cursor: pointer;
  justify-content: center;
  width: 3.6px;
  margin: 0 auto;
  margin-top: 36px;
  position: relative;
  border: 1px solid #707070;
  padding: 1px 0;
  position: relative;
  z-index: 1;
  background: white;
  filter: drop-shadow(0 6px 3px rgba(243, 239, 236));
  border-radius: 4px;
}

.customer_review .btn span {
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 16px;
  text-align: center;
}

.customer_review .btn span:before {
  content: "";
  background: url(../images/review/arrow-review-1.svg);
  width: 8px;
  aspect-ratio: 4/7;
  display: inline-block;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
}

/* モーダル */

#modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 6);
}

.content {
  position: relative;
  width: 100%;
}

#modal .review__total {
  display: none;
}

#close {
  position: absolute;
  left: -8px;
  width: 8px;
  height: 8px;
  background: #1d979f;
  cursor: pointer;
}

/* バツ */
#close .batsu {
  position: relative;
  width: 4px;
  height: 4px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#close p,
#close .batsu span {
  display: none;
}

#close .batsu::before,
#close .batsu::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 100%;
  background-color: white;
  transform-origin: center;
}

#close .batsu::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

#close .batsu::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.content .wrap {
  background-color: #ffffff;
  padding: 5px;
  border-radius: 0 2px 0 0;
}
/* .content p {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 20px;
} */

#modal .content p {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 0;
}

.modal__items {
  margin-bottom: 4px;
}

.modal__items li:not(:last-child) {
  padding-bottom: 3px;
  margin-bottom: 28px;
  position: relative;
}

.modal__items li:not(:last-child):before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  background: url(../images/review/border-review-2.svg);
}

.modal_review {
  padding: 8px 0;
  border: 2px solid #1a767c;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  width: 100%;
  opacity: 8;
}
.modal_review > span {
  text-align: center;
  display: inline-block;
  width: 100%;
  font-size: 22px;
  color: #1a767c;
  font-weight: 600;
  position: relative;
}

.modal_review > span:before {
  position: absolute;
  content: "";
  stroke: #1a767c;
  width: 12px;
  aspect-ratio: 4/7;
  right: 19px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/review/arrow-review-2.svg);
}

.batsu_sp {
  display: none;
}
@media screen and (max-width: 640px) {
  .content .wrap {
    padding: 0px 2px;
    border-radius: 0;
  }

  .content {
    margin: 0;
  }

  #close {
    position: initial;
    width: initial;
    height: initial;
    background: black;
  }

  #close .batsu span,
  #close p {
    display: block;
  }

  #close .batsu {
    display: none;
  }

  .batsu {
    display: none;
  }
  .batsu_sp {
    display: block;
    max-width: 81px;
    width: 100%;
  }
  .hall-name {
    padding: 0;
    margin: 0;
    background: none;
  }

  .hall_wrap {
    border-bottom: none;
    background: transparent url(/img/house/bg_line.png) no-repeat left bottom;
    background-size: 120%;
    margin: 0 0 26px;
  }

  .customer_review .customer_review__box .review__total {
    background: #f9f9f9;
    padding: clamp(6px, 1.6vw, 12px) clamp(3px, 0.8vw, 6px);
    position: relative;
    padding: 0;
    padding: 0.8rem;
  }

  .review_point .icon {
    margin-top: 0;
  }

  .review__total .review_point {
    margin-top: -2px;
  }

  .review_point .font-red {
    font-size: min(6.6vw, 25px);
  }

  .customer_review__box .review__total .total {
    background: white;
  }

  .customer_review__items {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 0px;
    margin-bottom: 16px;
  }
  .customer_review__items > li:not(:last-child) {
    padding-right: 0;
    margin-left: 0;
  }

  .customer_review__items > li:not(:last-child) {
    padding-right: 16px;
    margin-right: 0;
  }

  .customer_review__box {
    background: none;
    margin-bottom: 0;
    padding: 0;
    gap: 16px !important;
  }

  .customer_review__items > li:not(:last-child):before {
    content: none;
  }

  .customer_review__item .review_point {
    padding-bottom: 0;
  }

  .customer_review__items > li {
    background: white;
    padding-left: 0;
    width: initial;
    padding: min(3.2vw, 12px) min(4.2vw, 16px) min(4.2vw, 16px) min(4.2vw, 16px);
    border-radius: 8px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 16%);
  }

  .customer_review .btn {
    width: 80%;
  }

  .customer_review__note {
    text-align: center;
    font-size: 12px;
  }

  .content {
    background: white;
    padding-bottom: 3px;
  }

  .content #close,
  .content .wrap {
    margin: 0 2px;
    padding: 0;
  }

  .content #close {
    padding: 16px;
    border-radius: 0 0 1px 1px;
    margin-bottom: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #close .batsu span {
    background: white;
  }

  #modal .content #close p {
    color: white;
  }

  #modal .review__total {
    display: block;
    display: grid;
    grid-template-columns: 26% 1fr;
    border: none;
    padding-bottom: 0;
    margin-bottom: 2px;
  }

  #modal .review__total .total {
    background: white;
    border: 1px solid #362b25;
    padding-bottom: initial;
    padding: 4px;
    text-align: center;
  }

  .modal__items .star {
    display: flex;
    align-items: center;
  }

  #modal .review__total .review_point {
    padding-bottom: 0;
  }

  #modal .review__total .total {
    margin-right: 8px;
    font-weight: bold;
  }

  .modal__item .review_point {
    display: flex;
    justify-content: center;
    padding-bottom: 12px;
    margin-bottom: 12px;
    margin-right: 0;
    border-bottom: 1px solid #f0ebe7;
  }

  .modal__items li:not(:last-child):before {
    content: none;
  }

  .modal__items li {
    padding-bottom: 0;
    padding: 16px 16px 24px 16px;
    margin-bottom: 2px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 16);
  }

  .modal_review {
    width: 2.63px;
    display: block;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
  }

  .modal_review span {
    color: #372c27;
    font-size: 16px;
  }

  .customer_review {
    background: white;
    margin-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
    gap: 16px !IMPORTANT;
  }

  .customer_review__heading {
    line-height: 1.4;
  }

  .review_point .icon img {
    display: none;
  }
}

/* エリア */
.customer_review--area {
  padding: 5px 0 0;
}

.customer_review--area .customer_review__heading {
  margin-bottom: 2px;
}

.customer_review--area.customer_review__box {
  background: none;
  padding: 0;
}

.customer_review--area .customer_review__items .customer_review__item {
  background: white;
  border-radius: 2px;
  width: 50%;
  padding: 17px 0 3px 0;
}

.customer_review--area .customer_review__items > li:last-child {
  display: none;
}
.customer_review--area .customer_review__items > li:not(:last-child) {
  padding-right: 0;
  margin-right: 0;
  position: initial;
}

.customer_review--area .customer_review__item .review_point {
  padding-bottom: 1px;
  margin-bottom: 16px;
  border-bottom: 1px solid #f0ebe7;
}

.customer_review--area .customer_review__items {
  margin-bottom: 0;
  padding: 0;
  gap: 2px;
  background: #f3efec;
}

.customer_review--area .customer_review__item .comment {
  padding: 0 3px;
}

.customer_review--area .review__total,
.customer_review--area #bt,
.customer_review--area #modal {
  display: none;
}

.customer_review--area .customer_review__box {
  padding: 0;
}

.customer_review--area .customer_review__items > li:not(:last-child):before {
  content: none;
}

@media screen and (max-width: 640px) {
  .customer_review--area #bt,
  .customer_review--area #modal {
    display: block;
  }

  .customer_review--area .customer_review__items > li:last-child {
    display: block;
  }

  .customer_review--area {
    padding: 5px 0;
    margin: 5px -16px;
    background: white;
  }

  .customer_review--area .review__total {
    display: flex;
  }

  .customer_review--area .customer_review__items .customer_review__item {
    width: 100%;
  }

  .customer_review--area {
    margin: 0 -16px;
    padding: 5px 0 5px;
  }

  .customer_review--area .customer_review__heading {
    margin-bottom: 3px;
  }

  .customer_review--area .customer_review__items {
    background: white;
  }
}

/* area */

.balloon-box {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  width: 92%;
  padding: 1rem;
  margin-top: 0.7rem;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 4px;
}

.balloon-triangle {
  position: absolute;
  top: -8px; /* 上にずらす */
  left: 63%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ccc; /* ボーダー色に合わせる */
}

.balloon-box p {
  max-width: 300px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* エリア */

.page-area .has-review .area__lst__content__detail {
  display: grid;
  grid-template-columns: 1fr 40%;
}

.page-area .review_point .font-red {
  font-size: clamp(20px, 5.3vw, 22px);
}

.page-area .review_point .icon p {
  font-size: clamp(16px, 4.2vw, 20px);
  text-decoration: none;
}

.page-area .has-review .area__lst__review {
  width: 330px;
  max-width: 100%;
}

.page-area .has-review .area__lst__review div:nth-child(2) {
  display: flex;
  gap: 10px;
}

.page-area .has-review .area__lst__review div:nth-child(2) img {
  display: flex;
  height: 46px;
}

.page-area .has-review .area__lst__review div:nth-child(2) p {
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
}

.page-area .has-review .review__total {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-end;
}

.page-area .balloon-box {
  display: none;
}

@media (max-width: 960px) {
  .page-area .has-review .area__lst__content__detail {
    display: flex;
    flex-direction: column;
  }

  .page-area .review_point .icon {
    margin-top: min(0.8vw, 3px);
  }
  .page-area .area__lst__info {
    order: 1;
  }
  .page-area .has-review .area__lst__review div:nth-child(2) img {
    display: none;
  }

  .page-area .has-review .review__total {
    display: flex;
    justify-content: flex-start;
  }
  .page-area
    .area-list__inner
    .slide-item
    .slick-list
    .area__inner
    .has-review {
    padding: 0;
  }

  .page-area .has-review .area__lst__review div:nth-child(2) > p {
    display: none; /* text-overflow適用には必要（block系） */
  }

  .page-area .balloon-box {
    display: block;
    width: 100%;
    padding: 10px;
  }

  .page-area .balloon-triangle {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ccc; /* 枠線の色 */
  }

  .balloon-triangle::after {
    content: "";
    position: absolute;
    top: 2px; /* 枠線の太さ分だけずらす */
    left: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff; /* 背景色 */
  }

  .page-area .has-review .area__lst__review {
    margin-bottom: 16px;
  }
}

/* .has-review */
.has-review .content {
  margin: 0;
}

.has-review > div:nth-child(2) {
  border-right: 1px solid #ccc;
  border-left: none;
  padding-left: 0;
  padding-right: 2.4rem;
  display: flex;
  align-items: flex-start;
}

.has-review > div:nth-child(3) {
  display: flex;
  align-items: center;
}

.has-review > div:nth-child(3) .o-btn {
  font-size: 1.6rem;
  width: 16rem;
  height: 4.2rem;
}

.review_point--sp {
  display: none;
}

@media (max-width: 768px) {
  .review_point--pc {
    display: none;
  }

  .review_point--sp {
    display: flex;
    margin-bottom: 2.1vw;
  }

  .has-review > div:nth-child(2) {
    display: none;
  }

  .has-review .p-detail__title,
  .p-detail__title .title {
    display: flex;
    justify-content: flex-start;
  }

  .has-review .content p {
    padding-bottom: 0.8rem;
  }

  .has-review > div {
    margin-bottom: 0;
  }
}

.o-list__item {
  position: relative;
}

.o-list .review__total {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
  position: absolute;
  display: block;
  right: 2rem;
  top: 1.6rem;
  width: initial;
}

.has-review-area .review__total {
  display: flex;
  justify-content: flex-end;
  padding-bottom: revert-layer;
  margin-bottom: 1.6rem;
  border-bottom: none;
}

.has-review-area .content p {
  font-size: 13px;
}

.has-review-area .content p {
  font-size: initial;
}

.has-review-area .area__lst__review > div:nth-child(2) {
  display: flex;
  gap: 16px;
}

.has-review-area .area__lst__review > div:nth-child(2) img {
  height: 46px;
}

.has-review-area .review_txt {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 0.6rem;
}

.has-review-area .review_txtWrap p:last-child {
  font-size: 14px;
  line-height: 1.6;
}

.has-review-area .area__lst__review > div {
  display: flex;
  gap: 16px;
}

.has-review-area .area__lst__review > div img {
  height: 46px;
}

.area__lst__review--sp {
  display: none;
}

.o-list__item .has-review-area {
     display: grid;
     grid-template-columns: 180px minmax(240px, 32%) 1fr; /* 中列は最小240px～最大32% */
}

.o-list__item .has-review-area .image {
    width: initial;
}


@media (max-width: 768px) {
  .o-list .review__total {
    display: none;
  }

  .area__lst__review {
    display: none;
  }

  .area__lst__review--pc {
    display: none;
  }

  .area__lst__review--sp {
    display: block;
  }

  .has-review-area .area__lst__review > div {
    gap: 1.2rem;
}

  .o-list__item .has-review-area {
     display: flex;}
}
