/* =========================================================
   Cleaned CSS - consolidated duplicate selectors and media queries
   Source: Pasted code(9).css
========================================================= */


/* ==============================
   01. DESIGN TOKENS
============================== */

:root {
  --color-text: #2d2d2d;
  --color-white: #ffffff;
  --color-bg: #ffffff;
  --color-bg-soft: #f3f3f3;
  --color-bg-warm: #f7f5f1;
  --color-line: #e5e5e5;
  --color-muted: #777777;
  --font-en: Calibri, Arial, sans-serif;
  --font-ja: "Yu Gothic", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --fz-xs: clamp(10px, 0.7vw, 12px);
  --fz-sm: clamp(12px, 0.85vw, 14px);
  --fz-md: clamp(13px, 1vw, 16px);
  --fz-lg: clamp(16px, 1.4vw, 20px);
  --fz-title: clamp(26px, 2.4vw, 38px);
  --fz-fv-title: clamp(30px, 3vw, 42px);
  --space-section-pc: clamp(80px, 7vw, 110px);
  --space-section-sp: 64px;
  --ease: 0.25s ease;
}


/* ==============================
   02. RESET / BASE
============================== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: 72px;
  font-family: var(--font-ja);
  color: var(--color-text);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
}


/* ==============================
   03. HEADER / GLOBAL NAV
============================== */

.header-2026 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-line);
  z-index: 1000;
}

.header-2026__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.header-2026__logo img {
  height: 45px;
  display: block;
}

.header-2026__nav {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.primary-navigation-list--1st {
  display: flex;
  align-items: center;
  gap: 40px;
}

.prnai--1st {
  cursor: pointer;
}

.prnai--1st > a,
.prnai--1st > span,
.js-category-btn,
.js-brand-btn {
  font-family: "Calibri", "Arial", sans-serif;
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-text);
  text-decoration: none;
  line-height: 1;
}

.header-2026__right {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-2026__corp {
  font-size: var(--fz-sm);
  font-weight: 500;
  color: #2d2d2d !important;
  text-decoration: none;
}

.header-2026__icon {
  width: 28px;
  height: 28px;
  display: block;
}

.header-2026__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-2026__search-inline,
.header-2026__search-bar form,
.search-content form {
  position: relative;
}

.header-2026__search-inline {
  display: block;
}

.header-2026__search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 17px;
  height: 17px;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.75;
  z-index: 5;
  display: block;
}

.header-2026__search-inline input,
.header-2026__search-bar input,
.search-content input {
  width: 355px;
  height: 42px;
  padding: 0 16px 0 46px;
  border: 1px solid var(--color-text);
  border-radius: 999px;
  background: var(--color-white);
  font-size: var(--fz-md);
  color: var(--color-text);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  box-shadow: none;
  position: relative;
  z-index: 1;
  transition: border-color .25s ease,
    box-shadow .25s ease;
}

.header-2026__search-inline input:focus,
.header-2026__search-bar input:focus,
.search-content input:focus {
  outline: none;
  border-color: var(--color-text);
  box-shadow: 0 0 0 1px rgba(45,45,45,.08);
  background: var(--color-white);
}

.header-2026__search-inline input::placeholder,
.header-2026__search-bar input::placeholder,
.search-content input::placeholder {
  color: #9a9a9a;
  opacity: 1;
}

.header-2026__search-trigger {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.header-2026__search-trigger img {
  width: 28px;
  height: 28px;
  display: block;
}

.header-2026__search-bar {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: var(--color-white);
  padding: 16px;
  border-top: 1px solid var(--color-line);
  z-index: 999;
}

.header-2026__search-bar input {
  width: 100%;
}

.search-open .header-2026__search-bar {
  display: block;
  border-top: none;
  border-bottom: 1px solid #e5e5e5;
}

.category-bar {
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  z-index: 30;
}

.category-bar__top {
  height: 40px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.32) 0%,
    rgba(0,0,0,0.18) 55%,
    rgba(0,0,0,0.06) 100%
  );
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: var(--fz-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.category-bar__top span + span {
  position: relative;
  padding-left: 28px;
}

.category-bar__top span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 15px;
  background: rgba(255,255,255,0.45);
  transform: translateY(-50%);
}

.category-bar__expand {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  z-index: 998;
}

.category-open .category-bar__expand,
.brand-open .category-bar__expand,
.search-open .category-bar__expand {
  max-height: 420px;
}

.category-content,
.brand-content,
.search-content {
  display: none;
}

.category-open .category-content,
.brand-open .brand-content,
.search-open .search-content {
  display: block;
}

.category-bar__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 18px;
}

.category-bar__inner a {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-text);
  font-size: var(--fz-sm);
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: 0.25s ease;
}

.category-bar__inner a:hover {
  background: var(--color-text);
  color: #fff;
  transform: translateY(-2px);
}

.search-content .category-bar__inner {
  display: block;
}

.search-content input {
  width: 100%;
}

.header-2026__menu-trigger {
  display: none;
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  width: 28px;
  height: 20px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1200;
}

