* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #2f2442;
  --muted: #746a86;
  --primary: #e94f9f;
  --primary-dark: #a92979;
  --violet: #5a35ad;
  --cyan: #21a9c7;
  --gold: #f2b544;
  --line: #eadff1;
  --surface: rgba(255, 255, 255, 0.94);
  --shadow: 0 22px 52px rgba(79, 45, 122, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: "M PLUS Rounded 1c", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: var(--ink);
  background: #fff8fd;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

#loading {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 197, 233, 0.72), transparent 32%),
    radial-gradient(circle at 78% 20%, rgba(152, 220, 235, 0.58), transparent 30%),
    linear-gradient(180deg, #fff6fd 0%, #f4ecff 100%);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

#loading.hide {
  opacity: 0;
  visibility: hidden;
}

.loading-inner {
  text-align: center;
}

.loading-inner img {
  width: 150px;
  margin: 0 auto 18px;
}

.loading-inner p,
.site-nav span,
.section-title,
.view-all,
.footer-nav {
  font-family: "Fredoka", "M PLUS Rounded 1c", sans-serif;
}

.loading-inner p {
  color: var(--primary);
  font-weight: 700;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  width: 100%;
  height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 clamp(22px, 6vw, 92px);
  border-bottom: 1px solid rgba(234, 223, 241, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.header-logo img {
  width: 116px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
  text-align: center;
}

.site-nav a {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--violet);
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.site-nav a.active {
  color: var(--primary);
}

.site-nav span {
  font-size: clamp(17px, 1.2vw, 22px);
  font-weight: 700;
  line-height: 1;
}

.site-nav small {
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
  color: currentColor;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.header-actions,
.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 10px 24px rgba(90, 40, 140, 0.12);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.social-button:hover {
  transform: translateY(-3px);
}

.social-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.kayou-link img {
  width: 82px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-content: center;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  gap: 4px;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--violet);
}

.hero {
  margin-top: 92px;
  padding: 62px 0 72px;
  background:
    radial-gradient(circle at 16% 24%, rgba(255, 194, 233, 0.7), transparent 34%),
    radial-gradient(circle at 82% 16%, rgba(175, 232, 241, 0.55), transparent 30%),
    radial-gradient(circle at 50% 96%, rgba(255, 216, 135, 0.48), transparent 28%),
    linear-gradient(180deg, #fff5fd 0%, #f3ecff 58%, #fff9fc 100%);
  overflow: hidden;
}

.hero-slider {
  position: relative;
  display: flex;
  height: min(51vw, 675px);
  min-height: 360px;
  align-items: center;
  justify-content: center;
}

.slide-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1200px, 78vw);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.76);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.slide-card.has-link {
  cursor: pointer;
}

.slide-link {
  display: block;
  width: 100%;
  height: 100%;
}

.slide-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(0deg, rgba(38, 21, 62, 0.7), transparent);
  content: "";
}

.slide-card:not(.active)::after,
.slide-card:not(.active) .slide-copy {
  opacity: 0;
}

.slide-copy {
  position: absolute;
  left: clamp(24px, 4vw, 58px);
  bottom: clamp(22px, 4vw, 50px);
  z-index: 1;
  max-width: min(540px, 72%);
  color: #fff;
  text-shadow: 0 2px 12px rgba(34, 22, 48, 0.24);
}

.slide-copy h1 {
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

.slide-copy p {
  margin-top: 12px;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.7;
}

.slide-card.active {
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.slide-card.prev {
  z-index: 3;
  opacity: 0.5;
  transform: translate(calc(-50% - 62vw), -50%) scale(0.82);
}

.slide-card.next {
  z-index: 3;
  opacity: 0.5;
  transform: translate(calc(-50% + 62vw), -50%) scale(0.82);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(68, 33, 116, 0.18);
  color: var(--primary-dark);
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  transform: translateY(-50%);
}

.prev-btn {
  left: max(18px, calc(50% - 660px));
}

.next-btn {
  right: max(18px, calc(50% - 660px));
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: #d8c0ea;
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--primary);
  transform: scale(1.22);
}

.main-bg {
  padding: 78px 0 110px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 18% 22%, rgba(33, 169, 199, 0.1), transparent 32%),
    radial-gradient(circle at 82% 60%, rgba(242, 181, 68, 0.14), transparent 26%),
    #fff9fd;
}

.section-block {
  width: min(1200px, 88vw);
  margin: 0 auto;
}

.section-block + .section-block {
  margin-top: 98px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-title {
  color: var(--primary);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  line-height: 1;
}

.section-subtitle {
  margin-top: 9px;
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 800;
}

.view-all {
  flex: 0 0 auto;
  border: 2px solid #f3a3cf;
  border-radius: 999px;
  background: #fff;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 24px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.view-all:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.news-box,
.about-frame,
.group-card {
  background: var(--surface);
  box-shadow: var(--shadow);
}

.news-box {
  border: 1px solid rgba(234, 223, 241, 0.82);
  border-radius: 22px;
  padding: 22px 26px;
}

.news-item {
  display: grid;
  grid-template-columns: 140px 132px 1fr;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 18px 14px;
  border-bottom: 1px solid var(--line);
  border-radius: 14px;
  transition: background 0.2s ease;
}

.news-item:hover {
  background: #fff0fa;
}

.news-item:last-child {
  border-bottom: 0;
}

.date {
  color: var(--violet);
  font-size: 16px;
  font-weight: 700;
}

.tag {
  width: max-content;
  min-width: 104px;
  border: 1px solid #f4b7dc;
  border-radius: 999px;
  background: #ffe5f3;
  color: var(--primary-dark);
  padding: 8px 18px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.news-text {
  color: #574a6b;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

.about-frame {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 72px);
  border: 4px solid #dbc3f4;
  border-radius: 28px;
  padding: clamp(44px, 6vw, 76px);
}

.about-eyebrow {
  color: var(--cyan);
  font-family: "Fredoka", "Noto Sans SC", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.about-content h2 {
  margin-top: 12px;
  color: var(--violet);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
}

.about-body {
  margin-top: 24px;
}

.about-body p {
  color: #574a6b;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
}

.about-body p + p {
  margin-top: 18px;
}

.item-scroll {
  width: 100%;
  overflow: hidden;
  padding: 8px 0 22px;
}

.item-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: scrollItems 30s linear infinite;
}

.item-track:hover {
  animation-play-state: paused;
}

.item-card {
  display: block;
  width: 238px;
  flex: 0 0 auto;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(53, 38, 76, 0.1);
  overflow: hidden;
  transition: transform 0.22s ease;
}

.product-track .item-card {
  width: 300px;
}

.item-card:hover {
  transform: translateY(-6px);
}

.item-card img {
  width: 100%;
  height: auto;
}

@keyframes scrollItems {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* HOME: PRD index.html replica */
.hero {
  width: 100%;
  max-width: none;
  margin: 92px 0 0;
  padding: 64px 0 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 210, 245, 0.75), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(210, 195, 255, 0.8), transparent 35%),
    linear-gradient(180deg, #fff4ff 0%, #f3eaff 55%, #fff6fc 100%);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: min(675px, 49.5vw);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-track {
  position: static;
  width: auto;
  height: auto;
}

.slide-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1200px, 88vw);
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 32px;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.78);
  transition: 0.75s ease;
  box-shadow: 0 26px 60px rgba(84, 32, 150, 0.22);
  pointer-events: none;
  background: #fff;
}

.slide-card::after {
  display: none;
}

.slide-card img,
.slide-card picture {
  width: 100%;
  height: 100%;
}

.slide-card img {
  object-fit: cover;
}

.slide-card.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 5;
  pointer-events: auto;
}

