:root {
  /* Colors */
  --color-bg: #ffffff;
  --color-bg-soft: #fffaf7;
  --color-header-bg: #fffaf7;
  --color-header-bg-scrolled: rgba(255, 250, 247, 0.94);
  --color-text: #4a302d;
  --color-text-muted: #876e68;
  --color-accent: #e33b78;
  --color-accent-hover: #c62d65;
  --color-accent-light: #fce8ef;
  --color-accent-pale: #fff1f6;
  --color-border: #eadbd5;
  --color-white: #ffffff;
  --color-footer: #4a302d;

  /* Typography */
  --font-base:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo",
    sans-serif;

  /* Layout */
  --container-wide: 1500px;
  --container-content: 1320px;
  --section-space: clamp(72px, 8vw, 112px);
  --radius-card: 22px;
  --radius-small: 14px;

  /* Header */
  --header-inner-height: 96px;
  --header-message-height: 38px;
  --header-total-height: 134px;

  /* Effects */
  --shadow-header: 0 4px 20px rgba(74, 48, 45, 0.08);
  --shadow-card: 0 14px 38px rgba(74, 48, 45, 0.08);
  --shadow-card-hover: 0 20px 48px rgba(74, 48, 45, 0.14);
  --shadow-card-active: 0 18px 45px rgba(227, 59, 120, 0.2);
}

/* ===================================
   BASE
=================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-total-height);
}

body {
  min-width: 320px;
  overflow-x: clip;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-base);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

main {
  padding-top: var(--header-total-height);
}

img {
  max-width: 100%;
  height: auto;
}

img,
svg {
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(227, 59, 120, 0.42);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000002;
  padding: 10px 16px;
  color: var(--color-white);
  background: var(--color-text);
  border-radius: 8px;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* ===================================
   HEADER
=================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  background: var(--color-header-bg);
  border-bottom: 1px solid var(--color-border);
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}

.header.scrolled {
  background: var(--color-header-bg-scrolled);
  box-shadow: var(--shadow-header);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 80px), var(--container-wide));
  min-height: var(--header-inner-height);
  margin: 0 auto;
  gap: 40px;
}

/* Logo */

.header-inner .logo {
  flex: 0 0 auto;
  width: clamp(260px, 22vw, 340px);
}

.header-inner .logo a {
  display: block;
  max-width: 275px;
  padding: 15px;
}

.header-inner .logo img {
  width: 100%;
  height: auto;
}

/* Navigation */

.nav-section {
  display: flex;
  align-items: center;
}

.nav-section .nav {
  width: 100%;
}

.nav-section ul {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 42px);
  list-style: none;
}

.nav-section li {
  flex: 0 0 auto;
}

.nav-section li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.nav-section li a:not(.nav-request)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 3px;
  background: var(--color-accent);
  border-radius: 999px;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-section li a:not(.nav-request):hover,
.nav-section li a:not(.nav-request):focus-visible,
.nav-section li a.is-current {
  color: var(--color-accent);
}

.nav-section li a:not(.nav-request):hover::after,
.nav-section li a:not(.nav-request):focus-visible::after,
.nav-section li a.is-current::after {
  transform: scaleX(1);
}

/* Request CTA */

.nav-section li a.nav-request {
  min-height: 48px;
  padding: 11px 20px;
  color: var(--color-white);
  background: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 999px;
  box-shadow: 0 5px 14px rgba(214, 51, 114, 0.2);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.nav-section li a.nav-request:hover,
.nav-section li a.nav-request:focus-visible {
  color: var(--color-white);
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  box-shadow: 0 7px 18px rgba(214, 51, 114, 0.28);
  transform: translateY(-2px);
}

.nav-request-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linejoin: round;
}

/* Message bar */

.header-message {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--header-message-height);
  padding: 7px 20px;
  color: var(--color-text);
  background: var(--color-accent-light);
  border-top: 1px solid rgba(214, 51, 114, 0.1);
  text-align: center;
}

.header-message p {
  width: min(100%, var(--container-content));
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.header-message p::before,
.header-message p::after {
  margin: 0 12px;
  color: var(--color-accent);
  content: "●";
  font-size: 6px;
  vertical-align: middle;
}

/* Hamburger */

.hamburger {
  position: relative;
  z-index: 1000001;
  display: none;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(74, 48, 45, 0.08);
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-text);
  border-radius: 999px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background-color 0.3s ease;
}

.hamburger:hover span {
  background: var(--color-accent);
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

/* ===================================
   POPULAR KEY VISUAL
=================================== */

.popular-kv {
  position: relative;
  isolation: isolate;
  padding: 52px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%,
      rgba(252, 232, 239, 0.96) 0,
      rgba(255, 250, 247, 0) 45%),
    var(--color-header-bg);
}

.popular-kv::before,
.popular-kv::after {
  position: absolute;
  z-index: -1;
  width: 58vw;
  height: 230px;
  background: rgba(252, 232, 239, 0.68);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.popular-kv::before {
  top: 112px;
  left: -18vw;
  animation: popular-wave-left 4.5s ease-in-out infinite alternate;
  transform: rotate(8deg);
  transform-origin: center;
}

.popular-kv::after {
  top: 88px;
  right: -20vw;
  animation: popular-wave-right 5s ease-in-out infinite alternate;
  transform: rotate(-7deg);
  transform-origin: center;
}

@keyframes popular-wave-left {
  0% {
    transform: translate3d(-4%, 8px, 0) rotate(10deg) scaleY(0.84);
  }

  50% {
    transform: translate3d(0, -18px, 0) rotate(5deg) scaleY(1.16);
  }

  100% {
    transform: translate3d(4%, 12px, 0) rotate(11deg) scaleY(0.88);
  }
}

@keyframes popular-wave-right {
  0% {
    transform: translate3d(4%, 10px, 0) rotate(-10deg) scaleY(1.14);
  }

  50% {
    transform: translate3d(0, -16px, 0) rotate(-5deg) scaleY(0.86);
  }

  100% {
    transform: translate3d(-4%, 8px, 0) rotate(-11deg) scaleY(1.12);
  }
}

.popular-kv-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  color: var(--color-accent);
  pointer-events: none;
}

.popular-kv-heading,
.popular-kv-slider-area,
.popular-kv-pagination {
  position: relative;
  z-index: 1;
}

/* Background icons */

.popular-kv-bubble {
  position: absolute;
  width: 104px;
  height: 78px;
  border: 3px solid currentColor;
  border-radius: 50%;
  opacity: 0.22;
}

.popular-kv-bubble::after {
  position: absolute;
  bottom: -12px;
  width: 24px;
  height: 24px;
  background: var(--color-header-bg);
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  content: "";
  transform: rotate(34deg) skew(10deg, 10deg);
}

.popular-kv-bubble--left {
  top: 106px;
  left: 7%;
  transform: rotate(8deg);
}

.popular-kv-bubble--left::after {
  right: 10px;
}

.popular-kv-bubble--right {
  top: 126px;
  right: 9%;
  width: 94px;
  height: 70px;
  transform: rotate(-8deg);
}

.popular-kv-bubble--right::after {
  left: 12px;
  transform: rotate(54deg) skew(10deg, 10deg);
}

.popular-kv-dot-grid {
  position: absolute;
  width: 76px;
  height: 76px;
  opacity: 0.2;
  background-image: radial-gradient(circle,
      currentColor 0 3px,
      transparent 3.5px);
  background-size: 15px 15px;
}

.popular-kv-dot-grid--left-top {
  top: 190px;
  left: 21%;
  transform: rotate(8deg);
}

.popular-kv-dot-grid--left-bottom {
  bottom: 68px;
  left: 4%;
  width: 62px;
  height: 62px;
  background-size: 14px 14px;
  transform: rotate(-10deg);
}

.popular-kv-dot-grid--right {
  top: 100px;
  right: 3.5%;
  transform: rotate(11deg);
}

.popular-kv-lines {
  position: absolute;
  width: 54px;
  height: 34px;
  opacity: 0.2;
  border-top: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
}

.popular-kv-lines::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 38px;
  border-top: 4px solid currentColor;
  content: "";
  transform: translateY(-50%);
}

.popular-kv-lines--left {
  top: 218px;
  left: 3.5%;
  transform: rotate(4deg);
}

.popular-kv-sparkle {
  position: absolute;
  width: 34px;
  height: 34px;
  opacity: 0.25;
  background: currentColor;
  clip-path: polygon(50% 0,
      61% 38%,
      100% 50%,
      61% 62%,
      50% 100%,
      39% 62%,
      0 50%,
      39% 38%);
}

.popular-kv-sparkle--left {
  bottom: 50px;
  left: 16%;
  width: 22px;
  height: 22px;
}

.popular-kv-sparkle--right {
  right: 5.5%;
  bottom: 52px;
  width: 48px;
  height: 48px;
}

.popular-kv-circle {
  position: absolute;
  width: 15px;
  height: 15px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.22;
}

.popular-kv-circle--left {
  bottom: 48px;
  left: 13%;
}

.popular-kv-circle--right {
  top: 214px;
  right: 20%;
  width: 10px;
  height: 10px;
}

.popular-kv-heading {
  width: min(calc(100% - 40px), 800px);
  margin: 0 auto 30px;
  text-align: center;
}

.popular-kv-heading h1,
.popular-kv-heading h2 {
  position: relative;
  display: inline-block;
  color: var(--color-text);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.popular-kv-heading h1::before,
.popular-kv-heading h1::after,
.popular-kv-heading h2::before,
.popular-kv-heading h2::after {
  position: absolute;
  top: 50%;
  width: 28px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 999px;
  content: "";
}

.popular-kv-heading h1::before,
.popular-kv-heading h2::before {
  right: calc(100% + 20px);
  transform: rotate(60deg);
}

.popular-kv-heading h1::after,
.popular-kv-heading h2::after {
  left: calc(100% + 20px);
  transform: rotate(-60deg);
}

/* Slider */

.popular-kv-slider-area {
  position: relative;
  width: 100%;
}

.popular-kv-swiper {
  width: min(calc(100% - 180px), var(--container-wide));
  padding: 24px 0 34px;
  overflow: visible;
}

.popular-kv-slide {
  height: auto;
  opacity: 0.48;
  transform: scale(0.88);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.popular-kv-slide.swiper-slide-prev,
.popular-kv-slide.swiper-slide-next {
  opacity: 0.76;
  transform: scale(0.92);
}

.popular-kv-slide.swiper-slide-active {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
}

/* Article card */

.popular-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.swiper-slide-active .popular-card {
  border-color: rgba(214, 51, 114, 0.5);
  box-shadow: var(--shadow-card-active);
}

.popular-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
}

/* Card image and filter */

.popular-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-text);
}

.popular-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.92) brightness(0.8);
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.popular-card-image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
      rgb(151 33 77 / 66%) 0%,
      rgb(227 59 120 / 28%) 58%,
      rgba(74, 48, 45, 0.5) 100%);
  content: "";
  pointer-events: none;
}

.popular-card:hover .popular-card-image img {
  filter: saturate(0.9) contrast(0.95) brightness(0.86);
  transform: scale(1.05);
}

/* Card overlay text */

.popular-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(18px, 3vw, 32px);
  color: var(--color-white);
}