.header-2026__menu-trigger span {
  display: block;
  width: 100%;
  background: #2d2d2d;
  border-radius: 999px;
  transition: transform .3s ease,
    opacity .3s ease;
  margin: 0 !important;
  height: 1.0px !important;
  border: none !important;
}

.search-open .category-bar__expand {
  max-height: 0;
  display: none;
}


/* ==============================
   04. FIRST VIEW
============================== */

.top-fv {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
}

.top-fv__inner {
  position: relative;
  width: 100%;
  margin: 0;
}

.top-fv__slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 72px);
  min-height: 560px;
  max-height: 860px;
}

.top-fv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.top-fv__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.top-fv__image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.top-fv__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}

.top-fv__slide.is-active .top-fv__image {
  animation: topFvZoom 6s ease forwards;
}

.top-fv__content {
  position: absolute;
  top: 80%;
  left: clamp(20px, 3vw, 40px);
  transform: translateY(-50%);
  z-index: 3;
  width: min(90%, 640px);
}

.top-fv__label {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.18em;
}

.top-fv__title {
  margin: 20px 0 0;
  font-family: var(--font-en);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.16em;
}

.top-fv__text {
  margin: 10px 0 0;
  font-family: var(--font-ja);
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.12em;
}

.top-fv__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(150px, 14vw, 220px);
  height: clamp(32px, 3vw, 37px);
  margin-top: 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  box-sizing: border-box;
  font-family: var(--font-en);
  font-size: clamp(16px, 1.6vw, 25px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

.top-fv__button:hover {
  opacity: 0.9;
}

.top-fv__slide.is-light {
  color: #ffffff;
}

.top-fv__slide.is-dark {
  color: var(--color-text);
}

.top-fv__slide.is-light .top-fv__label,
.top-fv__slide.is-light .top-fv__title,
.top-fv__slide.is-light .top-fv__text,
.top-fv__slide.is-light .top-fv__button,
.top-fv__slide.is-light .top-fv__scroll,
.top-fv__slide.is-light .top-fv__scroll-text {
  color: #ffffff;
}

.top-fv__slide.is-light .top-fv__button {
  border-color: #ffffff;
}

.top-fv__slide.is-light .top-fv__button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: #ffffff;
}

.top-fv__slide.is-light .top-fv__scroll-line {
  background-color: #ffffff;
}

.top-fv__slide.is-dark .top-fv__label,
.top-fv__slide.is-dark .top-fv__title,
.top-fv__slide.is-dark .top-fv__text,
.top-fv__slide.is-dark .top-fv__button,
.top-fv__slide.is-dark .top-fv__scroll,
.top-fv__slide.is-dark .top-fv__scroll-text {
  color: var(--color-text);
}

.top-fv__slide.is-dark .top-fv__button {
  border-color: var(--color-text);
}

.top-fv__slide.is-dark .top-fv__button:hover {
  background-color: rgba(45, 45, 45, 0.1);
  color: var(--color-text);
  border-color: var(--color-text);
}

.top-fv__slide.is-dark .top-fv__scroll-line {
  background-color: var(--color-text);
}

.top-fv__scroll {
  position: absolute;
  right: clamp(10px, 1.2vw, 20px);
  bottom: clamp(28px, 4.5vw, 90px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3vw, 55px);
}

.top-fv__scroll-line {
  display: block;
  width: 1px;
  height: clamp(56px, 6vw, 100px);
  margin-bottom: 0;
  background: currentColor;
  animation: topFvScrollLine 1.8s ease-in-out infinite;
  transform-origin: top center;
}

.top-fv__scroll-text {
  font-family: var(--font-en);
  font-size: clamp(12px, 0.95vw, 18px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  white-space: nowrap;
  transform: rotate(90deg);
  transform-origin: center;
}

.top-fv__nav {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(420px, calc(100% - 80px));
  margin: 0;
}

.top-fv__bar {
  position: relative;
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  flex: 1 1 0;
  height: 2px;
  background: rgba(255,255,255,0.32);
  overflow: hidden;
  cursor: pointer;
}

.top-fv__bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  height: 100%;
  background: var(--color-white);
}

.top-fv__bar.is-active::after {
  animation: topFvBarProgress var(--fv-interval, 5s) linear forwards;
}

.top-fv__bar.is-complete::after {
  width: 100%;
}

.top-fv__button,
.top-fv__button:hover {
  text-decoration: none;
}


/* ==============================
   05. CATEGORY
============================== */

/* ---------- COMMON TITLE / BUTTON ---------- */

.top-section-title {
  margin: 0;
  font-family: var(--font-en);
  font-size: var(--fz-title);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.18em;
  text-align: center;
  color: var(--color-text);
}

.top-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 200px;
  height: 38px;
  padding: 0 24px;
  border: 1px solid var(--color-text);
  border-radius: 999px;
  background: transparent;
  box-sizing: border-box;
  color: var(--color-text);
  font-family: var(--font-en);
  font-size: var(--fz-lg);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.18em;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.top-button:hover {
  opacity: 0.75;
}

.top-button__label {
  display: inline-block;
  transform: translateY(-1px);
}

.top-button__icon {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.top-button__icon::before,
.top-button__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background-color: currentColor;
  transform: translate(-50%, -50%);
}