.slide-card.prev {
  opacity: 0.55;
  transform: translate(calc(-50% - clamp(360px, 54vw, 760px)), -50%) scale(0.82);
  z-index: 3;
  pointer-events: auto;
  cursor: pointer;
}

.slide-card.next {
  opacity: 0.55;
  transform: translate(calc(-50% + clamp(360px, 54vw, 760px)), -50%) scale(0.82);
  z-index: 3;
  pointer-events: auto;
  cursor: pointer;
}

.slide-card.hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
  z-index: 1;
}

.slider-arrow {
  z-index: 20;
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.9);
  color: #b64ee6;
  font-size: 30px;
  font-weight: 500;
  box-shadow: 0 10px 24px rgba(90, 40, 140, 0.18);
}

.prev-btn {
  left: max(18px, calc(50% - min(660px, 44vw)));
}

.next-btn {
  right: max(18px, calc(50% - min(660px, 44vw)));
}

.slider-dots {
  position: relative;
  z-index: 20;
  margin-top: 32px;
}

.slider-dots button {
  background: #d9b8f5;
}

.slider-dots button.active {
  background: var(--primary);
  transform: scale(1.25);
}

.main-bg {
  background:
    linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.28)),
    url("/assets/mlp-pattern-bg.png");
  background-repeat: repeat;
  background-size: 760px auto;
  padding: 80px 0 0;
}

.main-bg section {
  /* width: min(1200px, 88%); */
  margin: 0 auto;
}

.section-block + .section-block {
  margin-top: 0;
}

.section-head {
  align-items: center;
  margin-bottom: 40px;
}

.section-title {
  color: var(--primary);
  font-family: "Fredoka", sans-serif;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 0;
}

.section-subtitle {
  margin-top: 8px;
  color: var(--primary);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.view-all {
  color: #e85eaa;
  font-weight: 500;
  padding: 10px 28px;
}

.news-box,
.about-frame {
  background: rgba(255, 255, 255, 0.92);
}

.news-box {
  border: 0;
  border-radius: 24px;
  padding: 24px 28px;
  box-shadow: 0 16px 40px rgba(180, 100, 190, 0.15);
}

.news-item {
  grid-template-columns: 150px 140px 1fr;
  gap: 24px;
  min-height: 0;
  padding: 22px 16px;
  border-bottom: 1px solid #f0dff4;
}

.date {
  color: #9b75d9;
  font-size: 17px;
  font-weight: 500;
}

.tag {
  min-width: 0;
  border: 1px solid #f6b5dc;
  background: #ffe2f2;
  color: #ee62b6;
  font-size: 12px;
  font-weight: 500;
  padding: 9px 22px;
  white-space: nowrap;
}

.news-text {
  color: #574276;
  font-weight: 400;
  line-height: 1.7;
}

.about-section {
  margin-top: 100px !important;
}

.about-frame {
  display: block;
  position: relative;
  border: 4px solid #d8b5ff;
  border-radius: 28px;
  padding: 80px 7%;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(120, 70, 160, 0.16);
}

.about-layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  padding-top: 10px;
}

.about-card-group {
  display: flex;
  width: 360px;
  height: 360px;
  align-items: center;
  justify-content: center;
  background: transparent;
  flex-shrink: 0;
  margin-left: -30px;
  margin-top: 40px;
}

.about-card-group img {
  position: static;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  transform: none;
}

.about-card-group img:first-child,
.about-card-group img:last-child {
  inset: auto;
  transform: none;
}

.about-text {
  flex: 1;
  min-width: 0;
  max-width: 620px;
  text-align: left;
}

.about-content h2 {
  margin: 0 0 32px;
  color: var(--violet);
  font-size: 46px;
  font-weight: 800;
}

.about-title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 320px;
  margin: 0 0 34px;
}

.about-title-line span {
  flex: 1;
  border-top: 3px dotted #ff8bd2;
}

.about-title-line b {
  color: #ff5db0;
  font-size: 18px;
  line-height: 1;
}

.about-content p {
  color: var(--deep);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.9;
  text-align: left;
}

.content-section {
  margin-top: 100px !important;
}

.item-scroll {
  padding: 10px 0 20px;
}

.item-track {
  gap: 24px;
  animation: scrollItems 28s linear infinite;
}

.item-card {
  display: flex;
  width: 240px;
  aspect-ratio: 5 / 7;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.25s;
}

.item-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.item-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.product-track .item-card {
  width: 300px;
  aspect-ratio: auto;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.product-track .item-card img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.footer-pony-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 220px;
  overflow: hidden;
  box-sizing: border-box;
  margin-top: 40px;
  margin-bottom: 0;
  max-width: 100vw;
  padding: 0 24px;
  position: relative;
  width: 100%;
  z-index: 20;
}

.footer-pony-row img {
  flex: 0 0 auto;
  height: 440px;
  width: auto;
  object-fit: contain;
  object-position: top center;
  transform: translateY(0);
  padding: 0;
  transition: transform 0.34s cubic-bezier(0.2, 0.9, 0.32, 1.35);
  will-change: transform;
}

.footer-pony-row img + img {
  margin-left: clamp(-310px, calc((100vw - 2248px) / 5), -80px);
}

.footer-pony-row .center-pony {
  height: 440px;
}

.footer-pony-row img:hover {
  transform: translateY(-40px);
}

