.g430review-wrap *,
.g430review-wrap *::before,
.g430review-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.g430review-wrap {
  --bg-dark: #4b4b4b;
  --bg-darker: #3a3a3a;
  --bg-section: #242323;
  --bg-section-light: #b6b6b6;
  --color-blue: #0371b5;
  --color-blue-light: #46b8ff;
  --color-yellow: #d4da46;
  --color-white: #fff;
  --color-gray: #6b6b6b;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Inter", sans-serif;
  background: var(--bg-dark);
  font-family: var(--font-jp);
  color: var(--color-white);
}

/* ========== HERO ========== */
.hero {
  text-align: center;
  margin: 0 16px;
  padding-bottom: 40px;
  padding-top: 40px;
}

.hero picture {
  line-height: 0;
  display: block;
}

.hero img {
  max-width: 1200px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.hero p {
  color: var(--color-white);
  font-size: 18px;
  line-height: 1.7;
  padding: 24px 16px 8px;
  font-weight: bold;
  text-align: center;
}
.hero p span {
  color: var(--color-white);
  font-size: 14px;
}

@media (max-width: 1024px) {
  .hero p {
    font-size: 16px;
  }
}

/* ========== RESPONSIVE UTILITY ========== */
.br-pc {
  display: inline;
}
@media (max-width: 1024px) {
  .br-pc {
    display: none;
  }
}

@media (min-width: 1025px) {
  .reviews-section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ========== DIVIDER BANNER ========== */
.section-banner {
  width: 100%;
  background-color: var(--bg-section);
  height: 80px;
  display: flex;
  align-items: center;
}

.section-banner-head {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.section-banner .bar {
  flex: 1;
  height: 22px;
  position: relative;
  background-color: #929191;
}

.section-banner .bar.bar-l {
  background: url(/img/usr/cmp-2026g430review/bg-stripe.png) no-repeat left / auto 100%;
  transform: scale(-1, -1);
}

.section-banner .bar.bar-r {
  background: url(/img/usr/cmp-2026g430review/bg-stripe.png) no-repeat left / auto 100%;
}

.section-banner.light {
  background-color: var(--bg-section-light);
}

.section-banner.light .bar.bar-l {
  background: url(/img/usr/cmp-2026g430review/bg-stripe-white.png) no-repeat left / auto 100%;
  transform: scale(-1, -1);
}

.section-banner.light .bar.bar-r {
  background: url(/img/usr/cmp-2026g430review/bg-stripe-white.png) no-repeat left / auto 100%;
}

.section-banner-logo {
  height: 55px;
  flex-shrink: 0;
  margin: 0 0 0 16px;
}
.section-banner-logo img {
  height: 100%;
}

.section-banner-title {
  font-size: 28px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  margin: 0 16px 0 0;
}

.section-banner.light .section-banner-title {
  color: #242323;
}

@media (max-width: 767px) {
  .section-banner-logo {
    height: 28px !important;
  }
  .section-banner-logo img {
    height: 100% !important;
  }
  .section-banner-title {
    font-size: 16px;
    align-self: flex-end;
  }
}

/* ========== PRODUCT INFO BAR ========== */
.product-bar {
  background: var(--bg-darker);
  border-radius: 8px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 12px;
  gap: 20px;
  max-width: 1200px;
}

.product-bar-img {
  background: #fff;
  border-radius: 8px;
  width: 119px;
  height: 119px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-bar-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-bar-info {
  flex: 1;
}

.product-bar-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.38;
  margin-bottom: 4px;
}

.product-bar-stars {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 2px;
}

.star-fill {
  color: var(--color-blue-light);
}
.star-empty {
  color: #dcdcdc;
}

.product-bar-rating {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-left: 4px;
}

.product-bar-link {
  font-size: 16px;
  color: #fff;
  text-decoration: underline;
  line-height: 1.38;
  cursor: pointer;
}
.product-bar-link a {
  color: #fff;
}

/* ========== REVIEW CARDS SECTION ========== */
.reviews-section {
  padding: 40px 0px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .product-bar {
    margin: 0 16px;
  }

  .reviews-section {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 0;
    margin: 0 16px;
  }

  .reviews-grid {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
  }

  .review-card {
    width: 300px;
    flex-shrink: 0;
  }
}

/* First row: 1st card sits lower (staggered) */
.reviews-grid.staggered .review-card:first-child {
  margin-top: 159px;
}
.reviews-grid.staggered .review-card:nth-child(2) {
  margin-top: 159px;
}
.reviews-grid.staggered .review-card:nth-child(3) {
  margin-top: 159px;
}

.review-card {
  background: #fff;
  border-radius: 10px;
  padding: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #000;
}

.review-meta {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.review-stars {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-blue);
}

.review-score {
  font-size: 16px;
  color: #000;
}

.review-date {
  font-size: 14px;
  color: #000;
  margin-left: auto;
}

.review-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 8px;
}

.review-body {
  font-size: 16px;
  line-height: 1.45;
  height: 140px;
  overflow-y: auto;
  white-space: pre-wrap;
}

.review-body.short {
  height: auto;
  -webkit-line-clamp: unset;
  white-space: normal;
}

.reviewer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.reviewer-icon {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
}

.reviewer-icon img {
  width: 100%;
  height: 100%;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  line-height: 1.5;
}

.reviewer-badge {
  display: inline-block;
  background: #f5f5f5;
  border-radius: 50px;
  font-size: 10px;
  padding: 2px 8px;
  color: #000;
  margin-left: 4px;
  font-weight: normal;
}

.reviewer-product {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.45;
  margin-top: 2px;
}

a.btn-detail {
  text-decoration: none;
}

.btn-detail {
  display: inline-block;
  background: #0d0d0d;
  color: #fff;
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  width: 202px;
  align-self: center;
}

/* ========== LINEUP SECTION ========== */
.lineup-section {
  padding: 0 246px 60px;
}

.lineup-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0 0;
}

@media (max-width: 1024px) {
  .lineup-content {
    margin: 0 16px;
  }
}

.lineup-block {
  margin-bottom: 40px;
}

.lineup-logo {
  margin-bottom: 10px;
  height: 40px;
}
.lineup-logo img {
  height: 100%;
}

.lineup-main-img {
  width: 100%;
  max-width: 294px;
}
.lineup-main-img img {
  width: 100%;
}

.lineup-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.lineup-item {
  aspect-ratio: 294 / 104;
}

.lineup-item a {
  display: block;
  width: 100%;
  height: 100%;
}
.lineup-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .lineup-logo {
    height: 20px;
  }
  .lineup-logo img {
    height: 100% !important;
  }
  .lineup-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== OMISSION ========== */
.omission {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  padding: 40px 0;
}

/* ========== LINEUP FOOTER ========== */
.lineup-footer {
  background: var(--bg-section);
  padding: 11px 0 60px;
}

.lineup-footer-banner {
  background: var(--bg-section);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  margin-bottom: 20px;
}

.lineup-footer-content {
  padding: 0 362px;
}