.top-button__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.top-button.is-open .top-button__icon::after {
  display: none;
}

.top-button--more {
  display: none;
}


/* ---------- CATEGORY SECTION ---------- */

.top-category {
  padding: clamp(90px, 7vw, 120px) 20px clamp(80px, 7vw, 120px);
  background: #fff;
}

.top-category__inner {
  width: min(100%, 1160px);
  margin: 0 auto;
}

.top-category .top-section-title {
  margin-bottom: 14px;
}

.top-category__lead {
  margin: 30px 0 58px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.18em;
  color: #666;
  font-weight: 500;
}

.top-category__lead::before,
.top-category__lead::after {
  content: "";
  display: inline-block;
  width: 56px;
  height: 1px;
  margin: 0 18px;
  background: #cfcfcf;
  vertical-align: middle;
}

.top-category__block + .top-category__block {
  margin-top: 54px;
}

.top-category__heading {
  margin: 0 0 22px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: var(--color-text);
}


/* ---------- MAIN CATEGORY CARD ---------- */

.top-category__card-grid {
  display: grid;
  gap: 10px;
}

.top-category__card-grid--main {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.top-category__card {
  display: grid;
  grid-template-columns: 1fr 42%;
  height: 230px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  background: #fff;
  color: var(--color-text);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.top-category__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
  opacity: 0.9;
}

.top-category__card,
.top-category__card:hover,
.top-category__card:visited,
.top-category__card:focus,
.top-category__card:active {
  color: var(--color-text);
  text-decoration: none;
}

.top-category__card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 30px 24px;
}

.top-category__card-title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.top-category__card-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #2d2d2d;
  font-weight: 400;
}

.top-category__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.top-category__tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 4px;
  background: #ebebeb;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #555;
  font-weight: 600;
}

.top-category__card-image {
  height: 100%;
  background: #f7f7f7;
}

.top-category__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ---------- MINI CARD ---------- */

.top-category__mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.top-category__mini-card,
.top-category__color-card,
.top-category__brand-card {
  display: block;
  min-height: 132px;
  padding: 24px 22px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
  color: var(--color-text);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.035);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.top-category__mini-card:hover,
.top-category__color-card:hover,
.top-category__brand-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.07);
  opacity: 0.9;
}

.top-category__mini-card p {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.top-category__mini-card span {
  display: block;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #555;
  font-weight: 400;
}

.top-category__mini-card--image {
  display: grid;
  grid-template-columns: 1fr 82px;
  align-items: center;
  gap: 16px;
  min-height: 126px;
  padding: 24px 18px 24px 22px;
  overflow: hidden;
}

.top-category__mini-card--image img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  opacity: 0.82;
}

.top-category__mini-card--image p {
  margin-bottom: 10px;
}

.top-category__mini-card--image span {
  max-width: 160px;
}


/* ---------- COLOR CARD ---------- */

.top-category__color-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.top-category__color-card {
  min-height: 112px;
  text-align: center;
}