.group-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.group-card {
  overflow: hidden;
  border: 1px solid rgba(234, 223, 241, 0.88);
  border-radius: 8px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.group-card:hover {
  box-shadow: 0 24px 54px rgba(79, 45, 122, 0.2);
  transform: translateY(-5px);
}

.group-media {
  aspect-ratio: 4 / 3;
  background: #f5edf8;
  overflow: hidden;
}

.group-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.group-content {
  padding: 18px 18px 20px;
}

.group-content small {
  color: var(--cyan);
  font-family: "Fredoka", "Noto Sans SC", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.group-content h3 {
  margin-top: 7px;
  color: var(--violet);
  font-size: 21px;
  line-height: 1.25;
}

.group-content p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.site-footer {
  padding: 60px 7%;
  background: linear-gradient(135deg, #35177f, #6a3ad1);
  color: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-logo img {
  width: 130px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(6, auto);
  gap: 24px 36px;
  font-size: 13px;
  font-weight: 500;
}

.footer-nav a {
  text-align: center;
}

.footer-nav .en {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.footer-nav .jp {
  display: block;
  margin-top: 5px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 10px;
  font-weight: 700;
  opacity: 0.8;
}

.footer-nav a:hover {
  color: #ffd7ef;
}

.footer-sns {
  display: flex;
  gap: 12px;
}

.footer-sns-mobile {
  display: none;
}

.footer-policy {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  margin-top: 42px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

/* SUB PAGES */
.sub-page {
  min-height: calc(100vh - 92px);
  padding: 150px 0 96px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.54)),
    radial-gradient(circle at 18% 20%, rgba(255, 194, 233, 0.32), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(33, 169, 199, 0.15), transparent 28%),
    #fff9fd;
}

.page-inner {
  width: min(1120px, 88vw);
  margin: 0 auto;
}

.page-inner.narrow {
  width: min(980px, 88vw);
}

.page-heading {
  margin-bottom: 36px;
}

.page-heading.centered {
  text-align: center;
}

.page-heading h1 {
  color: var(--primary);
  font-family: "Fredoka", "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.page-heading p {
  margin-top: 12px;
  color: var(--primary-dark);
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.tab {
  min-width: 104px;
  border: 2px solid var(--violet);
  border-radius: 999px;
  background: #fff;
  color: var(--violet);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  padding: 11px 20px;
}

.tab.active {
  background: var(--violet);
  color: #fff;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-archive-item {
  display: grid;
  grid-template-columns: 124px 126px 1fr 28px;
  align-items: center;
  gap: 22px;
  min-height: 92px;
  border: 2px solid #d3baff;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(94, 45, 168, 0.05);
  padding: 16px 20px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.news-archive-item:hover {
  box-shadow: 0 14px 30px rgba(94, 45, 168, 0.12);
  transform: translateY(-2px);
}

.news-archive-date {
  color: var(--violet);
  font-size: 15px;
  font-weight: 900;
}

.news-archive-tag {
  width: max-content;
  min-width: 108px;
  border: 1.5px solid currentColor;
  border-radius: 7px;
  background: #fff;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 13px;
  text-align: center;
}

.news-archive-title {
  color: var(--violet);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
}

.news-archive-desc {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.news-arrow {
  color: var(--violet);
  font-size: 38px;
  line-height: 1;
}

.news-detail-page {
  position: relative;
  overflow: hidden;
  padding: 150px 7% 90px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.28)),
    url("/assets/mlp-pattern-bg.png");
  background-repeat: repeat;
  background-size: 760px auto;
}

.news-detail-page .page-inner.narrow {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: #7655b8;
  font-size: 13px;
  font-weight: 900;
}

.breadcrumb a {
  color: var(--violet);
}

.news-detail-page .page-heading {
  margin-bottom: 42px;
}

.news-detail-page .page-heading h1 {
  color: var(--primary);
  font-size: 54px;
  letter-spacing: 0;
}

.news-detail-page .page-heading p {
  color: #2d1268;
  font-size: 18px;
  letter-spacing: 0;
}

.article {
  border: 2px solid #d8c5ff;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(76, 29, 149, 0.08);
  padding: 52px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.article-date {
  color: #6a55a5;
  font-size: 14px;
  font-weight: 900;
}

.article-category {
  border: 1.5px solid #ff2e84;
  border-radius: 6px;
  color: #ff2e84;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 16px;
}

.article-title {
  margin-bottom: 28px;
  color: var(--violet);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.45;
}

.main-visual {
  width: min(100%, 720px);
  margin: 28px auto 40px;
  border: 1px solid #eadfff;
  border-radius: 18px;
  background: #f4ecff;
  filter: drop-shadow(0 18px 28px rgba(76, 29, 149, 0.18));
  transition: transform 0.3s ease;
}

.main-visual:hover {
  transform: translateY(-4px) scale(1.01);
}

.article-body {
  color: #2d1268;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.05;
}

.article-body p {
  margin-bottom: 22px;
  white-space: pre-line;
}

.article-body h2 {
  margin: 48px 0 22px;
  border-left: 6px solid var(--primary);
  color: var(--violet);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.45;
  padding-left: 18px;
}

.product-box-image {
  margin: 42px auto 50px;
  text-align: center;
}

.product-box-image img {
  width: min(100%, 720px);
  margin: auto;
  filter: drop-shadow(0 18px 28px rgba(76, 29, 149, 0.18));
  transition: transform 0.3s ease;
}

.product-box-image img:hover {
  transform: translateY(-4px) scale(1.01);
}

.info-box {
  margin: 22px 0 34px;
  border: 1.5px solid #e0ccff;
  border-radius: 18px;
  background: #fbf7ff;
  padding: 26px;
}

.info-box dl {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 14px 20px;
}

.info-row {
  display: contents;
}

.info-box dt {
  color: var(--violet);
  font-weight: 900;
}

.info-box dd {
  font-weight: 700;
  white-space: pre-line;
}

.article-link {
  display: inline-block;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  padding: 13px 24px;
}

.hr {
  height: 1px;
  margin: 44px 0;
  background: #eadfff;
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.article-nav a {
  width: max-content;
  max-width: 100%;
  border: 2px solid var(--violet);
  border-radius: 999px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 900;
  padding: 12px 22px;
  text-align: center;
}

.article-nav a:last-child {
  justify-self: end;
}

.article-nav .back {
  background: var(--violet);
  color: #fff;
  justify-self: center;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-top: 28px;
  color: var(--violet);
  font-weight: 900;
}

.page-btn {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.page-btn:disabled {
  cursor: default;
  opacity: 0.35;
}

.pagination .current {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
}

.video-lead,
.start-title {
  color: var(--violet);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.video-box {
  display: block;
  width: min(980px, 100%);
  margin: 32px auto 40px;
  overflow: hidden;
  border: 2px solid #eadfff;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.video-box img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.description {
  position: relative;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(76, 29, 149, 0.08);
  color: var(--violet);
  font-size: 15px;
  font-weight: 900;
  line-height: 2;
  padding: 32px 26px;
  text-align: center;
}

.start-title {
  margin: 52px 0 28px;
}

.start-title::before {
  display: block;
  width: min(320px, 70%);
  height: 1px;
  margin: 0 auto 28px;
  background: #cdb7ff;
  content: "";
}

.pdf-image {
  display: block;
  width: min(900px, 100%);
  margin: 0 auto 48px;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.pdf-image img {
  width: 100%;
}

.link-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.link-card {
  display: flex;
  min-height: 136px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 2px solid #eadfff;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(76, 29, 149, 0.08);
  color: var(--violet);
  font-size: 20px;
  font-weight: 900;
  padding: 28px 30px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.link-card:hover {
  box-shadow: 0 16px 34px rgba(76, 29, 149, 0.13);
  transform: translateY(-4px);
}

.link-card small {
  display: block;
  margin-top: 6px;
  color: var(--primary);
  font-family: "Fredoka", "M PLUS Rounded 1c", sans-serif;
  font-size: 12px;
}

.link-card::after {
  content: "›";
  font-size: 42px;
}

.image-modal,
.product-modal,
.card-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(27, 10, 70, 0.75);
  padding: 28px;
}

.image-modal.is-open,
.product-modal.is-open,
.card-modal.is-open {
  display: flex;
}

.image-modal img {
  max-width: min(920px, 94vw);
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.image-modal-scroll {
  width: calc(100vw - 56px);
  height: calc(100vh - 56px);
  max-height: calc(100vh - 56px);
  overflow: hidden;
  border-radius: 18px;
}

.image-modal-scroll.is-zoomed {
  overflow: scroll;
  scrollbar-color: rgba(255, 255, 255, 0.78) rgba(45, 18, 104, 0.5);
  scrollbar-gutter: stable both-edges;
  scrollbar-width: auto;
}

.image-modal-scroll.is-zoomed::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

.image-modal-scroll.is-zoomed::-webkit-scrollbar-track {
  background: rgba(45, 18, 104, 0.5);
  border-radius: 999px;
}

.image-modal-scroll.is-zoomed::-webkit-scrollbar-thumb {
  border: 3px solid rgba(45, 18, 104, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.image-modal-scroll img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: 100%;
  object-fit: contain;
  transform-origin: top center;
}

.image-modal-scroll.is-zoomed img {
  height: auto;
  max-height: none;
  object-fit: initial;
}

.image-modal-tools {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  color: var(--violet);
  font-family: "Fredoka", "M PLUS Rounded 1c", sans-serif;
  font-size: 13px;
  font-weight: 900;
  padding: 8px;
}

.image-modal-tools button {
  display: grid;
  min-width: 36px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--violet);
  color: #fff;
  cursor: pointer;
  font: inherit;
  padding: 0 12px;
}

.image-modal-tools button:disabled {
  cursor: default;
  opacity: 0.38;
}

.image-modal-tools span {
  min-width: 48px;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--violet);
  cursor: pointer;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.search-area {
  display: grid;
  grid-template-columns: 1fr 190px 150px;
  gap: 18px;
  border: 1.5px solid #e4c9ff;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 30px rgba(76, 29, 149, 0.07);
  padding: 28px;
}

.search-area.card-search {
  grid-template-columns: 1fr 170px 170px 150px;
}

.input-box,
.select-box,
.search-btn {
  min-width: 0;
  height: 54px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
}

.input-box,
.select-box {
  border: 2px solid #e0b7ff;
  background: rgba(255, 255, 255, 0.96);
  color: var(--violet);
  padding: 0 16px;
}

.search-btn,
.contact-submit {
  border: 0;
  background: linear-gradient(135deg, #df6bef, #c34cde);
  color: #fff;
  cursor: pointer;
}

.result-row {
  display: flex;
  justify-content: flex-end;
  margin: 18px 0 34px;
  color: var(--violet);
  font-size: 15px;
  font-weight: 900;
}

.result-row strong {
  color: var(--primary);
  font-size: 24px;
}

.product-grid,
.card-grid {
  display: grid;
  gap: 32px 24px;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card,
.card-list-card {
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: center;
  transition: transform 0.22s ease;
}

.product-card:hover,
.card-list-card:hover {
  transform: translateY(-6px);
}

.product-image,
.card-list-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(76, 29, 149, 0.08);
  overflow: hidden;
}

.product-image {
  min-height: 320px;
  padding: 26px;
}

.product-image img {
  max-width: 270px;
  width: 100%;
}

.product-name,
.card-list-name {
  margin-top: 16px;
  color: var(--violet);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.product-category,
.card-meta {
  margin-top: 6px;
  color: var(--primary);
  font-family: "Fredoka", "M PLUS Rounded 1c", sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.product-modal-panel,
.card-modal-panel {
  position: relative;
  width: min(1060px, 96vw);
  max-height: 90vh;
  overflow: auto;
  border: 2px solid #e4c9ff;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  padding: 44px;
}

.product-modal-content,
.card-modal-content {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1fr;
  align-items: center;
  gap: 38px;
}

.modal-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #eadfff;
  border-radius: 24px;
  background: #faf7ff;
  padding: 28px;
}

.modal-image-wrap img {
  max-height: 520px;
  width: auto;
}

.modal-label {
  display: inline-flex;
  border: 1.5px solid var(--primary);
  border-radius: 999px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 16px;
  padding: 7px 16px;
}

.modal-title {
  color: var(--violet);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 22px;
}

.detail-list {
  display: grid;
  gap: 14px;
}

.detail-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  border-bottom: 1px solid #eadfff;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
  padding: 12px 0;
}

.detail-row dt {
  color: var(--violet);
  font-weight: 900;
}

.detail-row dd {
  font-weight: 700;
}

.prd-card-page {
  padding-top: 150px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)),
    url("/assets/mlp-pattern-bg.png");
  background-repeat: repeat;
  background-size: 760px auto;
}

.prd-card-hero {
  width: min(1120px, 94%);
  margin: 0 auto;
  padding: 72px 0 46px;
  text-align: left;
}

.prd-card-hero h1 {
  color: #ff5db0;
  font-family: "Fredoka", "M PLUS Rounded 1c", sans-serif;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.prd-card-search-area {
  width: min(1120px, 94%);
  margin: 0 auto;
  border: 1.5px solid #e4c9ff;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fff9ff);
  box-shadow: 0 8px 30px rgba(76, 29, 149, 0.07);
  padding: 28px 32px;
}

.prd-search-top {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 20px;
  margin-bottom: 22px;
}

.prd-input-wrap {
  position: relative;
  display: block;
}

.prd-input-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  color: #777;
  font-size: 22px;
  transform: translateY(-50%);
}

.prd-input-box {
  width: 100%;
  height: 58px;
  border: 2px solid #e0b7ff;
  border-radius: 10px;
  background: #fff;
  color: #6b3ca8;
  font-size: 16px;
  font-weight: 900;
  padding: 0 18px 0 48px;
}

.prd-search-btn {
  height: 58px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #df6bef, #c34cde);
  box-shadow: 0 4px 0 rgba(178, 52, 190, 0.25);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.prd-filter-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 6px;
}

.prd-dropdown-btn {
  height: 48px;
  border: 0;
  background: #fff;
  color: #2d1268;
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  padding: 0 10px;
}

.prd-dropdown-btn span {
  margin-left: 8px;
  color: #777;
  font-size: 12px;
}

.prd-dropdown-btn.active {
  color: #7b4ee4;
}

.prd-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  color: #4c1d95;
  font-size: 15px;
  font-weight: 900;
}

.prd-count strong {
  color: #cf4de4;
  font-size: 24px;
}

.prd-card-list-wrap {
  width: 100%;
  background: #fff;
  padding: 54px 7% 90px;
}

.prd-card-grid {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 38px;
}

.prd-card-item {
  display: grid;
  grid-template-rows: auto auto;
  border: 0;
  border-radius: 10px;
  background: transparent;
  box-shadow: 0 8px 20px rgba(76, 29, 149, 0.08);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.prd-card-item:hover {
  box-shadow: 0 14px 28px rgba(76, 29, 149, 0.15);
  transform: translateY(-6px);
}

.prd-card-image {
  display: flex;
  width: 100%;
  aspect-ratio: 5 / 7;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.prd-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.prd-card-name {
  background: #fff;
  color: #2d1268;
  font-weight: 900;
  padding: 12px 8px 14px;
  text-align: center;
}

.prd-empty-result {
  display: none;
  color: #999;
  font-weight: 900;
  padding: 60px 20px;
  text-align: center;
}

.prd-empty-result.active {
  display: block;
}

.prd-pagination-area {
  width: min(560px, 90%);
  margin: 42px auto 0;
  background: linear-gradient(180deg, #fff, #fff8ff);
  padding: 28px 20px;
}

.prd-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: #4c1d95;
  font-weight: 900;
}

.prd-page-btn {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.prd-page-btn:disabled {
  cursor: default;
  opacity: 0.35;
}

.prd-pagination .current {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #d85ee8, #b746dc);
  color: #fff;
}

.prd-panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  background: rgba(0, 0, 0, 0.62);
  padding-top: 170px;
}

.prd-panel-overlay.active {
  display: flex;
}

.prd-filter-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(1040px, 96%);
  max-height: 72vh;
  border-radius: 0 0 18px 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  padding: 0;
}

.level-view {
  position: relative;
  width: min(1040px, 96%);
  padding: 20px;
}

.prd-panel-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  /* padding: 32px 44px 0; */
}

.prd-panel-body.level-view {
  width: auto;
  padding: 32px 44px 0;
}

.prd-series-sub {
  padding: 20px 20px 20px 0;
}

.prd-panel-title {
  margin-bottom: 22px;
  color: #2d1268;
  font-size: 20px;
  font-weight: 900;
}

.prd-option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-bottom: 34px;
}

.prd-chip {
  min-width: 120px;
  height: 42px;
  border: 1.5px solid #bfeee7;
  border-radius: 999px;
  background: #fff;
  color: #999;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  padding: 0 18px;
}

.prd-chip.active {
  border-color: #e779c8;
  background: #ffe5f8;
  box-shadow: 0 3px 0 rgba(214, 79, 166, 0.15);
  color: #d64fa6;
}

.prd-text-filter {
  width: 100%;
  height: 54px;
  margin-bottom: 28px;
  border: 1.5px solid #bfeee7;
  border-radius: 8px;
  color: #2d1268;
  font-size: 15px;
  padding: 0 16px;
}

.prd-panel-actions {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  background: rgba(255, 255, 255, 0.98);
  padding: 22px 44px 32px;
}

.prd-reset-btn,
.prd-apply-btn {
  height: 58px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

.prd-reset-btn {
  border: 2px solid #b89cff;
  background: #fff;
  color: #999;
}

.prd-apply-btn {
  border: 0;
  background: #e68bd0;
  box-shadow: 0 5px 0 rgba(211, 74, 162, 0.35);
  color: #fff;
}

.prd-series-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
}

.prd-series-main {
  background: #f4f4f4;
  padding: 18px 0;
}

.prd-series-item {
  display: block;
  width: 100%;
  height: 54px;
  border: 0;
  background: transparent;
  color: #aaa;
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
}

.prd-series-item.active {
  background: #fff;
  color: #7b4ee4;
}

.prd-series-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.prd-series-sub .prd-chip {
  width: min(360px, 100%);
}

.prd-card-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.72);
  padding: 120px 20px 40px;
}

.prd-card-modal.active {
  display: flex;
}

.prd-modal-content {
  position: relative;
  width: min(980px, 94%);
  max-height: 86vh;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  overflow: auto;
  padding: 28px;
}

.prd-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #4c1d95;
  cursor: pointer;
  font-size: 26px;
  font-weight: 900;
}

.prd-modal-card-area {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 36px;
}

.prd-main-card {
  width: 360px;
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.prd-detail-box {
  flex: 1;
  min-width: 320px;
  border-radius: 14px;
  background: #fff;
  color: #2d1268;
  padding: 24px;
}

.prd-modal-card-name {
  margin-bottom: 16px;
  color: #2d1268;
  font-size: 32px;
  font-weight: 900;
}

.prd-detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.prd-detail-table th,
.prd-detail-table td {
  border-bottom: 1px solid #f0ddff;
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.prd-detail-table th {
  width: 120px;
  color: #7b4ee4;
}

.prd-ability-box {
  margin-top: 18px;
  border: 1px solid #f0ddff;
  border-radius: 10px;
  background: #fff8ff;
  font-size: 14px;
  line-height: 1.8;
  padding: 18px;
}

.qa-list {
  display: grid;
  gap: 16px;
}

.qa-item {
  border: 4px solid #d8b5ff;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.qa-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--violet);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  padding: 22px 26px;
  text-align: left;
}

.qa-question::before {
  color: var(--primary);
  content: "Q";
  font-family: "Fredoka", "M PLUS Rounded 1c", sans-serif;
  font-size: 30px;
}

.qa-question::after {
  content: "+";
  font-size: 28px;
}

.qa-item.open .qa-question::after {
  content: "-";
}

.qa-answer {
  display: none;
  border-top: 1px solid #f0dff4;
  color: #4d3f63;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  padding: 22px 28px 26px;
}

.qa-item.open .qa-answer {
  display: block;
}

.contact-lead,
.contact-form {
  border: 1px solid #f0dff4;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.contact-lead {
  color: #574276;
  font-size: 16px;
  font-weight: 800;
  line-height: 2;
  padding: 32px 36px;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 24px;
  margin-top: 32px;
  padding: 42px;
}

.form-row {
  display: grid;
  gap: 10px;
  color: var(--violet);
  font-weight: 900;
}

.form-row b {
  display: inline-flex;
  margin-left: 8px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 2px solid #ead7ff;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  padding: 14px 16px;
}

.contact-submit {
  justify-self: center;
  min-width: 220px;
  border-radius: 999px;
  font-family: "Fredoka", "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 900;
  padding: 15px 32px;
}

.copy {
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.74);
  text-align: right;
  font-family: "Fredoka", "Noto Sans SC", sans-serif;
  font-size: 12px;
}

@media (max-width: 1040px) {
  .site-nav {
    position: absolute;
    top: 92px;
    right: 22px;
    display: none;
    width: min(320px, calc(100vw - 44px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    align-items: flex-start;
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .menu-button {
    display: grid;
  }

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

  .search-area,
  .search-area.card-search {
    grid-template-columns: 1fr;
  }

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

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .prd-card-hero h1 {
    font-size: 42px;
  }

  .prd-search-top {
    grid-template-columns: 1fr 120px;
  }

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

  .prd-modal-card-area {
    flex-direction: column;
    align-items: center;
  }

  .prd-main-card {
    width: min(360px, 90%);
  }

  .prd-series-layout {
    grid-template-columns: 1fr;
  }

  .prd-series-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .product-modal-content,
  .card-modal-content {
    grid-template-columns: 1fr;
  }

  .about-frame {
    grid-template-columns: 1fr;
  }

  .about-card-group {
    width: min(390px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .header-logo img {
    width: 82px;
  }

  .prd-series-item {
    font-size: 12px;
  }

  .social-links,
  .kayou-link {
    display: none;
  }

  .site-nav {
    top: 72px;
    right: 18px;
  }

  .hero {
    margin-top: 72px;
    padding: 36px 0 48px;
  }

  .hero-slider {
    height: 430px;
    min-height: 430px;
  }

  .slide-card {
    width: 88vw;
    min-height: 320px;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
  }

  .slide-copy {
    max-width: calc(100% - 40px);
  }

  .slide-card.prev {
    transform: translate(calc(-50% - 78vw), -50%) scale(0.82);
  }

  .slide-card.next {
    transform: translate(calc(-50% + 78vw), -50%) scale(0.82);
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .main-bg {
    padding: 58px 0 0;
  }

  .sub-page {
    padding: 112px 0 72px;
  }

  .page-inner,
  .page-inner.narrow {
    width: min(100% - 36px, 1120px);
  }

  .page-heading {
    margin-bottom: 28px;
  }

  .category-tabs {
    justify-content: flex-start;
    gap: 10px;
  }

  .tab {
    min-width: auto;
    padding: 10px 14px;
  }

  .news-archive-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  .news-arrow {
    font-size: 30px;
  }

  .news-detail-page {
    padding: 126px 20px 64px;
    background-size: 380px auto;
  }

  .news-detail-page .page-inner.narrow {
    width: 100%;
  }

  .breadcrumb {
    margin-bottom: 24px;
  }

  .news-detail-page .page-heading {
    margin-bottom: 28px;
  }

  .news-detail-page .page-heading h1 {
    font-size: 42px;
  }

  .article {
    border-radius: 18px;
    padding: 28px 20px;
  }

  .article-meta {
    flex-wrap: wrap;
  }

  .article-title {
    font-size: 25px;
  }

  .article-body h2 {
    font-size: 22px;
  }

  .info-box dl {
    grid-template-columns: 1fr;
  }

  .article-nav {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .article-nav a,
  .article-nav a:last-child,
  .article-nav .back {
    width: 100%;
    justify-self: stretch;
  }

  .link-cards,
  .product-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .search-area {
    padding: 20px;
  }

  .result-row {
    justify-content: flex-start;
  }

  .product-image {
    min-height: 260px;
  }

  .card-list-image img {
    width: min(260px, 100%);
  }

  .prd-card-page {
    padding-top: 112px;
  }

  .prd-card-hero {
    padding: 50px 0 34px;
  }

  .prd-card-search-area {
    padding: 22px 18px;
  }

  .prd-search-top {
    grid-template-columns: 1fr;
  }

  .prd-search-btn {
    width: 100%;
  }

  .prd-card-grid {
    grid-template-columns: 1fr;
  }

  .prd-panel-overlay {
    align-items: flex-end;
    justify-content: stretch;
    padding: 0;
  }

  .prd-filter-panel {
    width: 100%;
    max-height: min(82vh, 720px);
    border-radius: 20px 20px 0 0;
    padding: 0;
  }

  .prd-panel-body {
    /* padding: 26px 22px 0; */
  }

  .prd-panel-body.level-view {
    padding: 26px 22px 0;
  }

  .prd-series-layout {
    grid-template-columns: minmax(118px, 38%) 1fr;
    gap: 14px;
  }

  .prd-series-main {
    display: block;
  }

  .prd-chip {
    min-width: 96px;
  }

  .prd-panel-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 18px 22px 24px;
  }

  .prd-card-modal {
    padding-top: 92px;
  }

  .prd-modal-content {
    width: 100%;
    padding: 0;
  }

  .prd-modal-close {
    top: 6px;
    right: 6px;
  }

  .prd-detail-box {
    min-width: 0;
    width: 100%;
  }

  .hero {
    margin-top: 72px;
    padding: 38px 0 50px;
  }

  .hero-slider {
    height: 420px;
    min-height: 0;
  }

  .slide-card {
    width: 88vw;
    height: 49.5vw;
    min-height: 300px;
    aspect-ratio: auto;
    border-radius: 20px;
  }

  .slide-card.prev {
    transform: translate(calc(-50% - 68vw), -50%) scale(0.82);
  }

  .slide-card.next {
    transform: translate(calc(-50% + 68vw), -50%) scale(0.82);
  }

  .prev-btn {
    left: 14px;
  }

  .next-btn {
    right: 14px;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .main-bg {
    background-size: 520px auto;
    padding: 56px 0 0;
  }

  .section-title {
    font-size: 34px;
  }

  .news-box {
    padding: 18px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tag {
    width: max-content;
    max-width: 100%;
  }

  .about-frame {
    padding: 58px 24px;
  }

  .about-layout {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .about-card-group {
    width: min(320px, 100%);
    height: 280px;
    margin: 0;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-title-line {
    width: min(260px, 100%);
  }

  .about-content p {
    font-size: 16px;
    text-align: left;
  }

  .item-card {
    width: 170px;
  }

  .product-track .item-card {
    width: 230px;
  }

  .footer-pony-row {
    height: clamp(72px, 24vw, 104px);
    padding: 0 8px;
  }

  .footer-pony-row img,
  .footer-pony-row .center-pony {
    flex: 0 0 auto;
    width: clamp(120px, 40vw, 173px);
    height: clamp(144px, 48vw, 208px);
    padding: 0;
  }

  .footer-pony-row img + img {
    margin-left: calc(20vw - 187px);
  }

  @media (max-width: 440px) {
    .footer-pony-row img + img {
      margin-left: -23vw;
    }
  }

  .product-modal-panel,
  .card-modal-panel {
    padding: 56px 20px 24px;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .qa-question {
    padding: 18px 20px;
    font-size: 16px;
  }

  .qa-answer {
    padding: 18px 20px 22px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .section-block {
    width: min(100% - 36px, 1200px);
  }

  .section-block + .section-block {
    margin-top: 72px;
  }

  .section-head {
    align-items: flex-start;
    margin-bottom: 26px;
  }

  .news-box {
    padding: 14px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 12px;
  }

  .about-frame {
    padding: 34px 20px;
    border-radius: 20px;
  }

  .about-card-group {
    height: 288px;
  }

  .about-card-group img {
    width: 100%;
  }

  .about-body p {
    font-size: 16px;
  }

  .item-card {
    width: 170px;
  }

  .product-track .item-card {
    width: 220px;
  }

  .group-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-nav {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
  }

  .footer-policy {
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
  }

  .footer-policy a[href="/contact"] {
    display: none;
  }

  .footer-sns-desktop {
    display: none;
  }

  .footer-sns-mobile {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 24px;
  }

  .footer-sns-mobile .social-links,
  .footer-sns-mobile .kayou-link {
    display: flex;
  }

  .copy {
    margin-top: 18px;
    text-align: left;
  }
}

/* PRD page replicas */
.news-page,
.page-main,
.product-page,
.howto-page {
  background:
    linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.28)),
    url("/assets/mlp-pattern-bg.png");
  background-repeat: repeat;
  background-size: 760px auto;
  color: #2d1268;
}

.news-page,
.page-main {
  min-height: calc(100vh - 92px);
  padding: 150px 7% 90px;
}

.news-inner,
.page-main .page-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.news-page .page-title,
.page-main .page-title,
.product-hero,
.howto-page .lead-title,
.contact-main-bg .page-heading {
  margin-bottom: 40px;
  text-align: left;
}

.news-page .page-title h1,
.page-main .page-title,
.product-hero h1,
.howto-page .lead-title h1,
.contact-main-bg .page-heading h1 {
  color: #ff5db0;
  font-family: "Fredoka", "M PLUS Rounded 1c", sans-serif;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.news-page .category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.news-page .tab {
  min-width: 106px;
  border: 1.8px solid #4c1d95;
  border-radius: 999px;
  background: #fff;
  color: #4c1d95;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  padding: 12px 22px;
  text-align: center;
}

.news-page .tab.active {
  background: #4c1d95;
  color: #fff;
}

.news-page .news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-page .news-item {
  display: grid;
  grid-template-columns: 122px 1px 1fr 28px;
  align-items: center;
  gap: 22px;
  min-height: 88px;
  border: 1.8px solid #c9a9ff;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(94, 45, 168, 0.04);
  padding: 14px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-page .news-item:hover {
  box-shadow: 0 12px 28px rgba(94, 45, 168, 0.1);
  transform: translateY(-2px);
}

.news-page .divider {
  height: 44px;
  background: #d8c7ee;
}

.news-page .label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid currentColor;
  border-radius: 5px;
  background: #fff;
  font-size: 11px;
  padding: 7px 16px;
  white-space: nowrap;
}

.news-page .label.product { color: #ff2e84; }
.news-page .label.event { color: #ff8a24; }
.news-page .label.campaign { color: #ff5db0; }
.news-page .label.other { color: #4c1d95; }

.news-page .news-text h2 {
  margin-bottom: 14px;
  color: #4c1d95;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.news-page .news-text p {
  color: #261062;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.news-page .arrow {
  color: #4c1d95;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.news-page .pagination,
.product-page .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  margin: 18px 0 0;
  padding: 14px 0 18px;
  color: #4c1d95;
  font-weight: 900;
}

.news-page .pagination .current,
.product-page .pagination .current {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #4c1d95;
  color: #fff;
}

.howto-page {
  padding-top: 92px;
}

.howto-inner {
  width: min(1180px, 94%);
  margin: 0 auto;
  padding: 70px 0 100px;
}

.howto-page .lead-title p {
  color: #2d1268;
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 12px;
  text-align: center;
}

.howto-page .video-lead {
  margin: 0 auto 40px;
  color: #2d1268;
  font-size: clamp(24px, 1.8vw, 34px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.howto-page .video-lead span,
.howto-page .start-title span {
  color: #a970ff;
  margin: 0 18px;
}

.howto-page .video-box {
  width: min(980px, 100%);
  margin: 0 auto 40px;
  overflow: hidden;
  border: 2px solid #eadfff;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(76, 29, 149, 0.14);
}

.howto-page .youtube-player,
.howto-page .video-box img,
.howto-page .video-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  object-fit: cover;
}

.howto-page .video-thumb {
  position: relative;
  padding: 0;
  background: #fff;
  cursor: default;
}

.howto-page .video-thumb.is-playable {
  cursor: pointer;
}

.howto-page .video-thumb img {
  height: 100%;
}

.howto-page .video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(45, 18, 104, 0.18);
}

.howto-page .video-play::before {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(45, 18, 104, 0.25);
  content: "";
}

.howto-page .video-play::after {
  position: absolute;
  margin-left: 6px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 26px solid #4c1d95;
  content: "";
}

.howto-page .description {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(76, 29, 149, 0.08);
  color: #4c1d95;
  font-size: 15px;
  font-weight: 900;
  line-height: 2.1;
  padding: 34px 20px;
  text-align: center;
  white-space: pre-line;
}

.howto-page .start-title {
  position: relative;
  color: #4c1d95;
  font-size: 28px;
  font-weight: 900;
  padding: 56px 20px 28px;
  text-align: center;
}

.howto-page .start-title::before {
  display: block;
  width: 320px;
  height: 1px;
  margin: 0 auto 28px;
  background: #cdb7ff;
  content: "";
}

.howto-page .pdf-caption {
  margin: 0 0 18px;
  color: #8a65c9;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.howto-page .pdf-image {
  display: block;
  width: min(900px, 100%);
  margin: 0 auto 46px;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: 0 18px 40px rgba(76, 29, 149, 0.12);
  cursor: pointer;
}

.howto-page .pdf-image img {
  width: 100%;
  height: auto;
}

.howto-page .link-cards {
  display: grid;
  width: min(960px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.howto-page .link-card {
  position: relative;
  display: flex;
  min-height: 140px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  overflow: hidden;
  border: 2px solid #eadfff;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(76, 29, 149, 0.08);
  color: #4c1d95;
  font-size: 20px;
  font-weight: 900;
  padding: 28px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.howto-page .link-card:hover {
  box-shadow: 0 16px 34px rgba(76, 29, 149, 0.13);
  transform: translateY(-4px);
}

.howto-page .card-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.howto-page .simple-icon {
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.howto-page .simple-icon img {
  object-fit: contain;
}

.howto-page .link-card.pink .simple-icon {
  background: linear-gradient(135deg, #ff58b4, #ffc2e4);
  box-shadow: 0 0 0 7px rgba(255, 88, 180, 0.14);
}

.howto-page .link-card.blue .simple-icon {
  background: linear-gradient(135deg, #5f8cff, #b7d3ff);
  box-shadow: 0 0 0 7px rgba(95, 140, 255, 0.14);
}

.howto-page .link-card small {
  display: block;
  margin-top: 6px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 12px;
  opacity: 0.72;
}

.howto-page .link-card::after {
  color: #4c1d95;
  content: "›";
  font-size: 42px;
}

.product-page {
  padding-top: 150px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)),
    url("/assets/mlp-pattern-bg.png");
  background-repeat: repeat;
  background-size: 760px auto;
}

.product-hero {
  width: min(1120px, 94%);
  margin: 0 auto 40px;
}

.product-page .product-search-area {
  display: block;
  width: min(1120px, 94%);
  margin: 0 auto;
  border: 1.5px solid #e4c9ff;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: none;
  padding: 32px;
  backdrop-filter: blur(6px);
}

.product-page .search-row {
  display: grid;
  grid-template-columns: 1fr 190px 190px 150px;
  gap: 22px;
  margin-bottom: 34px;
}

.product-page .input-box,
.product-page .select-box,
.product-page .search-btn {
  height: 54px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
}

.product-page .input-box,
.product-page .select-box {
  border: 2px solid #e0b7ff;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(76, 29, 149, 0.05);
  color: #a862d9;
  padding: 0 18px;
}

.product-page .input-box::placeholder { color: #c993ee; }

.product-page .search-btn {
  border: 0;
  background: linear-gradient(135deg, #df6bef, #c34cde);
  color: #fff;
  cursor: pointer;
}

.product-page .result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  color: #4c1d95;
  font-size: 15px;
  font-weight: 900;
}

.product-page .count strong {
  color: #cf4de4;
  font-size: 24px;
}

.product-page .sort select {
  border: 0;
  border-bottom: 2px solid #d7b7ff;
  background: transparent;
  color: #4c1d95;
  font-weight: 900;
  padding: 8px 34px 8px 8px;
}

.product-list-wrap {
  width: 100%;
  background: transparent;
  padding: 54px 7% 90px;
}

.product-list-wrap .product-grid {
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px 18px;
}

.product-list-wrap .product-card {
  display: block;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  transition: transform 0.25s ease;
}

.product-list-wrap .product-card:hover { transform: translateY(-6px); }

.product-list-wrap .product-image {
  display: flex;
  min-height: 320px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(76, 29, 149, 0.06);
  padding: 26px;
}

.product-list-wrap .product-image img {
  width: 100%;
  max-width: 270px;
}

.product-list-wrap .product-name {
  margin-top: 20px;
  color: #2d1268;
  font-size: 17px;
  font-weight: 900;
}

.product-list-wrap .more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: #111;
  font-size: 13px;
  font-weight: 700;
}

.product-list-wrap .more span { font-size: 18px; }

.product-page .pagination-area {
  width: min(560px, 90%);
  margin: 60px auto 0;
  background: transparent;
  padding: 28px 20px;
}

.product-page .pagination {
  gap: 26px;
  margin: 0;
  padding: 0;
}

.product-page .pagination .current {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #d85ee8, #b746dc);
}

.product-modal {
  z-index: 99999;
  background: rgba(27, 10, 70, 0.72);
  padding: 32px;
}

.product-modal-panel {
  width: min(1120px, 96vw);
  max-height: 92vh;
  overflow: auto;
  border: 2px solid #e4c9ff;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  padding: 44px;
  position: relative;
}

.product-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #4c1d95;
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  font-weight: 900;
}

.product-modal-content {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1fr;
  align-items: center;
  gap: 42px;
}

.product-modal-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #eadfff;
  border-radius: 24px;
  background: #faf7ff;
  padding: 34px;
}

.product-modal-image img {
  width: 100%;
  max-width: 430px;
  filter: drop-shadow(0 18px 28px rgba(76, 29, 149, 0.14));
}

.product-modal-info { color: #2d1268; }

.product-detail-list {
  display: grid;
  gap: 16px;
}

.product-detail-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  border-bottom: 1px solid #eadfff;
  font-size: 15px;
  line-height: 1.8;
  padding: 16px 0;
}

.product-detail-row dt {
  color: #4c1d95;
  font-weight: 900;
}

.product-detail-row dd { font-weight: 700; }

.page-main .page-title {
  margin-bottom: 8px;
  font-size: 54px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.page-main .page-lead {
  margin-bottom: 34px;
  color: #55308c;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.page-main .content-box {
  border: 4px solid #d8b5ff;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(120, 70, 160, 0.16);
  padding: 36px 42px;
}

.page-main .item {
  border-bottom: 1px solid #f0dff4;
  padding: 26px 0;
}

.page-main .item:first-child { padding-top: 0; }
.page-main .item:last-child { border-bottom: 0; padding-bottom: 0; }

.page-main .item h2 {
  margin-bottom: 14px;
  color: #4c1d95;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.5;
}

.page-main .item p,
.page-main .item li {
  color: #3f246f;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.95;
}

.contact-main-bg {
  background: none;
  padding: 150px 0 120px;
}

.contact-main-bg .page-heading {
  width: min(980px, 88%);
  margin: 0 auto 40px;
}

.contact-wrap {
  width: min(980px, 88%);
  margin: 0 auto;
}

.contact-mail-card {
  width: min(980px, 100%);
  margin: 0 auto;
  border: 3px solid #efd8ff;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(180, 100, 190, 0.13);
  padding: 70px 48px 62px;
  text-align: center;
}

.mail-icon {
  display: flex;
  width: 96px;
  height: 96px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 230, 247, 0.95), rgba(249, 214, 240, 0.95));
  color: #4c1d95;
}

.mail-icon svg {
  width: 54px;
  height: 54px;
}

.contact-mail-card h2 {
  margin-bottom: 18px;
  color: #4c1d95;
  font-family: "M PLUS Rounded 1c", "Yu Gothic", sans-serif;
  font-size: 34px;
  font-weight: 900;
}

.mail-lead {
  margin-bottom: 38px;
  color: #4b2a78;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.9;
}

.mail-button {
  display: inline-flex;
  min-width: min(520px, 100%);
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, #f0ddff, #f7e8ff);
  box-shadow: inset 0 10px 24px rgba(130, 80, 200, 0.12);
  color: #7c4dff;
  font-family: "Fredoka", "M PLUS Rounded 1c", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 22px 34px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mail-button:hover {
  box-shadow: 0 16px 32px rgba(130, 80, 200, 0.18);
  transform: translateY(-4px);
}

.mail-button-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
}

.mail-button-icon svg {
  width: 100%;
  height: 100%;
}

.mail-note {
  margin-top: 22px;
  color: #8d78a8;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.contact-wrap .contact-lead {
  border: 3px solid #efd8ff;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(180, 100, 190, 0.15);
  color: #574276;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  padding: 34px 40px;
  text-align: center;
}

.contact-box {
  margin-top: 34px;
  border: 1px solid #f0dff4;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(120, 70, 160, 0.16);
  padding: 46px;
}

.contact-box .form-row {
  display: block;
  margin-bottom: 26px;
  color: inherit;
}

.contact-box .form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #4c1d95;
  font-weight: 900;
}

.required,
.optional {
  display: inline-flex;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 10px;
}

.required { background: #ff5db0; }
.optional { background: #d8b5ff; }

.contact-box input,
.contact-box select,
.contact-box textarea {
  width: 100%;
  border: 2px solid #ead7ff;
  border-radius: 16px;
  background: #fff;
  color: #574276;
  font: inherit;
  outline: 0;
  padding: 15px 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-box textarea {
  min-height: 190px;
  line-height: 1.8;
  resize: vertical;
}

.contact-box input:focus,
.contact-box select:focus,
.contact-box textarea:focus {
  border-color: #ff9bd0;
  box-shadow: 0 0 0 4px rgba(255, 93, 176, 0.12);
}

.contact-box .form-note {
  margin-top: 10px;
  color: #8d78a8;
  font-size: 13px;
  line-height: 1.7;
}

.privacy-check {
  margin: 34px 0 26px;
  border: 1px solid #f4d6ea;
  border-radius: 18px;
  background: #fff6fc;
  color: #574276;
  font-size: 14px;
  line-height: 1.8;
  padding: 22px;
}

.privacy-check label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-weight: 700;
}

.privacy-check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.privacy-check a {
  color: #e85eaa;
  font-weight: 900;
  text-decoration: underline;
}

.submit-area { text-align: center; }

.contact-box .contact-submit {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5db0, #8d5cff);
  box-shadow: 0 14px 30px rgba(180, 80, 180, 0.25);
  color: #fff;
  cursor: pointer;
  font-family: "Fredoka", "M PLUS Rounded 1c", sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 16px 58px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-box .contact-submit:hover {
  box-shadow: 0 18px 36px rgba(180, 80, 180, 0.32);
  transform: translateY(-4px);
}

.contact-sent {
  margin-top: 24px;
}

@media (max-width: 1000px) {
  .howto-page { background-size: 520px auto; }

  .howto-inner {
    padding: 50px 0 70px;
  }

  .howto-page .description {
    font-size: 14px;
    text-align: left;
  }

  .howto-page .start-title { font-size: 22px; }
  .howto-page .pdf-image { border-radius: 16px; }

  .howto-page .link-cards {
    grid-template-columns: 1fr;
  }

  .howto-page .link-card {
    min-height: 120px;
    font-size: 17px;
  }

  .howto-page .simple-icon {
    font-size: 28px;
  }

  .product-hero h1 { font-size: 42px; }

  .product-page .search-row {
    grid-template-columns: 1fr;
  }

  .product-page .result-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .product-list-wrap .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 18px;
  }
}

@media (max-width: 900px) {
  .news-page,
  .page-main {
    padding: 128px 20px 20px;
    background-size: 520px auto;
  }

  .contact-main-bg {
    padding: 118px 0 90px;
  }

  .contact-mail-card {
    padding: 46px 22px 42px;
  }

  .mail-icon {
    width: 78px;
    height: 78px;
  }

  .mail-icon svg {
    width: 44px;
    height: 44px;
  }

  .contact-mail-card h2 {
    font-size: 28px;
  }

  .mail-lead {
    font-size: 15px;
  }

  .mail-button {
    min-width: 0;
    width: 100%;
    padding: 18px 16px;
    font-size: 20px;
  }

  .mail-button-icon {
    width: 34px;
    height: 34px;
  }

  .howto-page {
    padding-top: 72px;
  }
  .howto-inner {
    width: auto;
    margin: 0 20px;
    padding: 56px 0 100px;
  }

  .product-hero {
    width: auto;
    margin: 0 20px 40px;
  }

  .product-page {
    padding-top: 128px;
  }

  .product-page .product-search-area {
    width: auto;
    margin: 0 20px;
    padding: 20px;
  }

  .prd-card-page {
    padding-top: 72px;
  }

  .prd-card-hero {
    padding: 56px 0 40px;
  }

  .prd-card-search-area {
    width: auto;
    margin: 0 20px;
  }

  .prd-card-hero {
    width: auto;
    margin: 0 20px;
  }

  .news-page .page-title h1,
  .page-main .page-title,
  .contact-main-bg .page-heading h1,
  .howto-page .lead-title h1 {
    font-size: 42px;
  }

  .news-page .category-tabs {
    gap: 10px;
  }

  .news-page .tab {
    min-width: auto;
    padding: 10px 14px;
  }

  .news-page .news-item {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 22px;
  }

  .news-page .divider { display: none; }
  .news-page .news-item > div:first-child {
    grid-column: 1;
    grid-row: 1;
  }

  .news-page .news-text {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .news-page .arrow {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    font-size: 34px;
  }

  .page-main .content-box {
    padding: 28px 24px;
  }

  .contact-box {
    padding: 34px 22px;
  }
}

@media (max-width: 560px) {
  .product-list-wrap .product-grid {
    grid-template-columns: 1fr;
  }

  .product-modal-panel {
    padding: 28px 20px;
  }

  .product-modal-content {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .product-detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}



@media (max-width: 720px) {
  .product-list-wrap {
    padding: 42px 20px 72px;
  }

  .product-list-wrap .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 10px;
  }

  .product-list-wrap .product-image {
    min-height: clamp(110px, 29vw, 150px);
    padding: 10px;
  }

  .product-list-wrap .product-image img {
    max-width: 100%;
  }

  .product-list-wrap .product-name {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.35;
  }

  .product-list-wrap .more {
    gap: 6px;
    margin-top: 8px;
    font-size: 11px;
  }

  .product-list-wrap .more span {
    font-size: 14px;
  }

  .prd-card-list-wrap {
    padding: 42px 20px 72px;
  }

  .prd-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 10px;
  }

  .prd-card-name {
    min-height: 40px;
    font-size: 11px;
    line-height: 1.35;
    padding: 8px 6px 10px;
  }

  .article,
  .main-visual,
  .info-box,
  .description,
  .search-area,
  .product-image,
  .card-list-image,
  .prd-card-search-area,
  .prd-modal-content,
  .howto-page .description,
  .product-page .product-search-area,
  .product-list-wrap .product-image,
  .privacy-check {
    border-radius: 20px;
  }

  .prd-filter-panel {
    padding: 0px;
    border-radius: 20px 20px 0 0;
  }

  .prd-series-sub {
    padding: 20px 20px 20px 0;
  }

  .prd-panel-actions {
    padding: 20px;
  }

  .prd-reset-btn,
  .prd-apply-btn {
    font-size: 18px;
    height: 50px;
  }
}
