:root {
  --maxw: 1200px;
  --thumb: 300px;
  --gap: clamp(8px, 1.8vw, 12px);
  --radius: 14px;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  --panel-pad: clamp(12px, 2.4vw, 20px);
}

* {
  box-sizing: border-box;
}

html,
body,
ul {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  text-align: center;
  box-sizing: border-box;
}

#container {
  display: block;
  width: 100%;
  min-width: 320px;
}

#images {
  width: 100%;
  overflow: hidden;
}

#images #imgShow {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--gap);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 8px;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  cursor: pointer;
}

#images #imgShow .imgwrap {
  flex: 0 0 var(--thumb);
  width: var(--thumb);
  height: var(--thumb);
  border-radius: var(--radius);
  overflow: hidden;
  background: #f6f6f7;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  margin: 0;
}

#images .imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#images #imgShow {
  scrollbar-color: #e0e0e0 transparent;
  scrollbar-width: thin;
}

#images #imgShow::-webkit-scrollbar {
  height: 8px;
}

#images #imgShow::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 999px;
}

#content {
  padding-top: 6px;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.2vw, 24px);
  max-width: 1160px;
  margin: 0 auto;
}

#lside_wrap,
#rside_wrap,
#column_side {
  width: 100%;
  float: none;
}

#inner {
  margin: 11px 0 14px 0;
}

#restaurant_detail {
  display: block;
  border-bottom: 1px solid #e9e9e9;
}

.restaurant_header {
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 10px;
}

.restaurant_title {
  display: flex;
  flex-wrap: wrap;
  gap: 10px var(--gap);
  align-items: center;
  justify-content: space-between;
}

.title_wrap {
  box-sizing: border-box;
  max-width: 80%;
  font-size: 1.688rem;
  line-height: 1.3em;
}

.restaurant_name {
  display: inline-block;
  font-size: 100%;
}

.restaurant-closure-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
  color: #991b1b;
  font-size: 13px;
  line-height: 1.5;
}

.restaurant-closure-notice[hidden] {
  display: none;
}

.restaurant-closure-notice strong {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  background: #fee2e2;
  font-size: 12px;
}

.rate_point {
  color: #ff792a;
  margin-left: 5px;
  font-weight: normal;
}

.branch {
  font-size: 1.1rem;
  color: #888;
  line-height: 1.2rem;
}

.restaurant_action_button {
  display: flex;
  margin-left: auto;
}

.review_writing_button {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 19px;
}