.top-category__color-card p {
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.top-category__color-swatch {
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 50%;
}

.top-category__color-swatch--white { background: #fff; }
.top-category__color-swatch--black { background: #222; }
.top-category__color-swatch--gray { background: #9a9a9a; }
.top-category__color-swatch--beige { background: #d8cbb8; }
.top-category__color-swatch--brown { background: #6b5545; }

.top-category__color-swatch--silver {
  background: linear-gradient(
    135deg,
    #f5f5f5 0%,
    #d9d9d9 30%,
    #a8a8a8 50%,
    #e8e8e8 70%,
    #c0c0c0 100%
  );
}

.top-category__color-swatch--multicolor {
  background: conic-gradient(
    #ff4d4d,
    #ffa500,
    #ffd700,
    #32cd32,
    #1e90ff,
    #8a2be2,
    #ff4d4d
  );
}

/* ---------- BRAND CARD ---------- */

.top-category__brand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.top-category__brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 116px;
  padding: 24px 22px;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
}

.top-category__brand-card img {
  display: block;
  max-width: 140px;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.top-category__brand-card--text {
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
}


/* ---------- IMAGE CARD ---------- */

.top-category__image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.top-category__image-card {
  display: block;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
  color: var(--color-text);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.035);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.top-category__image-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.07);
  opacity: 0.9;
}

.top-category__image-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f7f7f7;
}

.top-category__image-card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-category__image-card-body {
  padding: 20px 18px 22px;
}

.top-category__image-card-body p {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.top-category__image-card-body span {
  display: block;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #555;
}


/* ---------- OTHER ---------- */

.top-category__extra {
  margin-top: 42px;
}

.top-category__group + .top-category__group {
  margin-top: 34px;
}

.top-category__group {
  padding-top: 18px;
  border-top: 1px solid #8f8f8f;
}

.top-category__group-title {
  margin: 10px 0 22px;
  font-family: var(--font-ja);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: var(--color-text);
}

.top-new .top-section-title {
  margin-bottom: 60px;
}

.top-fv__image {
  object-fit: cover;
  object-position: 27% center;
}


/* ==============================
   TABLET
============================== */

@media screen and (max-width: 900px) {
  .top-category__card-grid--main {
    grid-template-columns: 1fr;
  }

  .top-category__card {
    height: 220px;
  }

  .top-category__mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-category__color-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .top-category__brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .top-category__image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* ==============================
   SMARTPHONE
============================== */

@media screen and (max-width: 480px) {
  .top-category {
    padding: 14px 16px 72px;
  }

  .top-category__lead {
    margin-bottom: 40px;
    font-size: 15px;
  }

  .top-category__lead::before,
  .top-category__lead::after {
    width: 32px;
    margin: 0 10px;
  }

  .top-category__heading {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .top-category__block + .top-category__block {
    margin-top: 42px;
  }

  .top-category__card {
    grid-template-columns: 1fr 38%;
    height: 180px;
  }

  .top-category__card-body {
    padding: 22px 18px;
  }

  .top-category__card-title {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .top-category__card-text {
    font-size: 13px;
    line-height: 1.7;
    font-weight: 400;
  }

  .top-category__tags {
    gap: 6px;
    margin-top: 14px;
  }

  .top-category__tags span {
    min-height: 24px;
    padding: 0 9px;
    font-size: 11px;
    font-weight: 600;
  }

  .top-category__mini-grid,
  .top-category__color-grid,
  .top-category__brand-grid,
  .top-category__image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .top-category__mini-card,
  .top-category__color-card,
  .top-category__brand-card {
    min-height: 104px;
    padding: 18px 14px;
  }

  .top-category__mini-card--image {
    grid-template-columns: 1fr 58px;
    min-height: 104px;
    padding: 16px 10px 16px 11px;
  }

  .top-category__mini-card--image img {
    width: 58px;
    height: 58px;
  }

  .top-category__brand-card {
    font-size: 15px;
  }

  .top-category__brand-card img {
    max-width: 130px;
    max-height: 44px;
  }

  .top-category__image-card-body {
    padding: 16px 14px 18px;
  }

  .top-category__image-card-body p {
    font-size: 14px;
  }

  .top-category__image-card-body span {
    font-size: 11px;
  }

    .top-category__color-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .top-category__mini-card p {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    }
  .top-category__mini-card--image {
    gap: 2px;
    }
}


/* ==============================
   06. NEW ITEM / RANKING
============================== */

.top-new {
  padding: 110px 20px 80px;
  background: #f3f3f3;
  overflow: hidden;
}

.top-new__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.top-new__slider {
  position: relative;
}

.top-new__viewport {
  overflow: hidden;
}

.top-new__track {
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}


.top-new__page {
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 10px;
  row-gap: 22px;
  align-content: start;
}

.top-new__item {
  min-width: 0;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s ease,
    transform 0.9s ease;
}

.top-new__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.top-new__card {
  display: block;
  height: 100%;
  padding: 12px 10px 10px;
  background: var(--color-white);
  color: var(--color-text);
  text-decoration: none;
  transition: opacity 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.top-new__card:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}

.top-new__card,
.top-new__card:hover,
.top-new__card:focus,
.top-new__card:active,
.top-new__card:visited {
  color: var(--color-text);
  text-decoration: none;
}

.top-new__image-wrap {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
}

.top-new__image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.top-new__card:hover .top-new__image,
.top-new__card:focus-visible .top-new__image {
  transform: scale(1.04);
  opacity: 0.9;
}

.top-new__name {
  margin: 0;
  font-family: var(--font-ja);
  font-size: var(--fz-xs);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}

.top-new__price {
  margin: 0 0 10px;
  font-family: var(--font-en);
  font-size: var(--fz-sm);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: right;
  color: var(--color-text);
}

.top-new__nav-button {
  position: absolute;
  top: 47%;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transform: translateY(-50%);
  opacity: 1;
  transition: opacity 0.4s ease;
}

.top-new__nav-button:hover {
  background: rgba(0, 0, 0, 0.34);
}

.top-new__nav-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

.top-new__nav-button--next {
  right: 6px;
}

.top-new__nav-button--next::before {
  transform: translate(-60%, -50%) rotate(45deg);
}

.top-new__nav-button--prev {
  left: 6px;
}

.top-new__nav-button--prev::before {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.top-new__nav-button.is-hidden {
  opacity: 0 !important;
  pointer-events: none;
}

.top-new__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.top-new__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cfcfcf;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.top-new__dot.is-active {
  background: var(--color-text);
  transform: scale(1.2);
}


.top-ranking__track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 22px;
  column-gap: 10px;
  grid-auto-flow: row;
}

.js-ranking {
  background: var(--color-white);
}

.top-ranking__num {
  position: absolute;
  top: 8px;
  left: 10px;
  z-index: 2;
  font-family: var(--font-en);
  letter-spacing: 0.08em;
  color: var(--color-text);
  display: inline-block;
  padding-bottom: 4px;
  font-weight: 500;
  font-size: var(--fz-md);
}

.top-ranking__num::after {
  content: "";
  display: block;
  height: 1.2px;
  margin-top: 3px;
  width: 14px;
  background: #cfcfcf;
}

.top-news__label {
  display: none;
}

.top-news__title-main {
  margin: 0 0 30px;
  font-size: 25px;
  line-height: 1;
  letter-spacing: .18em;
  font-weight: 400;
  color: var(--text);
}

.top-news__list {
  border-top: 1px solid var(--line);
}

.top-news__item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.top-news__date {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--text);
}

.top-news__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.top-news__title {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: .05em;
  color: var(--text);
}

.top-news__body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .45s ease,
    opacity .35s ease,
    margin-top .35s ease;
}

.top-news__body.is-open {
  max-height: 180px;
  opacity: 1;
  margin-top: 14px;
}

.top-news__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: .05em;
  color: var(--text);
}

.top-news__toggle {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fafafa;
  color: var(--text);
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  transition: .3s;
}

.top-news__toggle:hover {
  background: #111;
  color: #fff;
}


@media (max-width:1024px){

  .top-new__page{
    grid-template-columns:repeat(3,1fr);
  }

}

@media (max-width:768px){

  .top-new{
    padding:70px 15px 60px;
  }

  .top-new__page{
    grid-template-columns:repeat(2,1fr);
  }

  .top-new__name{
    font-size:12px;
  }

  .top-new__price{
    font-size:13px;
  }

    .top-new__item{
    opacity:1 !important;
    transform:none !important;
  }

  .top-new__item.is-visible{
    opacity:1;
    transform:none;
  }

}

@media (max-width:768px){

  .top-new__viewport{
    overflow:visible;
  }

  .top-new__track{
    display:block;
    transform:none !important;
  }

  .top-new__page{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px 8px;
  }

  .top-new__nav-button,
  .top-new__dots{
    display:none;
  }

  .top-new__item{
    opacity:1 !important;
    transform:none !important;
  }

}


/* ==============================
   07. PICKUP / NEWS
============================== */

.top-pickup-news,
.top-pickup-news * {
  box-sizing: border-box;
}

.top-pickup-news {
  --text: #222;
  --line: #e5e5e5;
  padding: 72px 40px 82px;
  background: var(--color-white);
  overflow: hidden;
}

.top-pickup-news img {
  display: block;
  width: 100%;
}

.top-pickup-news a {
  color: inherit;
  text-decoration: none;
}

.top-pickup-news__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 640px 1fr;
  gap: 92px;
  align-items: center;
}

.top-pickup-copy {
  display: none;
}

.top-pickup {
  position: relative;
}

.top-pickup::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.04);
  z-index: 0;
}

.top-pickup__viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 18px 42px rgba(0,0,0,.08);
}

