/* =================================
  Base
================================= */

:root {
  --pink: #ff2f74;
  --pink2: #ff6b45;
  --ink: #151820;
  --muted: #68707d;
  --line: #eceef3;
  --bg: #fff7fb;
  --card: #fff;
  --shadow: 0 2px 14px rgba(22, 26, 36, .08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "BIZ UDPGothic", sans-serif;
  background: #fff;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ff2f74;
}

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

/* =================================
  Header
================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .05);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 210px minmax(260px, 560px) 1fr;
  align-items: center;
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 28px 12px;
}

.site-logo {
  margin: 0;
  line-height: 1;
}

.site-logo a {
  display: inline-flex;
}

.site-logo svg {
  width: 150px;
  height: auto;
}

.site-logo__text, .footer-logo {
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 34px;
  line-height: .85;
}

.site-logo__text span, .footer-logo span {
  color: var(--pink);
}

.site-logo__text small, .footer-logo small {
  display: block;
  font-size: 12px;
  letter-spacing: .45em;
  margin-top: 8px;
}

.site-search {
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 16px;
  box-shadow: inset 0 2px 12px rgba(0, 0, 0, .025);
}

.site-search input {
  border: 0;
  outline: 0;
  width: 100%;
  font-weight: 500;
  color: #777;
  background: transparent;
}

.site-search button {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #777;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  align-items: center;
  font-size: 12px;
}

.header-actions a {
  display: grid;
  place-items: center;
  gap: 4px;
}

.header-actions span {
  font-size: 12px;
  line-height: 1;
}

.header-actions__icon {
  width: 30px;
}

/* =================================
  Category
================================= */

.category-icons--nav {
  border-top: 1px solid rgba(0, 0, 0, .02);
}

.category-icons__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 12px 28px;
}

.category-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  padding: 10px;
  border-radius: 999px;
}

.category-icons--cards .category-icons__inner {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 16px;
  margin-top: -2px;
  justify-content: space-between;
}

.category-icons--cards .category-icon {
  flex-direction: column;
  gap: 9px;
  min-width: 115px;
  border-radius: 18px;
}

.category-icon.is-active {
  color: var(--pink);
  background: #fff0f6;
}

.category-icon__circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f5f5f5;
  font-size: 28px;

}

.category-icons--nav .category-icon__circle {
  width: 20px;
  height: 20px;
  background: transparent;
  font-size: 18px;
}

/* =================================
  Hero
================================= */

.hero-slider {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero-slider__track {
  display: flex;
}

.hero-slide {
  flex: 0 0 100%;
}

.hero-slide__link {
  display: block;
  justify-self: center;
  width: 1000px;
  height: auto;
  margin-inline: auto;
  background: #fff;  
}

.hero-slide__image {
  width: 100%;
  object-fit: contain;
}

.site-main {
  overflow: hidden;
}

.hero-slider {
  background: linear-gradient(90deg, #fff, #fff2f7 48%, #fff);
  position: relative;
}

.hero-slider__track {
  display: flex;
}

.hero-slide {
  flex: 0 0 100%;
}

.hero-slide__inner {
  min-height: 360px;
  max-width: 1440px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
}

.hero-slide__body {
  text-align: center;
}

.hero-slide__eyebrow {
  font-size: 21px;
  font-weight: 900;
}

.hero-slide__eyebrow span, .hero-slide h1 span {
  color: var(--pink);
}

.hero-slide h1, .hero-slide h2 {
  font-size: 52px;
  line-height: 1.15;
  margin: 12px 0 10px;
  letter-spacing: .04em;
}

.hero-slide h1::first-letter, .hero-slide h2::first-letter {
  color: var(--pink);
}

.hero-slide__body>p:not(.hero-slide__eyebrow) {
  font-size: 20px;
  font-weight: 800;
}

.hero-tags {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.hero-tags span {
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .07);
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 900;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, var(--pink), var(--pink2));
  color: #fff;
  border-radius: 999px;
  padding: 18px 36px;
  font-weight: 900;
  font-size: 19px;
  box-shadow: 0 12px 28px rgba(255, 47, 116, .25);
}

.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: #ddd;
}

