/* First-view review ribbon, shared only by the wedding and event LPs. */
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@600&display=swap");

.bc-lp .fv,
.bc-lp .fv_event {
  margin-bottom: 36px;
}

.bc-voices {
  padding: 24px 0 32px;
  margin-bottom: 48px;
  background: #fffcf5;
  overflow: hidden;
}

.bc-voices-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

.bc-voices-heading h2 {
  font-size: 20px;
  letter-spacing: .12em;
}

.bc-voices-heading p {
  margin: 3px 0 0;
  font-size: 12px;
  color: #73675c;
}

.bc-voices-toggle {
  flex-shrink: 0;
  border: 1px solid #dbc9b6;
  border-radius: 24px;
  background: #fff;
  padding: 6px 14px;
  font-size: 12px;
  cursor: pointer;
}

.bc-voices-window {
  overflow-x: auto;
}

.bc-voices-track {
  display: flex;
  width: max-content;
}

.bc-voices-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 32px;
  padding: 28px 32px 28px 0;
  margin: 0;
  list-style: none;
}

.bc-voice-card {
  width: 400px;
  flex-shrink: 0;
}

.bc-voice-card > a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 6px;
  text-decoration: none;
}

.bc-voice-card img {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 3px 12px #6b4d1812;
  box-sizing: border-box;
}

.bc-voice-image {
  flex-shrink: 0;
  width: 96px;
  text-align: center;
}

.bc-voice-image img {
  display: block;
}

.bc-voice-image small {
  display: block;
  margin-top: 4px;
  color: #8c8278;
  font-size: 9px;
  line-height: 1.3;
  white-space: nowrap;
}

.bc-voice-bubble {
  position: relative;
  flex: 1;
  padding: 18px 20px 14px;
  border: 1px solid #efd9bc;
  border-radius: 23px 28px 25px 18px;
  background: #fff;
  box-shadow: 0 5px 0 #f5e8d5;
  transform: rotate(-2deg);
}

.bc-voice-card:nth-child(even) .bc-voice-bubble {
  transform: rotate(2deg);
}

.bc-voice-bubble::before {
  content: "";
  position: absolute;
  top: 45%;
  left: -7px;
  width: 12px;
  height: 12px;
  border-left: 1px solid #efd9bc;
  border-bottom: 1px solid #efd9bc;
  background: #fff;
  transform: rotate(45deg);
}

.bc-voice-bubble blockquote {
  margin: 0;
  color: #bb5909;
  font-family: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: .04em;
  overflow-wrap: anywhere;
}

.bc-voice-bubble p {
  margin: 10px 0 0;
  font-size: 11px;
  color: #786d62;
}

.bc-voice-bubble p span {
  color: inherit;
}

.bc-voices-more {
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.bc-voices a:focus-visible,
.bc-voices button:focus-visible {
  outline: 2px solid #bb5909;
  outline-offset: 3px;
}

.bc-voices.is-ready .bc-voices-window {
  overflow: hidden;
}

.bc-voices.is-ready .bc-voices-group {
  animation: bc-voices-loop var(--bc-voices-duration, 48s) linear infinite;
}

.bc-voices.is-paused .bc-voices-group {
  animation-play-state: paused;
}

@supports selector(.bc-voices:has(a:focus-visible)) {
  .bc-voices:has(a:focus-visible) .bc-voices-group {
    animation-play-state: paused;
  }
}

@media (hover: hover) {
  .bc-voices:hover .bc-voices-group {
    animation-play-state: paused;
  }
}

@keyframes bc-voices-loop {
  to { transform: translateX(-100%); }
}

@media (max-width: 767px) {
  .bc-lp .sp.cta:has(+ .bc-voices) {
    padding-bottom: 32px;
  }

  .bc-voices {
    padding: 20px 0 24px;
    margin-bottom: 24px;
  }

  .bc-voices-heading {
    padding: 0 20px;
  }

  .bc-voices-heading h2 { font-size: 18px; }
  .bc-voices-group { gap: 20px; padding-right: 20px; }
  .bc-voice-card { width: 310px; }
  .bc-voice-card > a { gap: 13px; }
  .bc-voice-card img { width: 72px; height: 72px; }
  .bc-voice-image { width: 72px; }
  .bc-voice-image small { font-size: 7px; }
  .bc-voice-bubble { padding: 15px 16px 12px; }
  .bc-voice-bubble blockquote { font-size: 16px; }
  .bc-voice-bubble p { white-space: nowrap; }
}