.top-pickup__track {
  display: flex;
}

.top-pickup__item {
  flex: 0 0 100%;
}

.top-pickup__link {
  display: block;
  position: relative;
}

.top-pickup__image {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.top-pickup__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(0,0,0,.60) 0%,
      rgba(0,0,0,.42) 34%,
      rgba(0,0,0,.10) 72%,
      rgba(0,0,0,.14) 100%
    );
}

.top-pickup__caption {
  position: absolute;
  left: 38px;
  bottom: 38px;
  z-index: 2;
  max-width: 340px;
  color: #fff;
}

.top-pickup__eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  letter-spacing: .32em;
}

.top-pickup__title {
  font-size: 23px;
  line-height: 1.55;
  letter-spacing: .06em;
  font-weight: 400;
}

.top-pickup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--color-white);
  color: #111 !important;
  font-size: 13px;
  letter-spacing: .08em;
  transition: .3s;
}

.top-pickup__btn:hover {
  transform: translateY(-2px);
}

.top-pickup__dots {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.top-pickup__dots button {
  width: 30px;
  height: 2px;
  padding: 0;
  border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: .3s;
}

.top-pickup__dots button.is-active {
  width: 46px;
  background: var(--color-white);
}


/* ==============================
   08. TOPICS
============================== */

.topics-feature {
  padding: 80px 0;
  background: #f3f3f3;
  overflow: hidden;
}

.topics-feature-head {
  text-align: center;
  margin-bottom: 50px;
}

.topics-feature-head h2 {
  margin: 0;
  font-size: var(--fz-title);
  font-weight: 400;
  letter-spacing: .32em;
  color: var(--color-text);
}

.topics-feature-head::after {
  content: "暮らしを整えるアイデアと、ゴミ箱のある風景。";
  display: block;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: .08em;
  color: #666;
  font-weight: 400;
}

.topics-slider-wrap {
  position: relative;
}

.topics-swiper {
  overflow: visible;
}

.topics-slide {
  width: min(520px, 72vw);
}

.topics-slide a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.topics-slide-image {
  position: relative;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 18px 40px rgba(0,0,0,.05);
}

.topics-slide-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(0,0,0,.08) 0%,
      rgba(0,0,0,0) 42%
    );
  pointer-events: none;
}

.topics-slide-image img {
  display: block;
  width: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.16,1,.3,1),
    filter 1.1s cubic-bezier(.16,1,.3,1);
  height: 360px;
}

.topics-slide:hover img {
  transform: scale(1.03);
  filter: saturate(.96) contrast(1.02);
}

.topics-slide-panel {
  margin-top: 20px;
}

.topics-date {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 13px;
  letter-spacing: .18em;
  color: #777;
  position: relative;
}