.popular-card-title {
  max-width: 94%;
  color: var(--color-white);
  font-size: clamp(20px, 2.15vw, 34px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-shadow:
    0 2px 5px rgba(74, 48, 45, 0.3),
    0 0 1px rgba(74, 48, 45, 0.5);
}

/* Card metadata */

.popular-card-content {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px 16px;
}

.popular-card-content time {
  flex: 0 0 auto;
  color: var(--color-text-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.popular-card-more {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
}

.popular-card-more::after {
  content: "→";
  transition: transform 0.25s ease;
}

.popular-card:hover .popular-card-more::after {
  transform: translateX(5px);
}

/* Navigation buttons */

.popular-kv-button {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  color: var(--color-accent);
  background: var(--color-white);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(74, 48, 45, 0.12);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.popular-kv-button:hover,
.popular-kv-button:focus-visible {
  color: var(--color-white);
  background: var(--color-accent);
  transform: translateY(-50%) scale(1.08);
}

.popular-kv-button-prev {
  left: 3.5%;
}

.popular-kv-button-next {
  right: 3.5%;
}

.popular-kv-button svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Pagination */

.popular-kv-pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
}

.popular-kv-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: #d7c5bf;
  opacity: 1;
  transition:
    width 0.3s ease,
    background-color 0.3s ease;
}

.popular-kv-pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: var(--color-accent);
  border-radius: 999px;
}

/* ===================================
   TABLET
=================================== */

@media screen and (max-width: 1100px) {
  .header-inner {
    width: min(calc(100% - 48px), var(--container-wide));
    gap: 24px;
  }

  .header-inner .logo {
    width: 260px;
  }

  .nav-section ul {
    gap: 18px;
  }

  .nav-section li a {
    font-size: 14px;
    letter-spacing: 0.04em;
  }

  .nav-section li a.nav-request {
    padding: 10px 15px;
  }

  .popular-kv {
    padding-top: 48px;
  }

  .popular-kv-bubble--left {
    left: 3%;
  }

  .popular-kv-bubble--right {
    right: 4%;
  }

  .popular-kv-dot-grid--left-top {
    left: 17%;
  }

  .popular-kv-swiper {
    width: calc(100% - 120px);
  }

  .popular-kv-button {
    width: 48px;
    height: 48px;
  }

  .popular-kv-button-prev {
    left: 2%;
  }

  .popular-kv-button-next {
    right: 2%;
  }
}

/* ===================================
   MOBILE
=================================== */

@media screen and (max-width: 798px) {
  :root {
    --header-inner-height: 72px;
    --header-message-height: 44px;
    --header-total-height: 116px;
  }

  /* Header */

  .header-inner {
    width: 100%;
    min-height: var(--header-inner-height);
    padding: 8px 18px;
  }

  .header-inner .logo {
    width: 190px;
  }

  .header-inner .logo a {
    display: block;
    max-width: 275px;
    padding: 0px;
  }

  .hamburger {
    display: block;
  }

  .nav-section {
    position: fixed;
    top: var(--header-total-height);
    right: -100%;
    z-index: 1000000;
    display: block;
    width: 100%;
    height: calc(100dvh - var(--header-total-height));
    padding: 24px 20px 40px;
    overflow-y: auto;
    background: var(--color-header-bg);
    border-top: 1px solid var(--color-border);
    transition: right 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  }

  .nav-section.is-open {
    right: 0;
  }

  .nav-section ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .nav-section li {
    width: 100%;
  }

  .nav-section li a {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 18px 4px;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
    font-size: 16px;
    font-weight: 600;
  }

  .nav-section li a:not(.nav-request)::after {
    display: none;
  }

  .nav-section li a.is-current {
    padding-left: 14px;
    color: var(--color-accent);
    border-left: 4px solid var(--color-accent);
  }

  .nav-section li a.nav-request {
    justify-content: center;
    width: 100%;
    min-height: 56px;
    margin-top: 24px;
    padding: 14px 20px;
    color: var(--color-white);
    border-bottom: 2px solid var(--color-accent);
  }

  .header-message {
    min-height: var(--header-message-height);
    display: none;
    padding: 6px 12px;
  }

  .header-message p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.45;
    letter-spacing: 0.04em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .header-message p::before,
  .header-message p::after {
    margin: 0 7px;
  }

  /* Popular slider */

  .popular-kv {
    padding: 38px 0 46px;
  }

  .popular-kv-bubble {
    width: 72px;
    height: 54px;
    border-width: 2px;
  }

  .popular-kv-bubble::after {
    bottom: -8px;
    width: 16px;
    height: 16px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }

  .popular-kv-bubble--left {
    top: 86px;
    left: -28px;
  }

  .popular-kv-bubble--right {
    top: 118px;
    right: -34px;
  }

  .popular-kv-dot-grid--left-top {
    top: 154px;
    left: 5px;
    width: 48px;
    height: 48px;
    background-size: 12px 12px;
  }

  .popular-kv-dot-grid--left-bottom,
  .popular-kv-dot-grid--right,
  .popular-kv-lines,
  .popular-kv-sparkle--left,
  .popular-kv-circle {
    display: none;
  }

  .popular-kv-sparkle--right {
    right: 8px;
    bottom: 28px;
    width: 30px;
    height: 30px;
  }

  .popular-kv-heading {
    margin-bottom: 22px;
  }

  .popular-kv-heading h1,
  .popular-kv-heading h2 {
    font-size: 28px;
  }

  .popular-kv-heading h1::before,
  .popular-kv-heading h1::after,
  .popular-kv-heading h2::before,
  .popular-kv-heading h2::after {
    width: 20px;
  }

  .popular-kv-heading h1::before,
  .popular-kv-heading h2::before {
    right: calc(100% + 12px);
  }

  .popular-kv-heading h1::after,
  .popular-kv-heading h2::after {
    left: calc(100% + 12px);
  }

  .popular-kv-swiper {
    width: 100%;
    padding: 10px 0 25px;
  }

  .popular-kv-slide,
  .popular-kv-slide.swiper-slide-prev,
  .popular-kv-slide.swiper-slide-next {
    opacity: 0.5;
    transform: scale(0.92);
  }

  .popular-kv-slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
  }

  .popular-card {
    border-radius: 16px;
  }

  .popular-card-overlay {
    padding: 16px;
  }

  .popular-card-title {
    font-size: clamp(18px, 5.2vw, 24px);
    line-height: 1.35;
  }

  .popular-card-content {
    padding: 13px 16px 15px;
  }

  .popular-kv-button {
    display: none;
  }
}

/* ===================================
   REDUCED MOTION
=================================== */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ===================================
   LATEST POSTS
=================================== */

.latest-posts {
  padding: var(--section-space) 0;
  background: var(--color-bg);
}

.latest-posts-inner {
  width: min(calc(100% - 80px), var(--container-content));
  margin: 0 auto;
}

/* Heading */

.latest-posts-heading {
  margin-bottom: 42px;
}

.latest-posts-heading h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  color: var(--color-text);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.latest-posts-heading h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 46px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 999px;
  content: "";
}

/* Grid */

.latest-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 26px;
}

/* Card */

.latest-post-card {
  min-width: 0;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: 0 10px 30px rgba(74, 48, 45, 0.06);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.latest-post-card:hover {
  border-color: rgba(227, 59, 120, 0.34);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
}

.latest-post-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--color-text);
  text-decoration: none;
}

.latest-post-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-accent-light);
}

.latest-post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 0.4s ease,
    transform 0.4s ease;
}

.latest-post-card-link:hover .latest-post-card-image img {
  filter: brightness(0.88);
  transform: scale(1.025);
}

/* NEW badge */

.latest-post-card-new {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  color: var(--color-white);
  background: var(--color-accent);
  border: 4px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(214, 51, 114, 0.24);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
}

/* Category */

.latest-post-card-category {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 12px;
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}

/* Body */

.latest-post-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 22px 22px;
}

.latest-post-card-body time {
  position: relative;
  display: block;
  margin-bottom: 10px;
  padding-left: 16px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.latest-post-card-body time::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--color-accent);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.latest-post-card-body h2,
.latest-post-card-body h3 {
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-text);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.latest-post-card-body p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 10px;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.latest-post-card-more {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 7px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
}

.latest-post-card-more::after {
  content: "→";
  transition: transform 0.25s ease;
}

.latest-post-card-link:hover .latest-post-card-more::after {
  transform: translateX(5px);
}

/* More button */

.latest-posts-footer {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.latest-posts-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 13px 22px 13px 28px;
  color: var(--color-white);
  background: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(214, 51, 114, 0.2);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.latest-posts-button:hover,
.latest-posts-button:focus-visible {
  color: var(--color-accent);
  background: var(--color-white);
  box-shadow: 0 10px 24px rgba(214, 51, 114, 0.24);
  transform: translateY(-2px);
}

.latest-posts-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.latest-posts-button:hover svg,
.latest-posts-button:focus-visible svg {
  transform: translateX(4px);
}

/* ===================================
   LATEST POSTS: TABLET
=================================== */

@media screen and (max-width: 1100px) {
  .latest-posts {
    padding: 70px 0 80px;
  }

  .latest-posts-inner {
    width: min(calc(100% - 48px), var(--container-content));
  }

  .latest-posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ===================================
   LATEST POSTS: MOBILE
=================================== */

@media screen and (max-width: 798px) {
  .latest-posts {
    padding: 55px 0 65px;
  }

  .latest-posts-inner {
    width: calc(100% - 36px);
  }

  .latest-posts-heading {
    margin-bottom: 34px;
  }

  .latest-posts-heading h2 {
    font-size: 32px;
  }

  .latest-posts-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .latest-post-card-image {
    border-radius: 0;
  }

  .latest-post-card-new {
    top: 12px;
    right: 12px;
    width: 58px;
    height: 58px;
    border-width: 4px;
    font-size: 12px;
  }

  .latest-post-card-body h2,
  .latest-post-card-body h3 {
    font-size: 18px;
  }

  .latest-post-card-body {
    padding: 18px 18px 20px;
  }

  .latest-post-card-body p {
    font-size: 13px;
  }

  .latest-posts-footer {
    justify-content: center;
    margin-top: 45px;
  }

  .latest-posts-button {
    width: 100%;
    max-width: 330px;
  }
}

/* ===================================
   FOOTER
=================================== */

.footer {
  position: relative;
  overflow: hidden;
}

/* Voice CTA */

.footer-voice {
  position: relative;
  isolation: isolate;
  padding: 126px 40px 118px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 24% 54%,
      rgba(255, 255, 255, 0.76) 0,
      rgba(255, 255, 255, 0) 29%),
    radial-gradient(ellipse at 73% 44%,
      rgba(255, 255, 255, 0.5) 0,
      rgba(255, 255, 255, 0) 42%),
    linear-gradient(115deg, #fff5f8 0%, #fce4ed 46%, #fff7f9 100%);
}

.footer-voice::before {
  position: absolute;
  top: -7px;
  right: -18%;
  left: -8%;
  z-index: -3;
  height: 98px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1600 110' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h1600v18c-161-29-298-5-432 21-198 39-382 75-620 25C309 35 166 17 0 45V0Z' fill='%23ffffff'/%3E%3Cpath d='M0 46c166-29 309-10 448 19 238 49 422 13 620-26 134-26 271-50 432-21' fill='none' stroke='%23f6c9d9' stroke-width='2'/%3E%3C/svg%3E") center top / 100% 100% no-repeat;
  animation: footer-wave-flow 4.5s ease-in-out infinite alternate;
  content: "";
  transform-origin: center top;
  will-change: transform;
}

@keyframes footer-wave-flow {
  0% {
    transform: translate3d(-3%, 8px, 0) scaleX(1.05) scaleY(0.82);
  }

  50% {
    transform: translate3d(0, -10px, 0) scaleX(1.1) scaleY(1.18);
  }

  100% {
    transform: translate3d(3%, 6px, 0) scaleX(1.05) scaleY(0.86);
  }
}

.footer-voice-decor {
  position: absolute;
  inset: 72px 0 42px;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.footer-voice-dot-grid {
  position: absolute;
  width: 76px;
  height: 76px;
  opacity: 0.72;
  background-image: radial-gradient(circle,
      rgba(227, 59, 120, 0.65) 0 2.8px,
      transparent 3.3px);
  background-size: 15px 15px;
  transform: rotate(45deg);
}

.footer-voice-dot-grid--left {
  top: 13%;
  left: 6%;
}

.footer-voice-dot-grid--right {
  right: 14%;
  bottom: 13%;
  width: 62px;
  height: 62px;
  opacity: 0.42;
}

.footer-voice-bubble {
  position: absolute;
  width: 62px;
  height: 46px;
  border: 2.5px solid rgba(227, 59, 120, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 41% 50%,
      rgba(227, 59, 120, 0.42) 0 2.6px,
      transparent 3.1px),
    radial-gradient(circle at 59% 50%,
      rgba(227, 59, 120, 0.42) 0 2.6px,
      transparent 3.1px),
    rgba(255, 255, 255, 0.18);
}

.footer-voice-bubble::after {
  position: absolute;
  right: 4px;
  bottom: -7px;
  width: 16px;
  height: 13px;
  background: linear-gradient(135deg,
      transparent 46%,
      rgba(227, 59, 120, 0.28) 47% 55%,
      transparent 56%);
  content: "";
  transform: rotate(14deg);
}

.footer-voice-bubble--left {
  bottom: 20%;
  left: 9%;
  transform: scale(0.9);
}

.footer-voice-bubble--right {
  top: 24%;
  right: 7%;
}

.footer-voice-sparkle {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #f2afc8;
  clip-path: polygon(50% 0,
      60% 39%,
      100% 50%,
      60% 61%,
      50% 100%,
      40% 61%,
      0 50%,
      40% 39%);
}

.footer-voice-sparkle--one {
  top: 27%;
  left: 18%;
  width: 18px;
  height: 18px;
  background: #e95e92;
}

.footer-voice-sparkle--two {
  top: 13%;
  left: 42%;
  width: 17px;
  height: 17px;
}

.footer-voice-sparkle--three {
  top: 17%;
  right: 18%;
  width: 22px;
  height: 22px;
  background: #f5bc5e;
}

.footer-voice-sparkle--four {
  right: 28%;
  bottom: 18%;
  width: 15px;
  height: 15px;
  background: #e95e92;
}

.footer-voice-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 790px);
  align-items: center;
  justify-content: center;
  gap: clamp(50px, 7vw, 65px);
  width: min(100%, var(--container-content));
  margin: 0 auto;
}

.footer-voice-character {
  position: relative;
  display: flex;
  justify-content: center;
}

.footer-voice-character::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(32vw, 380px);
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow: 0 18px 50px rgba(227, 59, 120, 0.1);
  content: "";
  transform: translate(-50%, -50%);
}

