.rating {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  line-height: 0.75;
  font-size: 40px;
  gap: 5px;
  width: fit-content;
}

.rating_body {
  position: relative;
  width: fit-content;
}

.rating_body::before {
  content: "★★★★★";
  display: block;
  font-size: 30px;
  color: #e7ceb1;
  line-height: 1;
}

.rating_active {
  position: absolute;
  width: 90%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.rating_active::before {
  line-height: 1;
  content: "★★★★★";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #ab885d;
  font-size: 30px;
}

.rating_items {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.rating_item {
  flex: 0 0 20%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.rating-text {
  font-size: 12px;
  line-height: 1.5;
  color: #fff;
}

.line_post {
  width: 100%;
  background-color: #3e635f;
  padding: 0 15px;
}
.line_post .container {
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 10%;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 15px;
}
.breadcrumbs li a {
  font-weight: 600;
  font-size: 15px;
  font-size: calc(13px + 2 * ((100vw - 370px) / (1920 - 370)));
  color: white;
  text-decoration: none;
}
.breadcrumbs li {
  position: relative;
}
.breadcrumbs li::after {
  content: "|";
  position: absolute;
  font-size: 15px;
  color: white;
  font-weight: 600;
  right: -10px;
}
.breadcrumbs li:last-of-type:after {
  display: none;
}
.breadcrumbs_wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.breadcrumbs_title {
  font-weight: 700;
  font-size: 14px;
  color: #ffffff8c;
  margin-bottom: 6px;
}
@media screen and (max-width: 800px) {
  .line_post .container {
    justify-content: space-between;
  }
}