.topics-date::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  background: rgba(0,0,0,.24);
  margin-top: 16px;
}

.topics-text {
  max-width: 520px;
  text-align: left;
}

.topics-slide-panel h3 {
  margin: 0 0 15px;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.62;
  letter-spacing: .05em;
  font-weight: 500;
  color: var(--color-text);
  transition: opacity .35s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.topics-slide:hover h3 {
  opacity: .72;
}

.topics-text p {
  margin: 0 0 30px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: .04em;
  color: #777;
  max-width: 520px;
  font-weight: 400;
}

.topics-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 8px;
  font-size: 10px;
  letter-spacing: .24em;
  color: var(--color-text);
}

.topics-more::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 108px;
  height: 1px;
  background: rgba(0,0,0,.22);
  transition: transform .35s ease,
    background .35s ease;
  transform-origin: left;
}

.topics-more::after {
  content: "→";
  transition: transform .35s ease;
}

.topics-slide:hover .topics-more::before {
  transform: scaleX(1.08);
  background: rgba(0,0,0,.42);
}

.topics-slide:hover .topics-more::after {
  transform: translateX(7px);
}

.topics-arrow {
  position: absolute;
  top: 31%;
  z-index: 10;
  width: 50px;
  height: 50px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.topics-prev {
  left: calc(50% - 400px);
}

.topics-next {
  right: calc(50% - 400px);
}

.topics-arrow::before {
  content: "";
  position: absolute;
  inset: 17px;
  border-top: 1.5px solid #111;
  border-right: 1.5px solid #111;
}

.topics-prev::before {
  transform: rotate(-135deg);
}

.topics-next::before {
  transform: rotate(45deg);
}

.topics-pagination {
  text-align: center;
  margin-top: 34px;
}

.topics-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 7px !important;
  background: #d2d2d2;
  opacity: 1;
}

.topics-pagination .swiper-pagination-bullet-active {
  background: #444;
}

.topics-swiper .swiper-slide {
  width: min(700px, 56vw) !important;
}


/* ==============================
   09. FOOTER
============================== */

.information {
  background: var(--color-text);
  padding: 48px 0 60px;
  color: #fff;
}

.information * {
  box-sizing: border-box;
}

.information-inner {
  width: calc(100% - 80px);
  max-width: 1240px;
  margin: 0 auto;
}

.banners {
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0 0 42px;
}

.banner {
  list-style: none;
  width: 33.333%;
}

.banner img {
  width: 100%;
  display: block;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

.footer-left {
  width: 58%;
}

.footer-right {
  width: 32%;
  padding-top: 8px;
}

.footer-box {
  border-top: 1px solid rgba(255,255,255,.18);
}

.footer-box:last-child {
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.footer-box h2 {
  position: relative;
  font-size: var(--fz-md);
  font-weight: 400;
  letter-spacing: .08em;
  padding: 20px 36px 20px 0;
  margin: 0;
  color: #fff;
}

.footer-box h2 span {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.footer-box-content {
  padding: 0 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  padding-bottom: 0;
}

.footer-box-content p {
  color: rgba(255,255,255,.72);
  font-size: var(--fz-sm);
  line-height: 2;
  margin: 0 0 8px;
}

.footer-box-content a {
  color: #fff;
}

.footer-right ul {
  padding: 0;
  margin: 0;
}

.footer-right li {
  list-style: none;
  margin-bottom: 26px;
}

.footer-right a {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  letter-spacing: .08em;
  transition: opacity .3s;
}

.footer-right a:hover {
  opacity: .6;
}

.footer-bottom {
  text-align: center;
  padding-top: 22px;
}

.footer-logo {
  margin-bottom: 36px;
}

.footer-logo img {
  width: 88px;
  display: block;
  margin: 0 auto;
}

.copyright {
  font-size: var(--fz-xs);
  color: rgba(255,255,255,.68);
  letter-spacing: .08em;
  margin: 0;
}

.footer-box.is-open .footer-box-content {
  padding-bottom: 22px;
}

.footer-icon {
  position: absolute;
  right: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
}

.footer-icon::before,
.footer-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--color-white);
  transform: translate(-50%, -50%);
}

.footer-icon::before {
  width: 13px;
  height: 0.5px;
}

.footer-icon::after {
  width: 0.5px;
  height: 13px;
  transition: opacity .3s ease;
}

.footer-box.is-open .footer-icon::after {
  opacity: 0;
}


/* ==============================
   11. KEYFRAMES / OTHER AT-RULES
============================== */

@keyframes topFvZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}

@keyframes topFvScrollLine {
  0% {
    transform: scaleY(0.65);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(0.65);
    opacity: 0.5;
  }
}

@keyframes topFvBarProgress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}


/* ==============================
   12. RESPONSIVE
============================== */

@media screen and (max-width: 1560px) {

  /* HEADER / GLOBAL NAV */

  .header-2026__search-inline {
    display: none;
  }

  .header-2026__search-trigger {
    display: block;
  }

  .header-2026__right {
    right: 24px;
  }

}