.footer-voice-character img {
  position: relative;
  z-index: 1;
  width: min(100%, 350px);
  height: auto;
}

.footer-voice-content {
  position: relative;
  z-index: 1;
}

.footer-voice-en {
  margin-bottom: 10px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.2em;
}

.footer-voice-content h2 {
  color: var(--color-text);
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.footer-voice-text {
  margin-top: 18px;
  color: #765f5a;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.03em;
}

.footer-voice-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  margin-top: 30px;
  padding: 13px 28px;
  color: var(--color-white);
  background: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(214, 51, 114, 0.2);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.footer-voice-button:hover,
.footer-voice-button:focus-visible {
  color: var(--color-accent);
  background: var(--color-white);
  box-shadow: 0 10px 25px rgba(214, 51, 114, 0.25);
  transform: translateY(-2px);
}

.footer-voice-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linejoin: round;
}

/* Footer main */

.footer-main {
  position: relative;
  color: var(--color-white);
  background: var(--color-footer);
}

.footer-main::before {
  position: absolute;
  top: -34px;
  left: -18%;
  width: 136%;
  height: 44px;
  background: var(--color-footer);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  animation: footer-bottom-wave 4s ease-in-out infinite alternate;
  content: "";
  transform-origin: center bottom;
  will-change: transform;
}

@keyframes footer-bottom-wave {
  0% {
    transform: translate3d(-3%, 6px, 0) scaleX(1.04) scaleY(0.78);
  }

  100% {
    transform: translate3d(3%, -7px, 0) scaleX(1.1) scaleY(1.24);
  }
}

.footer-main-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(480px, 1fr);
  gap: 80px;
  width: min(calc(100% - 80px), var(--container-content));
  margin: 0 auto;
  padding: 70px 0 60px;
}

.footer-logo {
  display: block;
  width: min(100%, 340px);
  padding: 14px 18px;
  background: var(--color-header-bg);
  border-radius: var(--radius-small);
  box-shadow: 0 10px 30px rgba(34, 18, 17, 0.18);
}

.footer-logo img {
  width: 100%;
  height: auto;
}

/* Footer navigation */

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
}

.footer-nav-title {
  margin-bottom: 20px;
  color: #f6a9c3;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.18em;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li+li {
  margin-top: 7px;
}

.footer-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 3px;
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #f6a9c3;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
}