.review_writing_button_icon {
  display: block;
  width: 32px;
  height: 32px;
  background-image: url('/assets/pencil.svg');
  background-size: cover;
  background-repeat: no-repeat;
  filter: opacity(0.5) drop-shadow(0 0 0 #9b9b9b);
}

.button_text {
  margin-top: 12px;
  font-size: 0.8rem;
  line-height: 1.3;
  color: #9b9b9b;
}

.star_button {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review_writing_button:disabled,
.star_button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.star_button_icon {
  display: block;
  width: 32px;
  height: 32px;
  background-image: url('/assets/star.svg');
  background-size: cover;
  background-repeat: no-repeat;
  filter: opacity(0.5) drop-shadow(0 0 0 #9b9b9b);
}

.star_button_icon-check {
  display: block;
  width: 32px;
  height: 32px;
  background-image: url('/assets/star-fill-orange.svg');
  background-size: cover;
  background-repeat: no-repeat;
  filter: opacity(0.5) drop-shadow(0 0 0 #9b9b9b);
}

.status {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 1rem;
  color: #9b9b9b;
}

.cnt {
  display: inline-flex;
  align-items: center;
}

.eye_fill {
  float: left;
  width: 20px;
  height: 20px;
  margin-top: 4px;
  margin-right: 5px;
  background-image: url('/assets/eye-fill.svg');
  background-size: cover;
  filter: opacity(0.5) drop-shadow(0 0 0 #9b9b9b);
}

.pencil_fill {
  float: left;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  margin-right: 5px;
  background-image: url('/assets/pencil-fill.svg');
  background-size: cover;
  filter: opacity(0.5) drop-shadow(0 0 0 #9b9b9b);
}

.star_fill {
  float: left;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background-image: url('/assets/star-fill.svg');
  background-size: cover;
  filter: opacity(0.5) drop-shadow(0 0 0 #9b9b9b);
}

.info {
  clear: both;
  display: block;
}

.info caption {
  display: none;
}

.restaurant_infoAddress_rectangle {
  border-radius: 2px;
  border: 1px solid #e9e9e9;
  padding: 0 4px;
  margin-right: 2px;
  font-size: 12px;
  color: #7f7f7f;
}

.restaurant_infoAddress_text {
  font-size: 14px;
  color: #7f7f7f;
  line-height: normal;
}

ul li {
  list-style: none;
}

.restaurant_phoneLink {
  color: inherit;
  text-decoration: none;
}

.restaurant_phoneLink:hover {
  text-decoration: underline;
}

.restaurant_featureList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.restaurant_featureBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background-color: #f3f4f6;
  color: #374151;
}

.restaurant_businessInfo {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.restaurant_businessMain {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.restaurant_businessStatus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.restaurant_businessStatus.is-open {
  background-color: #eaf8ee;
  color: #1f8f4c;
}

.restaurant_businessStatus.is-closed {
  background-color: #fff1f2;
  color: #e11d48;
}

.restaurant_businessStatus.is-break {
  background-color: #fff7ed;
  color: #ea580c;
}

.restaurant_businessStatus.is-holiday {
  background-color: #fef2f2;
  color: #dc2626;
}

.restaurant_businessStatus.is-24hours {
  background-color: #eef4ff;
  color: #2563eb;
}

.restaurant_businessStatus.is-unknown {
  background-color: #f3f4f6;
  color: #6b7280;
}

.restaurant_businessHours {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

.restaurant_businessSub {
  font-size: 13px;
  color: #777;
  line-height: 1.4;
}

.restaurant_businessToggle {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  text-decoration: underline;
  cursor: pointer;
}

.restaurant_businessToggle:hover {
  color: #222;
}

.restaurant_weeklyHours {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.restaurant_weeklyHoursItem {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid #f1f1f1;
}

.restaurant_weeklyHoursItem.is-today {
  background-color: #f8fafc;
  border-radius: 10px;
  padding: 10px 12px;
  margin-left: -12px;
  margin-right: -12px;
  border-top-color: transparent;
}

.restaurant_weeklyHoursItem.is-today::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 999px;
  background-color: #2563eb;
}

.restaurant_weeklyHoursItem.is-empty {
  border-top: 0;
  padding: 4px 0 0;
  color: #888;
}

.restaurant_weeklyHoursDay {
  min-width: 18px;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  flex-shrink: 0;
}

.restaurant_weeklyHoursItem.is-today .restaurant_weeklyHoursDay {
  color: #2563eb;
}

.restaurant_weeklyHoursContent {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.restaurant_weeklyHoursMain {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.restaurant_weeklyHoursItem.is-today .restaurant_weeklyHoursMain {
  font-weight: 700;
  color: #111827;
}

.restaurant_weeklyHoursSub {
  font-size: 13px;
  color: #777;
  line-height: 1.4;
}

.restaurant_weeklyHoursItem.is-today .restaurant_weeklyHoursSub {
  color: #4b5563;
}

.restaurant_MenuList {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 260px;
}

.restaurant_MenuItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 4px 0;
  border-bottom: 1px solid #e5e5e5;
}

.restaurant_Menu {
  color: #333;
  word-break: keep-all;
}

.restaurant_MenuPrice {
  color: #333;
  white-space: nowrap;
}

.restaurant_MenuItem--empty {
  color: #888;
  border-bottom: none;
}

.update {
  padding: 20px 10px 19px 10px;
  font-size: 12px;
  text-align: right;
  color: rgba(79, 79, 79, 0.6);
}

#restaurant_introduce {
  display: block;
  border-bottom: 1px solid #e9e9e9;
}

.restaurant_introduce_section {
  display: block;
  margin: 20px 0 25px 0;
  overflow: hidden;
}

.restaurant_introduce_title {
  width: 110px;
  margin-right: 10px;
  float: left;
  font-size: 0.9rem;
  color: rgba(79, 79, 79, 0.6);
  line-height: 25px;
  font-weight: 600;
}

.restaurant_introduce_content {
  max-width: 607px;
  float: left;
}

.restaurantOwner_comment {
  font-size: 15px;
  line-height: 25px;
  text-align: left;
  color: #4f4f4f;
}

#restaurant_reviewList {
  display: flex;
  flex-direction: column;
}

.restaurant_reviewList_header {
  display: flex;
  margin-bottom: 14px;
}

.restaurant_reviewList_title {
  font-size: 16px;
  line-height: 1.2;
  color: #4f4f4f;
  font-weight: normal;
}

.restaurant_reviewList_count::before {
  content: '(';
}

.restaurant_reviewList_count::after {
  content: ')';
}

.restaurant_reviewList_filterList {
  display: flex;
  margin-left: auto;
}

.restaurant_reviewList_filterItem {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.restaurant_reviewList_filterButton {
  padding-right: 3px;
  font-size: 15px;
  color: #9b9b9b;
}

.restaurant_reviewList_filterButton-Selected {
  color: #ff792a;
}

.restaurant_reviewList_filterItem::after {
  content: '|';
  margin: 0 7px;
  color: #9b9b9b;
}

.restaurant_reviewList_filterItem:last-child::after {
  display: none;
  content: '';
}

.restaurant_reviewList_content {
  display: flex;
  flex-direction: column;
}

.restaurant_reviewList_reviewItem {
  position: relative;
  border-bottom: 1px solid #dbdbdb;
}

.restaurant_reviewItem_link {
  display: flex;
  flex-direction: row;
  padding: 20px 0 52px 0;
  text-decoration: none;
}

.restaurant_reviewItem_user {
  display: flex;
  flex-direction: column;
  flex-basis: 70px;
  margin: 15px 35px 0 8px;
}

.restaurant_reviewItem_userPicturewrap {
  width: 70px;
  height: 70px;
  margin-bottom: 5px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #dbdbdb;
}

.restaurant_reviewItem_userPicture {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 1;
  object-fit: cover;
}

.restaurant_reviewItem_userNickname {
  margin-bottom: 2px;
  font-size: 13px;
  line-height: 1.3;
  text-align: center;
  word-break: break-all;
  color: #555;
}

.restaurant_reviewItem_userStat {
  display: flex;
  justify-content: center;
}

.restaurant_reviewItem_userStatItem {
  display: flex;
  align-items: center;
  margin-right: 2px;
  font-size: 10px;
  color: #cbcbcb;
  cursor: pointer;
}

.userStatItem_like::before {
  content: '';
  background-image: url(/assets/hand-thumbs-up.svg);
  width: 8px;
  height: 8px;
  margin: 0 2px;
  background-size: cover;
}

.userStatItem_hate::before {
  content: '';
  background-image: url(/assets/hand-thumbs-down.svg);
  width: 8px;
  height: 8px;
  margin: 0 2px;
  background-size: cover;
}

.userStatItem_like.is-active::before {
  background-image: url(/assets/hand-thumbs-up-fill.svg);
}

.userStatItem_hate.is-active::before {
  background-image: url(/assets/hand-thumbs-down-fill.svg);
}

.restaurant_reviewItem_userBlind {
  font-size: 12px;
  text-align: center;
  padding: 6px 10px;
  border-radius: 6px;
  background-color: #ff792a;
  color: #fff;
}

.restaurant_reviewItem_content {
  display: flex;
  flex-direction: column;
}

.restaurant_reviewItem_textWrap {
  display: flex;
  flex-direction: column-reverse;
}

.restaurant_reviewItem_text {
  font-size: 15px;
  line-height: 1.666;
  word-break: break-all;
  color: #000;
}

.restaurant_reviewItem_Date {
  font-size: 14px;
  line-height: 1.2;
  color: #9b9b9b;
}

.restaurant_reviewItem_PictureList {
  display: flex;
  margin-top: 17px;
}

.restaurant_reviewItem_PictureItem {
  margin-right: 10px;
}

.restaurant_reviewItem_PictureItem:last-child {
  margin-right: 0;
}

.restaurant_reviewItem_PictureButton {
  position: relative;
  background-color: #dbdbdb;
  padding: 0;
}

.reviewPicture_moreBadge {
  position: absolute;
  right: 4px;
  bottom: 4px;
  padding: 2px 6px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.restaurant_reviewItem_Picture {
  width: 120px;
  height: 120px;
  object-fit: cover;
  background-color: #e9e9e9;
  background-size: cover;
}

.restaurant_reviewItem_Rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
}

.restaurant_reviewItem_Rating::before {
  content: '';
  margin: 0 8px 10px;
}

.Rating_Recommend::before {
  background-image: url(/assets/emoji-laughing.svg);
  width: 38px;
  height: 38px;
  background-size: cover;
}

.Rating_Ok::before {
  background-image: url(/assets/emoji-smile.svg);
  width: 38px;
  height: 38px;
  background-size: cover;
}

.Rating_Bad::before {
  background-image: url(/assets/emoji-expressionless.svg);
  width: 38px;
  height: 38px;
  background-size: cover;
}

.restaurant_reviewItem_RatingText {
  font-size: 15px;
  color: #ff792a;
}

.restaurant_reviewItem_managementWrap {
  position: relative;
  z-index: 50;
}

.restaurant_reviewItem_management {
  position: relative;
  width: 26px;
  height: 26px;
  vertical-align: top;
}

.managementButton {
  position: absolute;
  top: 25%;
  left: 25%;
  background-image: url(/assets/three-dots-vertical.svg);
  width: 18px;
  height: 18px;
  background-size: cover;
}

.managementWrap {
  top: 35px;
  right: 0;
  position: absolute;
  width: 184px;
  border: 1px solid #dee0e2;
  border-radius: 18px;
  background: #fff;
  box-sizing: border-box;
  display: none;
  z-index: 100;
}

.restaurant_reviewItem_managementWrap.is-open .managementWrap {
  display: block;
}

.managementList {
  width: 100%;
}

.managementBtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 56px;
  padding: 0 17px;
  box-sizing: border-box;
  background: transparent;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
}

.managementText {
  white-space: nowrap;
}

.managementIcon {
  width: 15px;
  height: 15px;
  background-size: cover;
}

.modifyIcon {
  background-image: url(/assets/pencil.svg);
}

.deleteButton {
  border-top: 1px solid #eaeef2;
}

.deleteIcon {
  background-image: url(/assets/trash.svg);
}

.restaurant_reviewList_moreButton {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: center;
  min-width: 130px;
  height: 72px;
  margin: 0 auto;
  font-size: 19px;
  color: #ff792a;
  cursor: pointer;
}

.restaurant_reviewList_moreButton::before {
  background-image: url(/assets/chevron-down.svg);
  width: 22px;
  height: 22px;
  content: '';
  margin-right: 17px;
  background-size: cover;
}

.restaurant_reviewList_moreButton::after {
  background-image: url(/assets/chevron-down.svg);
  width: 22px;
  height: 22px;
  content: '';
  margin-left: 17px;
  background-size: cover;
}

.selected {
  color: #ff792a;
}

.map_container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f4f6;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.map_container > div,
.map_container canvas {
  width: 100%;
  height: 100% !important;
}

.reviewImageModal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.reviewImageModal.is-open {
  display: flex;
}

.reviewImageModal_backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.reviewImageModal_inner {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviewImageModal_body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.reviewImageModal_img {
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
  background: #000;
}

.reviewImageModal_nav {
  border: none;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  width: 32px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
}

.reviewImageModal_close {
  position: absolute;
  top: -32px;
  right: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.reviewImageModal_footer {
  margin-top: 8px;
  color: #fff;
  font-size: 13px;
}

@media (max-width: 1024px) {
  #images #imgShow .imgwrap {
    flex: 0 0 240px;
    width: 240px;
    height: 240px;
  }
}

@media (min-width: 1024px) {
  #content {
    grid-template-columns: minmax(0, 2fr) minmax(260px, 340px);
    align-items: flex-start;
    padding-inline: 16px;
  }

  #rside_wrap {
    justify-self: end;
  }

  #column_side {
    position: sticky;
    top: 16px;
  }
}

@media screen and (min-width: 769px) {
  #restaurant_detail {
    padding-top: 20px;
  }

  .title_wrap {
    padding-right: 50px;
    max-width: 75%;
    font-size: 1.8rem;
    line-height: 46px;
  }

  .status {
    margin-left: 2px;
  }

  .status.branch_none {
    margin: 5px 0 10px;
  }

  .info {
    padding: 20px 0;
  }

  .info th {
    width: 110px;
    font-size: 0.9rem;
    color: rgba(79, 79, 79, 0.6);
    line-height: 1.7;
    text-align: left;
    vertical-align: top;
    padding-right: 10px;
    padding-bottom: 5px;
  }

  .info td {
    font-size: 0.9rem;
    color: #4f4f4f;
    line-height: 1.7;
    text-align: left;
    vertical-align: middle;
    padding-bottom: 5px;
  }

  .update {
    padding: 4px 0 20px 0;
  }

  #restaurant_reviewList {
    margin-top: 20px;
  }

  .only_mobile {
    display: none;
  }

  .restaurant_reviewItem_user {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .restaurant_reviewItem_userNickname {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
  }

  .restaurant_reviewItem_Rating {
    margin-top: 10px;
  }

  .restaurant_reviewItem_userBlind {
    position: static;
    margin-top: 3px;
    width: 100%;
    max-width: 90px;
  }
}

@media screen and (max-width: 768px) {
  #images #imgShow .imgwrap {
    flex: 0 0 170px;
    width: 170px;
    height: 170px;
  }

  .restaurant_header {
    margin: 0 10px;
  }

  .branch {
    font-size: 0.95rem;
  }

  .review_writing_button_icon,
  .star_button_icon {
    width: 28px;
    height: 28px;
  }

  .button_text {
    font-size: 0.63rem;
    margin-top: 4px;
  }

  .status.branch_none {
    margin-top: 2px;
  }

  .info {
    padding: 9px 15px 0 15px;
    cursor: pointer;
  }

  .info th {
    width: 64px;
    font-size: 14px;
    color: rgba(79, 79, 79, 0.6);
    line-height: 25px;
    text-align: left;
    vertical-align: top;
    padding-right: 10px;
    padding-bottom: 6px;
    box-sizing: content-box;
  }

  .info td {
    font-size: 14px;
    color: #4f4f4f;
    line-height: 25px;
    padding-bottom: 5px;
  }

  .info.no_menu {
    padding-bottom: 7px;
  }

  .only_desktop {
    display: none;
  }

  .restaurant_Menu {
    margin-right: 20px;
  }

  .restaurant_introduce_section {
    margin: 20px 0 25px 15px;
  }

  #restaurant_reviewList {
    padding: 20px 10px 0;
    background-color: #f7f7f7;
  }

  .restaurant_reviewList_title {
    display: flex;
    align-items: center;
  }

  .restaurant_reviewList_count {
    font-size: 17px;
    margin-left: 5px;
  }

  .restaurant_reviewList_title,
  .restaurant_reviewList_count {
    color: #ff792a;
  }

  .restaurant_reviewList_reviewItem {
    position: relative;
    min-height: 115px;
  }

  .restaurant_reviewItem_link {
    display: block;
    padding: 9px 70px 22px 37px;
    position: relative;
  }

  .restaurant_reviewItem_user {
    display: inline;
    margin: 0;
    font-weight: bold;
  }

  .restaurant_reviewItem_userPicturewrap {
    position: absolute;
    top: 10px;
    left: 0;
    width: 30px;
    height: 30px;
  }

  .restaurant_reviewItem_userNickname {
    display: inline;
    margin-bottom: 0;
    font-size: 14px;
    color: #000;
    font-weight: bold;
  }

  .restaurant_reviewItem_userStat {
    display: none;
  }

  .restaurant_reviewItem_content {
    display: inline;
  }

  .restaurant_reviewItem_textWrap {
    display: inline;
  }

  .restaurant_reviewItem_text {
    display: inline;
    font-size: 14px;
    line-height: 1.5;
  }

  .restaurant_reviewItem_Date {
    display: block;
    font-size: 11px;
    line-height: 2;
  }

  .restaurant_reviewItem_PictureList {
    margin-top: 10px;
  }

  .restaurant_reviewItem_PictureItem {
    margin-right: 5px;
  }

  .restaurant_reviewItem_Picture {
    width: 100%;
    max-width: 180px;
    height: 100px;
    object-fit: cover;
  }

  .restaurant_reviewItem_Rating {
    position: absolute;
    top: 10px;
    right: 8px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .restaurant_reviewItem_Rating::before {
    margin: 0 0 5px 0;
  }

  .Rating_Recommend::before {
    width: 30px;
    height: 30px;
  }

  .Rating_Ok::before {
    width: 30px;
    height: 30px;
  }

  .Rating_Bad::before {
    width: 30px;
    height: 30px;
  }

  .restaurant_reviewItem_RatingText {
    white-space: nowrap;
    line-height: 1;
  }

  .restaurant_reviewItem_userBlind {
    position: static;
    margin-top: 0;
  }

  .restaurant_reviewItem_managementWrap {
    display: flex;
    align-items: center;
  }

  .restaurant_reviewItem_management {
    width: 28px;
    height: 28px;
  }

  .managementButton {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