@media screen and (max-width: 1200px) {

  /* RESET / BASE */

  body {
    padding-top: 64px;
  }



  /* HEADER / GLOBAL NAV */

  .header-2026 {
    height: 64px;
  }

  .header-2026__menu-trigger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    left: 16px;
  }

  .header-2026__logo img {
    height: 40px;
  }

  .header-2026__nav {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 18px 34px rgba(0,0,0,.08);
    transform: none;
    transition: max-height .35s ease;
    z-index: 1100;
  }

  .menu-open .header-2026__nav {
    max-height: 320px;
  }

  .primary-navigation-list--1st {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 20px 20px;
  }

  .prnai--1st {
    width: 100%;
    border-bottom: 1px solid rgba(45,45,45,.12);
  }

  .prnai--1st:last-child {
    border-bottom: none;
  }

  .prnai--1st > a,
  .prnai--1st > span,
  .js-category-btn,
  .js-brand-btn {
    display: block;
    width: 100%;
    padding: 16px 4px;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: .08em;
  }

  .menu-open .header-2026__menu-trigger span:nth-child(1) {
    transform: translateY(9px)
      rotate(45deg);
  }

  .menu-open .header-2026__menu-trigger span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .header-2026__menu-trigger span:nth-child(3) {
    transform: translateY(-9px)
      rotate(-45deg);
  }

  .header-2026__corp {
    display: none;
  }

  .header-2026__icon {
    width: 28px;
    height: 28px;
  }

  .header-2026__search-inline {
    display: none;
  }

  .header-2026__search-trigger {
    display: block;
  }

  .header-2026__search-trigger img {
    width: 28px;
    height: 28px;
  }

  .header-2026__search-bar,
  .category-bar__expand,
  .category-bar {
    top: 64px;
  }

}

@media screen and (max-width:1100px) {

  /* PICKUP / NEWS */

  .top-pickup-news {
    padding: 70px 32px;
  }

  .top-pickup-news__inner {
    max-width: 760px;
    grid-template-columns: 1fr;
    gap: 56px;
  }

}

@media screen and (max-width: 900px) {

  /* HEADER / GLOBAL NAV */

  .header-2026__right {
    right: 16px;
  }

  .header-2026__corp {
    display: none;
  }



  /* FIRST VIEW */

  .top-fv__slider {
    height: calc(100svh - 64px);
    min-height: 500px;
    max-height: 760px;
  }



  /* CATEGORY */

  .top-category__grid {
    grid-template-columns: repeat(4, minmax(72px, 1fr));
    justify-content: center;
  }



  /* NEW ITEM / RANKING */


  .top-ranking__track {
    grid-auto-columns: calc((100% - 20px) / 3);
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 768px) {

  /* RESET / BASE */

  body {
    padding-top: 64px;
  }



  /* HEADER / GLOBAL NAV */

  .header-2026 {
    height: 64px;
  }

  .primary-navigation-list--1st {
    gap: 18px;
  }

  .prnai--1st > a,
  .prnai--1st > span {
    font-size: var(--fz-sm);
  }

  .header-2026__logo img {
    height: 38px;
  }

  .header-2026__corp,
  .header-2026__search-inline {
    display: none;
  }

  .header-2026__icon {
    width: 24px;
    height: 24px;
  }

    .header-2026__search-trigger img {
    width: 24px;
    height: 24px;
  }

  .header-2026__search-trigger {
    display: block;
  }

  .category-bar__expand,
  .header-2026__search-bar {
    top: 64px;
  }

  .category-bar__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 24px 16px;
  }

}

@media screen and (max-width:768px) {

  /* PICKUP / NEWS */

  .top-pickup-news {
    padding: 60px 20px;
  }

  .top-pickup__image {
    aspect-ratio: 4 / 3;
  }

  .top-pickup__caption {
    left: 28px;
    bottom: 30px;
  }

  .top-pickup__title {
    font-size: 26px;
  }



  /* NEW ITEM / RANKING */

  .top-news__title-main {
    font-size: 30px;
  }

}