.hero-dots .is-active {
  background: var(--pink);
}

/* =================================
  Section
================================= */

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 34px 28px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: 24px;
  margin: 0;
}

.section-heading a {
  font-weight: 900;
  font-size: 13px;
}






.archive-hero {
  position: relative;
  padding: 70px 28px;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.archive-hero--all {
  background-image: url("../img/hero/hero-all.png");
}

.archive-hero--beauty {
  background-image: url("../img/hero/hero-beauty.png");
}

.archive-hero--gadget {
  background-image: url("../img/hero/hero-gadget.png");
}

.archive-hero--kitchen {
  background-image: url("../img/hero/hero-kitchen.png");
}

.archive-hero--interior {
  background-image: url("../img/hero/hero-interior.png");
}

.archive-hero--fashion {
  background-image: url("../img/hero/hero-fashion.png");
}

.archive-hero--sports {
  background-image: url("../img/hero/hero-sports.png");
}

.archive-hero--baby {
  background-image: url("../img/hero/hero-baby.png");
}

.archive-hero--favorites {
  background-image: url("../img/hero/favorites.png");
}

.archive-hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

.archive-hero h1,
.archive-hero p {
  position: relative;
  z-index: 1;
}

/* =================================
  Product Cards
================================= */

.product-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 180px;
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 22px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card__image {
  display: block;
  position: relative;
  aspect-ratio: 1/1;
  background: #f7f8fb;
  overflow: hidden;
}

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

.product-card__rank {
  position: absolute;
  top: 0;
  left: 0;
  background: #ff9416;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 0 0 14px 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 20px;
}

.product-card__wish {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--pink);
  font-size: 22px;
  cursor: pointer;
}

.product-card__wish svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
}

.product-card__badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 5px 8px;
  border-radius: 999px;
}

.bdg-t {
  background: #ff2f74;
}

.bdg-s {
  background: #ff4f9b;
}

.bdg-tv {
  background: #ff6b45;
}

.bdg-sale {
  background: #111;
}

.product-card__body {
  padding: 12px;
}

.product-card__maker {
  color: #a7aaad;
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
}

.product-card__title {
  font-size: 15px;
  line-height: 1.35;
  margin: 0 0 7px;
}

.product-card__desc {
  font-size: 12px;
  color: #333;
  margin: 0 0 8px;
  line-height: 1.5;
}

.product-card__price {
  font-size: 19px;
  font-family: "Montserrat", sans-serif;
  margin: 0 0 10px;
  color: #fd4f84;
}

.product-card__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-bottom: 7px;
}

.btn-shop {
  display: grid;
  place-items: center;
  min-height: 34px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 12px;
  border: 1px solid var(--line);
  color: #fff;
  transition: .25s ease;
}

.btn-shop:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  color: #fff;
}

.btn-shop--amazon {
  background: #f90;
}

.btn-shop--rakuten {
  background: #c80000;
}

.btn-shop--official {
  background: #4f4f4f;
  color: #fff;
  width: 100%;
}

.pr-card {
  border-color: var(--pink);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 318px;
}

.pr-card__label {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--pink);
  color: #fff;
  padding: 7px 12px;
  border-radius: 0 0 10px 0;
  font-weight: 900;
  font-size: 12px;
}

.pr-card__body {
  padding: 48px 12px 12px;
}

.pr-card strong {
  font-size: 26px;
  color: #e60012;
}

.pr-card p {
  font-weight: 900;
  font-size: 20px;
  line-height: 1.45;
}

.pr-card a {
  display: inline-block;
  color: #fff;
  padding-block: 20px;
  border-radius: 6px;
}

.pr-card small {
  padding: 10px;
  color: #777;
}

/* =================================
  Special
================================= */

.special-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.special-card {
  position: relative;
  min-height: 130px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: color 0.3s ease;
}

.special-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.4);
  z-index: 1;
}

.special-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.special-card strong,
.special-card span {
  position: relative;
  z-index: 1;
}

