/**
 * =========================================
 *   Bookseller Comments Page
 * =========================================
 *
 * @format
 */
.bookseller_page {
  position: relative;
  z-index: 1;
  padding: 5rem 0 10rem;
  color: #fff;
}

.bookseller_hero {
  width: min(86%, 860px);
  margin: 0 auto 3rem;
}

.bookseller_hero__inner {
  text-align: center;
}

.bookseller_hero__title {
  display: block;
  width: 100%;
  margin: 0 auto;
  height: auto;
}

.bookseller_nav {
  width: min(80%, 640px);
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.6rem;
}
.bookseller_nav a {
  width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0.7em 1em;
  background: #f04c19;
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.bookseller_nav a.is-current {
  background: #ff7a2f;
  color: #fff;
  box-shadow: 0 0 12px rgba(240, 76, 25, 0.7), 0 0 24px rgba(240, 76, 25, 0.4);
  transform: translateY(-2px);
  pointer-events: none;
}
.bookseller_nav a:hover,
.bookseller_nav a:focus-visible {
  background: #ff642b;
  transform: translateY(-2px);
}

.bookseller_comments {
  width: min(86%, 860px);
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

.comment_card {
  border: 1px solid #f04c19;
  padding: 2rem 2rem 1.5rem;
  background: rgba(0, 0, 0, 0.62);
  box-shadow: 0 0 12px rgba(240, 76, 25, 0.62), inset 0 0 0 1px rgba(255, 255, 255, 0.44);
}

.comment_card__text {
  margin: 0;
  font-size: clamp(1.4rem, 1.6vw, 2.1rem);
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: left;
}
.comment_card__text span {
  color: #ff5a16;
}

.comment_card__name {
  margin: 1.5rem 0 0;
  text-align: right;
  font-size: clamp(1.3rem, 1.4vw, 1.6rem);
  line-height: 1.7;
  font-weight: 700;
}

.bookseller_nav--bottom {
  margin-top: 5rem;
  margin-bottom: 0;
}

.region_hiding {
  display: none;
}

/* SP */
@media (max-width: 640px) {
  .bookseller_page {
    padding: 4rem 0 9rem;
  }
  .bookseller_hero {
    width: min(100%, 520px);
    margin-bottom: 2.5rem;
  }
  .bookseller_hero__inner {
    padding: 2.4rem 1.2rem;
  }
  .bookseller_hero__title {
    width: min(92%, 420px);
  }
  .bookseller_nav {
    width: min(90%, 420px);
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 3.5rem;
  }
  .bookseller_nav a {
    min-height: 48px;
    font-size: clamp(1.35rem, 4vw, 1.7rem);
  }
  .bookseller_comments {
    width: min(86%, 500px);
    gap: 2rem;
  }
  .comment_card {
    padding: 1.5rem 1.2rem 1.2rem;
  }
  .comment_card__text {
    font-size: clamp(1rem, 4vw, 1.4rem);
    line-height: 1.7;
  }
  .comment_card__name {
    font-size: clamp(0.8rem, 3.5vw, 1.2rem);
  }
}/*# sourceMappingURL=bookseller-comments.css.map */