/* Footer bottom */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(calc(100% - 80px), var(--container-content));
  min-height: 76px;
  margin: 0 auto;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.footer-page-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.footer-page-top svg {
  width: 32px;
  height: 32px;
  padding: 7px;
  color: var(--color-text);
  background: var(--color-white);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.footer-page-top:hover svg,
.footer-page-top:focus-visible svg {
  transform: translateY(-4px);
}

.footer-sp-only {
  display: none;
}

/* ===================================
   FOOTER: TABLET
=================================== */

@media screen and (max-width: 1100px) {
  .footer-voice-inner {
    grid-template-columns: 240px minmax(0, 600px);
    gap: 50px;
  }

  .footer-main-inner {
    width: min(calc(100% - 48px), var(--container-content));
    gap: 50px;
  }

  .footer-bottom-inner {
    width: min(calc(100% - 48px), var(--container-content));
  }
}

/* ===================================
   FOOTER: MOBILE
=================================== */

@media screen and (max-width: 798px) {
  .footer-voice {
    padding: 94px 18px 84px;
  }

  .footer-voice::before {
    right: -28%;
    left: -28%;
    height: 72px;
    background-size: 100% 100%;
  }

  .footer-voice-decor {
    inset: 58px 0 36px;
  }

  .footer-voice-dot-grid--left {
    top: 12%;
    left: -5px;
    width: 50px;
    height: 50px;
    background-size: 12px 12px;
  }

  .footer-voice-dot-grid--right,
  .footer-voice-bubble--left,
  .footer-voice-sparkle--two,
  .footer-voice-sparkle--four {
    display: none;
  }

  .footer-voice-bubble--right {
    top: 42%;
    right: -8px;
    transform: scale(0.68);
  }

  .footer-voice-sparkle--one {
    top: 29%;
    left: 14%;
  }

  .footer-voice-sparkle--three {
    top: 15%;
    right: 13%;
  }

  .footer-voice-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-voice-character::before {
    width: 260px;
  }

  .footer-voice-character img {
    width: 235px;
  }

  .footer-voice-en {
    font-size: 11px;
  }

  .footer-voice-content h2 {
    font-size: 32px;
  }

  .footer-voice-text {
    font-size: 13px;
  }

  .footer-voice-button {
    width: 100%;
    max-width: 330px;
  }

  .footer-main-inner {
    grid-template-columns: 1fr;
    gap: 46px;
    width: calc(100% - 36px);
    padding: 55px 0 45px;
  }

  .footer-main::before {
    top: -24px;
    height: 30px;
  }

  .footer-logo {
    width: min(100%, 300px);
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-nav li+li {
    margin-top: 12px;
  }

  .footer-bottom-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
    width: calc(100% - 36px);
    padding: 24px 0;
  }

  .footer-page-top {
    align-self: flex-end;
  }

  .footer-sp-only {
    display: block;
  }
}

/* ===================================
   WORDPRESS INTEGRATION
=================================== */

.admin-bar .header {
  top: 32px;
}

.voice-empty-message,
.voice-empty-state {
  width: min(calc(100% - 40px), 900px);
  margin: 40px auto;
  padding: 32px;
  color: var(--color-text-muted);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  text-align: center;
}

.voice-subpage-main {
  min-height: 70vh;
  background: var(--color-bg-soft);
}

.voice-page-inner {
  width: min(calc(100% - 40px), 1040px);
  margin-inline: auto;
}

.voice-page-hero {
  padding: clamp(64px, 8vw, 108px) 0 clamp(44px, 6vw, 72px);
  background:
    radial-gradient(circle at 12% 26%, rgba(227, 59, 120, 0.1) 0 7px, transparent 8px),
    radial-gradient(circle at 88% 70%, rgba(227, 59, 120, 0.13) 0 10px, transparent 11px),
    linear-gradient(135deg, #fff8fb 0%, #fffaf7 55%, #fff 100%);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.voice-page-en {
  margin-bottom: 8px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.voice-page-hero h1,
.voice-single-header h1 {
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.voice-archive-description {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--color-text-muted);
}

.voice-archive-section {
  padding-top: clamp(56px, 7vw, 88px);
}

.voice-pagination {
  margin-top: 56px;
}

.voice-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.voice-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 13px;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  text-decoration: none;
  transition: 0.2s ease;
}

.voice-pagination .page-numbers.current,
.voice-pagination a.page-numbers:hover,
.voice-pagination a.page-numbers:focus-visible {
  color: var(--color-white);
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.voice-single-header {
  padding: clamp(64px, 8vw, 104px) 0 clamp(48px, 6vw, 76px);
  background: linear-gradient(135deg, #fff8fb 0%, #fffaf7 100%);
  border-bottom: 1px solid var(--color-border);
}

.voice-single-header-inner {
  text-align: center;
}

.voice-single-category {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 15px;
  color: var(--color-white);
  background: var(--color-accent);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.voice-single-header time {
  display: block;
  margin-top: 20px;
  color: var(--color-text-muted);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.voice-single-body,
.voice-page-section {
  padding-block: clamp(52px, 7vw, 96px);
}

.voice-single-thumbnail {
  overflow: hidden;
  margin: 0 0 clamp(42px, 6vw, 72px);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.voice-single-thumbnail img {
  width: 100%;
}

.voice-entry-content {
  color: var(--color-text);
  font-size: 16px;
}

.voice-entry-content>*+* {
  margin-top: 1.4em;
}

.voice-entry-content h2 {
  margin-top: 2.6em;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--color-accent-light);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.45;
}

.voice-entry-content h3 {
  margin-top: 2.1em;
  padding-left: 14px;
  border-left: 5px solid var(--color-accent);
  font-size: clamp(20px, 2.5vw, 27px);
  line-height: 1.5;
}

.voice-entry-content ul,
.voice-entry-content ol {
  padding-left: 1.5em;
}

.voice-entry-content a {
  color: var(--color-accent-hover);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.voice-entry-content blockquote {
  padding: 22px 26px;
  background: var(--color-accent-pale);
  border-left: 5px solid var(--color-accent);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
}

.voice-entry-content img {
  border-radius: var(--radius-small);
}

.voice-single-back {
  margin-top: 64px;
  text-align: center;
}

.voice-single-back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 28px;
  color: var(--color-white);
  background: var(--color-accent);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.voice-coming-soon {
  padding: clamp(32px, 5vw, 56px);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.voice-coming-soon h2 {
  margin-top: 0;
  border: 0;
}

.voice-front-content {
  background: var(--color-white);
}

@media screen and (max-width: 782px) {
  .admin-bar .header {
    top: 46px;
  }
}

@media screen and (max-width: 798px) {
  .voice-page-inner {
    width: min(calc(100% - 30px), 1040px);
  }

  .voice-entry-content {
    font-size: 15px;
  }
}

/* ===================================
   STRUCTURED ARTICLE
=================================== */

.voice-single-lead {
  max-width: 880px;
  margin: 0 auto clamp(38px, 5vw, 64px);
  color: var(--color-text);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
  line-height: 2;
  text-align: center;
}

.voice-structured-article {
  margin-top: clamp(46px, 7vw, 88px);
}

.voice-article-block+.voice-article-block {
  margin-top: clamp(32px, 7vw, 92px);

}

.voice-article-section h2,
.voice-article-full-image h2,
.voice-article-video h2 {
  margin: 0 0 28px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--color-accent-light);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.5;
}

.voice-article-richtext {
  color: var(--color-text);
  font-size: 21px;
  line-height: 2;
}

.voice-article-richtext>*+* {
  margin-top: 1.4em;
}

.voice-article-richtext ul,
.voice-article-richtext ol {
  padding-left: 1.5em;
}

.voice-article-richtext a {
  color: var(--color-accent-hover);
  text-underline-offset: 3px;
}

.voice-article-image {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.voice-article-image img {
  width: 100%;
}

.voice-article-image figcaption {
  padding: 11px 16px;
  color: var(--color-text-muted);
  background: var(--color-white);
  font-size: 13px;
  text-align: center;
}

.voice-article-section--image-above .voice-article-image,
.voice-article-section--image-left .voice-article-image {
  margin-bottom: 34px;
}

.voice-article-section--image-below .voice-article-image,
.voice-article-section--image-right .voice-article-image {
  margin-top: 34px;
}

.voice-article-section--split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 62px);
}

.voice-article-section--image-right .voice-article-section__content {
  order: 1;
}

.voice-article-section--image-right .voice-article-image {
  order: 2;
}

.voice-article-section--split .voice-article-image {
  margin: 0;
}

.voice-article-full-image .voice-article-image {
  width: min(100%, 960px);
  margin-inline: auto;
}

.voice-article-video__media {
  width: min(100%, 960px);
  margin: 0 auto;
  overflow: hidden;
  background: #111;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.voice-article-video__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
}

.voice-article-video__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.voice-article-video__media--mp4 video {
  display: block;
  width: 100%;
  max-height: 78vh;
  background: #111;
  object-fit: contain;
}

.voice-article-video__media--instagram {
  width: min(100%, 660px);
  overflow: visible;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.voice-article-instagram-embed {
  display: flex;
  justify-content: center;
  width: 100%;
}

.voice-article-instagram-embed .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 540px !important;
  margin: 0 auto !important;
}

.voice-article-video__media--instagram figcaption {
  width: min(100%, 540px);
  margin: 0 auto;
}

.voice-article-video__media figcaption {
  padding: 11px 16px;
  color: var(--color-text-muted);
  background: var(--color-white);
  font-size: 13px;
  text-align: center;
}

.voice-article-video__comment {
  width: min(100%, 960px);
  margin-inline: auto;
}

.voice-article-video__comment--above {
  margin-bottom: clamp(20px, 3vw, 30px);
}

.voice-article-video__comment--below {
  margin-top: clamp(20px, 3vw, 30px);
}

.voice-customer-voice {
  position: relative;
  padding: clamp(32px, 5vw, 52px);
  background: var(--color-accent-pale);
  border: 1px solid rgba(227, 59, 120, 0.22);
  border-radius: var(--radius-card);
}

.voice-customer-voice::before {
  position: absolute;
  top: 18px;
  right: 28px;
  color: rgba(227, 59, 120, 0.16);
  font-size: 92px;
  font-weight: 900;
  line-height: 1;
  content: "“";
}

.voice-customer-voice__label {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 15px;
  color: var(--color-white);
  background: var(--color-accent);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.voice-customer-voice blockquote {
  position: relative;
  z-index: 1;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.9;
}

.voice-customer-voice blockquote>*+* {
  margin-top: 1em;
}

.voice-customer-voice__source {
  margin-top: 20px;
  color: var(--color-text-muted);
  font-size: 14px;
  text-align: right;
}

.voice-customer-voice__source span {
  margin-left: 8px;
}

.voice-dialogue {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.voice-dialogue__avatar {
  flex: 0 0 76px;
  overflow: hidden;
  border: 4px solid var(--color-white);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(74, 48, 45, 0.12);
}

.voice-dialogue__avatar img {
  width: 76px;
  height: 76px;
  object-fit: cover;
}

.voice-dialogue__content {
  position: relative;
  flex: 1;
  padding: 24px 28px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.voice-dialogue__speaker {
  margin-bottom: 10px;
  color: var(--color-accent-hover);
  font-weight: 800;
}

.voice-dialogue__speaker span {
  margin-left: 8px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 500;
}

.voice-product-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.voice-product-card__image {
  /* min-height: 300px; */
  /* max-width: 275px; */
  padding: 35px;
  /* background: var(--color-accent-pale); */
}

.voice-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-product-card__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(30px, 5vw, 54px);
}

.voice-product-card__eyebrow {
  margin-bottom: 9px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.voice-product-card h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.5;
}

.voice-product-card__meta {
  margin-top: 10px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.voice-product-card .voice-article-richtext {
  margin-top: 22px;
}

.voice-product-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 26px;
  padding: 11px 26px;
  color: var(--color-white);
  background: var(--color-accent);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.voice-product-card__button:hover,
.voice-product-card__button:focus-visible {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

.voice-share-area {
  position: relative;
  width: min(100%, 560px);
  margin: clamp(48px, 7vw, 72px) auto 0;
  padding: clamp(24px, 4vw, 34px);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(227, 59, 120, 0.11), transparent 42%),
    linear-gradient(145deg, #fffdfc 0%, var(--color-bg-soft) 100%);
  border: 1px solid rgba(234, 219, 213, 0.9);
  border-radius: 26px;
  box-shadow: 0 16px 44px rgba(74, 48, 45, 0.08);
  text-align: center;
}

.voice-share-area::before {
  position: absolute;
  top: -42px;
  right: -42px;
  width: 118px;
  height: 118px;
  background: rgba(227, 59, 120, 0.06);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.voice-share-area__heading {
  position: relative;
  z-index: 1;
}

.voice-share-area__eyebrow {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.voice-share-area h2 {
  margin: 0;
  font-size: clamp(20px, 3vw, 25px);
  line-height: 1.45;
}

.voice-share-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.voice-share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 18px;
  border: 0;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.voice-share-button svg {
  flex: 0 0 auto;
  margin-right: 8px;
}

.voice-share-button--primary {
  color: var(--color-white);
  background: var(--color-text);
  box-shadow: 0 9px 22px rgba(74, 48, 45, 0.17);
}

.voice-share-button--copy {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--color-border);
}

.voice-share-button:hover,
.voice-share-button:focus-visible {
  transform: translateY(-2px);
}

.voice-share-button--primary:hover,
.voice-share-button--primary:focus-visible {
  background: var(--color-accent);
  box-shadow: 0 12px 28px rgba(227, 59, 120, 0.22);
}

.voice-share-button--copy:hover,
.voice-share-button--copy:focus-visible {
  color: var(--color-accent-hover);
  background: var(--color-white);
  border-color: rgba(227, 59, 120, 0.42);
}

.voice-share-area.is-native-share-unavailable .voice-share-button--primary {
  display: none;
}

.voice-share-area.is-native-share-unavailable .voice-share-actions {
  grid-template-columns: minmax(0, 1fr);
}

.voice-share-status {
  min-height: 1.5em;
  margin: 10px 0 -5px;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 700;
}

.voice-share-status:empty {
  margin-top: 0;
  min-height: 0;
}

@media (prefers-reduced-motion: reduce) {
  .voice-share-button {
    transition: none;
  }
}

@media screen and (max-width: 520px) {
  .voice-share-area {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .voice-share-actions {
    grid-template-columns: 1fr;
  }
}

.voice-related-articles {
  margin-top: clamp(70px, 9vw, 112px);
}

.voice-related-articles__heading {
  margin-bottom: 30px;
  text-align: center;
}

.voice-related-articles__heading p {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.voice-related-articles__heading h2 {
  margin-top: 4px;
  font-size: clamp(28px, 4vw, 42px);
}

.voice-related-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

@media screen and (max-width: 798px) {
  .voice-article-richtext {
    font-size: 16px;
  }

  .voice-article-section--split,
  .voice-product-card,
  .voice-related-articles__grid {
    grid-template-columns: 1fr;
  }

  .voice-article-section--image-right .voice-article-image,
  .voice-article-section--image-right .voice-article-section__content {
    order: initial;
  }

  .voice-article-section--split .voice-article-image {
    margin-bottom: 28px;
  }

  .voice-article-section--image-right .voice-article-image {
    margin-top: 28px;
    margin-bottom: 0;
  }

  .voice-dialogue {
    gap: 13px;
  }

  .voice-dialogue__avatar,
  .voice-dialogue__avatar img {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
  }

  .voice-dialogue__content {
    padding: 20px;
  }

  .voice-product-card__image {
    min-height: 240px;
  }

}

/* ===================================
   CHAT CONVERSATION / IMAGE ONLY
=================================== */

.voice-image-only .voice-article-image {
  width: min(100%, 960px);
  margin-inline: auto;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}

.voice-image-only .voice-article-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #efefef;
  border-radius: var(--radius-card);
}

.voice-chat-section__title {
  margin: 0 0 32px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--color-accent-light);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.5;
}

.voice-chat-section__comment {
  width: min(100%, 1000px);
  margin-inline: auto;
}

.voice-chat-section__comment--above {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.voice-chat-section__comment--below {
  margin-top: clamp(22px, 3vw, 34px);
}

.voice-chat-list {
  display: grid;
  gap: 24px;
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

.voice-chat-message {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 25px;
}

.voice-chat-message--right {
  flex-direction: row-reverse;
}

.voice-chat-message__profile {
  flex: 0 0 115px;
  min-width: 0;
  text-align: center;
}

.voice-chat-message__avatar {
  display: grid;
  width: 85px;
  height: 85px;
  margin-inline: auto;
  overflow: hidden;
  place-items: center;
  color: var(--color-white);
  background-color: #fff;
  /* background: var(--color-text); */
  /* border: 4px solid #f6ece7; */
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(74, 48, 45, 0.1);
  font-size: 30px;
  font-weight: 800;
}

.voice-chat-message--customer .voice-chat-message__avatar {
/*   background: var(--color-accent);
  border-color: var(--color-accent-light); */
}

.voice-chat-message--other .voice-chat-message__avatar {
  background: #9b837b;
  border-color: #f1e9e5;
}

.voice-chat-message__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-chat-message__name {
  display: inline-block;
  max-width: 100%;
  margin-top: 7px;
  padding: 3px 8px;
  overflow: hidden;
  color: var(--color-text);
  background: #f6ece7;
  border: 1px solid #e4d1c9;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.voice-chat-message--customer .voice-chat-message__name {
  color: var(--color-accent-hover);
  background: var(--color-accent-pale);
  border-color: #f2bfd1;
}

.voice-chat-message--other .voice-chat-message__name {
  color: #765f58;
  background: #f4efec;
  border-color: #ddd0ca;
}

.voice-chat-message__subtext {
  margin-top: 4px;
  color: var(--color-text-muted);
  font-size: 11px;
  line-height: 1.45;
}

.voice-chat-message__bubble {
  position: relative;
  flex: 1;
  min-width: 0;
  padding: 20px 24px;
  background: #f8f4f1;
  border: 1px solid #eadbd5;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(74, 48, 45, 0.035);
}

.voice-chat-message--customer .voice-chat-message__bubble {
  background: #fff3f7;
  border-color: #f3cad9;
}

.voice-chat-message--other .voice-chat-message__bubble {
  background: #f7f3f1;
  border-color: #e2d7d2;
}

.voice-chat-message__bubble::before {
  position: absolute;
  top: 22px;
  left: -7px;
  width: 14px;
  height: 14px;
  background: #f8f4f1;
  border-bottom: 1px solid #eadbd5;
  border-left: 1px solid #eadbd5;
  content: "";
  transform: rotate(45deg);
}

.voice-chat-message--customer .voice-chat-message__bubble::before {
  background: #fff3f7;
  border-color: #f3cad9;
}

.voice-chat-message--other .voice-chat-message__bubble::before {
  background: #f7f3f1;
  border-color: #e2d7d2;
}

.voice-chat-message--right .voice-chat-message__bubble::before {
  right: -8px;
  left: auto;
  border: 0;
  border-top: 1px solid #eadbd5;
  border-right: 1px solid #eadbd5;
}

.voice-chat-message--right.voice-chat-message--customer .voice-chat-message__bubble::before {
  border-color: #f3cad9;
}

.voice-chat-message--right.voice-chat-message--other .voice-chat-message__bubble::before {
  border-color: #e2d7d2;
}

.voice-chat-message__bubble> :first-child {
  margin-top: 0;
}

.voice-chat-message__bubble> :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 798px) {
  .voice-chat-list {
    gap: 20px;
  }

  .voice-chat-message {
    gap: 10px;
  }

  .voice-chat-message__profile {
    flex-basis: 62px;
  }

  .voice-chat-message__avatar {
    width: 54px;
    height: 54px;
    font-size: 18px;
  }

  .voice-chat-message__name {
    padding: 3px 6px;
    font-size: 10px;
  }

  .voice-chat-message__subtext {
    font-size: 9px;
  }

  .voice-chat-message__bubble {
    padding: 16px 17px;
    border-radius: 14px;
  }

  .voice-chat-message__bubble::before {
    top: 18px;
    left: -8px;
    border-top-width: 7px;
    border-right-width: 10px;
    border-bottom-width: 5px;
  }

  .voice-article-section--image-below .voice-article-image,
  .voice-article-section--image-right .voice-article-image {
    margin-top: 20px;
  }

  .voice-chat-message--right .voice-chat-message__bubble::before {
    right: -9px;
    left: auto;
    border-left-width: 10px;
  }
}

/* ===================================
   SINGLE POST KEY VISUAL
   Version 1.2.2
=================================== */

.voice-single-header {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(44px, 5.5vw, 82px) 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(227, 59, 120, 0.11) 0 5px, transparent 6px),
    radial-gradient(circle at 92% 78%, rgba(227, 59, 120, 0.09) 0 8px, transparent 9px),
    linear-gradient(135deg, #fff8fb 0%, #fffaf7 56%, #ffffff 100%);
  border-bottom: 1px solid var(--color-border);
}

.voice-single-header::before,
.voice-single-header::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(227, 59, 120, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.voice-single-header::before {
  top: -190px;
  right: -150px;
  width: 430px;
  height: 430px;
}

.voice-single-header::after {
  bottom: -230px;
  left: -180px;
  width: 480px;
  height: 480px;
}

.voice-single-kv {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  align-items: center;
  width: min(calc(100% - 80px), 1320px);
  margin-inline: auto;
  gap: clamp(44px, 6vw, 92px);
}

.voice-single-kv__content {
  min-width: 0;
}

.voice-single-kv__eyebrow {
  margin-bottom: 14px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.19em;
}

.voice-single-header .voice-single-category {
  margin-bottom: 20px;
  padding: 7px 14px;
  font-size: 12px;
}

.voice-single-header h1 {
  max-width: 720px;
  font-size: clamp(34px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.38;
  letter-spacing: 0.035em;
  text-align: left;
}

.voice-single-header .voice-single-lead {
  max-width: 700px;
  margin: clamp(22px, 2.8vw, 34px) 0 0;
  color: var(--color-text-muted);
  font-size: clamp(15px, 1.45vw, 18px);
  font-weight: 500;
  line-height: 1.95;
  text-align: left;
}

.voice-single-kv__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: clamp(24px, 3vw, 36px);
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.045em;
}

.voice-single-header .voice-single-kv__meta time {
  display: block;
  margin: 0;
  color: var(--color-text-muted);
  font-size: inherit;
  letter-spacing: 0.08em;
}

.voice-single-kv__meta>span {
  width: 28px;
  height: 1px;
  background: var(--color-border);
}

.voice-single-kv__visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 10;
  background: var(--color-accent-light);
  border: 1px solid rgba(227, 59, 120, 0.13);
  border-radius: 30px;
  box-shadow: 0 26px 64px rgba(74, 48, 45, 0.16);
}

.voice-single-kv__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(74, 48, 45, 0.42) 100%);
  content: "";
  pointer-events: none;
}

.voice-single-kv__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-single-kv__visual figcaption {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
}

.voice-single-kv__visual figcaption span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 11px;
  background: var(--color-accent);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.voice-single-kv__visual figcaption strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.voice-single-header.no-thumbnail .voice-single-kv {
  display: block;
  max-width: 920px;
}

.voice-single-header.no-thumbnail .voice-single-kv__content {
  text-align: center;
}

.voice-single-header.no-thumbnail h1,
.voice-single-header.no-thumbnail .voice-single-lead {
  margin-inline: auto;
  text-align: center;
}

.voice-single-header.no-thumbnail .voice-single-kv__meta {
  justify-content: center;
}

.voice-single-body {
  padding-top: clamp(58px, 7vw, 96px);
}

@media screen and (max-width: 1100px) {
  .voice-single-kv {
    grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
    width: min(calc(100% - 48px), 1180px);
    gap: 42px;
  }

  .voice-single-header h1 {
    font-size: clamp(34px, 4.6vw, 50px);
  }
}

@media screen and (max-width: 900px) {
  .voice-single-header {
    padding: 50px 0 58px;
  }

  .voice-single-kv {
    grid-template-columns: 1fr;
    width: min(calc(100% - 40px), 820px);
    gap: 38px;
  }

  .voice-single-kv__content {
    order: 2;
    text-align: center;
  }

  .voice-single-header h1,
  .voice-single-header .voice-single-lead {
    margin-inline: auto;
    text-align: center;
  }

  .voice-single-kv__meta {
    justify-content: center;
  }

  .voice-single-kv__visual {
    order: 1;
    aspect-ratio: 16 / 9;
  }
}

@media screen and (max-width: 798px) {
  .voice-single-header {
    padding: 10px 0 48px;
  }

  .voice-single-header::before {
    top: -140px;
    right: -180px;
    width: 330px;
    height: 330px;
  }

  .voice-single-header::after {
    bottom: -200px;
    left: -210px;
    width: 380px;
    height: 380px;
  }

  .voice-single-kv {
    width: calc(100% - 30px);
    gap: 30px;
  }

  .voice-single-kv__eyebrow {
    margin-bottom: 11px;
    font-size: 10px;
    display: none;
  }

  .voice-single-header .voice-single-category {
    display: none;
    margin-bottom: 5px;
    padding: 6px 12px;
    font-size: 11px;
  }

  .voice-single-header h1 {
    font-size: clamp(24px, 8.6vw, 32px);
    line-height: 1.42;
    text-align: left;
  }

  .voice-single-header .voice-single-lead {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
  }

  .voice-single-kv__meta {
    margin-top: 22px;
    font-size: 10px;
  }

  .voice-single-kv__visual {
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(74, 48, 45, 0.14);
  }

  .voice-single-kv__visual figcaption {
    display: none;
    right: 16px;
    bottom: 14px;
    left: 16px;
    gap: 8px;
  }

  .voice-single-kv__visual figcaption span {
    min-height: 25px;
    padding: 5px 9px;
    font-size: 9px;
  }

  .voice-single-kv__visual figcaption strong {
    font-size: 11px;
  }

  .voice-single-body {
    padding-top: 0px;
  }

  .voice-article-section h2,
  .voice-article-full-image h2,
  .voice-article-video h2 {
    font-size: clamp(22px, 2vw, 29px);
  }
}

/* ===================================
   REQUEST PAGE: PRODUCT SEARCH
=================================== */

.voice-requests-main {
  background:
    radial-gradient(circle at 8% 36%, rgba(227, 59, 120, 0.055) 0 90px, transparent 91px),
    radial-gradient(circle at 94% 72%, rgba(74, 48, 45, 0.035) 0 130px, transparent 131px),
    var(--color-bg-soft);
}

.voice-requests-hero__lead {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--color-text-muted);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.9;
}

.voice-requests-section {
  padding-top: clamp(42px, 6vw, 76px);
}

.voice-requests-intro {
  max-width: 820px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.voice-request-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 860px;
  margin: 0 auto clamp(34px, 5vw, 56px);
  padding: 0;
  list-style: none;
}

.voice-request-step {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 13px;
  color: #aa9690;
}

.voice-request-step:not(:last-child)::after {
  position: absolute;
  top: 24px;
  right: 14px;
  left: 68px;
  height: 2px;
  background: var(--color-border);
  content: "";
}

.voice-request-step__number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #f4ece8;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 800;
}

.voice-request-step__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding-right: 12px;
  background: var(--color-bg-soft);
  line-height: 1.4;
}

.voice-request-step__text small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.voice-request-step__text strong {
  margin-top: 2px;
  font-size: 14px;
}

.voice-request-step.is-current {
  color: var(--color-text);
}

.voice-request-step.is-current .voice-request-step__number {
  color: var(--color-white);
  background: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 9px 24px rgba(227, 59, 120, 0.24);
}

.voice-request-step.is-current .voice-request-step__text small {
  color: var(--color-accent);
}

.voice-request-panel {
  padding: clamp(30px, 5vw, 58px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  box-shadow: 0 22px 54px rgba(74, 48, 45, 0.09);
}

.voice-request-panel__header {
  max-width: 760px;
  margin: 0 auto clamp(28px, 4vw, 42px);
  text-align: center;
}

.voice-request-panel__eyebrow {
  margin-bottom: 8px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.voice-request-panel__header h2 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.45;
}

.voice-request-panel__header>p:last-child {
  margin-top: 14px;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.9;
}

.voice-product-search {
  max-width: 820px;
  margin-inline: auto;
}

.voice-product-search__label {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 800;
}

.voice-product-search__combobox {
  position: relative;
}

.voice-product-search__icon {
  position: absolute;
  top: 50%;
  left: 20px;
  z-index: 2;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--color-accent);
  stroke-linecap: round;
  stroke-width: 2;
  transform: translateY(-50%);
  pointer-events: none;
}

.voice-product-search__input {
  width: 100%;
  min-height: 64px;
  padding: 14px 58px 14px 56px;
  color: var(--color-text);
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(74, 48, 45, 0.06);
  font-size: 17px;
  font-weight: 600;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.voice-product-search__input::placeholder {
  color: #b4a29c;
  font-weight: 500;
}

.voice-product-search__input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(227, 59, 120, 0.11), 0 12px 30px rgba(74, 48, 45, 0.07);
}

.voice-product-search__clear {
  position: absolute;
  top: 50%;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--color-text-muted);
  background: #f5eeeb;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  transition: 0.2s ease;
}

.voice-product-search__clear:hover,
.voice-product-search__clear:focus-visible {
  color: var(--color-white);
  background: var(--color-accent);
}

.voice-product-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  z-index: 30;
  max-height: 520px;
  overflow-y: auto;
  padding: 8px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(74, 48, 45, 0.18);
}

.voice-product-result {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  padding: 12px;
  color: var(--color-text);
  background: transparent;
  border: 0;
  border-radius: 14px;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  transition: 0.2s ease;
}

.voice-product-result+.voice-product-result {
  border-top: 1px solid #f0e6e1;
}

.voice-product-result:hover,
.voice-product-result:focus-visible {
  background: var(--color-accent-pale);
  outline: 0;
}

.voice-product-result__visual,
.voice-selected-product__visual {
  overflow: hidden;
  background: var(--color-accent-pale);
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

.voice-product-result__visual {
  width: 88px;
  aspect-ratio: 4 / 3;
}

.voice-product-result__visual img,
.voice-selected-product__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-product-result__content,
.voice-selected-product__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.voice-product-result__category,
.voice-selected-product__category {
  display: inline-flex;
  margin-bottom: 5px;
  padding: 3px 9px;
  color: var(--color-accent-hover);
  background: var(--color-accent-light);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.voice-product-result__name,
.voice-selected-product__name {
  font-size: 15px;
  line-height: 1.55;
}

.voice-product-result__meta,
.voice-product-result__jan,
.voice-product-result__variations,
.voice-selected-product__meta,
.voice-selected-product__jan,
.voice-selected-product__variations {
  margin-top: 3px;
  color: var(--color-text-muted);
  font-size: 11px;
  line-height: 1.55;
}

.voice-product-result__action {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  color: var(--color-accent);
  border: 1px solid rgba(227, 59, 120, 0.28);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.voice-product-results__empty {
  display: flex;
  min-height: 130px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: var(--color-text-muted);
  text-align: center;
}

.voice-product-results__empty strong {
  color: var(--color-text);
  font-size: 15px;
}

.voice-product-results__empty span {
  max-width: 520px;
  margin-top: 7px;
  font-size: 12px;
}

.voice-product-search__guide {
  display: flex;
  flex-wrap: wrap;
  margin-top: 12px;
  gap: 7px;
}

.voice-product-search__guide span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 4px 10px;
  color: var(--color-text-muted);
  background: #f6efec;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.voice-product-search__categories {
  margin-top: 28px;
  padding: 22px;
  background: #fffaf8;
  border: 1px solid #f0e2dc;
  border-radius: 16px;
}

.voice-product-search__categories>p {
  margin-bottom: 11px;
  font-size: 13px;
  font-weight: 800;
}

.voice-product-search__category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.voice-product-search__category {
  min-height: 36px;
  padding: 7px 13px;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.voice-product-search__category:hover,
.voice-product-search__category:focus-visible {
  color: var(--color-white);
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.voice-product-search__status,
.voice-product-search__noscript {
  margin-top: 14px;
  color: var(--color-text-muted);
  font-size: 12px;
}

.voice-selected-product {
  margin-top: 28px;
  padding: clamp(18px, 3vw, 26px);
  background: linear-gradient(135deg, #fff8fb 0%, #fffdfc 100%);
  border: 2px solid rgba(227, 59, 120, 0.28);
  border-radius: 20px;
}

.voice-selected-product__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 16px;
}

.voice-selected-product__heading p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent-hover);
  font-size: 14px;
  font-weight: 800;
}

.voice-selected-product__heading svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.voice-selected-product__heading button {
  padding: 6px 0;
  color: var(--color-text-muted);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.voice-selected-product__body {
  display: block;
  min-width: 0;
}

.voice-selected-product__visual {
  width: 132px;
  aspect-ratio: 4 / 3;
}

.voice-selected-product__name {
  font-size: clamp(16px, 2vw, 20px);
}

.voice-request-demo-note {
  display: flex;
  flex-direction: column;
  margin: 30px auto 0;
  padding: 15px 18px;
  color: var(--color-text-muted);
  background: #f8f2ef;
  border-radius: 12px;
  font-size: 11px;
  line-height: 1.7;
}

.voice-request-demo-note strong {
  color: var(--color-text);
}

@media screen and (max-width: 798px) {
  .voice-request-steps {
    width: 100%;
  }

  .voice-request-step {
    flex-direction: column;
    align-items: center;
    gap: 7px;
    text-align: center;
  }

  .voice-request-step:not(:last-child)::after {
    top: 20px;
    right: -28%;
    left: 62%;
  }

  .voice-request-step__number {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .voice-request-step__text {
    padding: 0 4px;
    background: transparent;
  }

  .voice-request-step__text strong {
    font-size: 11px;
  }

  .voice-request-step__text small {
    font-size: 8px;
  }

  .voice-request-panel {
    padding: 26px 18px;
    border-radius: 22px;
  }

  .voice-request-panel__header>p:last-child {
    font-size: 13px;
  }

  .voice-product-search__input {
    min-height: 58px;
    padding-right: 52px;
    padding-left: 49px;
    border-radius: 15px;
    font-size: 14px;
  }

  .voice-product-search__icon {
    left: 16px;
    width: 20px;
    height: 20px;
  }

  .voice-product-result {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px;
  }

  .voice-product-result__visual {
    width: 70px;
  }

  .voice-product-result__action {
    grid-column: 2;
    justify-self: start;
    margin-top: 2px;
  }

  .voice-product-result__name {
    font-size: 13px;
  }

  .voice-product-result__meta,
  .voice-product-result__jan {
    font-size: 10px;
  }

  .voice-product-search__categories {
    padding: 17px;
  }

  .voice-selected-product__visual {
    width: 94px;
  }
}

@media screen and (max-width: 480px) {
  .voice-request-step__text strong {
    max-width: 72px;
  }

  .voice-product-result {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 10px 8px;
  }

  .voice-product-result__visual {
    width: 58px;
  }

  .voice-product-result__meta {
    display: none;
  }

  .voice-selected-product__heading {
    align-items: flex-start;
  }

  .voice-selected-product__visual {
    width: 100%;
    max-width: 180px;
  }
}

.voice-product-search [hidden] {
  display: none !important;
}

/* ===================================
   REQUEST PAGE: INPUT / CONFIRMATION
   Version 1.4.0
=================================== */

.voice-request-form [hidden] {
  display: none !important;
}

.voice-request-step.is-complete {
  color: var(--color-text);
}

.voice-request-step.is-complete .voice-request-step__number {
  color: var(--color-white);
  background: var(--color-text);
  border-color: var(--color-text);
}

.voice-request-step.is-complete .voice-request-step__number::after {
  position: absolute;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  transform: rotate(-45deg);
}

.voice-request-step.is-complete .voice-request-step__number {
  color: transparent;
}

.voice-request-step.is-complete .voice-request-step__number::after {
  color: var(--color-white);
}

.voice-request-step.is-complete:not(:last-child)::after {
  background: rgba(74, 48, 45, 0.42);
}

.voice-request-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(30px, 5vw, 48px);
  gap: 14px;
}

.voice-request-actions--end {
  justify-content: flex-end;
  max-width: 820px;
  margin-inline: auto;
}

.voice-request-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    opacity 0.2s ease;
}

.voice-request-button:not(:disabled):hover,
.voice-request-button:not(:disabled):focus-visible {
  transform: translateY(-2px);
}

.voice-request-button--primary {
  color: var(--color-white);
  background: var(--color-accent);
  box-shadow: 0 10px 24px rgba(227, 59, 120, 0.22);
}

.voice-request-button--primary:not(:disabled):hover,
.voice-request-button--primary:not(:disabled):focus-visible {
  background: var(--color-accent-hover);
  box-shadow: 0 14px 30px rgba(227, 59, 120, 0.28);
}

.voice-request-button--secondary {
  color: var(--color-text);
  background: #f4ece8;
  border: 1px solid var(--color-border);
}

.voice-request-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  box-shadow: none;
}

.voice-selected-product__summary,
.voice-request-selected-summary__product,
.voice-request-confirm-product {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
}

.voice-selected-product__summary__visual,
.voice-request-selected-summary__product__visual,
.voice-request-confirm-product__visual {
  width: 132px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-accent-pale);
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

.voice-selected-product__summary__visual img,
.voice-request-selected-summary__product__visual img,
.voice-request-confirm-product__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-selected-product__summary__content,
.voice-request-selected-summary__product__content,
.voice-request-confirm-product__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.voice-selected-product__summary__category,
.voice-request-selected-summary__product__category,
.voice-request-confirm-product__category {
  display: inline-flex;
  margin-bottom: 6px;
  padding: 4px 10px;
  color: var(--color-accent-hover);
  background: var(--color-accent-light);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.voice-selected-product__summary__name,
.voice-request-selected-summary__product__name,
.voice-request-confirm-product__name {
  max-width: 100%;
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.voice-selected-product__summary__meta,
.voice-selected-product__summary__jan,
.voice-selected-product__summary__variations,
.voice-request-selected-summary__product__meta,
.voice-request-selected-summary__product__jan,
.voice-request-selected-summary__product__variations,
.voice-request-confirm-product__meta,
.voice-request-confirm-product__jan,
.voice-request-confirm-product__variations {
  margin-top: 4px;
  color: var(--color-text-muted);
  font-size: 11px;
  line-height: 1.55;
}

.voice-request-selected-summary {
  max-width: 820px;
  margin: 0 auto 36px;
  padding: 20px;
  background: #fff8fb;
  border: 1px solid #f1cbd9;
  border-radius: 18px;
}

.voice-request-fields {
  display: grid;
  max-width: 820px;
  margin-inline: auto;
  gap: 28px;
}

.voice-request-field,
.voice-request-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.voice-request-field>label,
.voice-request-fieldset>legend {
  display: block;
  margin-bottom: 10px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 800;
}

.voice-required-mark {
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  margin-left: 5px;
  padding: 2px 7px;
  color: var(--color-white);
  background: var(--color-accent);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  vertical-align: middle;
}

.voice-request-field input[type="text"],
.voice-request-field input[type="email"],
.voice-request-field select,
.voice-request-field textarea {
  width: 100%;
  color: var(--color-text);
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(74, 48, 45, 0.035);
  font: inherit;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.voice-request-field input[type="text"],
.voice-request-field input[type="email"],
.voice-request-field select {
  min-height: 56px;
  padding: 12px 15px;
}

.voice-request-field textarea {
  min-height: 220px;
  padding: 16px;
  line-height: 1.8;
  resize: vertical;
}

/* STEP 2: 「ご意見のテーマ」の矢印を右端から少し内側へ配置 */
#voice-request-category {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 72px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%234a302d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 30px center;
  background-size: 14px 8px;
  cursor: pointer;
}

#voice-request-category::-ms-expand {
  display: none;
}

.voice-request-field input:focus,
.voice-request-field select:focus,
.voice-request-field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(227, 59, 120, 0.1);
}

.voice-request-field input.is-invalid,
.voice-request-field select.is-invalid,
.voice-request-field textarea.is-invalid,
.voice-request-fieldset input.is-invalid+span,
.voice-request-check input.is-invalid+span {
  border-color: #c93434;
}

.voice-request-field__meta {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  gap: 14px;
  color: var(--color-text-muted);
  font-size: 10px;
  line-height: 1.6;
}

.voice-request-field__meta b {
  color: var(--color-text);
  font-weight: 700;
}

.voice-request-field__help {
  margin-top: 8px;
  color: var(--color-text-muted);
  font-size: 10px;
  line-height: 1.6;
}

.voice-request-consent {
  padding: 20px 22px;
  border: 1px solid #f1cbd9;
  border-radius: 16px;
  background: #fff8fb;
}

.voice-request-consent__label {
  display: grid !important;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  margin: 0;
  cursor: pointer;
}

.voice-request-consent__label input {
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
  accent-color: var(--color-accent);
}

.voice-request-consent__label input.is-invalid {
  outline: 3px solid rgba(214, 54, 56, 0.18);
  outline-offset: 2px;
}

.voice-request-consent__label span {
  color: var(--color-text);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
}

.voice-request-consent__label a {
  color: var(--color-accent-hover);
  font-weight: 800;
  text-underline-offset: 3px;
}

.voice-request-consent__label .voice-required-mark {
  display: inline-block;
  margin-left: 7px;
}

.voice-request-error {
  min-height: 1.5em;
  margin-top: 7px;
  color: #b42318;
  font-size: 11px;
  font-weight: 700;
}

.voice-request-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.voice-request-radio-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.voice-request-radio-list label,
.voice-request-check {
  position: relative;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}

.voice-request-radio-list input,
.voice-request-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.voice-request-radio-list span {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  padding: 11px 14px 11px 43px;
  background: #fffaf8;
  border: 2px solid var(--color-border);
  border-radius: 13px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.2s ease;
}

.voice-request-radio-list span::before {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 18px;
  height: 18px;
  background: var(--color-white);
  border: 2px solid #bca8a1;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.voice-request-radio-list input:checked+span {
  background: var(--color-accent-pale);
  border-color: var(--color-accent);
}

.voice-request-radio-list input:checked+span::before {
  background: radial-gradient(circle, var(--color-accent) 0 4px, var(--color-white) 5px);
  border-color: var(--color-accent);
}

.voice-request-radio-list input:focus-visible+span,
.voice-request-check input:focus-visible+span {
  outline: 3px solid rgba(227, 59, 120, 0.22);
  outline-offset: 2px;
}

.voice-request-consents {
  display: grid;
  padding: 22px;
  background: #fffaf8;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  gap: 3px;
}

.voice-request-check span {
  position: relative;
  display: block;
  min-height: 28px;
  padding-left: 34px;
  font-size: 12px;
  line-height: 1.75;
}

.voice-request-check span::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 21px;
  height: 21px;
  background: var(--color-white);
  border: 2px solid #bca8a1;
  border-radius: 5px;
  content: "";
}

.voice-request-check input:checked+span::before {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.voice-request-check input:checked+span::after {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid var(--color-white);
  border-left: 2px solid var(--color-white);
  content: "";
  transform: rotate(-45deg);
}

.voice-request-check b {
  color: var(--color-accent-hover);
}

.voice-request-confirm {
  display: grid;
  max-width: 820px;
  margin-inline: auto;
  gap: 28px;
}

.voice-request-confirm__product {
  padding: 22px;
  background: #fff8fb;
  border: 1px solid #f1cbd9;
  border-radius: 18px;
}

.voice-request-confirm__product h3 {
  margin-bottom: 16px;
  font-size: 15px;
}

.voice-request-confirm__list {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: 18px;
}

.voice-request-confirm__row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
}

.voice-request-confirm__row+.voice-request-confirm__row {
  border-top: 1px solid var(--color-border);
}

.voice-request-confirm__row dt,
.voice-request-confirm__row dd {
  margin: 0;
  padding: 16px 18px;
  font-size: 13px;
  line-height: 1.75;
}

.voice-request-confirm__row dt {
  background: #f8f2ef;
  font-weight: 800;
}

.voice-request-confirm__row dd {
  background: var(--color-white);
}

.voice-request-confirm__row dd.is-multiline {
  white-space: pre-wrap;
}

@media screen and (max-width: 798px) {

  .voice-request-actions,
  .voice-request-actions--end {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .voice-request-button {
    width: 100%;
  }

  .voice-selected-product__summary,
  .voice-request-selected-summary__product,
  .voice-request-confirm-product {
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 15px;
  }

  .voice-selected-product__summary__visual,
  .voice-request-selected-summary__product__visual,
  .voice-request-confirm-product__visual {
    width: 94px;
  }

  .voice-request-grid,
  .voice-request-radio-list {
    grid-template-columns: 1fr;
  }

  .voice-request-confirm__row {
    grid-template-columns: 1fr;
  }

  .voice-request-confirm__row dt {
    padding-bottom: 8px;
  }

  .voice-request-confirm__row dd {
    padding-top: 8px;
  }
}

@media screen and (max-width: 480px) {

  .voice-selected-product__summary,
  .voice-request-selected-summary__product,
  .voice-request-confirm-product {
    grid-template-columns: 1fr;
  }

  .voice-selected-product__summary__visual,
  .voice-request-selected-summary__product__visual,
  .voice-request-confirm-product__visual {
    width: 100%;
    max-width: 180px;
  }

  .voice-request-field__meta {
    flex-direction: column;
    gap: 3px;
  }
}


/* Opinion form: submission and completion */
.voice-request-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.voice-request-form.is-submitting {
  pointer-events: none;
  opacity: 0.78;
}

.voice-request-server-error {
  display: grid;
  gap: 6px;
  margin: 0 0 28px;
  padding: 18px 22px;
  border: 1px solid #d63638;
  border-radius: 14px;
  color: #8a2424;
  background: #fff3f3;
}

.voice-request-server-error strong {
  font-size: 16px;
}

.voice-opinion-complete {
  width: min(100%, 820px);
  margin: 20px auto 40px;
  padding: clamp(42px, 7vw, 76px) clamp(24px, 6vw, 64px);
  border: 2px solid #f2bfd2;
  border-radius: 32px;
  text-align: center;
  background: linear-gradient(145deg, #fff 0%, #fff7fa 100%);
  box-shadow: 0 24px 70px rgba(83, 51, 47, 0.08);
}

.voice-opinion-complete__icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  border-radius: 50%;
  color: #fff;
  background: #e73575;
  box-shadow: 0 12px 28px rgba(231, 53, 117, 0.24);
}

.voice-opinion-complete__icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.voice-opinion-complete__en {
  margin: 0 0 10px;
  color: #e73575;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.voice-opinion-complete h2 {
  margin: 0 0 22px;
  color: #4d302c;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.35;
}

.voice-opinion-complete>p:not(.voice-opinion-complete__en) {
  margin: 0 auto;
  max-width: 620px;
  color: #5e4843;
  line-height: 1.9;
}

.voice-opinion-complete__note {
  margin-top: 14px !important;
  color: #856d67 !important;
  font-size: 13px;
}

.voice-opinion-complete__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.voice-opinion-complete__actions .voice-request-button {
  min-width: 220px;
  text-decoration: none;
}

@media (max-width: 640px) {
  .voice-opinion-complete {
    border-radius: 22px;
  }

  .voice-opinion-complete__actions {
    display: grid;
  }

  .voice-opinion-complete__actions .voice-request-button {
    width: 100%;
    min-width: 0;
  }
}

/* ===================================
   IMPROVED PRODUCTS PAGE
=================================== */

.voice-improvements-hero__lead {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.9;
}

.voice-improvements-inner {
  width: min(calc(100% - 80px), var(--container-content));
  margin-inline: auto;
}

.voice-improvements-intro {
  max-width: 900px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.voice-improvements-filter {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.8fr) auto;
  align-items: end;
  gap: 18px;
  margin-bottom: 30px;
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: 0 10px 30px rgba(74, 48, 45, 0.05);
}

.voice-improvements-filter__field label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
}

.voice-improvements-filter input,
.voice-improvements-filter select {
  width: 100%;
  min-height: 52px;
  padding: 11px 15px;
  color: var(--color-text);
  background: #fffdfd;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  font: inherit;
}

.voice-improvements-filter input:focus,
.voice-improvements-filter select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(227, 59, 120, 0.12);
  outline: 0;
}

.voice-improvements-filter__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.voice-improvements-filter__actions button,
.voice-improvements-filter__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.voice-improvements-filter__actions button {
  color: var(--color-white);
  background: var(--color-accent);
  border: 2px solid var(--color-accent);
  cursor: pointer;
}

.voice-improvements-filter__actions a {
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid var(--color-border);
}

.voice-improvements-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 20px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.voice-improvements-result-head strong {
  color: var(--color-accent);
  font-size: 22px;
}

.voice-improvements-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.voice-improvement-card {
  min-width: 0;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: 0 14px 38px rgba(74, 48, 45, 0.07);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.voice-improvement-card:hover {
  border-color: rgba(227, 59, 120, 0.36);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.voice-improvement-card__image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-accent-pale);
}

.voice-improvement-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.voice-improvement-card:hover .voice-improvement-card__image img {
  transform: scale(1.025);
}

.voice-improvement-card__badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  padding: 8px 13px;
  color: var(--color-white);
  background: var(--color-accent);
  border: 3px solid rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(214, 51, 114, 0.2);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.voice-improvement-card__body {
  padding: 25px 26px 28px;
}

.voice-improvement-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.voice-improvement-card__meta span {
  display: inline-flex;
  padding: 6px 10px;
  color: var(--color-accent);
  background: var(--color-accent-pale);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.voice-improvement-card__meta time {
  color: var(--color-text-muted);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.voice-improvement-card__product {
  color: var(--color-text);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.voice-improvement-card__number {
  margin-top: 5px;
  color: var(--color-text-muted);
  font-size: 12px;
}

.voice-improvement-card__article-title {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
  font-size: 18px;
  line-height: 1.55;
}

.voice-improvement-card__article-title a {
  color: var(--color-text);
  text-decoration: none;
}

.voice-improvement-card__summary {
  margin-top: 10px;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.85;
}

.voice-improvement-card__comparison {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.voice-improvement-card__point {
  padding: 15px 16px;
  border-radius: 14px;
}

.voice-improvement-card__point--before {
  background: #f7f3f1;
  border: 1px solid #eadfd9;
}

.voice-improvement-card__point--after {
  background: #fff1f6;
  border: 1px solid #f4bfd2;
}

.voice-improvement-card__point span {
  display: block;
  margin-bottom: 6px;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 800;
}

.voice-improvement-card__point--after span {
  color: var(--color-accent-hover);
}

.voice-improvement-card__point p {
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.75;
}

.voice-improvement-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.voice-improvement-card__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.voice-improvement-card__detail {
  color: var(--color-white);
  background: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.voice-improvement-card__product-link {
  gap: 5px;
  color: var(--color-accent-hover);
  background: var(--color-white);
  border: 1px solid var(--color-accent-light);
}

.voice-improvements-empty {
  padding: clamp(42px, 7vw, 74px) 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  text-align: center;
}

.voice-improvements-empty h2 {
  font-size: clamp(22px, 3vw, 30px);
}

.voice-improvements-empty p {
  margin-top: 12px;
  color: var(--color-text-muted);
}

.voice-improvements-empty__admin {
  display: inline-block;
  padding: 12px 16px;
  background: #f6f7f7;
  border-radius: 8px;
  font-size: 13px;
}

@media screen and (max-width: 1100px) {
  .voice-improvements-inner {
    width: min(calc(100% - 48px), var(--container-content));
  }

  .voice-improvements-filter {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 0.7fr);
  }

  .voice-improvements-filter__actions {
    grid-column: 1 / -1;
  }
}

@media screen and (max-width: 798px) {
  .voice-improvements-inner {
    width: calc(100% - 30px);
  }

  .voice-improvements-hero__lead {
    font-size: 14px;
  }

  .voice-improvements-filter {
    grid-template-columns: 1fr;
    padding: 19px;
  }

  .voice-improvements-filter__actions {
    grid-column: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .voice-improvements-filter__actions button,
  .voice-improvements-filter__actions a {
    width: 100%;
  }

  .voice-improvements-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .voice-improvement-card__body {
    padding: 21px 19px 24px;
  }

  .voice-improvement-card__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .voice-improvement-card__actions a {
    width: 100%;
  }
}

/* ===================================
   SITE INFORMATION PAGES
   Version 2.1.0
=================================== */

.voice-info-main {
  background:
    radial-gradient(circle at 8% 24%, rgba(227, 59, 120, 0.045), transparent 24%),
    var(--color-bg-soft);
}

.voice-info-hero__lead {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--color-text-muted);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 600;
  line-height: 1.9;
}

.voice-info-section {
  overflow: hidden;
}

.voice-info-kicker {
  margin-bottom: 8px;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.voice-info-heading {
  margin-bottom: 30px;
}

.voice-info-heading--center {
  text-align: center;
}

.voice-info-heading h2,
.voice-about-intro h2 {
  font-size: clamp(25px, 3.2vw, 38px);
  line-height: 1.45;
}

.voice-about-intro {
  position: relative;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
  background: linear-gradient(135deg, #fff 0%, #fff7fa 100%);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  box-shadow: 0 20px 54px rgba(74, 48, 45, 0.08);
  gap: clamp(24px, 5vw, 52px);
}

.voice-about-intro::after {
  position: absolute;
  right: -76px;
  bottom: -92px;
  width: 230px;
  height: 230px;
  background: rgba(227, 59, 120, 0.06);
  border-radius: 50%;
  content: "";
}

.voice-about-intro__mark {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100px;
  height: 100px;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-accent);
  border: 10px solid var(--color-accent-pale);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 54px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(227, 59, 120, 0.22);
}

.voice-about-intro__content {
  position: relative;
  z-index: 1;
}

.voice-about-intro__content>p:last-child {
  margin-top: 18px;
  color: var(--color-text-muted);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 2;
}

.voice-about-values,
.voice-about-flow,
.voice-about-operator {
  margin-top: clamp(68px, 9vw, 112px);
}

.voice-about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.voice-about-value-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: 30px 26px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(74, 48, 45, 0.055);
}

.voice-about-value-card__number {
  position: absolute;
  top: 14px;
  right: 18px;
  color: rgba(227, 59, 120, 0.14);
  font-family: Arial, sans-serif;
  font-size: 44px;
  font-weight: 900;
}

.voice-about-value-card__icon {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--color-accent);
  background: var(--color-accent-pale);
  border-radius: 18px;
}

.voice-about-value-card__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.voice-about-value-card h3 {
  position: relative;
  font-size: 19px;
  line-height: 1.55;
}

.voice-about-value-card p {
  position: relative;
  margin-top: 12px;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.9;
}

.voice-about-flow {
  padding: clamp(34px, 5vw, 58px);
  background: #fffaf8;
  border: 1px solid var(--color-border);
  border-radius: 28px;
}

.voice-about-flow__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  gap: 16px;
  list-style: none;
}

.voice-about-flow__list li {
  position: relative;
  min-height: 230px;
  padding: 25px 21px;
  background: var(--color-white);
  border: 1px solid #f1dfd8;
  border-radius: 18px;
}

.voice-about-flow__list li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -12px;
  z-index: 2;
  width: 24px;
  height: 24px;
  background: var(--color-white);
  border-top: 1px solid #f1dfd8;
  border-right: 1px solid #f1dfd8;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.voice-about-flow__step {
  display: inline-flex;
  margin-bottom: 17px;
  padding: 5px 10px;
  color: var(--color-accent-hover);
  background: var(--color-accent-light);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.voice-about-flow__list strong {
  display: block;
  font-size: 17px;
  line-height: 1.55;
}

.voice-about-flow__list p {
  margin-top: 11px;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.85;
}

.voice-about-notice {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  margin-top: clamp(54px, 7vw, 82px);
  padding: clamp(25px, 4vw, 38px);
  color: #4b3732;
  background: #fff5f0;
  border: 1px solid #ecd3c9;
  border-radius: 22px;
  gap: 22px;
}

.voice-about-notice__icon {
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  color: #a95e45;
  background: var(--color-white);
  border-radius: 50%;
}

.voice-about-notice__icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.voice-about-notice h2 {
  font-size: 21px;
}

.voice-about-notice ul {
  margin-top: 14px;
  padding-left: 1.25em;
}

.voice-about-notice li {
  font-size: 14px;
  line-height: 1.9;
}

.voice-about-notice li+li {
  margin-top: 5px;
}

.voice-info-custom-content {
  margin-top: clamp(54px, 7vw, 82px);
  padding: clamp(26px, 4vw, 44px);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 22px;
}

.voice-about-operator__table {
  overflow: hidden;
  margin: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
}

.voice-about-operator__table>div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
}

.voice-about-operator__table>div+div {
  border-top: 1px solid var(--color-border);
}

.voice-about-operator__table dt,
.voice-about-operator__table dd {
  margin: 0;
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.8;
}

.voice-about-operator__table dt {
  background: #f8f2ef;
  font-weight: 800;
}

.voice-about-operator__table a {
  color: var(--color-accent-hover);
  font-weight: 700;
  text-underline-offset: 3px;
}

.voice-info-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 44px;
  gap: 14px;
}

.voice-info-button {
  display: inline-flex;
  min-width: 220px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 25px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.voice-info-button:hover,
.voice-info-button:focus-visible {
  transform: translateY(-2px);
}

.voice-info-button--primary {
  color: var(--color-white);
  background: var(--color-accent);
  box-shadow: 0 12px 28px rgba(227, 59, 120, 0.24);
}

.voice-info-button--secondary {
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

/* Privacy policy */
.voice-privacy-inner {
  max-width: 940px;
}

.voice-privacy-summary {
  padding: clamp(27px, 4vw, 42px);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(74, 48, 45, 0.055);
}

.voice-privacy-summary p {
  font-size: 15px;
  line-height: 2;
}

.voice-privacy-summary__date {
  margin-top: 16px;
  color: var(--color-text-muted);
  font-size: 12px !important;
  text-align: right;
}

.voice-privacy-toc {
  margin-top: 28px;
  padding: 26px 28px;
  background: #fff8fb;
  border: 1px solid #f1cbd9;
  border-radius: 20px;
}

.voice-privacy-toc>p {
  margin-bottom: 15px;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.voice-privacy-toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  gap: 8px 28px;
  counter-reset: privacy-toc;
  list-style: none;
}

.voice-privacy-toc li {
  counter-increment: privacy-toc;
}

.voice-privacy-toc a {
  display: flex;
  align-items: center;
  min-height: 36px;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.voice-privacy-toc a::before {
  margin-right: 9px;
  color: var(--color-accent);
  content: counter(privacy-toc, decimal-leading-zero) ".";
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.voice-privacy-toc a:hover,
.voice-privacy-toc a:focus-visible {
  color: var(--color-accent-hover);
}

.voice-privacy-content {
  margin-top: clamp(50px, 7vw, 76px);
}

.voice-privacy-section {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
  scroll-margin-top: 130px;
  gap: 24px;
}

.voice-privacy-section:last-child {
  border-bottom: 1px solid var(--color-border);
}

.voice-privacy-section__number {
  color: var(--color-accent);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.voice-privacy-section h2 {
  font-size: clamp(20px, 2.6vw, 27px);
  line-height: 1.5;
}

.voice-privacy-section p,
.voice-privacy-section li {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 2;
}

.voice-privacy-section h2+p,
.voice-privacy-section h2+ul {
  margin-top: 14px;
}

.voice-privacy-section ul {
  padding-left: 1.4em;
}

.voice-privacy-note {
  margin-top: 14px;
  padding: 13px 16px;
  color: var(--color-text) !important;
  background: var(--color-accent-pale);
  border-radius: 12px;
  font-weight: 700;
}

.voice-privacy-contact {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 10px 20px;
  color: var(--color-white);
  background: var(--color-accent);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.voice-privacy-operator {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 34px;
  color: var(--color-text-muted);
  gap: 8px 18px;
  font-size: 13px;
}

.voice-privacy-operator strong {
  color: var(--color-text);
}

/* Product images must remain fully visible in opinion form. */
.voice-product-result__visual,
.voice-selected-product__visual,
.voice-selected-product__summary__visual,
.voice-request-selected-summary__product__visual,
.voice-request-confirm-product__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 8px;
  background: var(--color-white);
  flex-shrink: 0;
}

.voice-product-result__visual img,
.voice-selected-product__visual img,
.voice-selected-product__summary__visual img,
.voice-request-selected-summary__product__visual img,
.voice-request-confirm-product__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.voice-selected-product__summary__visual,
.voice-request-selected-summary__product__visual,
.voice-request-confirm-product__visual {
  width: 132px;
}

@media screen and (max-width: 900px) {
  .voice-about-values__grid {
    grid-template-columns: 1fr;
  }

  .voice-about-flow__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .voice-about-flow__list li:nth-child(2)::after {
    display: none;
  }
}

@media screen and (max-width: 798px) {
  .voice-about-intro {
    grid-template-columns: 78px minmax(0, 1fr);
    padding: 28px 22px;
    border-radius: 22px;
    gap: 18px;
  }

  .voice-about-intro__mark {
    width: 70px;
    height: 70px;
    border-width: 7px;
    font-size: 38px;
  }

  .voice-about-flow {
    padding: 28px 20px;
  }

  .voice-about-operator__table>div {
    grid-template-columns: 145px minmax(0, 1fr);
  }

  .voice-privacy-toc ol {
    grid-template-columns: 1fr;
  }

  .voice-selected-product__summary__visual,
  .voice-request-selected-summary__product__visual,
  .voice-request-confirm-product__visual {
    width: 94px;
  }
}

@media screen and (max-width: 600px) {
  .voice-about-intro {
    grid-template-columns: 1fr;
  }

  .voice-about-flow__list {
    grid-template-columns: 1fr;
  }

  .voice-about-flow__list li {
    min-height: auto;
  }

  .voice-about-flow__list li:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -12px;
    transform: translateX(50%) rotate(135deg);
  }

  .voice-about-notice {
    grid-template-columns: 1fr;
  }

  .voice-about-operator__table>div {
    grid-template-columns: 1fr;
  }

  .voice-about-operator__table dt {
    padding-bottom: 8px;
  }

  .voice-about-operator__table dd {
    padding-top: 8px;
  }

  .voice-info-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .voice-info-button {
    width: 100%;
  }

  .voice-privacy-section {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .voice-privacy-section__number {
    display: inline-flex;
    width: fit-content;
    padding: 4px 9px;
    background: var(--color-accent-pale);
    border-radius: 999px;
  }

  .voice-product-result__visual {
    padding: 5px;
  }
}


/* 右配置のお客様コメントを薄いブルーにする */
.voice-chat-message--right.voice-chat-message--customer .voice-chat-message__bubble {
  background: #eef7ff;
  border-color: #c9e3f6;
}

.voice-chat-message--right.voice-chat-message--customer .voice-chat-message__bubble::before {
  background: #eef7ff;
  border-color: #c9e3f6;
}