.special-card strong {
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.8px;
}

.more-link {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  background: #fff;
  border-radius: 999px;
  width: max-content;
  padding: 4px 14px;
  font-size: 10px;
  position: relative;
  z-index: 2;
}

.more-link-arrow {
  width: 14px;
  height: 14px;
  background: transparent;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #141820;
  transition: .3s;
}

.special-card:hover .more-link-arrow {
  color: var(--pink);
}


/* =================================
  SNS
================================= */

.sns-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.sns-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  min-height: 140px;
  padding-inline: 12px;
  padding-block: 10px;
}

.sns-card b {
  position: relative;
  overflow: hidden;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.sns-card svg {
  width: 30px;
  height: auto;
  color: #fff;
  background: #000;
  border-radius: 8px;
  padding: 2px;
}

.sns-card b span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: #111;
  color: #fff;
  border-radius: 7px;
  margin-right: 8px;
}

.sns-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sns-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .4);
  z-index: 1;
}

.sns-card em {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 2;
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

/* =================================
  Shop Banners
================================= */

.shop-banners {
  max-width: 1240px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 0 28px;
}

.shop-banner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .05);
}

.shop-banner-link {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border-radius: 999px;
  width: max-content;
  z-index: 1;
  font-size: 14px;
}

.shop-banner-link::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 2px;
  transform: rotate(45deg);
  transition: .3s ease;
}

.shop-banner--amazon {
  color: #f90;
}

.shop-banner--rakuten {
  color: #c70100;
}

/* =================================
  Footer
================================= */