@media screen and (max-width: 768px) {

  /* TOPICS */

  .topics-feature {
    padding: 64px 0;
  }

  .topics-feature-head {
    margin-bottom: 36px;
  }

  .topics-feature-head h2 {
    font-size: clamp(24px, 6vw, 30px);
  }

  .topics-slide {
    width: 78vw;
  }

  .topics-slide-image img {
    height: 240px;
  }

  .topics-arrow {
    display: none;
  }

  .topics-swiper .swiper-slide,
  .topics-slide {
    width: 82vw !important;
  }

  .topics-text p {
    display: none;
  }



  /* FOOTER */

  .information {
    padding: 36px 0 48px;
  }

  .information-inner {
    width: calc(100% - 32px);
  }

  .banners {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
  }

  .banner {
    width: 100%;
  }

  .footer-grid {
    flex-direction: column;
    gap: 40px;
  }

  .footer-left,
    .footer-right {
    width: 100%;
  }

  .footer-box h2 {
    font-size: var(--fz-md);
    padding: 18px 28px 18px 0;
  }

  .footer-right li {
    margin-bottom: 18px;
  }

  .footer-bottom {
    padding-top: 48px;
  }

  .footer-logo img {
    width: 78px;
  }



  /* FIRST VIEW */

  .top-fv__slider {
    height: min(720px, calc(100svh - 64px));
    min-height: 460px;
  }

  .top-fv__content {
    top: auto;
    left: 20px;
    bottom: 84px;
    transform: none;
    width: calc(100% - 56px);
  }

  .top-fv__label {
    font-size: clamp(18px, 5.2vw, 26px);
  }

  .top-fv__title {
    margin-top: 14px;
    font-size: clamp(24px, 7vw, 34px);
  }

  .top-fv__text {
    font-size: 13px;
    line-height: 1.7;
  }

  .top-fv__button {
    min-width: 148px;
    height: 36px;
    font-size: 16px;
  }

  .top-fv__scroll {
    display: none;
  }

  .top-fv__nav {
    bottom: 26px;
    width: calc(100% - 48px);
  }



  /* CATEGORY */

  .top-section-title,
  .topics-feature-head h2,
  .top-news__title-main {
    font-size: clamp(23px, 6vw, 30px);
  }

  .top-category .top-section-title,
  .top-new .top-section-title {
    margin-bottom: 25px;
  }

  .top-category__grid {
    grid-template-columns: repeat(3, minmax(82px, 1fr));
  }

  .top-category__item {
    max-width: none;
  }



  /* NEW ITEM / RANKING */

  .top-new {
    padding: 52px 16px 64px;
  }

  .top-ranking__track {
    grid-auto-columns: calc((100% - 12px) / 2);
    grid-template-columns: repeat(2, 1fr);
    column-gap: 12px;
    row-gap: 18px;
  }

  .top-new__card {
    padding: 10px 8px;
  }

  .top-new__nav-button {
    display: none;
  }



  /* PICKUP / NEWS */

  .top-pickup-news__inner {
    grid-template-columns: 1fr;
  }

  .top-pickup-news {
    padding: 64px 16px;
  }

}

@media screen and (max-width:480px) {

  /* PICKUP / NEWS */

  .top-pickup-news {
    padding: 52px 18px;
  }

  .top-pickup__caption {
    left: 22px;
    bottom: 24px;
  }

  .top-pickup__title {
    font-size: 18px;
  }

}

@media screen and (max-width: 480px) {

  /* TOPICS */

  .topics-slide {
    width: 84vw;
  }

  .topics-slide-image img {
    height: 220px;
  }

  .topics-slide-panel h3 {
    font-size: var(--fz-md);
  }

  .topics-swiper .swiper-slide,
  .topics-slide {
    width: 86vw !important;
  }

  .topics-slide-panel {
    margin-top: 16px;
  }



  /* HEADER / GLOBAL NAV */

  .header-2026__logo img {
    height: 38px;
  }

  .header-2026__icon {
    width: 27px;
    height: 27px;
  }

  .category-bar__inner {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    padding: 20px 14px;
  }

  .category-bar__inner a {
    padding: 12px 10px;
    font-size: 12px;
  }

.header-2026__right {
  gap: 10px;
  right: 16px;
}

  .header-2026__search-trigger{
    display:none;
  }

  /* FIRST VIEW */

  .top-fv__slider {
    min-height: 420px;
  }

  .top-fv__content {
    left: 16px;
    bottom: 54px;
    width: calc(100% - 40px);
  }


  /* FV下検索 */

.fv-search{
  padding:50px 16px;
  background:#fff;
}

.fv-search input{
  width:100%;
  height:44px;
  border:1px solid #ddd;
  border-radius:999px;
  padding:0 18px;
}


/* メニュー内検索 */

.header-menu-search{
  width:100%;
  padding:12px 0 20px;
}

.header-menu-search input{
  width:100%;
  height:42px;
  border:1px solid #ddd;
  border-radius:999px;
  padding:0 16px;
}



  /* CATEGORY */

  .top-category__name {
    white-space: normal;
  }

  .top-button {
    min-width: 170px;
    height: 36px;
  }

  .top-button--more {
    margin: 48px auto 72px;
  }



  /* NEW ITEM / RANKING */

  .top-ranking__track {
    grid-auto-columns: 72vw;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }



  /* PICKUP / NEWS */

  .top-pickup__caption {
    max-width: calc(100% - 44px);
  }

  .top-pickup__eyebrow {
    margin-bottom: 12px;
  }

  .top-pickup__btn {
    min-width: 132px;
    height: 38px;
  }

  .top-pickup__dots {
    right: 22px;
    bottom: -12px;
  }

}

/* 初期状態：非表示 */
.fv-search,
.header-menu-search {
  display: none;
}

/* スマホだけ表示 */
@media screen and (max-width: 480px) {

  .fv-search,
  .header-menu-search {
    display: block;
  }

}


/*20260609修正追加*/
.js-ranking .top-new__item{
  opacity:1 !important;
  transform:none !important;
}

@media screen and (max-width:768px){

  .top-ranking__track{
    display:grid !important;
    grid-template-columns:repeat(2,1fr) !important;
    gap:18px 12px !important;
  }

  .js-ranking .top-new__item{
    opacity:1 !important;
    transform:none !important;
  }

}