.site-footer {
  background: linear-gradient(135deg, #121923, #091018);
  color: #fff;
  padding: 42px 28px 18px;
}

.site-footer__inner {
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 60px;
}

.footer-logo span {
  color: var(--pink);
}

.footer-brand a {
  display: block;
  width: 220px;
}

.footer-brand p {
  color: #bdc5d2;
  font-size: 13px;
  line-height: 1.8;
}

.footer-sns {
  display: flex;
  gap: 20px;
  font-size: 24px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.footer-cols h2 {
  font-size: 14px;
}

.footer-cols a {
  display: block;
  color: #d8dde6;
  font-size: 13px;
  margin: 10px 0;
  transition: color 0.3s ease;
}


.footer-cols a:hover {
  display: block;
  color: #d8dde6;
  font-size: 13px;
  margin: 10px 0;
  color: #ff2f74;
}

.ad-note {
  border: 1px solid var(--pink);
  border-radius: 8px;
  padding: 10px;
  color: #d8dde6;
  font-size: 12px;
}

.copyright {
  margin-block: 30px 0;
  text-align: center;
  color: #cbd1dc;
  font-size: 10px;
}

/* =================================
  Page Top
================================= */

.page-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 24px;
}

/* =================================
  Archive
================================= */

.archive-hero {
  text-align: center;
  padding: 70px 28px;
}

.archive-hero__en {
  color: #fff;
  border-radius: 999px;
  display: inline;
  padding: 8px 30px;
  background: linear-gradient(90deg, #fc4797 0%, #fd8b2b 100%);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .2em;
}

.archive-hero h1 {
  font-size: 42px;
  letter-spacing: 0.5rem;
  color: #ff2f74;
}

/* =================================
  Single Product
================================= */

.single-product {
  max-width: 1040px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 0 28px;
}

.single-product__image {
  background: #f7f8fb;
  border-radius: 20px;
  overflow: hidden;
}

.single-product__price {
  font-size: 28px;
  font-weight: 900;
}

.single-product__buttons {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

/* =================================
  Utility / Common
================================= */

.post-card {
  max-width: 760px;
  margin: 0 auto 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.empty-text {
  padding: 40px;
  color: var(--muted);
  text-align: center;
}

.pagination {
  margin-top: 28px;
  text-align: center;
}

/* =================================
  Responsive
================================= */

@media (max-width:900px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 12px 16px;
  }

  .site-search {
    grid-column: 1/-1;
    grid-row: 2;
  }

  .header-actions a {
    display: none;
  }

  .site-logo svg {
    width: 120px;
  }

  .hero-slide__inner {
    grid-template-columns: 1fr;
    min-height: 520px;
    padding: 24px 18px;
  }

  .hero-slide__left, .hero-slide__right {
    display: none;
  }

  .hero-slide h1, .hero-slide h2 {
    font-size: 34px;
  }

  .category-icons--cards .category-icons__inner {
    margin: 0 16px;
    padding: 12px;
  }

  .category-icon {
    font-size: 12px;
  }

  .category-icons--cards .category-icon {
    min-width: 82px;
  }

  .category-icon__circle {
    width: 54px;
    height: 54px;
  }

  .section {
    padding: 28px 16px;
  }

  .product-scroll {
    grid-auto-columns: 168px;
  }

  .special-grid, .sns-grid, .shop-banners, .site-footer__inner, .footer-cols, .single-product {
    grid-template-columns: 1fr;
  }

  .shop-banner {
    gap: 24px;
    font-size: 28px;
  }

  .site-footer {
    padding: 36px 20px;
  }

  .footer-cols {
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading h2 {
    font-size: 20px;
  }
}

/* =================================
  about
================================= */

.about-hero {
  position: relative;
  padding: 70px 28px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(252, 71, 151, .18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(253, 139, 43, .18), transparent 36%),
    #fff7fb;
  overflow: hidden;
}

.about-hero__en {
  display: inline-block;
  margin-bottom: 1.4rem;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: .22em;
  background: linear-gradient(90deg, #fc4797, #fd8b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero h1 {
  font-size: 42px;
  letter-spacing: 0.3rem;
  margin: 0 0 1.6rem;
  line-height: 1.25;
}

.about-hero p {
  position: relative;
  z-index: 1;
}

.about-section {
  padding: 6rem 2.8rem;
  background: #fff;
}

.about-section__inner {
  max-width: 920px;
  margin: 0 auto;
}

.about-block {
  margin-bottom: 4.8rem;
  padding: 3.2rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.about-block h2 {
  margin: 0 0 1.8rem;
  font-size: 26px;
  line-height: 1.45;
  letter-spacing: 0.1rem;
}

.about-block h2::first-letter {
  color: var(--pink);
}

.about-block p {
  margin: 0 0 1.4rem;
  color: #333;
  font-size: 18px;
  line-height: 2;
}

.about-block p:last-child {
  margin-bottom: 0;
}

.about-card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-bottom: 4.8rem;
}

.about-card {
  padding: 2.4rem 2rem;
  border-radius: 1.8rem;
  background: linear-gradient(135deg, #fff7fb, #fff);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.about-card span {
  display: flex;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #fc4797, #fd8b2b);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  justify-content: center;
  margin-inline: auto;
}

.about-card h3 {
  margin: 0 0 1rem;
  font-size: 26px;
  text-align-last: center;
}

.about-card p {
  margin: 0;
  color: var(--muted);
}

.about-list {
  display: grid;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  position: relative;
  padding-left: 2.4rem;
  font-size: 1.5rem;
  line-height: 1.8;
}

.about-list li::before {
  content: "";
  position: absolute;
  top: .85em;
  left: 0;
  width: .9rem;
  height: .9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #fc4797, #fd8b2b);
}

.about-block--notice {
  background: #fff7fb;
  border-color: rgba(252, 71, 151, .25);
}

@media (max-width: 768px) {
  .about-hero {
    padding: 6rem 1.8rem 5rem;
  }

  .about-section {
    padding: 4rem 1.6rem;
  }

  .about-block {
    padding: 2.4rem 2rem;
  }

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

#about-affiliate {
  scroll-margin-top: 160px;
}





.legal-hero {
  position: relative;
  padding: 70px 28px;
  text-align: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(252, 71, 151, .18), transparent 32%),
    radial-gradient(circle at 85% 30%, rgba(253, 139, 43, .16), transparent 34%),
    linear-gradient(135deg, #fff7fb 0%, #fff 55%, #fff3ec 100%);
  overflow: hidden;
}

.legal-hero::before {
  content: "BUZZ STOCK";
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 6rem;
  font-weight: 900;
  letter-spacing: .08em;
  color: rgba(252, 71, 151, .06);
  white-space: nowrap;
}

.legal-hero__en {
  display: inline-block;
  margin-bottom: 1.4rem;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: .24em;
  background: linear-gradient(90deg, #fc4797, #fd8b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-hero h1 {
  font-size: 42px;
  letter-spacing: 0.5rem;
  margin: 0 0 1.6rem;
  line-height: 1.25;
}

.legal-hero p {
  position: relative;
  z-index: 1;
}

.legal-section {
  padding: 6rem 2.8rem 8rem;
  background: #fff;
}

.legal-section__inner {
  max-width: 920px;
  margin: 0 auto;
}

.legal-card {
  position: relative;
  margin-bottom: 2.4rem;
  padding: 3.2rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.legal-card::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: .5rem;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fc4797, #fd8b2b);
}

.legal-card h2 {
  margin: 0 0 1.6rem;
  font-size: 24px;
  line-height: 1.45;
}

.legal-card p {
  margin: 0 0 1.4rem;
  color: #333;
  font-size: 16px;
  line-height: 2;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card--accent {
  border-color: rgba(252, 71, 151, .25);
  background: linear-gradient(135deg, #fff7fb, #fff);
}

.legal-date {
  margin-top: 3.2rem;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 5.6rem 1.8rem 4.8rem;
  }

  .legal-hero::before {
    display: none;
  }

  .legal-section {
    padding: 4rem 1.6rem 6rem;
  }

  .legal-card {
    padding: 2.4rem 2rem;
  }

  .legal-card h2 {
    font-size: 2rem;
  }

  .legal-card p {
    font-size: 1.4rem;
  }
}


/* ハートボタン：保存済み状態 */
.product-card__wish.is-saved {
  background: #fff0f7;
  color: var(--pink);
}

/* お気に入りモーダル */
.bz-fav-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
}
.bz-fav-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.bz-fav-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
}
.bz-fav-modal__panel {
  position: relative;
  z-index: 1;
  background: #fff;
  width: 400px;
  max-width: 100%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 24px rgba(0,0,0,.12);
  overflow: hidden;
}
.bz-fav-modal.is-open .bz-fav-modal__panel {
  transform: translateX(0);
}
.bz-fav-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.bz-fav-modal__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}
.bz-fav-modal__count {
  font-size: 11px;
  font-weight: 700;
  background: #e91e8c;
  color: #fff;
  border-radius: 100px;
  padding: 2px 8px;
  margin-left: 2px;
}
.bz-fav-modal__close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f5f5f5;
  border: none;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: background .12s;
}
.bz-fav-modal__close:hover { background: #efefef; }

.bz-fav-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bz-fav-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  gap: 8px;
}
.bz-fav-empty__icon { font-size: 48px; display: block; margin-bottom: 4px; }
.bz-fav-empty p     { font-size: 14px; color: #888; }
.bz-fav-empty small { font-size: 12px; color: #bbb; }

.bz-fav-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 12px;
  padding: 12px;
  position: relative;
  transition: box-shadow .14s;
}
.bz-fav-item:hover { box-shadow: 0 3px 12px rgba(0,0,0,.07); }
.bz-fav-item__img {
  width: 72px; height: 72px;
  border-radius: 8px; background: #f5f5f5;
  flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.bz-fav-item__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bz-fav-item__info    { flex: 1; min-width: 0; padding-right: 24px; }
.bz-fav-item__name {
  font-size: 13px; font-weight: 500; color: #1a1a1a;
  line-height: 1.4; margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.bz-fav-item__price   { font-size: 15px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.bz-fav-item__btns    { display: flex; gap: 4px; flex-wrap: wrap; }
.bz-fav-btn           { padding: 5px 10px; border-radius: 5px; font-size: 10px; font-weight: 700; text-decoration: none; border: none; cursor: pointer; font-family: inherit; display: inline-block; }
.bz-fav-btn--amz      { background: #f5a623; color: #fff; }
.bz-fav-btn--rak      { background: #e91e1e; color: #fff; }
.bz-fav-btn--off      { background: #1a1a1a; color: #fff; }
.bz-fav-item__del {
  position: absolute; top: 8px; right: 8px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #f5f5f5; border: none; font-size: 10px; color: #888;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .12s;
}
.bz-fav-item__del:hover { background: #ffebee; color: #e91e1e; }

@media (max-width: 768px) {
  .bz-fav-modal__panel { width: 100%; }
}




.more-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.more-link::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 2px;
  transform: rotate(45deg);
  transition: .3s ease;
}

.more-link:hover::after {
  transform: rotate(45deg) translate(2px, -2px);
}


/* =================================
  Favorites Page
================================= */

.favorites__loading {
  padding: 6rem 0;
  color: #aaa;
  text-align: center;
}

.favorites__empty {
  display: none;
  padding: 8rem 2rem;
  text-align: center;
}

.favorites__empty-icon {
  display: inline-grid;
  place-items: center;
  width: 7.2rem;
  height: 7.2rem;
  margin-bottom: 1.6rem;
  border-radius: 50%;
  color: var(--pink);
  background: #fff0f6;
}

.favorites__empty-icon svg {
  width: 3.6rem;
  height: 3.6rem;
}

.favorites__empty-title {
  margin: 0 0 .8rem;
  color: var(--ink);
  font-size: 1.6rem;
  font-weight: 900;
}

.favorites__empty-text {
  margin: 0 0 2.4rem;
  color: var(--muted);
  font-size: 1.3rem;
}

.favorites__empty-button {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: 1.2rem 2.8rem;
  border-radius: 999px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fc4797, #fd8b2b);
  box-shadow: 0 10px 24px rgba(252, 71, 151, .24);
}

.favorites__empty-button::after {
  content: "";
  width: .8rem;
  height: .8rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 2px;
  transform: rotate(45deg);
}

.favorites__header {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.favorites__count-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.4rem;
}

.favorites__count {
  color: var(--ink);
  font-weight: 900;
}

.favorites__clear-button {
  padding: .6rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #999;
  font: inherit;
  font-size: 1.2rem;
  background: #fff;
  cursor: pointer;
  transition: .3s ease;
}

.favorites__clear-button:hover {
  color: var(--pink);
  border-color: #ffc3d7;
  background: #fff7fb;
}

.favorites__grid {
  display: none;
}

.favorite-card {
  transition: opacity .3s ease, transform .3s ease;
}

.favorite-card.is-removing {
  opacity: 0;
  transform: scale(.95);
}

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

.favorite-card__remove.is-saved {
  color: var(--pink);
}

.favorite-card__price {
  color: #fd4f84;
}

.favorites-toast {
  position: fixed;
  bottom: 7.2rem;
  left: 50%;
  z-index: 9999;
  padding: 1rem 2rem;
  border-radius: 999px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: inherit;
  white-space: nowrap;
  pointer-events: none;
  background: #1a1a1a;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity .3s ease;
}

.favorites-toast.is-visible {
  opacity: 1;
}

@media (max-width: 768px) {
  .favorites__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .favorites__empty {
    padding: 6rem 1.6rem;
  }
}


/* ===== 固定ページ共通 ===== */
.archive-hero--page {
  background: linear-gradient(135deg, #fff0f7 0%, #fce8f5 50%, #fff5fb 100%);
}
.archive-hero--page::before {
  background-image: none;
}

.page-content {
  max-width: 640px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.9;
  color: #333;
}
.page-content p {
  margin-bottom: 1.4em;
}
.page-content h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 2em 0 .8em;
  padding-left: 12px;
  border-left: 3px solid #e91e8c;
}


.archive-hero--tag {
  background: linear-gradient(135deg, #fff8e1 0%, #fff3e0 50%, #fce4ec 100%);
}
.archive-hero--tag::before { background-image: none; }