:root {
  --v2-red: #a91218;
  --v2-red-dark: #821017;
  --v2-red-soft: #c73d42;
  --v2-ink: #35251f;
  --v2-muted: #786b62;
  --v2-gold: #b78338;
  --v2-paper: #fdfbf6;
  --v2-paper-deep: #f8f1e5;
  --v2-line: #e9d9c4;
  --v2-line-strong: #d7b995;
  --v2-green: #408264;
  --v2-product-surface: #fff9f1;
  --v2-shell: 1120px;
  --v2-display: clamp(2.3rem, 5vw, 4.8rem);
  --v2-section: clamp(1.18rem, 1.8vw, 1.65rem);
  --v2-card-title: clamp(.82rem, .95vw, 1rem);
  --v2-copy: clamp(.78rem, .9vw, .96rem);
  --v2-link: clamp(.72rem, .8vw, .86rem);
  color: var(--v2-ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--v2-paper);
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 9% 12%, rgba(183, 131, 56, .035), transparent 22rem),
    linear-gradient(180deg, #fffefb 0, var(--v2-paper) 55%, #fbf6ec 100%);
  color: var(--v2-ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(45deg, transparent 48%, rgba(130, 86, 36, .018) 49%, rgba(130, 86, 36, .018) 51%, transparent 52%);
  background-size: 22px 22px;
  content: "";
  pointer-events: none;
}

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

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

button,
select {
  cursor: pointer;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.v2-shell {
  width: min(calc(100% - 40px), var(--v2-shell));
  margin-inline: auto;
}

.v2-announcement {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .035) 25%, transparent 25%) 0 0 / 18px 18px,
    linear-gradient(225deg, rgba(255, 255, 255, .035) 25%, transparent 25%) 0 0 / 18px 18px,
    var(--v2-red);
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: .75rem;
  letter-spacing: .03em;
}

.v2-announcement__inner {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.v2-announcement__inner > span,
.v2-announcement nav,
.v2-benefit,
.v2-footer-guide a {
  display: flex;
  align-items: center;
  gap: 7px;
}

.v2-announcement nav {
  gap: 20px;
}

.v2-announcement nav a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.v2-announcement nav a > .material-symbols-outlined {
  font-size: 12px;
}

.v2-icon {
  display: inline-grid;
  width: 1.35em;
  height: 1.35em;
  flex: 0 0 auto;
  place-items: center;
}

.v2-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.v2-header {
  position: relative;
  z-index: 30;
  background: #fefbf7;
}

.v2-header__main {
  display: grid;
  min-height: 86px;
  grid-template-columns: minmax(245px, .9fr) minmax(380px, 1.45fr) minmax(310px, 1fr);
  align-items: center;
  gap: 26px;
}

.v2-logo {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
}

.v2-logo__mark {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--v2-red);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .25);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
}

.v2-logo__mark svg {
  width: 72%;
  height: 72%;
  fill: #fff;
  stroke: none;
}

.v2-logo__copy {
  display: grid;
  line-height: 1.05;
}

.v2-logo__copy strong {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: .12em;
  white-space: nowrap;
}

.v2-logo__copy small {
  margin-top: 7px;
  font-size: .61rem;
  letter-spacing: .28em;
}

.v2-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
}

.v2-header__nav a {
  position: relative;
  padding-block: 33px;
}

.v2-header__nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--v2-red);
  content: "";
  opacity: 0;
  transform: scaleX(.25);
  transition: .2s ease;
}

.v2-header__nav a:hover::after,
.v2-header__nav a:focus-visible::after,
.v2-header__nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.v2-header__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.v2-search {
  display: grid;
  width: 190px;
  height: 40px;
  grid-template-columns: 1fr 42px;
  border: 1px solid var(--v2-line-strong);
  background: #fff;
}

.v2-search input {
  min-width: 0;
  padding: 0 13px;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: .72rem;
}

.v2-search button {
  display: grid;
  border: 0;
  background: transparent;
  place-items: center;
}

.v2-tool-link,
.v2-menu-button {
  display: grid;
  min-width: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  place-items: center;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: .63rem;
  line-height: 1.2;
}

.v2-mobile-search-link {
  display: none;
}

.v2-tool-link .v2-icon,
.v2-menu-button .v2-icon {
  width: 27px;
  height: 27px;
  margin-bottom: 4px;
}

.v2-menu-button {
  display: none;
}

.v2-mobile-menu {
  display: none;
}

.v2-home-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 14px;
  padding-top: 18px;
}

.v2-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
}

.v2-side-panel,
.v2-paper-panel,
.v2-product-card,
.v2-detail-panel,
.v2-review-area {
  border: 1px solid var(--v2-line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .74), rgba(249, 241, 227, .84)),
    var(--v2-paper);
  box-shadow: 0 8px 22px rgba(81, 51, 27, .025);
}

.v2-side-panel {
  overflow: visible;
  border-radius: 3px;
}

.v2-side-panel__title {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border-bottom: 1px solid var(--v2-line);
  font-size: .9rem;
  font-weight: 600;
}

.v2-side-panel__title i,
.v2-section-title i,
.v2-detail-section-title i {
  color: var(--v2-red);
  font-style: normal;
}

.v2-flower-mark {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--v2-red);
}

.v2-flower-mark::before,
.v2-flower-mark::after {
  position: absolute;
  inset: 3px;
  border: 2px solid currentColor;
  border-radius: 50% 0 50% 0;
  content: "";
  transform: rotate(45deg);
}

.v2-flower-mark::after {
  transform: rotate(135deg);
}

.v2-chevron {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.v2-chevron--left {
  transform: rotate(-135deg);
}

.v2-close-glyph,
.v2-minus-glyph,
.v2-plus-glyph {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
}

.v2-close-glyph::before,
.v2-close-glyph::after,
.v2-minus-glyph::before,
.v2-plus-glyph::before,
.v2-plus-glyph::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.v2-close-glyph::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.v2-close-glyph::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.v2-plus-glyph::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.v2-category-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.v2-category-item {
  position: relative;
}

.v2-category-item > a {
  display: flex;
  min-height: 37px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border-bottom: 1px solid rgba(233, 217, 196, .65);
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: .74rem;
}

.v2-category-item > a:hover,
.v2-category-item > a:focus-visible {
  color: var(--v2-red);
  background: rgba(169, 18, 24, .045);
}

.v2-category-sub {
  position: absolute;
  top: -1px;
  left: calc(100% - 2px);
  z-index: 15;
  display: none;
  width: 190px;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--v2-line);
  background: #fffdf8;
  box-shadow: 8px 10px 24px rgba(64, 42, 23, .12);
  list-style: none;
}

.v2-category-item:hover .v2-category-sub,
.v2-category-item:focus-within .v2-category-sub {
  display: block;
}

.v2-category-sub a {
  display: block;
  padding: 8px 10px;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: .72rem;
}

.v2-side-promo {
  overflow: hidden;
  border: 1px solid var(--v2-line);
  border-radius: 3px;
  background: #fffaf2;
}

.v2-side-promo img {
  width: 100%;
}

.v2-side-card {
  padding: 16px;
  border: 1px solid var(--v2-line);
  background: linear-gradient(135deg, #fffdf9, #f8eee0);
}

.v2-side-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: .95rem;
}

.v2-side-card p {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: .69rem;
  line-height: 1.7;
}

/* Blocks explicitly placed through EC-CUBE Admin Layout remain visible outside
 * TOP and own their complete presentation instead of depending on .front_page. */
.venture02-theme .v2-admin-layout-block {
  box-sizing: border-box;
  width: min(calc(100% - 40px), var(--v2-shell));
  min-width: 0;
  margin: 24px auto 0;
  color: var(--v2-ink);
}

.venture02-theme [data-layout-region="side-left"] > .v2-admin-layout-block,
.venture02-theme [data-layout-region="side-right"] > .v2-admin-layout-block {
  width: 100%;
  margin: 0 0 16px;
}

.venture02-theme .v2-admin-layout-block--eyecatch {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.venture02-theme .v2-admin-layout-block--eyecatch > .v2-side-promo,
.venture02-theme .v2-admin-layout-block--eyecatch > .v2-warranty-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 144px;
  overflow: hidden;
  border: 1px solid var(--v2-line);
  border-radius: 3px;
  background-color: #fffaf2;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.venture02-theme .v2-admin-layout-block--eyecatch > .v2-side-promo:hover,
.venture02-theme .v2-admin-layout-block--eyecatch > .v2-side-promo:focus-visible,
.venture02-theme .v2-admin-layout-block--eyecatch > .v2-warranty-card:hover {
  border-color: rgba(169, 18, 24, .42);
  box-shadow: 0 9px 22px rgba(76, 46, 24, .14);
  transform: translateY(-2px);
}

.venture02-theme .v2-admin-layout-block--eyecatch > .v2-side-promo > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.venture02-theme .v2-admin-layout-block--eyecatch > .v2-side-promo:hover > img,
.venture02-theme .v2-admin-layout-block--eyecatch > .v2-side-promo:focus-visible > img {
  transform: scale(1.035);
}

.venture02-theme .v2-admin-layout-block--eyecatch .v2-side-promo--early > span {
  display: grid;
  height: 100%;
  align-content: center;
  justify-items: center;
  color: var(--v2-red);
  background: rgba(255, 250, 241, .5);
  text-align: center;
  text-shadow: 0 1px 4px #fff;
}

.venture02-theme .v2-admin-layout-block--eyecatch .v2-side-promo--early small,
.venture02-theme .v2-admin-layout-block--eyecatch .v2-side-promo--early b {
  font-size: .72rem;
  font-weight: 500;
}

.venture02-theme .v2-admin-layout-block--eyecatch .v2-side-promo--early strong {
  margin: 3px 0;
  font-size: 1.45rem;
  font-weight: 500;
}

.venture02-theme .v2-admin-layout-block--eyecatch .v2-warranty-card {
  display: grid;
  align-content: center;
  padding: 18px;
  background-image: linear-gradient(90deg, rgba(255, 253, 247, .96) 0%, rgba(255, 253, 247, .72) 56%, rgba(255, 253, 247, .12) 100%), var(--v2-warranty-image);
  background-position: center;
  background-size: cover;
}

.venture02-theme .v2-admin-layout-block--eyecatch .v2-warranty-card strong {
  font-size: 1rem;
}

.venture02-theme .v2-admin-layout-block--eyecatch .v2-warranty-card p {
  font-size: .75rem;
}

.venture02-theme .v2-admin-layout-block--eyecatch .v2-side-promo--store > img {
  object-position: center 56%;
}

.venture02-theme .v2-admin-layout-block--eyecatch .v2-side-promo--store > span {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 18px;
  background: linear-gradient(90deg, rgba(255, 253, 247, .97) 0 48%, rgba(255, 253, 247, .2) 78%, transparent);
}

.venture02-theme .v2-admin-layout-block--eyecatch .v2-side-promo--store strong {
  margin: 0;
  font-size: .9rem;
}

.venture02-theme .v2-admin-layout-block--eyecatch .v2-side-promo--store strong .material-symbols-outlined {
  color: var(--v2-red);
  font-size: 18px;
  vertical-align: -4px;
}

.venture02-theme .v2-admin-layout-block--eyecatch .v2-side-promo--store small {
  display: block;
  margin-top: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: .68rem;
  font-weight: 500;
}

.venture02-theme .v2-admin-layout-block--brands {
  padding: 22px 24px 24px;
  overflow: hidden;
  border: 1px solid var(--v2-line);
  border-radius: 3px;
  background: rgba(255, 253, 248, .84);
}

.venture02-theme .v2-admin-layout-block--brands .venture-section-heading {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.venture02-theme .v2-admin-layout-block--brands .venture-section-heading h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .06em;
}

.venture02-theme .v2-admin-layout-block--brands .venture-section-heading h2 small {
  font-size: .65em;
  letter-spacing: .12em;
}

.venture02-theme .v2-admin-layout-block--brands .venture-section-heading > a {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  gap: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: .78rem;
}

.venture02-theme .v2-admin-layout-block--brands .venture-brands-swiper {
  overflow: visible;
}

.venture02-theme .v2-admin-layout-block--brands .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  transform: none !important;
}

.venture02-theme .v2-admin-layout-block--brands .swiper-slide {
  width: auto !important;
  min-width: 0;
}

.venture02-theme .v2-admin-layout-block--brands .swiper-slide a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(216, 193, 160, .74);
  border-radius: 3px;
  background: rgba(255, 255, 255, .64);
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: .82rem;
  line-height: 1.4;
  text-align: center;
  overflow-wrap: anywhere;
  transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}

.venture02-theme .v2-admin-layout-block--brands .swiper-slide a:hover,
.venture02-theme .v2-admin-layout-block--brands .swiper-slide a:focus-visible {
  border-color: rgba(169, 18, 24, .42);
  color: var(--v2-red);
  background: #fff7f4;
}

.venture02-theme .v2-admin-layout-block--news {
  padding: 20px 24px 12px;
  overflow: hidden;
  border: 1px solid var(--v2-line);
  border-radius: 3px;
  background: rgba(255, 253, 248, .84);
  --v2-admin-news-size: .82rem;
}

.venture02-theme .v2-admin-layout-block--news .v2-news__heading {
  display: flex;
  min-height: 42px;
  align-items: baseline;
}

.venture02-theme .v2-admin-layout-block--news .v2-news__heading h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .08em;
}

.venture02-theme .v2-admin-layout-block--news .v2-news__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.venture02-theme .v2-admin-layout-block--news .v2-news__item {
  border-bottom: 1px solid var(--v2-line);
}

.venture02-theme .v2-admin-layout-block--news .v2-news__item:last-child {
  border-bottom: 0;
}

.venture02-theme .v2-admin-layout-block--news .v2-news__summary {
  display: grid;
  min-height: 48px;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: stretch;
}

.venture02-theme .v2-admin-layout-block--news .v2-news__date {
  display: flex;
  align-items: center;
  color: var(--v2-muted);
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--v2-admin-news-size);
  font-variant-numeric: tabular-nums;
}

.venture02-theme .v2-admin-layout-block--news .v2-news__toggle {
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 8px 2px 8px 0;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 12px;
  border: 0;
  color: var(--v2-ink);
  background: transparent;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: var(--v2-admin-news-size);
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

.venture02-theme .v2-admin-layout-block--news .v2-news__toggle > span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.venture02-theme .v2-admin-layout-block--news .v2-news__toggle .material-symbols-outlined {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--v2-muted);
  font-size: 20px;
  line-height: 1;
  transform-origin: center;
  transition: color .18s ease, transform .2s ease;
}

.venture02-theme .v2-admin-layout-block--news .v2-news__toggle:hover > span:first-child,
.venture02-theme .v2-admin-layout-block--news .v2-news__toggle:focus-visible > span:first-child,
.venture02-theme .v2-admin-layout-block--news .v2-news__toggle[aria-expanded="true"] > span:first-child {
  color: var(--v2-red);
}

.venture02-theme .v2-admin-layout-block--news .v2-news__toggle[aria-expanded="true"] .material-symbols-outlined {
  transform: rotate(180deg);
}

.venture02-theme .v2-admin-layout-block--news .v2-news__panel {
  width: 100%;
  padding: 8px 34px 14px 0;
  color: var(--v2-muted);
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: var(--v2-admin-news-size);
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.venture02-theme .v2-admin-layout-block--news .v2-news__panel[hidden] {
  display: none;
}

.venture02-theme .v2-admin-layout-block--news .v2-news__link {
  display: inline-flex;
  margin-top: 7px;
  border-bottom: 1px solid currentColor;
  color: var(--v2-red);
  font-weight: 600;
}

@media (max-width: 599px) {
  .venture02-theme .v2-admin-layout-block {
    width: calc(100% - 32px);
    margin-top: 16px;
  }

  .venture02-theme .v2-admin-layout-block--eyecatch {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .venture02-theme .v2-admin-layout-block--eyecatch > .v2-side-promo,
  .venture02-theme .v2-admin-layout-block--eyecatch > .v2-warranty-card {
    min-height: 112px;
  }

  .venture02-theme .v2-admin-layout-block--eyecatch > .v2-side-promo--early {
    grid-column: 1 / -1;
  }

  .venture02-theme .v2-admin-layout-block--eyecatch .v2-warranty-card,
  .venture02-theme .v2-admin-layout-block--eyecatch .v2-side-promo--store > span {
    padding: 12px;
  }

  .venture02-theme .v2-admin-layout-block--eyecatch .v2-side-promo--store > span {
    justify-items: center;
    background: rgba(255, 253, 247, .82);
    text-align: center;
  }

  .venture02-theme .v2-admin-layout-block--brands {
    padding: 16px;
  }

  .venture02-theme .v2-admin-layout-block--brands .venture-section-heading {
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
  }

  .venture02-theme .v2-admin-layout-block--brands .venture-section-heading h2,
  .venture02-theme .v2-admin-layout-block--news .v2-news__heading h2 {
    font-size: 1.1rem;
  }

  .venture02-theme .v2-admin-layout-block--brands .venture-section-heading > a {
    min-height: 36px;
    font-size: .7rem;
  }

  .venture02-theme .v2-admin-layout-block--brands .swiper-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .venture02-theme .v2-admin-layout-block--brands .swiper-slide a {
    min-height: 44px;
    padding: 7px 8px;
    font-size: .74rem;
  }

  .venture02-theme .v2-admin-layout-block--news {
    padding: 16px 14px 8px;
    --v2-admin-news-size: .74rem;
  }

  .venture02-theme .v2-admin-layout-block--news .v2-news__summary {
    padding: 7px 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .venture02-theme .v2-admin-layout-block--news .v2-news__date {
    min-height: 25px;
  }

  .venture02-theme .v2-admin-layout-block--news .v2-news__toggle {
    padding-block: 6px;
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 8px;
  }

  .venture02-theme .v2-admin-layout-block--news .v2-news__panel {
    padding: 6px 24px 12px 0;
  }
}

@media (max-width: 359px) {
  .venture02-theme .v2-admin-layout-block--eyecatch {
    grid-template-columns: minmax(0, 1fr);
  }

  .venture02-theme .v2-admin-layout-block--eyecatch > .v2-side-promo--early {
    grid-column: auto;
  }

  .venture02-theme .v2-admin-layout-block--brands .venture-section-heading {
    display: grid;
  }
}

.v2-main-column {
  min-width: 0;
}

.v2-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--v2-line);
  border-radius: 4px;
  background: #eef7fb;
}

.v2-hero picture,
.v2-hero img {
  width: 100%;
}

.v2-hero__dots {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.v2-hero__dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #b9aa98;
}

.v2-hero__dots button.is-active {
  background: var(--v2-red);
}

.v2-mobile-shortcuts,
.v2-benefits {
  display: none;
}

.v2-section {
  margin-top: 25px;
}

.v2-section-heading {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.v2-section-title,
.v2-detail-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: var(--v2-section);
  font-weight: 500;
  letter-spacing: .06em;
}

.v2-section-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: var(--v2-link);
}

.v2-product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.v2-product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 3px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.v2-product-card:hover,
.v2-product-card:focus-within {
  border-color: var(--v2-line-strong);
  box-shadow: 0 12px 26px rgba(77, 49, 25, .09);
}

.v2-product-card__image {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #fbf7ef;
}

.v2-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.v2-product-card:hover .v2-product-card__image img {
  transform: scale(1.025);
}

.v2-product-card__body {
  padding: 10px 12px 13px;
}

.v2-product-card h3 {
  overflow: hidden;
  margin: 0;
  font-size: var(--v2-card-title);
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v2-product-card p {
  min-height: 2.9em;
  margin: 7px 0;
  color: var(--v2-muted);
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: .67rem;
  line-height: 1.45;
}

.v2-product-card strong {
  display: block;
  font-size: .93rem;
  font-weight: 500;
}

.v2-product-card strong small {
  font-size: .6rem;
}

.v2-slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.v2-slider-controls button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #b9aa98;
}

.v2-slider-controls button.is-active {
  background: var(--v2-red);
}

.v2-commerce-grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr .97fr 1.05fr;
  gap: 10px;
  margin-top: 30px;
}

.v2-paper-panel {
  min-width: 0;
  padding: 17px 18px;
  border-radius: 3px;
}

.v2-paper-panel h2 {
  margin: 0 0 13px;
  font-size: 1.06rem;
  font-weight: 500;
  letter-spacing: .05em;
}

.v2-ranking-list,
.v2-new-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.v2-ranking-list li {
  display: grid;
  min-height: 60px;
  grid-template-columns: 34px 56px 1fr;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--v2-line);
}

.v2-ranking-list li:last-child {
  border-bottom: 0;
}

.v2-ranking-list b {
  color: #b88b49;
  font-size: 1.5rem;
  font-weight: 400;
}

.v2-ranking-list img {
  width: 52px;
  height: 52px;
  object-fit: cover;
}

.v2-ranking-list span,
.v2-new-list span {
  min-width: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: .69rem;
}

.v2-ranking-list strong,
.v2-new-list strong {
  display: block;
  margin-top: 3px;
  font-size: .75rem;
  font-weight: 500;
}

.v2-new-list li {
  display: grid;
  min-height: 76px;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 9px;
}

.v2-new-list img {
  width: 78px;
  height: 74px;
  object-fit: cover;
}

.v2-feature-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.v2-feature-card img {
  width: 100%;
  aspect-ratio: 1.9;
  object-fit: cover;
}

.v2-feature-card p {
  margin: 10px 0 0;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: .68rem;
  line-height: 1.65;
}

.v2-feature-card a {
  margin-top: auto;
  padding-top: 10px;
  text-align: right;
  font-size: .72rem;
}

.v2-promo-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.v2-promo-row a {
  overflow: hidden;
  border: 1px solid var(--v2-line);
}

.v2-promo-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-block: 17px;
  color: #655b55;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: .72rem;
}

.v2-breadcrumb a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color .18s ease, text-decoration-color .18s ease;
}

.v2-breadcrumb a:hover,
.v2-breadcrumb a:focus-visible {
  color: var(--v2-red);
  text-decoration: underline;
}

.v2-page-hero {
  display: grid;
  min-height: 116px;
  place-items: center;
  border: 1px solid var(--v2-line);
  background:
    radial-gradient(circle at 9% 15%, rgba(240, 154, 166, .34), transparent 10rem),
    radial-gradient(circle at 94% 92%, rgba(188, 211, 153, .28), transparent 12rem),
    linear-gradient(90deg, #fff8ee, #fffdf8 45%, #f7f2e6);
  text-align: center;
}

.v2-page-hero h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3.1vw, 2.5rem);
  font-weight: 500;
  letter-spacing: .18em;
}

.v2-page-hero p {
  margin: 8px 0 0;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: .74rem;
}

.v2-list-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 28px;
  padding-block: 14px 28px;
}

.v2-list-sidebar__stack {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 12px;
}

.v2-list-sidebar .v2-side-panel {
  position: static;
}

.v2-filter-group {
  padding: 10px 13px;
  border-bottom: 1px solid var(--v2-line);
}

.v2-filter-group__title {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: .79rem;
  font-weight: 600;
  text-align: left;
}

.v2-filter-group__title::after {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.v2-filter-group__title[aria-expanded="true"]::after {
  transform: rotate(225deg);
}

.v2-filter-group ul {
  margin: 0;
  padding: 3px 0 3px 18px;
  list-style: none;
}

.v2-filter-group li a {
  display: block;
  padding: 5px 0;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: .72rem;
}

.v2-filter-group li a.is-active {
  color: var(--v2-red);
  font-weight: 700;
}

.v2-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 7px 0;
}

.v2-swatch {
  width: 17px;
  height: 17px;
  border: 1px solid rgba(53, 37, 31, .14);
  border-radius: 50%;
}

.v2-list-toolbar {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.v2-list-toolbar strong {
  font-size: .92rem;
  font-weight: 500;
}

.v2-list-toolbar__selects {
  display: flex;
  gap: 8px;
}

.v2-list-toolbar select {
  min-width: 140px;
  height: 36px;
  padding: 0 34px 0 12px;
  border: 1px solid var(--v2-line-strong);
  background: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: .72rem;
}

.v2-list-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.v2-list-products .v2-product-card p {
  display: none;
}

.v2-list-products .v2-product-card__body {
  padding-block: 12px 15px;
  text-align: center;
}

.v2-list-products .v2-product-card__image {
  aspect-ratio: 1 / .98;
}

.v2-soldout::after {
  position: absolute;
  top: 33%;
  left: 50%;
  z-index: 2;
  padding: 7px 14px;
  color: #fff;
  background: rgba(130, 16, 23, .9);
  content: "SOLD OUT";
  font-family: "Noto Sans JP", sans-serif;
  font-size: .7rem;
  letter-spacing: .08em;
  transform: translate(-50%, -50%);
}

.v2-soldout .v2-product-card__image img {
  filter: grayscale(.55);
  opacity: .55;
}

.v2-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.v2-pagination a,
.v2-pagination span,
.v2-pagination button {
  display: grid;
  min-width: 34px;
  height: 34px;
  padding-inline: 10px;
  place-items: center;
  border: 1px solid var(--v2-line);
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: .75rem;
}

.v2-pagination .is-current {
  color: #fff;
  border-color: var(--v2-red);
  background: var(--v2-red);
}

.v2-detail-grid {
  display: grid;
  grid-template-columns: 1.04fr .92fr;
  gap: 42px;
  padding: 4px 0 36px;
}

.v2-gallery-main {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.16;
  border: 1px solid var(--v2-line);
  background: var(--v2-product-surface);
}

.v2-gallery-image-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.v2-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-gallery-zoom-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--v2-line-strong);
  border-radius: 50%;
  color: var(--v2-ink);
  background: rgba(255, 253, 247, .92);
  box-shadow: 0 5px 16px rgba(53, 37, 31, .12);
  transition: border-color .18s ease, color .18s ease, transform .18s ease;
}

.v2-gallery-image-button:hover .v2-gallery-zoom-hint,
.v2-gallery-image-button:focus-visible .v2-gallery-zoom-hint {
  border-color: var(--v2-red);
  color: var(--v2-red);
  transform: scale(1.06);
}

.v2-gallery-zoom-hint .material-symbols-outlined {
  font-size: 20px;
}

.v2-gallery-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--v2-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity .18s ease, visibility .18s ease, border-color .18s ease, color .18s ease, background-color .18s ease;
}

.v2-gallery-main:hover .v2-gallery-arrow,
.v2-gallery-main:focus-within .v2-gallery-arrow {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.v2-gallery-arrow--prev {
  left: 10px;
}

.v2-gallery-arrow--next {
  right: 10px;
}

.v2-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 11px;
  margin-top: 10px;
}

.v2-gallery-thumb {
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--v2-line);
  background: var(--v2-product-surface);
}

.v2-gallery-thumb.is-active {
  border: 2px solid var(--v2-red);
}

.v2-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.v2-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  padding: 40px 76px;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, .88);
  animation: v2-lightbox-enter .18s ease-out both;
}

.v2-gallery-lightbox[hidden] {
  display: none;
}

.v2-gallery-lightbox__figure {
  display: grid;
  max-width: min(86vw, 980px);
  max-height: calc(100dvh - 80px);
  margin: 0;
  place-items: center;
}

.v2-gallery-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: calc(100dvh - 124px);
  object-fit: contain;
  padding: 20px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .4);
  transition: opacity .16s ease;
}

.v2-gallery-lightbox__counter {
  min-width: 62px;
  padding: 6px 12px;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
  background: rgba(0, 0, 0, .48);
  font-family: "Noto Sans JP", sans-serif;
  font-size: .7rem;
  text-align: center;
}

.v2-gallery-lightbox__close,
.v2-gallery-lightbox__arrow {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--v2-line-strong);
  border-radius: 50%;
  color: #fff;
  background: var(--v2-ink);
  transition: border-color .18s ease, color .18s ease, background-color .18s ease, transform .18s ease;
}

.v2-gallery-lightbox__close {
  top: 20px;
  right: 20px;
}

.v2-gallery-lightbox__arrow {
  top: 50%;
  transform: translateY(-50%);
}

.v2-gallery-lightbox__prev {
  left: 20px;
}

.v2-gallery-lightbox__next {
  right: 20px;
}

.v2-gallery-lightbox__close:hover,
.v2-gallery-lightbox__close:focus-visible,
.v2-gallery-lightbox__arrow:hover,
.v2-gallery-lightbox__arrow:focus-visible {
  border-color: #fff;
  color: #fff;
  background: var(--v2-red);
}

.v2-gallery-lightbox__close:active {
  transform: scale(.96);
}

.v2-gallery-lightbox__arrow:active {
  transform: translateY(-50%) scale(.96);
}

@keyframes v2-lightbox-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

.v2-detail-summary {
  min-width: 0;
}

.v2-detail-tags {
  display: flex;
  gap: 7px;
}

.v2-detail-tags span {
  padding: 5px 10px;
  color: #fff;
  background: var(--v2-red);
  font-family: "Noto Sans JP", sans-serif;
  font-size: .65rem;
}

.v2-detail-tags span + span {
  background: var(--v2-gold);
}

.v2-detail-summary h1 {
  margin: 17px 0 6px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: .07em;
}

.v2-product-code {
  color: var(--v2-muted);
  font-family: "Noto Sans JP", sans-serif;
  font-size: .68rem;
}

.v2-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: .72rem;
}

.v2-review-jump {
  color: var(--v2-muted);
  text-decoration: underline transparent;
  text-underline-offset: 3px;
  transition: color .18s ease, text-decoration-color .18s ease;
}

.v2-review-jump:hover,
.v2-review-jump:focus-visible {
  color: var(--v2-red);
  text-decoration-color: currentColor;
}

.v2-stars {
  color: #e4a014;
  letter-spacing: .1em;
}

.v2-detail-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 18px;
  font-size: clamp(1.8rem, 3.5vw, 2.65rem);
}

.v2-detail-price small {
  font-size: .67rem;
}

.v2-detail-description {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--v2-line);
  font-family: "Noto Sans JP", sans-serif;
  font-size: .75rem;
  line-height: 1.8;
}

.v2-option-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.v2-detail-variants {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.v2-detail-variants .v2-option-row {
  display: grid;
  gap: 6px;
  margin-top: 0;
}

.v2-detail-variants .v2-option-row > b {
  width: auto;
}

.v2-detail-variants .v2-detail-select {
  width: 100%;
}

.v2-option-row > b {
  width: 52px;
  flex: 0 0 auto;
  font-size: .76rem;
}

.v2-detail-select {
  width: min(100%, 310px);
  min-height: 38px;
  padding: 0 36px 0 13px;
  border: 1px solid var(--v2-line-strong);
  background-color: #fff;
  color: var(--v2-ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: .72rem;
}

.v2-color-options {
  display: flex;
  gap: 14px;
}

.v2-color-options button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 3px solid #fff;
  border-radius: 50%;
  outline: 1px solid var(--v2-line);
}

.v2-color-options button.is-active {
  outline: 2px solid var(--v2-red-soft);
}

.v2-quantity {
  display: grid;
  width: 120px;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  border: 1px solid var(--v2-line-strong);
}

.v2-quantity button,
.v2-quantity input {
  width: 100%;
  height: 36px;
  padding: 0;
  border: 0;
  background: #fff;
  text-align: center;
}

.v2-quantity button {
  display: grid;
  padding: 0;
  place-items: center;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}

.v2-quantity button:hover,
.v2-quantity button:focus-visible {
  color: var(--v2-red);
  background: var(--v2-cream);
}

.v2-quantity input {
  border-right: 1px solid var(--v2-line);
  border-left: 1px solid var(--v2-line);
  appearance: textfield;
}

.v2-quantity input::-webkit-inner-spin-button,
.v2-quantity input::-webkit-outer-spin-button { margin: 0; appearance: none; }

.v2-cart-product-media { display: grid; place-items: center; background: var(--v2-product-surface); }
.v2-cart-product-media img { object-fit: contain; padding: 6px; background: transparent; }

.v2-stock {
  color: var(--v2-green);
  font-family: "Noto Sans JP", sans-serif;
  font-size: .7rem;
}

.v2-detail-actions {
  display: grid;
  grid-template-columns: 1fr 58px;
  gap: 14px;
  margin-top: 24px;
}

.v2-detail-actions--cart-only {
  grid-template-columns: minmax(0, 1fr);
}

.v2-detail-actions--favorite-only {
  grid-template-columns: 58px;
  justify-content: end;
  margin-top: 12px;
}

.v2-cart-button {
  min-height: 52px;
  border: 0;
  color: #fff;
  background: linear-gradient(90deg, var(--v2-red-dark), var(--v2-red));
  font-size: .95rem;
  letter-spacing: .08em;
}

.v2-detail-soldout {
  margin-top: 18px;
}

.v2-cart-button--soldout,
.v2-cart-button--soldout:disabled {
  width: 100%;
  border: 1px solid var(--v2-line);
  color: var(--v2-muted);
  background: #eee8de;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.v2-favorite-button {
  border: 1px solid var(--v2-line);
  color: var(--v2-muted);
  background: #fff;
  transition: border-color .18s ease, color .18s ease, background-color .18s ease, transform .18s ease;
}

.v2-favorite-button:hover,
.v2-favorite-button:focus-visible,
.v2-favorite-button.is-favorited {
  border-color: var(--v2-red);
  color: var(--v2-red);
  background: #fff7f4;
}

.v2-favorite-button.is-favorited .v2-icon {
  color: var(--v2-red);
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
}

.v2-favorite-button:active:not(:disabled) {
  transform: scale(.97);
}

.v2-favorite-button:disabled {
  cursor: default;
  opacity: 1;
}

.v2-detail-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--v2-line);
}

.v2-detail-benefits > span {
  display: grid;
  gap: 5px;
  place-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: .59rem;
  text-align: center;
}

.v2-detail-benefits > span > .material-symbols-outlined {
  display: inline-grid;
  font-family: "Material Symbols Outlined";
  font-size: 1.15rem;
}

.v2-detail-info {
  display: grid;
  grid-template-columns: .95fr 1.1fr;
  gap: 30px;
  padding: 25px;
  margin-bottom: 28px;
}

.v2-detail-info p,
.v2-detail-info td,
.v2-detail-info th {
  font-family: "Noto Sans JP", sans-serif;
  font-size: .72rem;
  line-height: 1.8;
}

.v2-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.v2-spec-table th,
.v2-spec-table td {
  padding: 7px 13px;
  border-bottom: 1px solid var(--v2-line);
  text-align: left;
}

.v2-spec-table th {
  width: 28%;
  background: rgba(230, 213, 190, .35);
  font-weight: 500;
}

.v2-related-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.v2-review-area {
  padding: 25px;
  margin: 38px 0;
}

.v2-review-summary {
  display: grid;
  grid-template-columns: 160px 1fr 180px;
  align-items: center;
  gap: 28px;
}

.v2-review-score {
  text-align: center;
}

.v2-review-score strong {
  display: block;
  font-size: 3rem;
  font-weight: 400;
}

.v2-review-bars {
  display: grid;
  gap: 7px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: .7rem;
}

.v2-review-bar {
  display: grid;
  grid-template-columns: 64px 1fr 30px;
  align-items: center;
  gap: 8px;
}

.v2-review-bar i {
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 8px;
  background: #ece8e0;
}

.v2-review-bar i::before {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: #d19a32;
  content: "";
}

.v2-review-cta {
  min-height: 45px;
  border: 1px solid var(--v2-line-strong);
  background: #fff;
  font-size: .74rem;
  transition: border-color .18s ease, color .18s ease, background-color .18s ease, transform .18s ease;
}

.v2-review-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  border-top: 1px solid var(--v2-line);
}

.v2-review-card {
  width: 100%;
  min-width: 0;
  padding: 16px 4px;
  border: 0;
  border-bottom: 1px solid var(--v2-line);
  background: transparent;
}

.v2-review-card:last-child {
  border-bottom: 0;
}

.v2-review-card h3 {
  margin: 8px 0;
  font-size: .85rem;
}

.v2-review-card p,
.v2-review-card small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: .68rem;
  line-height: 1.8;
}

.v2-footer-guide {
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  background: #fffdfa;
}

.v2-footer-guide__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.v2-footer-guide a {
  min-height: 46px;
  justify-content: center;
  border-right: 1px solid var(--v2-line);
  font-size: .73rem;
}

.v2-footer-guide a:last-child {
  border-right: 0;
}

.v2-footer {
  position: relative;
  padding: 31px 0 42px;
  overflow: hidden;
  border-top: 1px solid rgba(183, 131, 56, .18);
  background:
    linear-gradient(180deg, rgba(251, 246, 236, .92), rgba(248, 241, 228, .96)),
    var(--v2-paper-deep);
}

.v2-footer::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 20px;
  background:
    linear-gradient(30deg, transparent 45%, rgba(128, 87, 43, .12) 46%, rgba(128, 87, 43, .12) 54%, transparent 55%) 0 0 / 20px 14px,
    linear-gradient(150deg, transparent 45%, rgba(128, 87, 43, .12) 46%, rgba(128, 87, 43, .12) 54%, transparent 55%) 0 0 / 20px 14px;
  content: "";
}

.v2-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr .8fr .9fr .95fr 1.1fr;
  gap: 25px;
}

.v2-footer__brand {
  padding-right: 20px;
}

.v2-footer__column {
  position: relative;
}

.v2-footer__column::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -13px;
  width: 1px;
  background: var(--v2-line);
  content: "";
}

.v2-footer .v2-logo__mark {
  width: 42px;
  height: 42px;
  font-size: 1.4rem;
}

.v2-footer .v2-logo__copy strong {
  font-size: 1.12rem;
}

.v2-footer__brand p,
.v2-footer__column a,
.v2-footer__column p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: .67rem;
  line-height: 1.75;
}

.v2-footer__column h2 {
  margin: 0 0 10px;
  font-size: .78rem;
}

.v2-footer__column a {
  display: block;
  padding: 2px 0;
}

.v2-footer__column a:hover,
.v2-footer__column a:focus-visible {
  color: var(--v2-red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.v2-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.v2-social a {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--v2-line-strong);
  border-radius: 50%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: .62rem;
}

@media (max-width: 1020px) {
  .v2-header__main {
    grid-template-columns: 235px 1fr auto;
  }

  .v2-header__nav {
    gap: 14px;
    font-size: .7rem;
  }

  .v2-search {
    display: none;
  }

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

  .v2-commerce-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --v2-card-title: .82rem;
    --v2-copy: .78rem;
    --v2-link: .72rem;
  }

  .v2-shell {
    width: min(calc(100% - 24px), var(--v2-shell));
  }

  .v2-announcement,
  .v2-header__nav,
  .v2-header__tools .v2-search,
  .v2-sidebar {
    display: none;
  }

  .v2-header {
    border-radius: 0 0 16px 16px;
  }

  .v2-header__main {
    min-height: 72px;
    grid-template-columns: 1fr repeat(4, 46px);
    gap: 5px;
  }

  .v2-logo {
    gap: 7px;
  }

  .v2-logo__mark {
    width: 42px;
    height: 42px;
    font-size: 1.45rem;
  }

  .v2-logo__copy strong {
    font-size: clamp(.95rem, 4.2vw, 1.28rem);
    letter-spacing: .08em;
  }

  .v2-logo__copy small {
    margin-top: 4px;
    font-size: .47rem;
    letter-spacing: .12em;
  }

  .v2-header__tools {
    display: contents;
  }

  .v2-mobile-search-link {
    display: grid;
  }

  .v2-tool-link,
  .v2-menu-button {
    display: grid;
    min-width: 0;
    font-size: .55rem;
  }

  .v2-tool-link .v2-icon,
  .v2-menu-button .v2-icon {
    width: 26px;
    height: 26px;
  }

  .v2-mobile-menu {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 100;
    display: grid;
    width: min(86vw, 360px);
    align-content: start;
    padding: 19px;
    background: #fffdf8;
    box-shadow: -20px 0 50px rgba(53, 37, 31, .18);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: .25s ease;
  }

  .v2-mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .v2-mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--v2-line);
  }

  .v2-mobile-menu__close {
    width: 38px;
    height: 38px;
    border: 1px solid var(--v2-line);
    border-radius: 50%;
    background: #fff;
  }

  .v2-mobile-menu nav {
    display: grid;
    margin-top: 10px;
  }

  .v2-mobile-menu nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--v2-line);
    font-size: .86rem;
  }

  .v2-home-layout {
    display: block;
    padding-top: 12px;
  }

  .v2-hero {
    border-radius: 6px;
  }

  .v2-hero__dots {
    bottom: 7px;
    gap: 10px;
  }

  .v2-mobile-shortcuts {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    margin-top: 10px;
  }

  .v2-mobile-shortcut {
    display: grid;
    min-width: 0;
    min-height: 74px;
    padding: 8px 3px 6px;
    place-items: center;
    border: 1px solid var(--v2-line);
    border-radius: 5px;
    background: #fffdfa;
    font-family: "Noto Sans JP", sans-serif;
    font-size: .58rem;
    text-align: center;
  }

  .v2-mobile-shortcut img {
    width: 39px;
    height: 39px;
    object-fit: cover;
    border-radius: 7px;
  }

  .v2-mobile-shortcut .v2-icon {
    width: 38px;
    height: 38px;
    color: var(--v2-red);
  }

  .v2-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-top: 10px;
  }

  .v2-benefit {
    min-width: 0;
    min-height: 55px;
    justify-content: center;
    padding: 6px;
    border: 1px solid var(--v2-line);
    border-radius: 5px;
    background: linear-gradient(135deg, #fffdf9, #f8eee0);
  }

  .v2-benefit .v2-icon {
    width: 23px;
    height: 23px;
  }

  .v2-benefit span {
    display: grid;
    min-width: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: .57rem;
    line-height: 1.35;
  }

  .v2-benefit strong {
    overflow: hidden;
    font-size: .65rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v2-section {
    margin-top: 16px;
  }

  .v2-section-heading {
    min-height: 34px;
  }

  .v2-section-title {
    gap: 6px;
    font-size: 1.04rem;
  }

  .v2-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--v2-line);
    border-left: 1px solid var(--v2-line);
  }

  .v2-product-grid .v2-product-card {
    display: grid;
    min-height: 123px;
    grid-template-columns: 41% 59%;
    border-width: 0 1px 1px 0;
    border-radius: 0;
    box-shadow: none;
  }

  .v2-product-grid .v2-product-card__image {
    align-self: center;
    aspect-ratio: 1;
  }

  .v2-product-grid .v2-product-card__body {
    align-self: center;
    padding: 8px 10px;
  }

  .v2-product-grid .v2-product-card p {
    min-height: 0;
    margin: 5px 0;
    font-size: .61rem;
  }

  .v2-product-grid .v2-product-card strong {
    font-size: .79rem;
    white-space: nowrap;
  }

  .v2-slider-controls {
    display: none;
  }

  .v2-commerce-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 8px;
  }

  .v2-paper-panel {
    padding: 11px 12px;
  }

  .v2-paper-panel h2 {
    margin-bottom: 8px;
    font-size: .88rem;
  }

  .v2-ranking-list li {
    min-height: 43px;
    grid-template-columns: 28px 40px 1fr;
    gap: 4px;
  }

  .v2-ranking-list b {
    font-size: 1.25rem;
  }

  .v2-ranking-list img {
    width: 38px;
    height: 38px;
  }

  .v2-ranking-list span,
  .v2-new-list span {
    font-size: .57rem;
  }

  .v2-ranking-list strong,
  .v2-new-list strong {
    font-size: .63rem;
  }

  .v2-new-list li {
    min-height: 64px;
    grid-template-columns: 62px 1fr;
    gap: 5px;
  }

  .v2-new-list img {
    width: 60px;
    height: 58px;
  }

  .v2-feature-card p {
    font-size: .58rem;
    line-height: 1.45;
  }

  .v2-promo-row {
    gap: 7px;
    margin-top: 8px;
  }

  .v2-breadcrumb {
    gap: 5px;
    padding-block: 12px;
    overflow-wrap: anywhere;
  }

  .v2-page-hero {
    min-height: 92px;
    padding: 14px;
  }

  .v2-page-hero h1 {
    font-size: 1.45rem;
  }

  .v2-page-hero p {
    font-size: .65rem;
    line-height: 1.6;
  }

  .v2-list-layout {
    display: block;
    padding-top: 10px;
  }

  .v2-list-sidebar {
    margin-bottom: 8px;
  }

  .v2-list-sidebar .v2-side-panel {
    position: static;
  }

  .v2-list-sidebar__stack {
    position: static;
    gap: 8px;
  }

  .v2-list-sidebar .v2-side-promo {
    display: none;
  }

  .v2-list-sidebar .v2-filter-group {
    display: block;
  }

  .v2-list-toolbar {
    min-height: 48px;
  }

  .v2-list-toolbar__selects {
    gap: 5px;
  }

  .v2-list-toolbar select {
    min-width: 0;
    width: 116px;
    height: 34px;
    padding-left: 8px;
  }

  .v2-list-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .v2-pagination {
    flex-wrap: wrap;
    gap: 5px;
  }

  .v2-list-products .v2-product-card h3 {
    font-size: .78rem;
  }

  .v2-list-products .v2-product-card strong {
    font-size: .82rem;
  }

  .v2-detail-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 24px;
  }

  .v2-gallery-thumbs {
    gap: 7px;
  }

  .v2-detail-summary h1 {
    margin-top: 12px;
    font-size: clamp(1.35rem, 5.8vw, 1.5rem);
    line-height: 1.35;
    letter-spacing: .04em;
  }

  .v2-detail-price {
    font-size: 2rem;
  }

  .v2-detail-actions {
    grid-template-columns: 1fr 52px;
  }

  .v2-detail-benefits {
    gap: 7px;
  }

  .v2-detail-benefits > span {
    padding: 7px 2px;
    border: 0;
    background: transparent;
  }

  .v2-detail-benefits > span > .v2-icon {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .v2-detail-info {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .v2-related-grid {
    display: flex;
    gap: 10px;
    padding-bottom: 7px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .v2-related-grid .v2-product-card {
    min-width: 47%;
    scroll-snap-align: start;
  }

  .v2-review-area {
    padding: 18px;
  }

  .v2-review-summary {
    grid-template-columns: 100px 1fr;
    gap: 16px;
  }

  .v2-review-cta {
    grid-column: 1 / -1;
  }

  .v2-review-cards {
    display: grid;
    overflow: visible;
  }

  .v2-review-card {
    min-width: 0;
  }

  .v2-footer-guide__inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .v2-footer-guide a {
    display: grid;
    min-height: 52px;
    gap: 2px;
    place-items: center;
    font-size: .57rem;
    text-align: center;
  }

  .v2-footer {
    padding: 21px 0 35px;
  }

  .v2-footer__grid {
    grid-template-columns: 1.25fr .8fr .9fr 1.05fr;
    gap: 9px;
  }

  .v2-footer__brand {
    padding-right: 8px;
  }

  .v2-footer__column::before {
    left: -5px;
  }

  .v2-footer__column:nth-child(4) {
    display: none;
  }

  .v2-footer__column h2 {
    font-size: .68rem;
  }

  .v2-footer__brand p,
  .v2-footer__column a,
  .v2-footer__column p {
    font-size: .55rem;
    line-height: 1.55;
  }
}

@media (max-width: 390px) {
  .v2-shell {
    width: min(calc(100% - 18px), var(--v2-shell));
  }

  .v2-header__main {
    grid-template-columns: 1fr repeat(4, 41px);
    gap: 2px;
  }

  .v2-logo__mark {
    width: 38px;
    height: 38px;
  }

  .v2-logo__copy strong {
    font-size: .93rem;
  }

  .v2-mobile-shortcut {
    min-height: 68px;
    font-size: .52rem;
  }

  .v2-mobile-shortcut img,
  .v2-mobile-shortcut .v2-icon {
    width: 34px;
    height: 34px;
  }

  .v2-benefit {
    padding-inline: 3px;
  }

  .v2-benefit .v2-icon {
    display: none;
  }

  .v2-product-grid .v2-product-card {
    min-height: 112px;
  }

  .v2-list-toolbar select {
    width: 104px;
    font-size: .65rem;
  }

  .v2-footer .v2-logo__copy small {
    display: none;
  }
}

@media (max-width: 340px) {
  .v2-header__main {
    grid-template-columns: 1fr repeat(4, 38px);
    gap: 1px;
  }

  .v2-logo__mark {
    width: 34px;
    height: 34px;
  }

  .v2-logo__copy strong {
    font-size: .84rem;
  }

  .v2-logo__copy small {
    font-size: .42rem;
  }

  .v2-product-grid .v2-product-card p {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* LIST filter disclosure: JavaScript adds .is-collapsible, preserving a visible
 * no-JS fallback while keeping the entire filter area compact on mobile. */
.v2-list-filter-toggle {
  display: none;
}

@media (max-width: 900px) {
  body#page_product_list.venture-list-page .v2-list-filter-toggle.is-ready {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    margin-top: 10px;
    padding: 10px 14px;
    border: 1px solid #dfd8ce;
    border-radius: 4px;
    background: #fff;
    color: #4d443c;
    font: inherit;
    font-weight: 700;
    text-align: left;
  }

  body#page_product_list.venture-list-page .v2-list-filter-toggle__icon {
    transition: transform .2s ease;
  }

  body#page_product_list.venture-list-page .v2-list-filter-toggle[aria-expanded="true"] .v2-list-filter-toggle__icon {
    transform: rotate(180deg);
  }

  body#page_product_list.venture-list-page .v2-list-sidebar.is-collapsible:not(.is-open) {
    display: none;
  }
}

/* EC-CUBE integration overrides.
 * The reference theme carries a dark storefront skin with selectors that are more
 * specific than the static prototype. Keep the dynamic markup and explicitly
 * restore Venture02's paper, vermilion and ink design language here. */
body.venture02-theme,
body#page_product_list.venture-list-page,
body#page_product_detail.venture-detail-page {
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 9% 12%, rgba(183, 131, 56, .035), transparent 22rem),
    linear-gradient(180deg, #fffefb 0, var(--v2-paper) 55%, #fbf6ec 100%) !important;
  color: var(--v2-ink) !important;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
}

body#page_product_list.venture-list-page .hidden {
  display: none !important;
}

body.venture02-theme::before,
body#page_product_list.venture-list-page::before,
body#page_product_detail.venture-detail-page::before {
  background-image: linear-gradient(45deg, transparent 48%, rgba(130, 86, 36, .018) 49%, rgba(130, 86, 36, .018) 51%, transparent 52%);
  background-position: 0 0;
  background-size: 22px 22px;
  opacity: 1;
}

.venture02-theme .v2-header,
.venture02-theme .v2-header a,
.venture02-theme .v2-header button,
.venture02-theme .v2-mobile-menu,
.venture02-theme .v2-footer,
.venture02-theme .v2-footer-guide {
  color: var(--v2-ink);
}

.venture02-theme .v2-announcement,
.venture02-theme .v2-announcement a {
  color: #fff;
}

.venture02-theme .v2-cart-button,
.venture02-theme .v2-cart-button span,
.venture02-theme .v2-cart-trigger,
.venture02-theme .v2-cart-trigger span {
  color: inherit;
}

.venture02-theme .v2-detail-actions .v2-cart-button {
  color: #fff !important;
}

.venture02-theme .ec-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
}

.venture02-theme .ec-modal-overlay {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background: rgba(36, 23, 17, .36);
}

.venture02-theme .ec-modal-wrap {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(92vw, 420px);
  padding: 28px;
  border: 1px solid var(--v2-line-strong);
  background: var(--v2-paper);
  box-shadow: 0 18px 48px rgba(45, 26, 15, .2);
  text-align: center;
}

.venture02-theme .v2-cart-modal__header {
  display: grid;
  gap: 8px;
  place-items: center;
  color: var(--v2-ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: .86rem;
  font-weight: 600;
}

.venture02-theme .v2-cart-modal__icon {
  color: var(--v2-red);
  font-size: 34px;
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 32;
}

.venture02-theme .ec-modal-wrap a,
.venture02-theme .ec-modal-wrap button:not(.ec-modal-close) {
  padding: 10px 14px;
  border: 1px solid var(--v2-line-strong);
  background: #fff;
  color: var(--v2-ink);
}

.venture02-theme .ec-modal-wrap .v2-cart-modal__action,
.venture02-theme .ec-modal-wrap .v2-cart-modal__continue {
  transition: border-color .18s ease, color .18s ease, background-color .18s ease, transform .18s ease;
}

.venture02-theme .ec-modal-wrap .v2-cart-modal__action {
  border-color: var(--v2-red);
  color: #fff;
  background: var(--v2-red);
}

.venture02-theme .ec-modal-wrap .v2-cart-modal__action:hover,
.venture02-theme .ec-modal-wrap .v2-cart-modal__action:focus-visible {
  border-color: var(--v2-red-dark);
  color: #fff;
  background: var(--v2-red-dark);
  transform: translateY(-1px);
}

.venture02-theme .ec-modal-wrap .v2-cart-modal__continue:hover,
.venture02-theme .ec-modal-wrap .v2-cart-modal__continue:focus-visible {
  border-color: var(--v2-red);
  color: var(--v2-red);
  background: #fff7f4;
  transform: translateY(-1px);
}

.venture02-theme .ec-modal-wrap .v2-cart-modal__action:active,
.venture02-theme .ec-modal-wrap .v2-cart-modal__continue:active {
  transform: translateY(0);
}

.venture02-theme .ec-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  color: var(--v2-muted);
  font-size: 1.2rem;
}

.venture02-theme .v2-home-layout {
  width: min(calc(100% - 40px), var(--v2-shell));
  color: var(--v2-ink);
}

.venture02-theme .venture-section-heading h2,
.venture02-theme .venture-section-heading a,
.venture02-theme .venture-section h2,
.venture02-theme .venture-section a {
  color: var(--v2-ink);
}

.venture02-theme .venture-section-heading h2 > .material-symbols-outlined {
  color: var(--v2-red);
}

.venture02-theme .venture-new-swiper {
  padding-top: 8px;
}

.venture02-theme .venture-product-card.v2-product-card {
  padding: 0;
  border: 1px solid var(--v2-line);
  background: linear-gradient(145deg, rgba(255, 255, 255, .74), rgba(249, 241, 227, .84));
  color: var(--v2-ink);
  box-shadow: 0 8px 22px rgba(81, 51, 27, .025);
}

.venture02-theme .venture-product-card.v2-product-card:hover,
.venture02-theme .venture-product-card.v2-product-card:focus-within {
  border-color: var(--v2-line-strong);
  box-shadow: 0 12px 26px rgba(77, 49, 25, .09);
  transform: none;
}

.venture02-theme .v2-product-card .v2-product-card__image {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #fbf7ef;
}

.venture02-theme .v2-product-card .v2-product-card__image img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.venture02-theme .v2-product-card .v2-product-card__body {
  padding: 10px 12px 13px;
}

.venture02-theme .v2-product-card h3 {
  overflow: hidden;
  margin: 0;
  color: var(--v2-ink);
  font-size: var(--v2-card-title);
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.venture02-theme .v2-product-card p {
  min-height: 2.9em;
  margin: 7px 0;
  color: var(--v2-muted);
  font-family: "Noto Sans JP", sans-serif;
  font-size: .67rem;
  font-weight: 400;
  line-height: 1.45;
}

.venture02-theme .v2-product-card strong {
  display: block;
  color: var(--v2-ink);
  font-size: .93rem;
  font-weight: 500;
}

.venture02-theme .v2-side-card,
.venture02-theme .v2-side-panel,
.venture02-theme .v2-paper-panel,
.venture02-theme .v2-feature-card {
  color: var(--v2-ink);
}

.venture02-theme .v2-category-item > a,
.venture02-theme .v2-category-sub a,
.venture02-theme .venture-member-card h2 {
  color: var(--v2-ink);
}

.venture02-theme .v2-header .v2-cart-button,
.venture02-theme .v2-header .v2-cart-button span,
.venture02-theme .v2-header .v2-cart-button small,
.venture02-theme .v2-header .v2-cart-button b {
  color: #fff !important;
}

.venture02-theme .venture-member-card__identity,
.venture02-theme .venture-member-card__links,
.venture02-theme .venture-member-card__actions {
  display: grid;
  gap: 7px;
}

.venture02-theme .venture-member-card__identity {
  grid-template-columns: 24px 1fr;
  align-items: center;
}

.venture02-theme .venture-member-card__identity small {
  color: var(--v2-gold);
  font-family: "Noto Sans JP", sans-serif;
  font-size: .52rem;
  letter-spacing: .16em;
}

.venture02-theme .venture-member-card__identity h2 {
  margin: 2px 0 0;
  font-size: .88rem;
  font-weight: 500;
}

.venture02-theme .venture-member-card > p {
  margin: 12px 0;
}

.venture02-theme .venture-member-card__actions {
  grid-template-columns: 1fr 1fr;
}

.venture02-theme .venture-member-card__actions a,
.venture02-theme .venture-member-card__links a {
  display: grid;
  min-height: 34px;
  place-items: center;
  border: 1px solid var(--v2-line-strong);
  background: #fff;
  color: var(--v2-ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: .65rem;
}

.venture02-theme .venture-member-card__actions a:first-child {
  color: #fff;
  border-color: var(--v2-red);
  background: var(--v2-red);
}

.venture02-theme .venture-mobile-member-card {
  color: var(--v2-ink);
}

/* Product list */
body#page_product_list.venture-list-page .venture-list {
  min-height: 62vh;
  padding: 22px 0 48px;
}

body#page_product_list.venture-list-page .venture-list__layout {
  width: min(calc(100% - 40px), var(--v2-shell));
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 28px;
}

body#page_product_list.venture-list-page .venture-list-categories,
body#page_product_list.venture-list-page .venture-list-main {
  border-color: var(--v2-line);
  background: rgba(255, 253, 248, .92);
  color: var(--v2-ink);
}

body#page_product_list.venture-list-page .venture-list-categories h2 {
  min-height: 48px;
  border-color: var(--v2-line);
  color: var(--v2-ink);
  font-weight: 600;
}

body#page_product_list.venture-list-page .venture-list-categories a {
  min-height: 42px;
  border-color: var(--v2-line);
  color: var(--v2-ink);
}

body#page_product_list.venture-list-page .venture-list-categories a > .material-symbols-outlined,
body#page_product_list.venture-list-page .venture-list-category__toggle {
  color: var(--v2-red);
}

body#page_product_list.venture-list-page .venture-list-categories a:hover,
body#page_product_list.venture-list-page .venture-list-categories a:focus-visible,
body#page_product_list.venture-list-page .venture-list-category__row.is-path {
  color: var(--v2-red);
  background: rgba(169, 18, 24, .045);
}

body#page_product_list.venture-list-page .venture-list-categories a.is-active {
  color: #fff;
  background: linear-gradient(90deg, var(--v2-red-dark), var(--v2-red));
  text-shadow: none;
}

body#page_product_list.venture-list-page .venture-list-category__children {
  border-color: var(--v2-line);
  background: var(--v2-paper-deep);
}

body#page_product_list.venture-list-page .venture-list-category__toggle {
  border-color: var(--v2-line);
}

body#page_product_list.venture-list-page .venture-list-promo {
  min-height: 120px;
  border-color: var(--v2-line);
  background: linear-gradient(135deg, #fffdf9, #f8eee0);
  color: var(--v2-ink);
}

body#page_product_list.venture-list-page .venture-list-promo--buy {
  background: linear-gradient(135deg, #fff7ef, #f2dfd6);
}

body#page_product_list.venture-list-page .venture-list-promo::after {
  display: none;
}

body#page_product_list.venture-list-page .venture-list-promo strong,
body#page_product_list.venture-list-page .venture-list-promo small {
  color: var(--v2-ink);
}

body#page_product_list.venture-list-page .venture-list-heading {
  min-height: 66px;
  border-color: var(--v2-line);
  background:
    radial-gradient(circle at 10% 20%, rgba(240, 154, 166, .18), transparent 10rem),
    linear-gradient(90deg, #fff8ee, #fffdf8 45%, #f7f2e6);
}

body#page_product_list.venture-list-page .venture-list-heading > .material-symbols-outlined {
  color: var(--v2-red);
}

body#page_product_list.venture-list-page .venture-list-heading h1 {
  color: var(--v2-ink);
  font-weight: 500;
}

body#page_product_list.venture-list-page .venture-list-toolbar {
  border-color: var(--v2-line);
}

body#page_product_list.venture-list-page .venture-list-toolbar p,
body#page_product_list.venture-list-page .venture-list-toolbar p span,
body#page_product_list.venture-list-page .venture-list-sort {
  color: var(--v2-muted);
}

body#page_product_list.venture-list-page .venture-list-sort select {
  border-color: var(--v2-line-strong);
  background: #fff;
  color: var(--v2-ink);
}

body#page_product_list.venture-list-page .venture-list-sort__select > .material-symbols-outlined {
  color: var(--v2-red);
}

body#page_product_list.venture-list-page .venture-product-grid {
  gap: 1px;
  background: var(--v2-line);
}

body#page_product_list.venture-list-page .venture-product-card {
  border: 0;
  background: #fffdf9;
}

body#page_product_list.venture-list-page .venture-product-card__link {
  min-height: 0;
  color: var(--v2-ink);
}

body#page_product_list.venture-list-page .venture-product-card__media {
  min-height: 0;
  aspect-ratio: 1;
  padding: 12px;
  background: #fbf7ef;
}

body#page_product_list.venture-list-page .venture-product-card__media img {
  max-height: none;
  object-fit: cover;
}

body#page_product_list.venture-list-page .venture-product-card__body {
  padding: 12px 9px 15px;
}

body#page_product_list.venture-list-page .venture-product-card__body h2,
body#page_product_list.venture-list-page .venture-product-card__body strong {
  color: var(--v2-ink);
}

body#page_product_list.venture-list-page .venture-product-card__link:hover,
body#page_product_list.venture-list-page .venture-product-card__link:focus-visible {
  color: var(--v2-red);
  background: rgba(169, 18, 24, .025);
}

body#page_product_list.venture-list-page .venture-list-pagination button {
  border-color: var(--v2-line-strong);
  background: #fff;
  color: var(--v2-ink);
}

body#page_product_list.venture-list-page .venture-list-pagination button.is-current {
  color: #fff;
  border-color: var(--v2-red);
  background: var(--v2-red);
}

body.venture02-theme.other_page .ec-layoutRole__main,
body.venture02-theme.cart_page .ec-layoutRole__main,
body.venture02-theme.mypage_page .ec-layoutRole__main {
  color: var(--v2-ink);
}

@media (max-width: 820px) {
  .venture02-theme .v2-home-layout,
  body#page_product_list.venture-list-page .venture-list__layout {
    width: min(calc(100% - 20px), var(--v2-shell));
  }

  .venture02-theme .venture-new-swiper .venture-product-card.v2-product-card {
    padding: 0;
  }

  .venture02-theme .venture-new-swiper .v2-product-card .v2-product-card__image img {
    height: 100%;
  }

  .venture02-theme .venture-new-swiper .v2-product-card p {
    display: block;
    white-space: normal;
  }

  .venture02-theme .venture-mobile-shortcuts .v2-mobile-shortcut {
    border-color: var(--v2-line);
    background: #fffdfa;
    color: var(--v2-ink);
  }

  .venture02-theme .venture-mobile-shortcuts .v2-mobile-shortcut .material-symbols-outlined {
    color: var(--v2-red);
  }

  body#page_product_list.venture-list-page .venture-list__layout {
    display: block;
  }

  body#page_product_list.venture-list-page .venture-list-sidebar {
    margin-bottom: 10px;
  }

  body#page_product_list.venture-list-page .venture-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body#page_product_list.venture-list-page .venture-product-card:nth-child(2n) {
    border-right: 0;
  }
}

/* Venture02 visual-fidelity recovery (design source is the authority). */
.venture02-theme .v2-category-label {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.venture02-theme .v2-category-label > .material-symbols-outlined {
  flex: 0 0 auto;
  color: var(--v2-red);
  font-size: 17px;
}

.venture02-theme .v2-home-layout {
  grid-template-columns: 198px minmax(0, 1fr);
  padding-top: 0;
}

.venture02-theme .venture-hero.v2-hero {
  aspect-ratio: auto;
  min-height: 0;
}

.venture02-theme .venture-hero.v2-hero picture {
  display: block;
}

.venture02-theme .venture-hero.v2-hero img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.venture02-theme .v2-ranking-list li:nth-child(n + 5) {
  display: none;
}

.venture02-theme .v2-commerce-grid {
  align-items: stretch;
}

.venture02-theme .venture-new-swiper .v2-product-card p {
  display: -webkit-box;
  max-height: 2.9em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.venture02-theme .v2-commerce-grid > * {
  height: 282px;
  min-height: 282px;
  overflow: hidden;
}

.venture02-theme .v2-feature-card img {
  max-height: 116px;
}

.venture-list-visual-head .v2-breadcrumb {
  padding-bottom: 14px;
}

body#page_product_list.venture-list-page .venture-list-visual-head .v2-page-hero {
  min-height: 116px;
  border: 1px solid var(--v2-line);
  background:
    radial-gradient(circle at 13% 50%, rgba(231, 134, 150, .2), transparent 12rem),
    radial-gradient(circle at 89% 46%, rgba(176, 202, 137, .23), transparent 14rem),
    linear-gradient(90deg, #fff6ed, #fffdf8 48%, #f7f2e6);
}

body#page_product_list.venture-list-page .venture-list-visual-head .v2-page-hero h1 {
  color: var(--v2-ink);
}

body#page_product_list.venture-list-page .venture-list-visual-head .v2-page-hero p {
  color: var(--v2-muted);
}

body#page_product_list.venture-list-page .venture-list {
  padding-top: 14px;
  padding-bottom: 25px;
}

body#page_product_list.venture-list-page .venture-list-main {
  align-self: start;
  border: 0;
  background: transparent;
}

body#page_product_list.venture-list-page .v2-list-sidebar .v2-filter-group {
  padding: 4px 13px;
}

body#page_product_list.venture-list-page .v2-list-sidebar .v2-filter-group__title {
  padding: 6px 0;
}

body#page_product_list.venture-list-page .v2-list-sidebar .v2-filter-group li a {
  padding: 4px 0;
}

body#page_product_list.venture-list-page .venture-list-toolbar {
  min-height: 48px;
  padding: 0;
  border: 0;
}

body#page_product_list.venture-list-page .venture-list-toolbar__controls {
  margin-left: auto;
}

body#page_product_list.venture-list-page .venture-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
}

body#page_product_list.venture-list-page .venture-product-card {
  border: 1px solid var(--v2-line);
}

body#page_product_list.venture-list-page .venture-product-card__body {
  display: block;
  padding: 8px 8px 10px;
  text-align: center;
}

body#page_product_list.venture-list-page .v2-list-products .venture-product-card__link {
  display: block;
  min-height: 0;
}

body#page_product_list.venture-list-page .v2-list-products .venture-product-card__body h3 {
  overflow: hidden;
  margin: 0;
  color: var(--v2-ink);
  font-size: var(--v2-card-title);
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body#page_product_list.venture-list-page .venture-product-card__media {
  height: 170px;
  aspect-ratio: auto;
}

body#page_product_list.venture-list-page .venture-list-pagination {
  padding-bottom: 0;
}

body#page_product_detail.venture-detail-page .venture-detail-related-design {
  padding: 0;
  color: var(--v2-ink);
  border: 0;
  background: transparent;
}

body#page_product_detail.venture-detail-page .venture-detail-related-design .v2-related-slider {
  position: relative;
  margin-top: 18px;
}

body#page_product_detail.venture-detail-page .venture-detail-related-design .v2-related-swiper {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

body#page_product_detail.venture-detail-page .venture-detail-related-design .v2-related-slide {
  height: auto;
}

body#page_product_detail.venture-detail-page .venture-detail-related-design .v2-related-slide > .venture-product-card {
  height: 100%;
}

body#page_product_detail.venture-detail-page .venture-detail-related-design .v2-related-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--v2-line-strong);
  border-radius: 50%;
  color: var(--v2-ink);
  background: rgba(255, 253, 247, .96);
  box-shadow: 0 6px 18px rgba(53, 37, 31, .14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: border-color .18s ease, color .18s ease, background-color .18s ease, opacity .18s ease, transform .18s ease;
}

body#page_product_detail.venture-detail-page .venture-detail-related-design .v2-related-arrow--prev {
  left: 10px;
}

body#page_product_detail.venture-detail-page .venture-detail-related-design .v2-related-arrow--next {
  right: 10px;
}

body#page_product_detail.venture-detail-page .venture-detail-related-design:hover .v2-related-arrow,
body#page_product_detail.venture-detail-page .venture-detail-related-design:focus-within .v2-related-arrow {
  opacity: 1;
  pointer-events: auto;
}

body#page_product_detail.venture-detail-page .venture-detail-related-design .v2-related-arrow:hover,
body#page_product_detail.venture-detail-page .venture-detail-related-design .v2-related-arrow:focus-visible {
  border-color: var(--v2-red);
  color: #fff;
  background: var(--v2-red);
}

body#page_product_detail.venture-detail-page .venture-detail-related-design .v2-related-arrow.swiper-button-lock {
  display: none;
}

body#page_product_detail.venture-detail-page .venture-detail-related-design .venture-product-card {
  min-width: 0;
  padding: 0 !important;
  color: var(--v2-ink);
  border: 1px solid var(--v2-line);
  background: linear-gradient(145deg, rgba(255, 255, 255, .74), rgba(249, 241, 227, .84)) !important;
  box-shadow: none;
}

body#page_product_detail.venture-detail-page .venture-detail-related-design .v2-product-card__body {
  padding: 10px 12px 13px;
}

body#page_product_detail.venture-detail-page .venture-detail-related-design .venture-product-card h3,
body#page_product_detail.venture-detail-page .venture-detail-related-design .venture-product-card strong {
  color: var(--v2-ink) !important;
}

body#page_product_detail.venture-detail-page .venture-detail-related-design .venture-product-card img {
  height: auto !important;
  aspect-ratio: 1;
  object-fit: cover;
}

body#page_product_detail.venture-detail-page .venture-detail-related-design .v2-product-card p {
  display: none;
}

body#page_product_detail.venture-detail-page #product_review_area {
  color: var(--v2-ink);
}

body#page_product_detail.venture-detail-page #product_review_area .venture-detail-reviews.v2-review-area {
  width: min(calc(100% - 40px), var(--v2-shell));
  max-width: var(--v2-shell);
  padding: 25px !important;
  margin: 38px auto;
  color: var(--v2-ink);
  border: 1px solid var(--v2-line);
  background: linear-gradient(145deg, rgba(255, 255, 255, .74), rgba(249, 241, 227, .84));
}

@media (min-width: 901px) {
  .v2-header__nav {
    gap: 18px;
    font-size: .72rem;
    transform: translateX(-8px);
  }

  .v2-header .v2-logo {
    position: relative;
  }

  .v2-header .v2-logo__copy strong {
    font-size: 1.25rem;
    letter-spacing: .09em;
  }

  .v2-header .v2-logo__seal {
    position: absolute;
    right: -11px;
    bottom: 8px;
    margin: 0;
  }

  .venture02-theme .v2-footer-guide {
    display: none;
  }

  .venture02-theme .v2-footer {
    padding-top: 24px;
    padding-bottom: 36px;
  }
}

body#page_product_detail.venture-detail-page #product_review_area .v2-review-summary {
  display: grid;
  grid-template-columns: 160px 1fr 180px;
  align-items: center;
  gap: 28px;
  padding: 0;
  border: 0;
}

body#page_product_detail.venture-detail-page #product_review_area .v2-review-cta {
  display: grid;
  min-height: 45px;
  place-items: center;
  border: 1px solid var(--v2-line-strong);
  background: #fff;
  color: var(--v2-ink);
}

body#page_product_detail.venture-detail-page #product_review_area .v2-review-cta:hover,
body#page_product_detail.venture-detail-page #product_review_area .v2-review-cta:focus-visible {
  border-color: var(--v2-red);
  color: #fff;
  background: var(--v2-red);
  transform: translateY(-1px);
}

body#page_product_detail.venture-detail-page #product_review_area .v2-review-cta:active {
  transform: translateY(0);
}

body#page_product_detail.venture-detail-page #product_review_area .v2-review-score .v2-stars,
body#page_product_detail.venture-detail-page #product_review_area .v2-review-count {
  display: block;
}

body#page_product_detail.venture-detail-page #product_review_area .v2-review-count {
  margin-top: 5px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  white-space: nowrap;
}

body#page_product_detail.venture-detail-page #product_review_area .v2-review-slider {
  margin-top: 20px;
}

body#page_product_detail.venture-detail-page #product_review_area .v2-review-swiper {
  width: 100%;
  overflow: hidden;
}

body#page_product_detail.venture-detail-page #product_review_area .v2-review-page {
  width: 100%;
  height: auto;
}

body#page_product_detail.venture-detail-page #product_review_area .v2-review-cards {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin-top: 0;
}

body#page_product_detail.venture-detail-page #product_review_area .v2-review-pagination {
  position: static;
  display: flex;
  width: 100%;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

body#page_product_detail.venture-detail-page #product_review_area .v2-review-pagination .swiper-pagination-bullet {
  display: grid;
  width: 32px;
  height: 32px;
  margin: 0 !important;
  place-items: center;
  border: 1px solid var(--v2-line-strong);
  border-radius: 2px;
  color: var(--v2-ink);
  background: rgba(255, 253, 247, .9);
  font-family: "Noto Sans JP", sans-serif;
  font-size: .68rem;
  font-weight: 600;
  opacity: 1;
  transition: border-color .16s ease, color .16s ease, background-color .16s ease;
}

body#page_product_detail.venture-detail-page #product_review_area .v2-review-pagination .swiper-pagination-bullet:hover,
body#page_product_detail.venture-detail-page #product_review_area .v2-review-pagination .swiper-pagination-bullet:focus-visible,
body#page_product_detail.venture-detail-page #product_review_area .v2-review-pagination .swiper-pagination-bullet-active {
  border-color: var(--v2-red);
  color: #fff;
  background: var(--v2-red);
}

@media (max-width: 1080px) and (min-width: 901px) {
  body#page_product_list.venture-list-page .venture-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .venture02-theme .v2-commerce-grid > * {
    height: auto;
    min-height: 0;
  }

  .venture02-theme .venture-new-swiper.is-static {
    overflow: visible;
  }

  .venture02-theme .venture-new-swiper.is-static .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: none !important;
  }

  .venture02-theme .venture-new-swiper.is-static .swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }

  .venture02-theme .venture-new-swiper .v2-product-card {
    display: grid;
    height: 124px;
    min-height: 123px;
    grid-template-columns: clamp(82px, 36%, 148px) minmax(0, 1fr);
    border-width: 0 1px 1px 0;
    border-radius: 0;
    box-shadow: none;
  }

  .venture02-theme .venture-new-swiper .v2-product-card__image {
    align-self: center;
    height: 124px;
    aspect-ratio: auto;
  }

  .venture02-theme .venture-new-swiper .v2-product-card__image img {
    transform: scale(1.1);
  }

  .venture02-theme .venture-new-swiper .v2-product-card__body {
    align-self: center;
    padding: 8px 10px;
  }

  .venture02-theme .venture-new-swiper .v2-product-card p {
    min-height: 0;
    margin: 5px 0;
    font-size: .61rem;
  }

  .venture02-theme .venture-new-swiper .v2-product-card strong {
    font-size: .79rem;
    white-space: nowrap;
  }

  .venture02-theme .v2-benefit > .v2-icon.material-symbols-outlined {
    display: grid;
    font-family: "Material Symbols Outlined";
  }

  .venture02-theme .v2-benefit > span:not(.v2-icon) {
    display: grid;
    min-width: 0;
    font-family: "Noto Sans JP", sans-serif;
  }

  body#page_product_list.venture-list-page .venture-list-visual-head {
    width: min(calc(100% - 20px), var(--v2-shell));
  }

  body#page_product_list.venture-list-page .venture-list-visual-head .v2-page-hero {
    min-height: 92px;
  }

  body#page_product_list.venture-list-page .venture-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--v2-line);
  }

  body#page_product_list.venture-list-page .venture-product-card {
    border: 0;
  }

  body#page_product_detail.venture-detail-page .venture-detail-related-design {
    width: 100%;
  }

  body#page_product_detail.venture-detail-page #product_review_area .venture-detail-reviews.v2-review-area {
    width: min(calc(100% - 24px), var(--v2-shell));
  }

  body#page_product_detail.venture-detail-page .venture-detail-related-design .v2-related-grid {
    display: flex;
  }

  body#page_product_detail.venture-detail-page #product_review_area .v2-review-summary {
    grid-template-columns: 100px 1fr;
    gap: 16px;
  }

  body#page_product_detail.venture-detail-page #product_review_area .v2-review-cta {
    grid-column: 1 / -1;
  }

  body#page_product_detail.venture-detail-page #product_review_area .v2-review-cards {
    display: grid;
    overflow: visible;
  }
}

.v2-mobile-bottom-promos {
  display: none;
}

@media (max-width: 900px) {
  .venture02-theme .v2-home-layout {
    display: block;
    padding-top: 12px;
  }

  .v2-mobile-bottom-promos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .v2-mobile-bottom-promos a {
    overflow: hidden;
    border: 1px solid var(--v2-line);
  }

  .v2-mobile-bottom-promos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body#page_product_list.venture-list-page .venture-product-card__media {
    height: auto;
    aspect-ratio: 1;
  }

}

@media (min-width: 901px) {
  body#page_product_detail.venture-detail-page .v2-breadcrumb {
    padding: 24px 0 14px;
  }

  body#page_product_detail.venture-detail-page .v2-detail-grid {
    gap: 34px;
    padding-bottom: 20px;
  }

  body#page_product_detail.venture-detail-page .v2-detail-summary h1 {
    margin: 10px 0 4px;
    font-size: clamp(1.75rem, 2.5vw, 2.2rem);
    line-height: 1.32;
  }

  body#page_product_detail.venture-detail-page .v2-rating {
    margin-top: 8px;
  }

  body#page_product_detail.venture-detail-page .v2-detail-price {
    margin-top: 10px;
  }

  body#page_product_detail.venture-detail-page .v2-detail-description {
    padding-bottom: 10px;
    line-height: 1.55;
  }

  body#page_product_detail.venture-detail-page .v2-detail-variants {
    gap: 8px;
    margin-top: 10px;
  }

  body#page_product_detail.venture-detail-page .v2-detail-variants .v2-option-row {
    gap: 3px;
  }

  body#page_product_detail.venture-detail-page .v2-detail-select {
    min-height: 34px;
  }

  body#page_product_detail.venture-detail-page form > .v2-option-row {
    margin-top: 12px;
  }

  body#page_product_detail.venture-detail-page .v2-quantity button,
  body#page_product_detail.venture-detail-page .v2-quantity input {
    height: 32px;
  }

  body#page_product_detail.venture-detail-page .v2-detail-actions {
    margin-top: 12px;
  }

  body#page_product_detail.venture-detail-page .v2-cart-button {
    min-height: 44px;
  }

  body#page_product_detail.venture-detail-page .v2-detail-benefits {
    margin-top: 12px;
    padding-top: 10px;
  }

  body#page_product_detail.venture-detail-page .v2-detail-info {
    gap: 22px;
    padding: 15px;
    margin-bottom: 20px;
  }

  body#page_product_detail.venture-detail-page .v2-detail-info p,
  body#page_product_detail.venture-detail-page .v2-detail-info td,
  body#page_product_detail.venture-detail-page .v2-detail-info th {
    line-height: 1.55;
  }

  body#page_product_detail.venture-detail-page .v2-spec-table th,
  body#page_product_detail.venture-detail-page .v2-spec-table td {
    padding-block: 5px;
  }

  body#page_product_detail.venture-detail-page .venture-detail-related-design {
    margin-top: 18px;
  }

  body#page_product_detail.venture-detail-page .venture-detail-related-design .v2-product-card__image {
    aspect-ratio: 1.12;
  }

  body#page_product_detail.venture-detail-page #product_review_area .venture-detail-reviews.v2-review-area {
    padding: 16px !important;
    margin-block: 30px;
  }

  body#page_product_detail.venture-detail-page #product_review_area .v2-review-slider {
    margin-top: 14px;
  }

  body#page_product_detail.venture-detail-page #product_review_area .v2-review-card {
    padding: 12px;
  }

  body#page_product_detail.venture-detail-page #product_review_area .v2-review-card h3 {
    margin: 5px 0;
  }

  body#page_product_detail.venture-detail-page #product_review_area .v2-review-card p,
  body#page_product_detail.venture-detail-page #product_review_area .v2-review-card small {
    line-height: 1.5;
  }

}

/* TOP visual lock: geometry follows venture02/top.png at the 1055px reference width. */
.v2-logo__seal {
  display: inline-grid;
  width: 18px;
  height: 18px;
  margin-left: -5px;
  place-items: center;
  border: 1px solid var(--v2-red);
  color: var(--v2-red);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: .52rem;
  line-height: 1;
}

.venture02-theme .v2-flower-mark {
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
}

.venture02-theme .v2-flower-mark::before {
  position: static;
  inset: auto;
  border: 0;
  border-radius: 0;
  content: "✿";
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1;
  transform: none;
}

.venture02-theme .v2-flower-mark::after {
  display: none;
}

@media (min-width: 901px) {
  .venture02-theme .v2-header .v2-cart-button {
    min-height: 0;
    padding: 0;
    color: var(--v2-ink) !important;
    background: transparent;
    letter-spacing: 0;
  }

  .venture02-theme .v2-header .v2-cart-button span,
  .venture02-theme .v2-header .v2-cart-button small {
    color: var(--v2-ink) !important;
  }

  .venture02-theme .v2-header .v2-cart-button b {
    display: none;
  }

  .front_page.venture02-theme .v2-home-layout {
    grid-template-columns: 198px minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 14px;
    padding-bottom: 10px;
  }

  .front_page.venture02-theme .v2-sidebar {
    align-self: start;
    gap: 8px;
  }

  .front_page.venture02-theme .v2-side-panel__title {
    min-height: 39px;
    padding-inline: 14px;
    margin: 0;
  }

  .front_page.venture02-theme .v2-category-item > a {
    min-height: 33px;
    padding-inline: 11px;
    font-size: .69rem;
  }

  .front_page.venture02-theme .v2-category-label {
    gap: 4px;
  }

  .front_page.venture02-theme .v2-category-label > img {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    object-fit: contain;
  }

  .front_page.venture02-theme .v2-eyecatch {
    display: grid;
    gap: 10px;
  }

  .front_page.venture02-theme .v2-eyecatch > .v2-side-promo {
    display: block;
  }

  .front_page.venture02-theme .v2-eyecatch > .v2-side-promo:last-child {
    height: 98px;
  }

  .front_page.venture02-theme .v2-eyecatch > .v2-side-promo:last-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .front_page.venture02-theme .v2-warranty-card {
    position: relative;
    min-height: 92px;
    padding: 13px 62px 12px 14px;
    overflow: hidden;
  }

  .front_page.venture02-theme .v2-warranty-card strong {
    position: relative;
    z-index: 1;
    white-space: nowrap;
  }

  .front_page.venture02-theme .v2-warranty-card p {
    position: relative;
    z-index: 1;
    line-height: 1.55;
  }

  .front_page.venture02-theme .v2-warranty-card > img {
    position: absolute;
    right: 5px;
    bottom: 4px;
    width: 61px;
    height: 61px;
    object-fit: cover;
  }

  .front_page.venture02-theme .venture-new-swiper {
    padding-top: 4px;
  }

  .front_page.venture02-theme .venture-new-swiper .swiper-wrapper,
  .front_page.venture02-theme .venture-new-swiper .swiper-slide {
    height: 254px;
  }

  .front_page.venture02-theme .venture-new-swiper .v2-product-card {
    height: 254px;
  }

  .front_page.venture02-theme .venture-new-swiper .v2-product-card__image {
    height: 146px;
    aspect-ratio: auto;
  }

  .front_page.venture02-theme .venture-new-swiper .v2-product-card__body {
    height: 106px;
    padding: 8px 12px 10px;
    overflow: hidden;
  }

  .front_page.venture02-theme .venture-new-swiper .v2-product-card p {
    min-height: 2.9em;
    margin-block: 5px;
  }

  .front_page.venture02-theme .venture-new-swiper .v2-product-card strong {
    white-space: nowrap;
  }

  .front_page.venture02-theme .v2-commerce-grid,
  .front_page.venture02-theme .v2-promo-row {
    grid-column: 1 / -1;
  }

  .front_page.venture02-theme .v2-commerce-grid {
    height: 282px;
    margin-top: 4px;
  }

  .front_page.venture02-theme .v2-commerce-grid > * {
    position: relative;
    height: 282px;
    min-height: 282px;
    padding: 15px 16px;
  }

  .front_page.venture02-theme .v2-commerce-grid h2 {
    margin-bottom: 7px;
  }

  .front_page.venture02-theme .v2-ranking-list li {
    min-height: 54px;
  }

  .front_page.venture02-theme .v2-ranking-list b {
    white-space: nowrap;
  }

  .front_page.venture02-theme .v2-ranking-list b small {
    font-size: .65rem;
  }

  .front_page.venture02-theme .v2-panel-more {
    position: absolute;
    right: 16px;
    bottom: 13px;
    display: block;
    margin: 0;
    font-size: .68rem;
    text-align: right;
  }

  .front_page.venture02-theme .v2-new-list li {
    height: 72px;
    min-height: 72px;
    overflow: hidden;
  }

  .front_page.venture02-theme .v2-new-list img {
    width: 70px;
    height: 68px;
  }

  .front_page.venture02-theme .v2-feature-card:first-of-type img {
    height: 112px;
    max-height: none;
  }

  .front_page.venture02-theme .v2-promo-row {
    height: 117px;
    margin-top: 0;
  }

  .front_page.venture02-theme .v2-footer {
    padding-top: 30px;
    padding-bottom: 24px;
  }

  .front_page.venture02-theme .v2-footer .v2-logo__mark {
    width: 48px;
    height: 48px;
  }

  .front_page.venture02-theme .v2-footer .v2-logo__seal {
    margin-left: 2px;
  }
}

@media (max-width: 900px) {
  .v2-logo__seal {
    display: none;
  }

  .front_page.venture02-theme .v2-home-layout {
    padding-top: 0;
  }

  .front_page.venture02-theme .v2-mobile-shortcuts {
    min-height: 92px;
    margin-top: 15px;
  }

  .front_page.venture02-theme .v2-mobile-shortcut {
    min-height: 92px;
  }

  .front_page.venture02-theme .v2-benefits {
    min-height: 65px;
    margin-top: 15px;
  }

  .front_page.venture02-theme .v2-benefit {
    min-height: 65px;
  }

  .front_page.venture02-theme .v2-commerce-grid > :nth-child(-n + 2) {
    height: 228px;
    min-height: 228px;
  }

  .front_page.venture02-theme .v2-commerce-grid > :nth-child(n + 3) {
    height: 188px;
    min-height: 188px;
  }

  .front_page.venture02-theme .v2-commerce-grid {
    gap: 10px 7px;
    margin-top: 12px;
  }

  .front_page.venture02-theme .v2-ranking-list b {
    white-space: nowrap;
  }

  .front_page.venture02-theme .v2-ranking-list b small {
    font-size: .6rem;
  }

  .front_page.venture02-theme .v2-panel-more {
    display: block;
    width: fit-content;
    margin: 8px auto 0;
    padding: 4px 20px;
    border: 1px solid var(--v2-line);
    border-radius: 999px;
    font-size: .66rem;
    line-height: 1.2;
  }

  .front_page.venture02-theme .v2-feature-card:first-of-type > img {
    width: 100%;
    height: 84px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .front_page.venture02-theme .v2-feature-card:first-of-type h2 {
    margin-bottom: 4px;
  }

  .front_page.venture02-theme .v2-feature-card:first-of-type p {
    margin-top: 3px;
  }

  .front_page.venture02-theme .v2-feature-card:first-of-type > a {
    padding-top: 3px;
  }

  .front_page.venture02-theme .v2-commerce-grid .v2-feature-card {
    padding-inline: 20px;
  }

  .front_page.venture02-theme .v2-commerce-grid .v2-feature-card h2 {
    text-align: center;
  }

  .front_page.venture02-theme .v2-promo-row {
    height: 90px;
    grid-template-columns: 1fr;
  }

  .front_page.venture02-theme .v2-promo-row a:first-child {
    height: 90px;
  }

  .front_page.venture02-theme .v2-promo-row a:first-child img {
    width: 100%;
    height: 90px;
    object-fit: fill;
  }

  .front_page.venture02-theme .v2-promo-row a:nth-child(2) {
    display: none;
  }

  .front_page.venture02-theme .v2-mobile-bottom-promos {
    height: 80px;
    margin-top: 11px;
  }

  .front_page.venture02-theme .v2-footer-guide a {
    display: flex;
    min-height: 42px;
    flex-direction: row;
    justify-content: center;
    gap: 7px;
    font-size: .72rem;
  }

  .front_page.venture02-theme .v2-footer {
    padding: 12px 0 10px;
  }

  .front_page.venture02-theme .v2-footer__grid {
    width: min(calc(100% - 46px), var(--v2-shell));
    grid-template-columns: 1.18fr .86fr 1fr 1.16fr;
    gap: 15px;
  }

  .front_page.venture02-theme .v2-footer__brand {
    padding-left: 5px;
  }

  .front_page.venture02-theme .v2-footer__column::before {
    left: -8px;
  }

  .front_page.venture02-theme .v2-footer__column a {
    padding-block: 1px;
  }

  .front_page.venture02-theme .v2-footer .v2-logo__mark {
    width: 34px;
    height: 34px;
  }

  .front_page.venture02-theme .v2-footer .v2-logo__copy strong {
    font-size: 1.08rem;
  }
}

@media (min-width: 600px) and (max-width: 900px) {
  .front_page.venture02-theme .v2-header {
    border-radius: 0;
  }

  .front_page.venture02-theme .v2-header__main {
    width: min(calc(100% - 48px), var(--v2-shell));
    min-height: 86px;
    grid-template-columns: minmax(230px, 1fr) repeat(4, 89px);
    gap: 5px;
  }

  .front_page.venture02-theme .v2-home-layout {
    width: min(calc(100% - 46px), var(--v2-shell));
  }

  .front_page.venture02-theme .v2-header .v2-logo__mark {
    width: 50px;
    height: 50px;
  }

  .front_page.venture02-theme .v2-header .v2-logo__copy strong {
    font-size: 1.38rem;
  }

  .front_page.venture02-theme .v2-header .v2-tool-link,
  .front_page.venture02-theme .v2-header .v2-menu-button {
    font-size: .62rem;
  }

  .front_page.venture02-theme .v2-header .v2-tool-link .v2-icon,
  .front_page.venture02-theme .v2-header .v2-menu-button .v2-icon {
    width: 32px;
    height: 32px;
  }

  .front_page.venture02-theme .venture-new-swiper .v2-product-card h3 {
    font-size: 1rem;
  }

  .front_page.venture02-theme .venture-new-swiper .v2-product-card p {
    font-size: .75rem;
  }

  .front_page.venture02-theme .venture-new-swiper .v2-product-card strong {
    font-size: .95rem;
  }

  .front_page.venture02-theme .v2-mobile-shortcut img {
    width: 60px;
    height: 60px;
    object-fit: contain;
  }

  .front_page.venture02-theme .v2-mobile-shortcut:nth-child(3) .material-symbols-outlined {
    color: #66aec9;
  }

  .front_page.venture02-theme .v2-mobile-shortcut:nth-child(4) .material-symbols-outlined {
    color: #df8da3;
  }

  .front_page.venture02-theme .v2-mobile-shortcut:nth-child(5) .material-symbols-outlined {
    color: #68ad91;
  }

  .front_page.venture02-theme .v2-mobile-shortcut:nth-child(6) .material-symbols-outlined {
    color: #6c4430;
  }

  .front_page.venture02-theme .v2-benefit > .material-symbols-outlined {
    width: 38px;
    height: 38px;
    font-size: 34px;
  }

  .front_page.venture02-theme .v2-mobile-shortcut {
    font-size: .78rem;
  }

  .front_page.venture02-theme .v2-benefit strong {
    font-size: .78rem;
  }

  .front_page.venture02-theme .v2-benefit > span:not(.v2-icon) {
    font-size: .62rem;
  }

  .front_page.venture02-theme .v2-feature-card p {
    font-size: .72rem;
    line-height: 1.5;
  }
}

/* ImageGen TOP assets: raster art is text-free; copy and icons stay crisp HTML. */
.front_page.venture02-theme .venture-hero.v2-hero {
  position: relative;
  height: 359px;
  isolation: isolate;
}

.front_page.venture02-theme .venture-hero.v2-hero .v2-hero__background {
  position: absolute;
  inset: 0 0 51px;
  z-index: -2;
  width: 100%;
  height: calc(100% - 51px);
  object-fit: cover;
  object-position: center 48%;
}

.front_page.venture02-theme .v2-hero__copy {
  position: absolute;
  top: 42px;
  left: 50%;
  width: 390px;
  color: #40291f;
  text-align: center;
  transform: translateX(-50%);
}

.front_page.venture02-theme .v2-hero__copy p,
.front_page.venture02-theme .v2-hero__copy h1,
.front_page.venture02-theme .v2-hero__copy small {
  display: block;
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  text-shadow: 0 1px 8px rgba(255, 255, 255, .82);
}

.front_page.venture02-theme .v2-hero__copy p {
  font-size: 1.45rem;
  letter-spacing: .15em;
}

.front_page.venture02-theme .v2-hero__copy h1 {
  margin-top: 4px;
  font-size: 3.55rem;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: .11em;
}

.front_page.venture02-theme .v2-hero__copy small {
  margin-top: 7px;
  font-size: .82rem;
  letter-spacing: .08em;
}

.front_page.venture02-theme .v2-hero__lineup {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 11px;
}

.front_page.venture02-theme .v2-hero__lineup img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.front_page.venture02-theme .v2-hero__desktop-benefits {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: 51px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid rgba(202, 180, 150, .42);
  background: rgba(255, 252, 245, .94);
}

.front_page.venture02-theme .v2-hero__desktop-benefits > span {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid var(--v2-line);
  font-family: "Noto Sans JP", sans-serif;
  font-size: .75rem;
  white-space: nowrap;
}

.front_page.venture02-theme .v2-hero__desktop-benefits > span:last-child {
  border-right: 0;
}

.front_page.venture02-theme .v2-hero__desktop-benefits .material-symbols-outlined {
  font-size: 25px;
}

.front_page.venture02-theme .v2-eyecatch > .v2-side-promo {
  position: relative;
  isolation: isolate;
}

.front_page.venture02-theme .v2-side-promo--early {
  height: 105px;
}

.front_page.venture02-theme .v2-side-promo--store {
  height: 92px;
}

.front_page.venture02-theme .v2-side-promo--early > img,
.front_page.venture02-theme .v2-side-promo--store > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.front_page.venture02-theme .v2-side-promo--early > span {
  display: grid;
  height: 100%;
  align-content: center;
  justify-items: center;
  color: var(--v2-red);
  background: rgba(255, 250, 241, .38);
  text-shadow: 0 1px 4px #fff;
}

.front_page.venture02-theme .v2-side-promo--early small,
.front_page.venture02-theme .v2-side-promo--early b {
  font-size: .62rem;
  font-weight: 500;
}

.front_page.venture02-theme .v2-side-promo--early strong {
  margin: 2px 0;
  font-size: 1.4rem;
  font-weight: 500;
}

.front_page.venture02-theme .v2-side-promo--store > img {
  object-position: center 56%;
}

.front_page.venture02-theme .v2-side-promo--store > span {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 9px 10px;
  background: linear-gradient(90deg, rgba(255, 253, 247, .96) 0 48%, rgba(255, 253, 247, .2) 76%, transparent);
}

.front_page.venture02-theme .v2-side-promo--store strong {
  margin: 0;
  font-size: .74rem;
}

.front_page.venture02-theme .v2-side-promo--store strong .material-symbols-outlined {
  color: var(--v2-red);
  font-size: 15px;
  vertical-align: -3px;
}

.front_page.venture02-theme .v2-side-promo--store small {
  display: block;
  margin-top: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: .55rem;
  font-weight: 500;
  line-height: 1.45;
}

.front_page.venture02-theme .v2-wide-promo {
  position: relative;
  isolation: isolate;
  min-width: 0;
}

.front_page.venture02-theme .v2-wide-promo > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.front_page.venture02-theme .v2-wide-promo > span {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding-left: 72px;
  background: linear-gradient(90deg, rgba(255, 251, 244, .75), transparent 57%);
}

.front_page.venture02-theme .v2-wide-promo strong,
.front_page.venture02-theme .v2-wide-promo small {
  display: block;
}

.front_page.venture02-theme .v2-wide-promo strong {
  color: #9b2b30;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .08em;
}

.front_page.venture02-theme .v2-wide-promo small {
  margin-top: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: .59rem;
}

.front_page.venture02-theme .v2-wide-promo--colors > img {
  object-position: 57% 54%;
}

.front_page.venture02-theme .v2-wide-promo--light > img {
  object-position: 68% 44%;
}

.front_page.venture02-theme .v2-wide-promo--light > span {
  padding-left: 84px;
  background: linear-gradient(90deg, rgba(249, 255, 242, .82), transparent 62%);
}

.front_page.venture02-theme .v2-wide-promo--light strong {
  color: #3e6947;
}

.front_page.venture02-theme .v2-mobile-campaign {
  position: relative;
  isolation: isolate;
}

.front_page.venture02-theme .v2-mobile-campaign > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.front_page.venture02-theme .v2-mobile-campaign > span {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 6px 16px;
  background: linear-gradient(90deg, rgba(255, 251, 243, .88), transparent 80%);
}

.front_page.venture02-theme .v2-mobile-campaign small,
.front_page.venture02-theme .v2-mobile-campaign strong {
  display: block;
}

.front_page.venture02-theme .v2-mobile-campaign strong {
  color: var(--v2-red);
  font-size: 1.35rem;
  font-weight: 500;
}

.front_page.venture02-theme .v2-mobile-campaign small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: .64rem;
}

.front_page.venture02-theme .v2-mobile-campaign--early b {
  position: absolute;
  top: 50%;
  right: 12px;
  font-size: .58rem;
  font-weight: 500;
  text-align: center;
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  .front_page.venture02-theme .venture-hero.v2-hero {
    height: 282px;
  }

  .front_page.venture02-theme .venture-hero.v2-hero .v2-hero__background {
    inset: 0;
    height: 100%;
    object-position: center 48%;
  }

  .front_page.venture02-theme .v2-hero__copy {
    top: 27px;
    width: 430px;
  }

  .front_page.venture02-theme .v2-hero__copy p {
    font-size: 1.25rem;
  }

  .front_page.venture02-theme .v2-hero__copy h1 {
    font-size: 3.35rem;
  }

  .front_page.venture02-theme .v2-hero__copy small {
    font-size: .72rem;
  }

  .front_page.venture02-theme .v2-hero__lineup {
    margin-top: 9px;
  }

  .front_page.venture02-theme .v2-hero__lineup img {
    width: 44px;
    height: 44px;
  }

  .front_page.venture02-theme .v2-hero__desktop-benefits {
    display: none;
  }

  .front_page.venture02-theme .v2-promo-row a:first-child img {
    object-fit: cover;
    object-position: 56% 54%;
  }

  .front_page.venture02-theme .v2-wide-promo > span {
    padding-left: 70px;
  }

  .front_page.venture02-theme .v2-wide-promo strong {
    font-size: 1.25rem;
  }
}

@media (max-width: 599px) {
  .front_page.venture02-theme .v2-hero__copy {
    top: 17px;
    width: 250px;
  }

  .front_page.venture02-theme .v2-hero__copy p {
    font-size: .72rem;
  }

  .front_page.venture02-theme .v2-hero__copy h1 {
    font-size: 2rem;
  }

  .front_page.venture02-theme .v2-hero__copy small {
    font-size: .5rem;
  }

  .front_page.venture02-theme .v2-hero__lineup img {
    width: 31px;
    height: 31px;
  }
}

/* Venture02 navigation, ranking and carousel edge states. */
.venture02-theme .v2-header__nav a {
  transition: color .18s ease;
}

.venture02-theme .v2-header__nav a:hover,
.venture02-theme .v2-header__nav a:focus-visible,
.venture02-theme .v2-header__nav a.is-active {
  color: var(--v2-red);
}

.front_page.venture02-theme .v2-category-tab-product.is-visible-last {
  border-right: 0;
}

.front_page.venture02-theme .v2-ranking-position--1 {
  color: #c7982f;
}

.front_page.venture02-theme .v2-ranking-position--2 {
  color: #8d969e;
}

.front_page.venture02-theme .v2-ranking-position--3 {
  color: #a66a43;
}

.front_page.venture02-theme .v2-ranking-position--4 {
  color: #665952;
}

/* Observable carousel and editorial heading details from the venture02 design. */
.front_page.venture02-theme .v2-hero__lineup img {
  mix-blend-mode: darken;
}

.front_page.venture02-theme .v2-hero__lineup .v2-hero__lineup-art {
  width: 335px;
  max-width: none;
  height: auto;
  object-fit: contain;
}

.front_page.venture02-theme .v2-hero > .v2-hero__lineup {
  position: absolute;
  z-index: 1;
  top: 210px;
  left: 50%;
  width: 335px;
  height: auto;
  margin: 0;
  mix-blend-mode: darken;
  transform: translateX(-50%);
}

.front_page.venture02-theme .v2-hero__pagination,
.front_page.venture02-theme .v2-recommend-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.front_page.venture02-theme .v2-hero__pagination {
  display: none;
}

.front_page.venture02-theme .v2-recommend-pagination {
  height: 28px;
}

.front_page.venture02-theme .v2-hero__pagination i,
.front_page.venture02-theme .v2-recommend-pagination i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a48e72;
}

.front_page.venture02-theme .v2-hero__pagination i:first-child,
.front_page.venture02-theme .v2-recommend-pagination i:first-child {
  background: var(--v2-red);
}

.front_page.venture02-theme .v2-heading-crown {
  color: #c79743;
  font-size: 22px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.front_page.venture02-theme .v2-heading-new {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px dashed var(--v2-red);
  border-radius: 50%;
  color: var(--v2-red);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0;
  transform: rotate(-10deg);
}

@media (max-width: 900px) {
  body#page_product_list.venture-list-page .v2-list-sidebar .v2-filter-group {
    display: block;
  }

  .front_page.venture02-theme .v2-hero > .v2-hero__lineup {
    top: 175px;
    width: 300px;
  }

  .front_page.venture02-theme .v2-hero__lineup .v2-hero__lineup-art {
    width: 300px;
    height: auto;
  }

  .front_page.venture02-theme .v2-hero__pagination {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 10px;
    left: 0;
    display: flex;
  }

  .front_page.venture02-theme .v2-recommend-pagination {
    display: none;
  }

  .front_page.venture02-theme .v2-heading-crown {
    font-size: 19px;
  }

  .front_page.venture02-theme .v2-heading-new {
    width: 21px;
    height: 21px;
    font-size: 6px;
  }
}

/* Product list: venture02 design-reference alignment (list.png, 1122 x 1402). */
body#page_product_list.venture-list-page .venture-list-design > .v2-breadcrumb {
  height: 36px;
  padding-block: 0;
}

body#page_product_list.venture-list-page .venture-list-design > .v2-page-hero {
  min-height: 114px;
  border-color: #e5ddd0;
  background-color: #fffaf1;
  background-image:
    linear-gradient(rgba(255, 252, 245, .08), rgba(255, 252, 245, .08)),
    url("../../img/randoseru/list-title-banner-imagegen-v2-web.jpg");
  background-position: center;
  background-size: cover;
}

body#page_product_list.venture-list-page .venture-list-design > .v2-page-hero h1 {
  color: #332821;
  font-size: clamp(1.75rem, 2.75vw, 2.1rem);
  letter-spacing: .16em;
}

body#page_product_list.venture-list-page .venture-list-design > .v2-page-hero p {
  margin-top: 7px;
  color: #695e56;
}

body#page_product_list.venture-list-page .venture-list-design > .v2-list-layout {
  grid-template-columns: 226px minmax(0, 1fr);
  gap: 28px;
  padding-block: 14px 12px;
}

body#page_product_list.venture-list-page .v2-side-panel__title {
  height: 44px;
  min-height: 44px;
  margin: 0;
  padding-inline: 15px;
}

body#page_product_list.venture-list-page .v2-list-category-panel > .v2-side-panel__title,
body#page_product_list.venture-list-page .v2-list-color-panel > .v2-side-panel__title {
  height: 44px;
  min-height: 44px;
  padding-left: 15px;
  border-bottom: 0;
  background: #f2ece4;
  color: var(--v2-ink);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
}

body#page_product_list.venture-list-page .v2-list-category-panel > .v2-side-panel__title::before,
body#page_product_list.venture-list-page .v2-list-color-panel > .v2-side-panel__title::before {
  content: none;
}

body#page_product_list.venture-list-page .v2-list-category-all {
  display: flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 13px;
  border-bottom: 1px solid var(--v2-line);
  color: #433a34;
  font-family: "Noto Sans JP", sans-serif;
  font-size: .75rem;
  font-weight: 600;
  transition: color .18s ease, background-color .18s ease;
}

body#page_product_list.venture-list-page .v2-list-category-all:hover,
body#page_product_list.venture-list-page .v2-list-category-all:focus-visible,
body#page_product_list.venture-list-page .v2-list-category-all.is-active {
  color: var(--v2-red);
  background: #f7efe4;
}

body#page_product_list.venture-list-page .v2-list-sidebar .v2-list-category {
  padding: 0 13px;
}

body#page_product_list.venture-list-page .v2-list-category__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px;
  align-items: stretch;
}

body#page_product_list.venture-list-page .v2-list-category__parent {
  display: flex;
  min-width: 0;
  min-height: 38px;
  align-items: center;
  padding: 7px 0;
  color: #433a34;
  font-family: "Noto Sans JP", sans-serif;
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.45;
  transition: color .18s ease;
}

body#page_product_list.venture-list-page .v2-list-category__parent:hover,
body#page_product_list.venture-list-page .v2-list-category__parent:focus-visible,
body#page_product_list.venture-list-page .v2-list-category__parent.is-active,
body#page_product_list.venture-list-page .v2-list-category__row.is-path .v2-list-category__parent {
  color: var(--v2-red);
}

body#page_product_list.venture-list-page .v2-list-category__toggle {
  width: 30px;
  min-width: 30px;
  justify-content: flex-end;
  padding: 0;
}

body#page_product_list.venture-list-page .v2-list-category__toggle::after {
  margin-left: auto;
  margin-right: 1px;
}

body#page_product_list.venture-list-page .v2-list-category > ul {
  padding: 0 0 8px 9px;
}

body#page_product_list.venture-list-page .v2-list-sidebar .v2-list-category li a {
  padding: 5px 7px;
  transition: color .18s ease, background-color .18s ease;
}

body#page_product_list.venture-list-page .v2-list-category li a:hover,
body#page_product_list.venture-list-page .v2-list-category li a:focus-visible,
body#page_product_list.venture-list-page .v2-list-category li a.is-active {
  color: var(--v2-red);
  background: #f7efe4;
}

body#page_product_list.venture-list-page .v2-list-sidebar .v2-swatches {
  gap: 8px;
  padding-block: 11px;
}

body#page_product_list.venture-list-page .v2-list-color-panel__body {
  padding: 12px 13px 14px;
}

body#page_product_list.venture-list-page .v2-list-sidebar .v2-swatch.is-active {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--v2-red);
}

body#page_product_list.venture-list-page .venture-list-toolbar {
  min-height: 49px;
}

body#page_product_list.venture-list-page .venture-list-sort {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  color: #4c433d;
  font-family: "Noto Sans JP", sans-serif;
  font-size: .68rem;
  white-space: nowrap;
}

body#page_product_list.venture-list-page .venture-list-toolbar__controls .venture-list-sort {
  margin-left: 0;
}

body#page_product_list.venture-list-page .venture-list-sort label {
  margin: 0;
  color: #4c433d;
  font-weight: 400;
}

body#page_product_list.venture-list-page .venture-list-sort__select {
  position: relative;
  display: inline-flex;
}

body#page_product_list.venture-list-page .venture-list-sort__select::after {
  position: absolute;
  top: 50%;
  right: 11px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #7f171d;
  border-bottom: 1px solid #7f171d;
  content: "";
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

body#page_product_list.venture-list-page .venture-list-sort__select select {
  min-width: 138px;
  height: 34px;
  padding: 0 30px 0 11px;
  appearance: none;
  border: 1px solid #d8ccbd;
  border-radius: 0;
  background: #fff;
  color: #3c332d;
}

body#page_product_list.venture-list-page .venture-product-grid {
  width: 100%;
  gap: 12px;
  padding-right: 0;
}

body#page_product_list.venture-list-page .venture-product-card {
  background: #fcf8f1;
}

body#page_product_list.venture-list-page .venture-product-card__link,
body#page_product_list.venture-list-page .venture-product-card__media,
body#page_product_list.venture-list-page .venture-product-card__body {
  background: transparent;
}

body#page_product_list.venture-list-page .venture-product-card__media {
  height: 179px;
  padding: 12px;
}

body#page_product_list.venture-list-page .venture-product-card__media img,
body#page_product_list.venture-list-page .venture-product-card:hover .venture-product-card__media img,
body#page_product_list.venture-list-page .venture-product-card:focus-within .venture-product-card__media img {
  object-fit: contain;
  transform: none;
}

body#page_product_list.venture-list-page .venture-product-card:hover .venture-product-card__media img,
body#page_product_list.venture-list-page .venture-product-card:focus-within .venture-product-card__media img {
  transform: translateY(-2px) scale(1.025);
}

body#page_product_list.venture-list-page .venture-product-card__body strong small {
  display: inline;
  margin-left: 2px;
  color: #695e56;
  font-size: .56rem;
  font-weight: 400;
}

body#page_product_list.venture-list-page .v2-list-products .venture-product-card__body {
  height: 61px;
  padding: 7px 8px 10px;
}

body#page_product_list.venture-list-page .v2-list-products .venture-product-card__body strong {
  margin-top: 7px;
}

body#page_product_list.venture-list-page .venture-list-pagination {
  margin-top: 20px;
}

body#page_product_list.venture-list-page .venture-list-empty {
  display: grid;
  min-height: 430px;
  align-content: center;
  justify-items: center;
  padding: 48px 24px;
  border: 1px solid var(--v2-line);
  background:
    radial-gradient(circle at 50% 15%, rgba(248, 232, 215, .65), transparent 42%),
    var(--v2-paper);
  text-align: center;
}

body#page_product_list.venture-list-page .venture-list-empty > .material-symbols-outlined {
  color: var(--v2-red);
  font-size: 42px;
  font-weight: 300;
}

body#page_product_list.venture-list-page .venture-list-empty h2 {
  margin: 14px 0 0;
  color: var(--v2-ink);
  font-family: "Noto Serif JP", serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .04em;
}

body#page_product_list.venture-list-page .venture-list-empty p {
  margin: 8px 0 20px;
  color: var(--v2-muted);
  font-family: "Noto Sans JP", sans-serif;
  font-size: .72rem;
}

body#page_product_list.venture-list-page .venture-list-empty a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 1px solid var(--v2-red);
  color: var(--v2-red);
  background: rgba(255, 255, 255, .72);
  font-family: "Noto Sans JP", sans-serif;
  font-size: .72rem;
  font-weight: 600;
  transition: color .18s ease, background-color .18s ease, transform .18s ease;
}

body#page_product_list.venture-list-page .venture-list-empty a:hover,
body#page_product_list.venture-list-page .venture-list-empty a:focus-visible {
  color: #fff;
  background: var(--v2-red);
  transform: translateY(-1px);
}

body#page_product_list.venture-list-page .venture-list-pagination button {
  transition:
    color .18s ease,
    background-color .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    transform .18s ease;
}

body#page_product_list.venture-list-page .venture-list-pagination button:not(:disabled):not(.is-current):hover,
body#page_product_list.venture-list-page .venture-list-pagination button:not(:disabled):not(.is-current):focus-visible {
  color: var(--v2-red);
  border-color: var(--v2-red);
  background: #f8eee4;
  box-shadow: 0 3px 8px rgba(169, 18, 24, .12);
  transform: translateY(-1px);
}

body#page_product_list.venture-list-page .venture-list-pagination button:not(:disabled):not(.is-current):active {
  box-shadow: none;
  transform: translateY(0) scale(.98);
}

body#page_product_list.venture-list-page .venture-list-pagination button.is-current {
  cursor: default;
}

body#page_product_list.venture-list-page .venture-list-pagination button:disabled {
  cursor: not-allowed;
  opacity: .48;
}

@media (prefers-reduced-motion: reduce) {
  body#page_product_list.venture-list-page .venture-list-pagination button {
    transition: none;
  }

  body#page_product_list.venture-list-page .venture-list-pagination button:not(:disabled):not(.is-current):hover,
  body#page_product_list.venture-list-page .venture-list-pagination button:not(:disabled):not(.is-current):focus-visible,
  body#page_product_list.venture-list-page .venture-list-pagination button:not(:disabled):not(.is-current):active {
    transform: none;
  }
}

body#page_product_list.venture-list-page .v2-header__nav a.is-active::after {
  opacity: 0;
  transform: scaleX(.25);
}

@media (max-width: 900px) {
  body#page_product_list.venture-list-page .venture-list-design > .v2-breadcrumb {
    height: auto;
    min-height: 42px;
    padding-block: 10px;
  }

  body#page_product_list.venture-list-page .venture-list-design > .v2-page-hero {
    min-height: 92px;
    background-position: 48% center;
    background-size: 100% 100%;
  }

  body#page_product_list.venture-list-page .venture-list-design > .v2-list-layout {
    display: block;
    padding-block: 10px 18px;
  }

  body#page_product_list.venture-list-page .venture-list-empty {
    min-height: 260px;
    padding: 36px 20px;
  }

  body#page_product_list.venture-list-page .venture-list-sort {
    gap: 4px;
    font-size: .62rem;
  }

  body#page_product_list.venture-list-page .venture-list-sort__select select {
    min-width: 0;
    width: 112px;
    height: 32px;
    font-size: .64rem;
  }

  body#page_product_list.venture-list-page .venture-product-grid {
    gap: 1px;
    padding-right: 0;
  }

  body#page_product_list.venture-list-page .venture-product-card__media {
    height: auto;
    aspect-ratio: 1;
    padding: 10px;
  }

  body#page_product_list.venture-list-page .v2-list-products .venture-product-card__body {
    height: auto;
    min-height: 89px;
  }

  body#page_product_list.venture-list-page .venture-product-card__media img,
  body#page_product_list.venture-list-page .venture-product-card:hover .venture-product-card__media img,
  body#page_product_list.venture-list-page .venture-product-card:focus-within .venture-product-card__media img {
    object-fit: contain;
    transform: none;
  }

  body#page_product_list.venture-list-page .venture-product-card:hover .venture-product-card__media img,
  body#page_product_list.venture-list-page .venture-product-card:focus-within .venture-product-card__media img {
    transform: translateY(-2px) scale(1.025);
  }

}

@media (max-width: 360px) {
  body#page_product_list.venture-list-page .venture-list-design > .v2-page-hero h1 {
    font-size: 1.24rem;
    letter-spacing: .1em;
    white-space: nowrap;
  }
}

/* Venture02 interaction polish: generated art, real Swiper controls and
 * accessible hover/focus states. Keep this block last so it wins over legacy
 * Venture01-derived declarations above. */
.front_page.venture02-theme .v2-header .v2-logo__copy strong,
.front_page.venture02-theme .v2-footer .v2-logo__copy strong {
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: clamp(1.02rem, 1.65vw, 1.42rem);
  font-weight: 600;
  letter-spacing: .075em;
  line-height: 1.1;
  white-space: nowrap;
}

@media (min-width: 901px) {
  .front_page.venture02-theme .v2-header__main {
    grid-template-columns: minmax(310px, 1.08fr) minmax(340px, 1.2fr) minmax(310px, 1fr);
    gap: 17px;
  }

  .front_page.venture02-theme .v2-header__nav {
    gap: clamp(12px, 1.35vw, 20px);
    font-size: .72rem;
  }
}

.front_page.venture02-theme .v2-footer .v2-logo__copy strong {
  font-size: 1.12rem;
}

.venture02-theme .v2-cart-trigger {
  position: relative;
  z-index: 70;
}

.venture02-theme .v2-header .v2-cart-button {
  position: relative;
  min-width: 44px;
  color: var(--v2-ink) !important;
  background: transparent;
}

.venture02-theme .v2-header .v2-cart-button span,
.venture02-theme .v2-header .v2-cart-button small {
  color: var(--v2-ink) !important;
}

.venture02-theme .v2-header .v2-cart-button .v2-cart-badge {
  position: absolute;
  top: -5px;
  right: -7px;
  display: grid !important;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  place-items: center;
  border: 2px solid #fefbf7;
  border-radius: 999px;
  color: #fff !important;
  background: var(--v2-red);
  font-family: "Noto Sans JP", sans-serif;
  font-size: .58rem;
  font-weight: 700;
  line-height: 1;
}

.venture02-theme .v2-cart-popover {
  position: absolute;
  top: 100%;
  right: -10px;
  display: block !important;
  visibility: hidden;
  width: min(330px, calc(100vw - 28px));
  margin: 0;
  padding: 0;
  border: 1px solid var(--v2-line-strong);
  border-radius: 4px;
  color: var(--v2-ink);
  background: #fffdf8;
  box-shadow: 0 18px 42px rgba(66, 43, 24, .18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.venture02-theme .v2-cart-trigger:hover .v2-cart-popover,
.venture02-theme .v2-cart-trigger:focus-within .v2-cart-popover {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.venture02-theme .v2-cart-popover__header,
.venture02-theme .v2-cart-popover__footer {
  padding: 12px 14px;
  background: #f2eadc;
}

.venture02-theme .v2-cart-popover__header {
  border-bottom: 1px solid var(--v2-line);
}

.venture02-theme .v2-cart-popover h5,
.venture02-theme .v2-cart-popover h6,
.venture02-theme .v2-cart-popover p {
  margin: 0;
}

.venture02-theme .v2-cart-popover__header h5 {
  font-size: .82rem;
  font-weight: 600;
}

.venture02-theme .v2-cart-popover__footer span,
.venture02-theme .v2-cart-popover__items small,
.venture02-theme .v2-cart-popover__items p {
  color: var(--v2-muted);
  font-family: "Noto Sans JP", sans-serif;
  font-size: .62rem;
}

.venture02-theme .v2-cart-popover__items {
  max-height: 340px;
  overflow: auto;
}

.venture02-theme .v2-cart-popover__items article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 11px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--v2-line);
}

.venture02-theme .v2-cart-popover__items article:last-child {
  border-bottom: 0;
}

.venture02-theme .v2-cart-popover__items article img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  background: #fbf7ef;
}

.venture02-theme .v2-cart-popover__items article > div {
  min-width: 0;
}

.venture02-theme .v2-cart-popover__items article h6 {
  display: block;
  overflow: hidden;
  color: var(--v2-ink);
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.venture02-theme .v2-cart-popover__classes {
  display: grid;
  gap: 1px;
  margin-top: 3px;
}

.venture02-theme .v2-cart-popover__classes small {
  display: block;
  line-height: 1.35;
}

.venture02-theme .v2-cart-popover__items article p {
  display: flex;
  margin-top: 5px;
  justify-content: space-between;
}

.venture02-theme .v2-cart-popover__items article p strong {
  color: var(--v2-ink);
  font-weight: 600;
}

.venture02-theme .v2-cart-popover__footer {
  border-top: 1px solid var(--v2-line);
  border-bottom: 0;
}

.venture02-theme .v2-cart-popover__footer p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
}

.venture02-theme .v2-cart-popover__footer strong {
  font-size: .9rem;
  font-weight: 600;
}

.venture02-theme .v2-cart-popover__footer > a {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 8px 12px;
  border: 1px solid var(--v2-red);
  color: #fff;
  background: var(--v2-red);
  font-family: "Noto Sans JP", sans-serif;
  font-size: .65rem;
  font-weight: 700;
  text-align: center;
  transition: color .18s ease, background-color .18s ease;
}

.venture02-theme .v2-cart-popover__footer > a:hover,
.venture02-theme .v2-cart-popover__footer > a:focus-visible {
  color: var(--v2-red);
  background: #fffdf8;
}

.venture02-theme .v2-cart-popover__empty {
  margin: 0;
  padding: 26px 15px 15px;
  color: var(--v2-muted);
  font-family: "Noto Sans JP", sans-serif;
  font-size: .68rem;
  text-align: center;
}

.front_page.venture02-theme .v2-category-sub {
  min-width: 205px;
  padding: 8px;
}

.front_page.venture02-theme .v2-category-sub a:hover,
.front_page.venture02-theme .v2-category-sub a:focus-visible {
  color: var(--v2-red);
  background: rgba(169, 18, 24, .05);
}

.front_page.venture02-theme .v2-hero > .swiper-wrapper {
  height: calc(100% - 51px);
}

.front_page.venture02-theme .v2-hero__slide {
  position: relative;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  flex-shrink: 0;
}

.front_page.venture02-theme .v2-hero__slide .v2-hero__background {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.front_page.venture02-theme .v2-hero__slide:nth-child(2) .v2-hero__background {
  object-position: center 54%;
}

.front_page.venture02-theme .v2-hero__slide:nth-child(3) .v2-hero__background {
  object-position: center 47%;
}

.front_page.venture02-theme .v2-hero__copy {
  z-index: 1;
}

.front_page.venture02-theme .v2-hero__copy h1 {
  white-space: pre-line;
}

.front_page.venture02-theme .v2-hero__arrow {
  position: absolute;
  top: calc(50% - 25px);
  z-index: 7;
  display: grid;
  width: 36px;
  height: 58px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(112, 77, 51, .25);
  border-radius: 999px;
  color: var(--v2-ink);
  background: rgba(255, 253, 247, .72);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity .18s ease, background .18s ease;
}

.front_page.venture02-theme .v2-hero__arrow--prev { left: 14px; }
.front_page.venture02-theme .v2-hero__arrow--next { right: 14px; }

.front_page.venture02-theme .v2-hero:hover .v2-hero__arrow,
.front_page.venture02-theme .v2-hero__arrow:focus-visible {
  opacity: 1;
  pointer-events: auto;
}

.front_page.venture02-theme .v2-hero__arrow:hover,
.front_page.venture02-theme .v2-hero__arrow:focus-visible {
  color: #fff;
  background: var(--v2-red);
}

.front_page.venture02-theme .v2-hero__dots {
  position: absolute;
  right: auto;
  bottom: 61px;
  left: 50%;
  z-index: 8;
  display: flex;
  width: auto;
  height: 16px;
  gap: 8px;
  border: 0;
  transform: translateX(-50%);
}

.front_page.venture02-theme .v2-hero__dots .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 !important;
  border: 1px solid #7c674e;
  border-radius: 999px;
  background: rgba(255, 255, 255, .8);
  opacity: 1;
}

.front_page.venture02-theme .v2-hero__dots .swiper-pagination-bullet-active {
  border-color: var(--v2-red);
  background: var(--v2-red);
}

.front_page.venture02-theme .v2-hero__desktop-benefits {
  z-index: 8;
}

.front_page.venture02-theme .v2-product-slider-shell {
  position: relative;
  min-width: 0;
}

.front_page.venture02-theme .v2-product-empty {
  display: grid;
  margin: 0;
  place-items: center;
  border: 1px dashed var(--v2-line-strong);
  border-radius: 3px;
  color: var(--v2-muted);
  background: rgba(255, 253, 247, .62);
  font-family: "Noto Sans JP", sans-serif;
  font-size: .76rem;
  line-height: 1.7;
  text-align: center;
}

.front_page.venture02-theme .v2-product-empty--recommended {
  min-height: 254px;
  margin-top: 7px;
}

.front_page.venture02-theme .v2-product-empty--ranking {
  min-height: 240px;
}

.front_page.venture02-theme .v2-product-slider-shell .venture-new-swiper {
  padding: 7px 2px 3px;
}

.front_page.venture02-theme .v2-product-slider-shell .venture-new-swiper.is-static {
  overflow: visible;
}

.front_page.venture02-theme .v2-product-slider-shell .venture-new-swiper.is-static .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  transform: none !important;
}

.front_page.venture02-theme .v2-product-slider-shell .venture-new-swiper.is-static .swiper-slide {
  width: auto !important;
}

.front_page.venture02-theme .v2-product-slider-arrow {
  position: absolute;
  top: 52%;
  z-index: 5;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--v2-line-strong);
  border-radius: 999px;
  color: var(--v2-ink);
  background: rgba(255, 253, 247, .92);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity .18s ease, color .18s ease, background .18s ease;
}

.front_page.venture02-theme .v2-product-slider-arrow--prev { left: -15px; }
.front_page.venture02-theme .v2-product-slider-arrow--next { right: -15px; }

.front_page.venture02-theme .v2-product-slider-shell:hover .v2-product-slider-arrow,
.front_page.venture02-theme .v2-product-slider-arrow:focus-visible {
  opacity: 1;
  pointer-events: auto;
}

.front_page.venture02-theme .v2-product-slider-arrow:hover,
.front_page.venture02-theme .v2-product-slider-arrow:focus-visible {
  color: #fff;
  background: var(--v2-red);
}

.front_page.venture02-theme .v2-warranty-card {
  min-height: 92px;
  padding: 13px 14px;
  isolation: isolate;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(255, 253, 247, .92) 0%, rgba(255, 253, 247, .7) 52%, rgba(255, 253, 247, .1) 100%), var(--v2-warranty-image);
  background-position: center;
  background-size: cover;
}

.front_page.venture02-theme .v2-warranty-card strong,
.front_page.venture02-theme .v2-warranty-card p {
  position: relative;
  z-index: 1;
}

.front_page.venture02-theme .v2-compact-slider-shell {
  position: relative;
  min-width: 0;
}

.front_page.venture02-theme .v2-commerce-grid > .v2-compact-slider-shell {
  z-index: 8;
  overflow: visible;
}

.front_page.venture02-theme .v2-compact-slider-wrap {
  position: relative;
  min-height: 180px;
  padding: 4px 4px 0;
}

.front_page.venture02-theme .v2-new-list-swiper {
  height: 176px;
  overflow: hidden;
}

.front_page.venture02-theme .v2-new-list-swiper.is-static {
  height: auto;
  overflow: visible;
}

.front_page.venture02-theme .v2-new-list-swiper.is-static .v2-new-list {
  display: grid;
  gap: 13px;
  transform: none !important;
}

.front_page.venture02-theme .v2-new-list-swiper.is-static .v2-new-list li {
  width: auto !important;
}

.front_page.venture02-theme .v2-new-list li {
  margin: 0;
  padding: 0 2px;
}

.front_page.venture02-theme .v2-new-list li + li {
  border-top: 1px solid var(--v2-line);
  padding-top: 13px;
}

.front_page.venture02-theme .v2-compact-slider-arrow {
  position: absolute;
  left: 50%;
  z-index: 20;
  display: grid;
  width: 30px;
  height: 30px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--v2-line-strong);
  border-radius: 50%;
  color: var(--v2-ink);
  background: rgba(255, 253, 247, .94);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity .18s ease, color .18s ease, background .18s ease;
}

.front_page.venture02-theme .v2-compact-slider-arrow--prev { top: -30px; }
.front_page.venture02-theme .v2-compact-slider-arrow--next { bottom: -30px; }

.front_page.venture02-theme .v2-compact-slider-shell:hover .v2-compact-slider-arrow,
.front_page.venture02-theme .v2-compact-slider-arrow:focus-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Venture02 TOP rules: approved category tabs, compact sidebar and hover states. */
@media (min-width: 901px) {
  .front_page.venture02-theme .v2-sidebar {
    display: flex;
    align-self: stretch;
    flex-direction: column;
  }

  .front_page.venture02-theme .v2-sidebar > .v2-eyecatch {
    display: grid;
    min-height: 0;
    flex: 1;
    grid-template-rows: auto auto minmax(92px, 1fr);
  }

  .front_page.venture02-theme .v2-eyecatch > .v2-side-promo--store,
  .front_page.venture02-theme .v2-eyecatch > .v2-side-promo:last-child {
    height: 100%;
    min-height: 92px;
  }
}

.front_page.venture02-theme .v2-category-tabs {
  grid-column: span 2;
  padding: 12px 14px 10px;
}

.front_page.venture02-theme .v2-category-tabs__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.front_page.venture02-theme .v2-category-tabs__header h2 {
  flex: 0 0 auto;
  margin: 0;
  font-size: .96rem;
}

.front_page.venture02-theme .v2-category-tabs__controls {
  display: flex;
  min-width: 0;
  gap: 4px;
}

.front_page.venture02-theme .v2-category-tabs__controls button {
  padding: 5px 9px;
  border: 1px solid var(--v2-line);
  border-radius: 999px;
  color: var(--v2-muted);
  background: rgba(255, 253, 247, .72);
  font-family: "Noto Sans JP", sans-serif;
  font-size: .61rem;
  line-height: 1;
  transition: border-color .16s ease, color .16s ease, background .16s ease;
}

.front_page.venture02-theme .v2-category-tabs__controls button[aria-selected="true"] {
  border-color: var(--v2-red);
  color: #fff;
  background: var(--v2-red);
}

.front_page.venture02-theme .v2-category-tabs__panel {
  position: relative;
  min-height: 192px;
  padding: 10px 0 22px;
}

.front_page.venture02-theme .v2-category-tabs__panel[hidden] {
  display: none;
}

.front_page.venture02-theme .v2-category-tabs__products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.front_page.venture02-theme .v2-category-tab-product {
  display: grid;
  min-width: 0;
  grid-template-rows: 112px auto;
  padding: 0 9px;
  border-right: 1px solid var(--v2-line);
  text-align: center;
}

.front_page.venture02-theme .v2-category-tab-product:last-child {
  border-right: 0;
}

.front_page.venture02-theme .v2-category-tab-product img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  transition: transform .2s ease;
}

.front_page.venture02-theme .v2-category-tab-product:hover img,
.front_page.venture02-theme .v2-category-tab-product:focus-visible img {
  transform: translateY(-3px) scale(1.025);
}

.front_page.venture02-theme .v2-category-tab-product strong,
.front_page.venture02-theme .v2-category-tab-product b {
  display: block;
  overflow: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-size: .65rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.front_page.venture02-theme .v2-category-tab-product b {
  margin-top: 3px;
  color: var(--v2-ink);
  font-weight: 500;
}

.front_page.venture02-theme .v2-category-tabs__more {
  position: absolute;
  right: 2px;
  bottom: 0;
  font-size: .62rem;
}

.front_page.venture02-theme .v2-category-tabs__empty {
  margin: 50px 0 0;
  color: var(--v2-muted);
  font-family: "Noto Sans JP", sans-serif;
  font-size: .7rem;
  text-align: center;
}

.front_page.venture02-theme .v2-wide-promo {
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.front_page.venture02-theme .v2-wide-promo > img,
.front_page.venture02-theme .v2-wide-promo > span {
  transition: transform .28s ease, background .28s ease;
}

.front_page.venture02-theme .v2-wide-promo:hover,
.front_page.venture02-theme .v2-wide-promo:focus-visible {
  border-color: rgba(169, 18, 24, .42);
  box-shadow: 0 10px 24px rgba(76, 46, 24, .13);
  transform: translateY(-3px);
}

.front_page.venture02-theme .v2-wide-promo:hover > img,
.front_page.venture02-theme .v2-wide-promo:focus-visible > img {
  transform: scale(1.035);
}

.front_page.venture02-theme .v2-wide-promo:hover > span,
.front_page.venture02-theme .v2-wide-promo:focus-visible > span {
  transform: translateX(4px);
}

@media (max-width: 1020px) {
  .front_page.venture02-theme .v2-category-tabs {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .front_page.venture02-theme .v2-product-empty--recommended {
    min-height: 200px;
  }

  .front_page.venture02-theme .v2-product-empty--ranking {
    min-height: 180px;
  }

  .front_page.venture02-theme .v2-category-tabs {
    height: auto !important;
    min-height: 252px !important;
  }

  .front_page.venture02-theme .v2-mobile-bottom-promos--single {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 599px) {
  .front_page.venture02-theme .v2-category-tabs__header {
    display: grid;
  }

  .front_page.venture02-theme .v2-category-tabs__controls {
    overflow-x: auto;
  }

  .front_page.venture02-theme .v2-category-tabs__controls button {
    flex: 0 0 auto;
  }

  .front_page.venture02-theme .v2-category-tabs__products {
    display: flex;
    overflow-x: auto;
  }

  .front_page.venture02-theme .v2-category-tab-product {
    min-width: 142px;
  }
}

.front_page.venture02-theme .v2-compact-slider-arrow:hover,
.front_page.venture02-theme .v2-compact-slider-arrow:focus-visible {
  color: #fff;
  background: var(--v2-red);
}

@media (max-width: 900px) {
  .front_page.venture02-theme .v2-hero > .swiper-wrapper {
    height: 100%;
  }

  .front_page.venture02-theme .v2-hero__dots {
    bottom: 12px;
  }

  .front_page.venture02-theme .v2-hero__arrow {
    top: 50%;
    width: 31px;
    height: 48px;
  }

  .front_page.venture02-theme .v2-hero__copy h1 {
    font-size: clamp(2rem, 7vw, 3.35rem);
  }

  .front_page.venture02-theme .v2-product-slider-shell .venture-new-swiper.is-static .swiper-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 599px) {
  .front_page.venture02-theme .v2-header .v2-logo__copy strong {
    max-width: 150px;
    overflow: hidden;
    font-size: .86rem;
    text-overflow: ellipsis;
  }

  .venture02-theme .v2-cart-popover {
    right: -56px;
  }

  .front_page.venture02-theme .v2-product-slider-shell .venture-new-swiper.is-static .swiper-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .front_page.venture02-theme .v2-product-slider-arrow {
    display: none;
  }

}

/* Final TOP alignment: keep the desktop header tracks separated at compact
 * laptop widths, and let the generated hero artwork fill the full visual. */
@media (min-width: 901px) {
  .front_page.venture02-theme .v2-header__main {
    grid-template-columns: minmax(190px, .9fr) minmax(390px, 1.45fr) minmax(300px, 1fr);
    gap: 18px;
  }

  .front_page.venture02-theme .v2-header__nav {
    gap: clamp(10px, 1.2vw, 20px);
    font-size: .72rem;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .front_page.venture02-theme .v2-header__main {
    grid-template-columns: minmax(180px, 1fr) minmax(390px, auto) auto;
    gap: 12px;
  }

  .front_page.venture02-theme .v2-header__nav {
    gap: 8px;
    font-size: .67rem;
  }

  .front_page.venture02-theme .v2-header__tools {
    gap: 12px;
  }

  .front_page.venture02-theme .v2-header .v2-search {
    display: none;
  }
}

.front_page.venture02-theme .v2-hero > .swiper-wrapper {
  height: 100%;
}

.front_page.venture02-theme .venture-hero.v2-hero .v2-hero__slide .v2-hero__background {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.front_page.venture02-theme .v2-hero__desktop-benefits {
  background: rgba(255, 252, 245, .88);
}

.front_page.venture02-theme .v2-hero__arrow {
  top: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.front_page.venture02-theme .v2-hero__dots {
  bottom: 61px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 253, 247, .38);
}

.front_page.venture02-theme .venture-new-swiper .v2-product-card p {
  display: none;
}

.front_page.venture02-theme .v2-ranking-list li:nth-child(4) {
  display: grid;
}

.front_page.venture02-theme .v2-ranking-list li:nth-child(n + 5) {
  display: none;
}

.front_page.venture02-theme .v2-side-promo,
.front_page.venture02-theme .v2-warranty-card {
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.front_page.venture02-theme .v2-side-promo img {
  transition: transform .28s ease;
}

.front_page.venture02-theme .v2-side-promo:hover,
.front_page.venture02-theme .v2-side-promo:focus-visible,
.front_page.venture02-theme .v2-warranty-card:hover {
  border-color: rgba(169, 18, 24, .42);
  box-shadow: 0 9px 22px rgba(76, 46, 24, .14);
  transform: translateY(-2px);
}

.front_page.venture02-theme .v2-side-promo:hover img,
.front_page.venture02-theme .v2-side-promo:focus-visible img {
  transform: scale(1.035);
}

.front_page.venture02-theme .v2-category-tabs__panel {
  min-height: 180px;
  padding-bottom: 10px;
}

.front_page.venture02-theme .v2-category-tab-product {
  align-items: center;
  justify-items: center;
  align-content: center;
  grid-template-rows: 112px minmax(38px, auto);
}

.front_page.venture02-theme .v2-category-tab-product > span {
  width: 100%;
}

@media (min-width: 901px) {
  .front_page.venture02-theme .venture-new-swiper .swiper-wrapper,
  .front_page.venture02-theme .venture-new-swiper .swiper-slide,
  .front_page.venture02-theme .venture-new-swiper .v2-product-card {
    height: 210px;
  }

  .front_page.venture02-theme .venture-new-swiper .v2-product-card__image {
    height: 146px;
  }

  .front_page.venture02-theme .venture-new-swiper .v2-product-card__body {
    display: flex;
    height: 62px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding-block: 7px;
  }
}

.front_page.venture02-theme .v2-new-list-swiper {
  height: 180px;
}

.front_page.venture02-theme .v2-new-list li {
  height: auto;
  min-height: 0;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 8px;
  padding: 0 2px;
}

.front_page.venture02-theme .v2-new-list li + li {
  padding-top: 5px;
}

.front_page.venture02-theme .v2-new-list img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.front_page.venture02-theme .v2-new-list strong {
  margin-top: 2px;
  font-size: .68rem;
}

.front_page.venture02-theme .v2-category-tabs__panel:not([hidden]) {
  display: grid;
  align-items: center;
}

.front_page.venture02-theme .v2-category-tabs__products {
  width: 100%;
  align-items: center;
}

@media (max-width: 900px) {
  .front_page.venture02-theme .v2-hero__arrow {
    width: 36px;
    height: 36px;
  }
}

/* Product-title legibility and the category product carousel. */
@media (min-width: 901px) {
  .front_page.venture02-theme .venture-new-swiper .v2-product-card h3 {
    overflow: visible;
    font-size: .71rem;
    line-height: 1.25;
    text-overflow: clip;
    white-space: normal;
    word-break: keep-all;
  }

  .front_page.venture02-theme .venture-new-swiper .v2-product-card strong {
    margin-top: 0;
    font-size: .76rem;
  }

  .front_page.venture02-theme .venture-new-swiper .v2-product-card__body {
    padding-inline: 8px;
  }
}

.front_page.venture02-theme .v2-new-list li {
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  padding: 0;
  border-bottom: 1px solid var(--v2-line);
}

.front_page.venture02-theme .v2-new-list li + li {
  padding-top: 0;
  border-top: 0;
}

.front_page.venture02-theme .v2-new-list li:last-child {
  border-bottom: 0;
}

.front_page.venture02-theme .v2-new-list img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.front_page.venture02-theme .v2-new-list span {
  font-size: .69rem;
}

.front_page.venture02-theme .v2-new-list strong {
  margin-top: 3px;
  font-size: .75rem;
}

.front_page.venture02-theme .v2-new-list-swiper,
.front_page.venture02-theme .v2-new-list-swiper.is-static {
  height: 208px;
  overflow: hidden;
}

.front_page.venture02-theme .v2-new-list-swiper.is-static .v2-new-list {
  display: grid;
  height: 208px;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.front_page.venture02-theme .v2-new-list-swiper.is-static .v2-new-list li {
  width: auto !important;
  height: auto !important;
}

.front_page.venture02-theme .v2-new-list li {
  grid-template-columns: 50px minmax(0, 1fr);
}

.front_page.venture02-theme .v2-new-list img {
  width: 46px;
  height: 46px;
}

@media (max-width: 900px) {
  .front_page.venture02-theme .v2-commerce-grid > :nth-child(-n + 2) {
    height: 260px;
    min-height: 260px;
  }
}

.front_page.venture02-theme .v2-category-tabs__panel {
  min-height: 196px;
  padding: 4px 0 0;
}

@media (min-width: 901px) {
  .front_page.venture02-theme .v2-category-tabs__panel {
    padding-top: 20px;
  }
}

.front_page.venture02-theme .v2-category-tabs__panel:not([hidden]) {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
}

.front_page.venture02-theme .v2-category-tabs__slider-shell {
  position: relative;
  width: 100%;
  min-width: 0;
}

.front_page.venture02-theme .v2-category-tabs__swiper {
  width: 100%;
  height: 142px;
  overflow: hidden;
}

.front_page.venture02-theme .v2-category-tabs__swiper:not(.is-static) .v2-category-tabs__products {
  display: flex;
  grid-template-columns: none;
  overflow: visible;
}

.front_page.venture02-theme .v2-category-tabs__swiper.is-static .v2-category-tabs__products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.front_page.venture02-theme .v2-category-tabs__swiper.is-static .v2-category-tab-product {
  width: auto !important;
}

.front_page.venture02-theme .v2-category-tab-product {
  height: 142px;
  grid-template-rows: 98px minmax(38px, auto);
  align-content: center;
  padding-inline: 9px;
}

.front_page.venture02-theme .v2-category-tab-product img {
  height: 96px;
}

.front_page.venture02-theme .v2-category-tab-product strong {
  min-height: 1.2em;
  overflow: visible;
  font-size: .61rem;
  line-height: 1.2;
  text-overflow: clip;
  white-space: normal;
  word-break: keep-all;
}

.front_page.venture02-theme .v2-category-tab-product b {
  font-size: .61rem;
}

.front_page.venture02-theme .v2-category-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--v2-line-strong);
  border-radius: 50%;
  color: var(--v2-ink);
  background: rgba(255, 253, 247, .94);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity .18s ease, color .18s ease, background .18s ease;
}

.front_page.venture02-theme .v2-category-slider-arrow--prev {
  left: -8px;
}

.front_page.venture02-theme .v2-category-slider-arrow--next {
  right: -8px;
}

.front_page.venture02-theme .v2-category-tabs__slider-shell:hover .v2-category-slider-arrow,
.front_page.venture02-theme .v2-category-slider-arrow:focus-visible {
  opacity: 1;
  pointer-events: auto;
}

.front_page.venture02-theme .v2-category-slider-arrow:hover,
.front_page.venture02-theme .v2-category-slider-arrow:focus-visible {
  color: #fff;
  background: var(--v2-red);
}

.front_page.venture02-theme .v2-category-tabs__list-button {
  display: inline-flex;
  min-width: 118px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  justify-self: center;
  padding: 5px 18px;
  border: 1px solid var(--v2-line-strong);
  border-radius: 999px;
  color: var(--v2-ink);
  background: rgba(255, 253, 247, .84);
  font-family: "Noto Sans JP", sans-serif;
  font-size: .64rem;
  line-height: 1;
  transform: translateY(7px);
  transition: border-color .16s ease, color .16s ease, background .16s ease;
}

.front_page.venture02-theme .v2-category-tabs__list-button:hover,
.front_page.venture02-theme .v2-category-tabs__list-button:focus-visible {
  border-color: var(--v2-red);
  color: #fff;
  background: var(--v2-red);
}

@media (max-width: 599px) {
  .front_page.venture02-theme .venture-new-swiper .v2-product-card h3 {
    overflow: visible;
    font-size: .64rem;
    line-height: 1.25;
    text-overflow: clip;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .front_page.venture02-theme .venture-new-swiper .v2-product-card strong {
    font-size: .69rem;
    white-space: normal;
  }

  .front_page.venture02-theme .v2-category-tabs__swiper {
    height: 136px;
  }

  .front_page.venture02-theme .v2-category-tab-product {
    height: 136px;
    grid-template-rows: 92px minmax(38px, auto);
  }

  .front_page.venture02-theme .v2-category-tab-product img {
    height: 90px;
  }
}

/* Keep ranking and new-product packshots on one shared visual scale. */
.front_page.venture02-theme .v2-ranking-list img,
.front_page.venture02-theme .v2-new-list img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.front_page.venture02-theme .v2-new-list li {
  grid-template-columns: 56px minmax(0, 1fr);
}

@media (max-width: 900px) {
  .front_page.venture02-theme .v2-ranking-list img,
  .front_page.venture02-theme .v2-new-list img {
    width: 38px;
    height: 38px;
  }

  .front_page.venture02-theme .v2-new-list li {
    grid-template-columns: 40px minmax(0, 1fr);
  }
}

/* Shared storefront chrome: TOP, product list and product detail must keep the
 * same header/footer geometry. Page-specific layout rules must not override
 * these values. */
.venture02-theme .v2-header .v2-logo__copy strong,
.venture02-theme .v2-footer .v2-logo__copy strong {
  font-family: "Noto Serif JP", Georgia, serif;
  font-weight: 600;
  letter-spacing: .075em;
  line-height: 1.1;
  white-space: nowrap;
}

.venture02-theme .v2-footer .v2-logo__copy strong {
  font-size: 1.12rem;
}

@media (min-width: 901px) {
  .venture02-theme .v2-announcement__inner {
    min-height: 32px;
  }

  .venture02-theme .v2-header__main {
    min-height: 86px;
    grid-template-columns: minmax(190px, .9fr) minmax(390px, 1.45fr) minmax(300px, 1fr);
    gap: 18px;
  }

  .venture02-theme .v2-header__main > .v2-logo {
    transform: none;
  }

  .venture02-theme .v2-header .v2-logo__mark {
    width: 54px;
    height: 54px;
  }

  .venture02-theme .v2-header__nav {
    gap: clamp(10px, 1.2vw, 20px);
    font-size: .72rem;
    transform: translateX(-8px);
  }

  .venture02-theme .v2-header__tools {
    gap: 20px;
    transform: none;
  }

  .venture02-theme .v2-header .v2-search {
    width: 190px;
    height: 40px;
    flex: 0 0 190px;
  }

  .venture02-theme .v2-footer {
    padding-top: 30px;
    padding-bottom: 24px;
  }

  .venture02-theme .v2-footer .v2-logo__mark {
    width: 48px;
    height: 48px;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .venture02-theme .v2-header__main {
    grid-template-columns: minmax(180px, 1fr) minmax(390px, auto) auto;
    gap: 12px;
  }

  .venture02-theme .v2-header__nav {
    gap: 8px;
    font-size: .67rem;
  }

  .venture02-theme .v2-header__tools {
    gap: 12px;
  }

  .venture02-theme .v2-header .v2-search {
    display: none;
  }
}

@media (max-width: 900px) {
  .venture02-theme .v2-header {
    border-radius: 0;
  }

  .venture02-theme .v2-footer {
    padding: 12px 0 10px;
  }

  .venture02-theme .v2-footer__grid {
    width: min(calc(100% - 46px), var(--v2-shell));
    grid-template-columns: 1.18fr .86fr 1fr 1.16fr;
    gap: 15px;
  }

  .venture02-theme .v2-footer__brand {
    padding-left: 5px;
  }

  .venture02-theme .v2-footer__column::before {
    left: -8px;
  }

  .venture02-theme .v2-footer__column a {
    padding-block: 1px;
  }

  .venture02-theme .v2-footer .v2-logo__mark {
    width: 34px;
    height: 34px;
  }

  .venture02-theme .v2-footer .v2-logo__copy strong {
    font-size: 1.08rem;
  }
}

@media (min-width: 600px) and (max-width: 900px) {
  .venture02-theme .v2-header__main {
    width: min(calc(100% - 48px), var(--v2-shell));
    min-height: 86px;
    grid-template-columns: minmax(230px, 1fr) repeat(4, 89px);
    gap: 5px;
  }

  .venture02-theme .v2-header .v2-logo__mark {
    width: 50px;
    height: 50px;
  }

  .venture02-theme .v2-header .v2-logo__copy strong {
    font-size: 1.38rem;
  }

  .venture02-theme .v2-header .v2-tool-link,
  .venture02-theme .v2-header .v2-menu-button {
    font-size: .62rem;
  }

  .venture02-theme .v2-header .v2-tool-link .v2-icon,
  .venture02-theme .v2-header .v2-menu-button .v2-icon {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 599px) {
  .venture02-theme .v2-header .v2-logo__copy strong {
    max-width: 150px;
    overflow: hidden;
    font-size: .86rem;
    text-overflow: ellipsis;
  }
}

/* Header identity and interaction polish: the logo is type-only, navigation
 * breathes between links, and utility icons use one vermilion hover state. */
.venture02-theme .v2-header .v2-logo,
.venture02-theme .v2-footer .v2-logo {
  gap: 0;
}

.venture02-theme .v2-header .v2-logo__copy strong {
  font-size: clamp(1.18rem, 1.65vw, 1.42rem);
  letter-spacing: .08em;
}

.venture02-theme .v2-header__nav {
  gap: clamp(16px, 1.6vw, 28px) !important;
}

@media (min-width: 901px) {
  .venture02-theme .v2-header__main,
  .front_page.venture02-theme .v2-header__main {
    grid-template-columns: 194px minmax(390px, 1fr) auto !important;
  }

  .venture02-theme .v2-header__nav {
    justify-content: flex-start;
    transform: none;
  }
}

.venture02-theme .v2-header__nav a::after {
  display: none !important;
}

.venture02-theme .v2-header__tools .v2-tool-link,
.venture02-theme .v2-header__tools .v2-menu-button,
.venture02-theme .v2-header__tools .v2-search button {
  transition: color .18s ease;
}

.venture02-theme .v2-header__tools .v2-tool-link:hover,
.venture02-theme .v2-header__tools .v2-tool-link:focus-visible,
.venture02-theme .v2-header__tools .v2-menu-button:hover,
.venture02-theme .v2-header__tools .v2-menu-button:focus-visible,
.venture02-theme .v2-header__tools .v2-search button:hover,
.venture02-theme .v2-header__tools .v2-search button:focus-visible,
.venture02-theme .v2-header__tools .v2-cart-button:hover,
.venture02-theme .v2-header__tools .v2-cart-button:focus-visible {
  color: var(--v2-red) !important;
}

.venture02-theme .v2-header__tools .v2-cart-button:hover span,
.venture02-theme .v2-header__tools .v2-cart-button:hover small,
.venture02-theme .v2-header__tools .v2-cart-button:focus-visible span,
.venture02-theme .v2-header__tools .v2-cart-button:focus-visible small {
  color: var(--v2-red) !important;
}

/* Shared content hover states: keep the warm red accent consistent across
 * utility links, product titles, social links and the text-only brand mark. */
.venture02-theme .v2-announcement a {
  transition: color .18s ease;
}

.venture02-theme .v2-announcement a:hover,
.venture02-theme .v2-announcement a:focus-visible {
  color: #ffe2d5 !important;
}

.venture02-theme .v2-header .v2-logo,
.venture02-theme .v2-footer .v2-logo {
  transition: color .18s ease;
}

.venture02-theme .v2-header .v2-logo:hover,
.venture02-theme .v2-header .v2-logo:focus-visible,
.venture02-theme .v2-footer .v2-logo:hover,
.venture02-theme .v2-footer .v2-logo:focus-visible {
  color: var(--v2-red);
}

.venture02-theme .v2-ranking-list li > span > a,
.venture02-theme .v2-ranking-list li > span > a b,
.venture02-theme .v2-new-list li > span > a,
.venture02-theme .v2-new-list li > span > a b {
  transition: color .18s ease;
}

.venture02-theme .v2-ranking-list li > span > a {
  font-weight: 700;
}

.venture02-theme .v2-ranking-list li > span > a:hover,
.venture02-theme .v2-ranking-list li > span > a:focus-visible,
.venture02-theme .v2-ranking-list li > span > a:hover b,
.venture02-theme .v2-ranking-list li > span > a:focus-visible b,
.venture02-theme .v2-new-list li > span > a:hover,
.venture02-theme .v2-new-list li > span > a:focus-visible,
.venture02-theme .v2-new-list li > span > a:hover b,
.venture02-theme .v2-new-list li > span > a:focus-visible b {
  color: var(--v2-red);
}

.venture02-theme .v2-social a {
  transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}

.venture02-theme .v2-social a:hover,
.venture02-theme .v2-social a:focus-visible {
  border-color: var(--v2-red);
  color: var(--v2-red);
  background: rgba(169, 18, 24, .05);
}

.front_page.venture02-theme .v2-product-slider-arrow {
  width: 26px;
  height: 26px;
  font-size: 1rem;
}

.front_page.venture02-theme .v2-product-slider-arrow--prev { left: -8px; }
.front_page.venture02-theme .v2-product-slider-arrow--next { right: -8px; }

.venture02-theme #recommended .v2-section-heading > a {
  transition: color .18s ease;
}

.venture02-theme #recommended .v2-section-heading > a:hover,
.venture02-theme #recommended .v2-section-heading > a:focus-visible {
  color: var(--v2-red);
}

/* Every TOP product presentation shares one typography contract. */
.front_page.venture02-theme {
  --v2-top-product-font: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  --v2-top-product-title-size: .69rem;
  --v2-top-product-title-weight: 700;
  --v2-top-product-price-size: .75rem;
  --v2-top-product-price-weight: 500;
}

.front_page.venture02-theme #recommended .v2-product-card h3,
.front_page.venture02-theme #recommended .v2-product-card h3 a,
.front_page.venture02-theme .v2-ranking-list li > span > a,
.front_page.venture02-theme .v2-new-list li > span > a,
.front_page.venture02-theme .v2-category-tab-product strong {
  font-family: var(--v2-top-product-font);
  font-size: var(--v2-top-product-title-size);
  font-weight: var(--v2-top-product-title-weight);
  line-height: 1.3;
}

.front_page.venture02-theme #recommended .v2-product-card__body > strong,
.front_page.venture02-theme .v2-ranking-list li > span > strong,
.front_page.venture02-theme .v2-new-list li > span > strong,
.front_page.venture02-theme .v2-category-tab-product b {
  font-family: var(--v2-top-product-font);
  font-size: var(--v2-top-product-price-size);
  font-weight: var(--v2-top-product-price-weight);
  line-height: 1.25;
}

.front_page.venture02-theme .v2-ranking-list li > span > strong,
.front_page.venture02-theme .v2-new-list li > span > strong {
  margin-top: 3px;
}

.front_page.venture02-theme .v2-ranking-list img,
.front_page.venture02-theme .v2-new-list img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.front_page.venture02-theme .v2-new-list li {
  position: relative;
  border-bottom: 0;
}

.front_page.venture02-theme #new h2 {
  margin-bottom: 2px;
}

.front_page.venture02-theme #new .v2-compact-slider-wrap {
  position: static;
  padding-top: 0;
}

.front_page.venture02-theme #new .v2-new-list-swiper {
  height: 222px;
}

.front_page.venture02-theme #new .v2-new-list-swiper:not(.is-static) .v2-new-list li {
  height: 54px !important;
  min-height: 54px;
}

.front_page.venture02-theme #new .v2-new-list li > span {
  padding-right: 36px;
}

.front_page.venture02-theme #new .v2-compact-slider-arrow {
  right: 12px;
  left: auto;
  transform: none;
}

.front_page.venture02-theme #new .v2-compact-slider-arrow--prev {
  top: 10px;
}

.front_page.venture02-theme #new .v2-compact-slider-arrow--next {
  bottom: 10px;
}

.front_page.venture02-theme .v2-new-list li:not(:last-child)::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  content: '';
  background: var(--v2-line);
}

@media (max-width: 900px) {
  .front_page.venture02-theme {
    --v2-top-product-title-size: .64rem;
    --v2-top-product-price-size: .69rem;
  }

  .front_page.venture02-theme .v2-ranking-list img,
  .front_page.venture02-theme .v2-new-list img {
    width: 38px;
    height: 38px;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .venture02-theme .v2-header__nav {
    padding-left: 6px;
  }

  .venture02-theme .v2-header__nav {
    gap: 12px !important;
  }
}

/* TOP news: the EC-CUBE News repository is shared, but the presentation is
 * intentionally Venture02-specific and follows the paper/ink system. */
.front_page.venture02-theme .v2-home-news {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding: 14px 18px 6px;
  --v2-news-row-size: .72rem;
  overflow: hidden;
  border: 1px solid var(--v2-line);
  border-radius: 3px;
  background: rgba(255, 253, 248, .76);
}

.front_page.venture02-theme .v2-news__heading {
  display: flex;
  min-height: 38px;
  align-items: baseline;
}

.front_page.venture02-theme .v2-news__heading h2 {
  margin: 0;
  color: var(--v2-ink);
  font-size: var(--v2-section);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .08em;
}

.front_page.venture02-theme .v2-news__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.front_page.venture02-theme .v2-news__item {
  border-bottom: 1px solid var(--v2-line);
}

.front_page.venture02-theme .v2-news__item:last-child {
  border-bottom: 0;
}

.front_page.venture02-theme .v2-news__summary {
  display: grid;
  min-height: 42px;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: stretch;
  transition: background-color .18s ease;
}

.front_page.venture02-theme .v2-news__date {
  display: flex;
  align-items: center;
  color: var(--v2-muted);
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--v2-news-row-size);
  font-variant-numeric: tabular-nums;
  letter-spacing: .05em;
  transition: color .18s ease;
}

.front_page.venture02-theme .v2-news__toggle {
  display: grid;
  width: 100%;
  min-width: 0;
  padding: 8px 2px 8px 0;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 12px;
  border: 0;
  color: var(--v2-ink);
  background: transparent;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: var(--v2-news-row-size);
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  transition: color .18s ease, background-color .18s ease;
}

.front_page.venture02-theme .v2-news__toggle > span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.front_page.venture02-theme .v2-news__toggle .material-symbols-outlined {
  display: grid;
  width: 19px;
  height: 19px;
  align-self: center;
  justify-self: center;
  color: var(--v2-muted);
  font-size: 19px;
  line-height: 1;
  place-items: center;
  transform-origin: center;
  transition: color .18s ease, transform .2s ease;
}

.front_page.venture02-theme .v2-news__toggle:hover,
.front_page.venture02-theme .v2-news__toggle:focus-visible {
  color: var(--v2-ink);
  background: transparent;
}

.front_page.venture02-theme .v2-news__toggle:hover > span:first-child,
.front_page.venture02-theme .v2-news__toggle:focus-visible > span:first-child,
.front_page.venture02-theme .v2-news__toggle[aria-expanded="true"] > span:first-child {
  color: var(--v2-red);
}

.front_page.venture02-theme .v2-news__toggle[aria-expanded="true"] .material-symbols-outlined {
  transform: rotate(180deg);
}

.front_page.venture02-theme .v2-news__panel {
  width: 100%;
  padding: 8px 34px 13px 0;
  color: var(--v2-muted);
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: var(--v2-news-row-size);
  line-height: 1.75;
}

.front_page.venture02-theme .v2-news__panel[hidden] {
  display: none;
}

.front_page.venture02-theme .v2-news__description {
  overflow-wrap: anywhere;
}

.front_page.venture02-theme .v2-news__link {
  display: inline-flex;
  margin-top: 7px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: var(--v2-red);
  font-weight: 600;
  line-height: 1.35;
  transition: opacity .18s ease;
}

.front_page.venture02-theme .v2-news__link:hover,
.front_page.venture02-theme .v2-news__link:focus-visible {
  opacity: .68;
}

@media (max-width: 599px) {
  .front_page.venture02-theme .v2-home-news {
    margin-top: 12px;
    padding: 12px 13px 5px;
    --v2-news-row-size: .66rem;
  }

  .front_page.venture02-theme .v2-news__heading {
    min-height: 34px;
  }

  .front_page.venture02-theme .v2-news__summary {
    min-height: 48px;
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .front_page.venture02-theme .v2-news__date {
    font-size: var(--v2-news-row-size);
  }

  .front_page.venture02-theme .v2-news__toggle {
    padding-block: 8px;
    grid-template-columns: minmax(0, 1fr) 22px;
    gap: 6px;
    font-size: var(--v2-news-row-size);
  }

  .front_page.venture02-theme .v2-news__panel {
    padding: 8px 22px 12px 0;
    font-size: var(--v2-news-row-size);
  }
}

/* iPhone-width TOP composition: sections use the full content track, while
 * shortcuts and services wrap into deliberate, touch-friendly grids. */
@media (max-width: 599px) {
  .front_page.venture02-theme {
    --v2-top-product-title-size: .69rem;
    --v2-top-product-price-size: .75rem;
  }

  .front_page.venture02-theme .v2-home-layout,
  .front_page.venture02-theme .v2-main-column,
  .front_page.venture02-theme .v2-mobile-shortcuts,
  .front_page.venture02-theme .v2-benefits,
  .front_page.venture02-theme #recommended,
  .front_page.venture02-theme .v2-commerce-grid,
  .front_page.venture02-theme .v2-commerce-grid > *,
  .front_page.venture02-theme .v2-home-news,
  .front_page.venture02-theme .v2-promo-row {
    min-width: 0;
    width: 100%;
  }

  .front_page.venture02-theme .v2-mobile-shortcuts {
    min-height: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .front_page.venture02-theme .v2-mobile-shortcut {
    min-height: 72px;
    grid-template-rows: 35px auto;
    align-content: center;
    gap: 4px;
    padding: 7px 6px 6px;
    border-radius: 4px;
    font-size: .62rem;
    line-height: 1.3;
  }

  .front_page.venture02-theme .v2-mobile-shortcut img,
  .front_page.venture02-theme .v2-mobile-shortcut .v2-icon {
    width: 34px;
    height: 34px;
  }

  .front_page.venture02-theme .v2-benefits {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .front_page.venture02-theme .v2-benefit {
    min-height: 62px;
    justify-content: flex-start;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 4px;
  }

  .front_page.venture02-theme .v2-benefit > .v2-icon.material-symbols-outlined {
    display: grid;
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    place-items: center;
    font-size: 24px;
  }

  .front_page.venture02-theme .v2-benefit > span:not(.v2-icon) {
    display: grid;
    align-content: center;
    font-size: .58rem;
    line-height: 1.35;
  }

  .front_page.venture02-theme .v2-benefit strong {
    overflow: visible;
    font-size: .68rem;
    text-overflow: clip;
    white-space: normal;
  }

  .front_page.venture02-theme .v2-product-slider-shell .venture-new-swiper:not(.is-static) {
    padding-inline: 0;
    overflow: hidden;
  }

  .front_page.venture02-theme .v2-product-slider-shell .venture-new-swiper:not(.is-static) .swiper-wrapper {
    display: flex !important;
    grid-template-columns: none;
  }

  .front_page.venture02-theme #recommended {
    margin-top: 18px;
  }

  .front_page.venture02-theme #recommended .venture-new-swiper,
  .front_page.venture02-theme #recommended .swiper-wrapper,
  .front_page.venture02-theme #recommended .swiper-slide,
  .front_page.venture02-theme #recommended .v2-product-card {
    height: 128px;
  }

  .front_page.venture02-theme #recommended .v2-product-card {
    grid-template-columns: 46% minmax(0, 1fr);
  }

  .front_page.venture02-theme #recommended .v2-product-card__image {
    height: 126px;
  }

  .front_page.venture02-theme #recommended .v2-product-card__body {
    padding: 8px 7px;
  }

  .front_page.venture02-theme .v2-commerce-grid {
    height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    margin-top: 14px;
  }

  .front_page.venture02-theme .v2-commerce-grid > *,
  .front_page.venture02-theme .v2-commerce-grid > :nth-child(-n + 2),
  .front_page.venture02-theme .v2-commerce-grid > :nth-child(n + 3) {
    height: auto;
    min-height: 0;
  }

  .front_page.venture02-theme #ranking,
  .front_page.venture02-theme #new,
  .front_page.venture02-theme #category-collection {
    grid-column: 1 / -1;
  }

  .front_page.venture02-theme #ranking,
  .front_page.venture02-theme #new {
    padding: 14px 16px;
  }

  .front_page.venture02-theme #ranking .v2-ranking-list li {
    min-height: 56px;
    grid-template-columns: 36px 54px minmax(0, 1fr);
    gap: 9px;
  }

  .front_page.venture02-theme #ranking .v2-ranking-list img,
  .front_page.venture02-theme #new .v2-new-list img {
    width: 52px;
    height: 52px;
  }

  .front_page.venture02-theme #new .v2-new-list li {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 54px;
    gap: 10px;
  }

  .front_page.venture02-theme #new .v2-compact-slider-arrow {
    opacity: 1;
    pointer-events: auto;
  }

  .front_page.venture02-theme .v2-category-tabs__header {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .front_page.venture02-theme .v2-category-tabs__controls {
    display: grid;
    width: 100%;
    min-width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    justify-self: stretch;
    overflow: visible;
  }

  .front_page.venture02-theme .v2-category-tabs__controls button {
    min-width: 0;
    width: 100%;
    min-height: 28px;
    padding-inline: 5px;
    font-size: .59rem;
    white-space: nowrap;
  }

  .front_page.venture02-theme .v2-home-news,
  .front_page.venture02-theme .v2-promo-row,
  .front_page.venture02-theme .v2-mobile-bottom-promos {
    width: 100%;
    margin-top: 12px;
  }

  .venture02-theme .v2-footer-guide__inner {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .venture02-theme .v2-footer-guide a {
    min-height: 46px;
    border-bottom: 1px solid var(--v2-line);
    font-size: .68rem;
  }

  .venture02-theme .v2-footer-guide a:nth-child(2n) {
    border-right: 0;
  }

  .venture02-theme .v2-footer-guide a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .venture02-theme .v2-footer {
    padding: 18px 0 26px;
  }

  .venture02-theme .v2-footer__grid,
  .front_page.venture02-theme .v2-footer__grid {
    width: min(calc(100% - 24px), var(--v2-shell));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }

  .venture02-theme .v2-footer__brand,
  .front_page.venture02-theme .v2-footer__brand {
    grid-column: 1 / -1;
    padding: 0 0 14px;
    border-bottom: 1px solid var(--v2-line);
  }

  .venture02-theme .v2-footer__column,
  .front_page.venture02-theme .v2-footer__column {
    display: block;
    padding: 14px 0 12px;
    border-bottom: 1px solid var(--v2-line);
  }

  .venture02-theme .v2-footer__column::before,
  .front_page.venture02-theme .v2-footer__column::before {
    display: none;
  }

  .venture02-theme .v2-footer__column h2 {
    margin-bottom: 7px;
    font-size: .72rem;
  }

  .venture02-theme .v2-footer__brand p,
  .venture02-theme .v2-footer__column a,
  .venture02-theme .v2-footer__column p {
    font-size: .61rem;
    line-height: 1.65;
  }
}

/* Final phone polish: consistent safe gutters, square chrome/hero edges,
 * optically centered hero copy and uncropped recommended-product packshots. */
@media (max-width: 599px) {
  .venture02-theme .v2-shell {
    width: min(calc(100% - 32px), var(--v2-shell));
  }

  .front_page.venture02-theme .v2-home-layout,
  .front_page.venture02-theme .v2-mobile-bottom-promos,
  .venture02-theme .v2-footer-guide__inner,
  .venture02-theme .v2-footer__grid,
  .front_page.venture02-theme .v2-footer__grid {
    width: min(calc(100% - 32px), var(--v2-shell));
    margin-inline: auto;
  }

  .venture02-theme .v2-header,
  .venture02-theme .v2-header__main,
  .front_page.venture02-theme .venture-hero.v2-hero {
    border-radius: 0 !important;
  }

  .venture02-theme .v2-header__main {
    grid-template-columns: minmax(0, 1fr) repeat(4, 40px);
    gap: 4px;
  }

  .venture02-theme .v2-header .v2-tool-link > span:last-child,
  .venture02-theme .v2-header .v2-menu-button > span:last-child,
  .venture02-theme .v2-header .v2-cart-button small {
    font-size: .5rem;
    white-space: nowrap;
  }

  .venture02-theme .v2-header .v2-menu-button .material-symbols-outlined {
    display: grid;
    place-items: center;
    line-height: 1;
  }

  .venture02-theme .v2-mobile-menu__close {
    display: grid;
    padding: 0;
    place-items: center;
    line-height: 1;
  }

  .venture02-theme .v2-mobile-menu__close .material-symbols-outlined {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    font-size: 24px;
    line-height: 1;
  }

  .front_page.venture02-theme .v2-hero__copy {
    top: 50%;
    left: 50%;
    width: calc(100% - 40px);
    transform: translate(-50%, -50%);
  }

  .front_page.venture02-theme .v2-hero__dots {
    right: auto;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
  }

  .front_page.venture02-theme #recommended .v2-product-card__image {
    display: grid;
    height: 126px;
    padding: 6px;
    place-items: center;
    overflow: hidden;
  }

  .front_page.venture02-theme #recommended .v2-product-card__image img,
  .front_page.venture02-theme #recommended .v2-product-card:hover .v2-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none !important;
  }
}

/* Mobile utility/search and TOP density polish: all four header actions share
 * one measured box, search expands in place, and product labels stay compact. */
.venture02-theme .v2-mobile-search-panel {
  display: none;
}

@media (max-width: 599px) {
  .venture02-theme .v2-header {
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none;
  }

  .venture02-theme .v2-header__main {
    min-height: 78px;
    grid-template-columns: minmax(0, 1fr) repeat(4, 42px);
    gap: 2px;
  }

  .venture02-theme .v2-header__tools,
  .venture02-theme .v2-cart-wrap,
  .venture02-theme .v2-cart-trigger {
    align-items: center;
  }

  .venture02-theme .v2-cart-wrap,
  .venture02-theme .v2-cart-trigger {
    display: grid;
    width: 42px;
    height: 58px;
    place-items: center;
  }

  .venture02-theme .v2-header .v2-tool-link,
  .venture02-theme .v2-header .v2-menu-button,
  .venture02-theme .v2-header .v2-cart-button {
    display: grid !important;
    width: 42px;
    min-width: 42px !important;
    height: 58px;
    min-height: 58px;
    grid-template-rows: 30px 18px;
    align-content: center;
    align-items: center;
    justify-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    line-height: 1;
  }

  .venture02-theme .v2-header .v2-tool-link .v2-icon,
  .venture02-theme .v2-header .v2-menu-button .v2-icon,
  .venture02-theme .v2-header .v2-cart-button .v2-icon {
    display: grid;
    width: 30px;
    height: 30px;
    margin: 0;
    place-items: center;
    font-size: 28px;
    line-height: 1;
  }

  .venture02-theme .v2-header .v2-tool-link > span:last-child,
  .venture02-theme .v2-header .v2-menu-button > span:last-child,
  .venture02-theme .v2-header .v2-cart-button small {
    display: flex;
    height: 18px;
    align-items: flex-start;
    justify-content: center;
    margin: 0;
    font-size: .5rem;
    line-height: 1.25;
    white-space: nowrap;
  }

  .venture02-theme .v2-header .v2-cart-button .v2-cart-badge {
    top: 0;
    right: 1px;
  }

  .venture02-theme .v2-mobile-search-panel {
    position: relative;
    z-index: 29;
    padding: 0 0 12px;
    background: rgba(255, 254, 251, .98);
  }

  .venture02-theme .v2-mobile-search-panel.is-open {
    display: block;
  }

  .venture02-theme .v2-mobile-search-panel[hidden] {
    display: none !important;
  }

  .venture02-theme .v2-mobile-search-panel__form {
    display: grid;
    height: 42px;
    grid-template-columns: minmax(0, 1fr) 44px;
    border: 1px solid var(--v2-line-strong);
    background: #fff;
    animation: v2-mobile-search-enter .16s ease both;
  }

  .venture02-theme .v2-mobile-search-panel__form input {
    min-width: 0;
    padding: 0 12px;
    border: 0;
    outline: 0;
    background: transparent;
    font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
    font-size: .72rem;
  }

  .venture02-theme .v2-mobile-search-panel__form button {
    display: grid;
    padding: 0;
    place-items: center;
    border: 0;
    color: var(--v2-ink);
    background: transparent;
  }

  .venture02-theme .v2-mobile-search-panel__form button:hover,
  .venture02-theme .v2-mobile-search-panel__form button:focus-visible {
    color: var(--v2-red);
  }

  .front_page.venture02-theme {
    --v2-top-product-title-size: .6rem;
  }

  .front_page.venture02-theme #recommended .v2-product-card h3,
  .front_page.venture02-theme #recommended .v2-product-card h3 a,
  .front_page.venture02-theme .v2-ranking-list li > span > a,
  .front_page.venture02-theme .v2-new-list li > span > a,
  .front_page.venture02-theme .v2-category-tab-product strong {
    font-size: var(--v2-top-product-title-size);
    line-height: 1.25;
  }

  .front_page.venture02-theme #recommended .v2-product-card h3,
  .front_page.venture02-theme #recommended .v2-product-card h3 a {
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .front_page.venture02-theme #recommended .v2-product-card {
    grid-template-columns: 40% minmax(0, 1fr);
  }

  .front_page.venture02-theme #recommended .v2-product-card__body {
    padding-inline: 4px;
  }

  .front_page.venture02-theme .v2-category-tabs__panel {
    padding-bottom: 22px;
  }

  .front_page.venture02-theme .v2-category-tabs__list-button {
    margin-top: 8px;
    transform: none;
  }

  .front_page.venture02-theme .v2-wide-promo--colors > span {
    justify-items: start;
    text-align: left;
  }
}

@keyframes v2-mobile-search-enter {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Checkout progress
   Keep the connector and circular states on one visual plane. The former
   background utility painted a square behind every circle on Cart. */
.venture02-theme .v2-checkout-progress {
  --v2-progress-icon-size: 48px;
  --v2-progress-track: #d9c8b3;
  --v2-progress-pending: #766961;
  --v2-progress-pending-icon: #8d8179;
  color: var(--v2-ink);
}

.venture02-theme .v2-checkout-progress__list {
  position: relative;
  isolation: isolate;
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  align-items: flex-start;
  justify-content: space-between;
  list-style: none;
}

.venture02-theme .v2-checkout-progress__track {
  position: absolute !important;
  top: calc(var(--v2-progress-icon-size) / 2) !important;
  left: 10% !important;
  z-index: 0 !important;
  width: 80% !important;
  height: 1px !important;
  background: var(--v2-progress-track) !important;
  pointer-events: none;
}

.venture02-theme .v2-checkout-progress__step,
.venture02-theme .v2-checkout-progress .step-active,
.venture02-theme .v2-checkout-progress .step-inactive {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
}

.venture02-theme .v2-checkout-progress__icon-shell,
.venture02-theme .v2-checkout-progress .step-active > div:first-child,
.venture02-theme .v2-checkout-progress .step-inactive > div:first-child {
  position: relative;
  z-index: 2;
  display: grid !important;
  width: var(--v2-progress-icon-size);
  height: var(--v2-progress-icon-size);
  padding: 0 !important;
  place-items: center;
  background: transparent !important;
}

.venture02-theme .v2-checkout-progress__icon,
.venture02-theme .v2-checkout-progress .step-icon-wrapper {
  display: grid !important;
  width: var(--v2-progress-icon-size) !important;
  height: var(--v2-progress-icon-size) !important;
  place-items: center;
  border: 1px solid var(--v2-line-strong) !important;
  border-radius: 50%;
  color: var(--v2-progress-pending-icon) !important;
  background: var(--v2-paper) !important;
  box-shadow: none !important;
  transform: none !important;
}

.venture02-theme .v2-checkout-progress__icon .material-symbols-outlined,
.venture02-theme .v2-checkout-progress .step-icon-wrapper .material-symbols-outlined {
  font-size: 21px !important;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  line-height: 1;
}

.venture02-theme .v2-checkout-progress__label,
.venture02-theme .v2-checkout-progress .step-active > span > span,
.venture02-theme .v2-checkout-progress .step-inactive > span > span {
  display: block;
  margin-top: 12px;
  color: var(--v2-progress-pending) !important;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.5;
  letter-spacing: .06em !important;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
}

.venture02-theme .v2-checkout-progress__step.is-active .v2-checkout-progress__icon,
.venture02-theme .v2-checkout-progress .step-active .step-icon-wrapper {
  border-color: var(--v2-red) !important;
  color: #fff !important;
  background: var(--v2-red) !important;
  box-shadow: 0 3px 10px rgba(169, 18, 24, .14) !important;
}

.venture02-theme .v2-checkout-progress__step.is-active .v2-checkout-progress__label,
.venture02-theme .v2-checkout-progress .step-active > span > span {
  color: var(--v2-ink) !important;
  font-weight: 700 !important;
}

.venture02-theme .v2-checkout-progress__step.is-completed .v2-checkout-progress__icon {
  border-color: rgba(169, 18, 24, .52) !important;
  color: var(--v2-red) !important;
  background: #fff7f4 !important;
}

.venture02-theme .v2-checkout-progress__step.is-completed .v2-checkout-progress__label {
  color: var(--v2-red-dark) !important;
  font-weight: 600 !important;
}

.dark.venture02-theme .v2-checkout-progress {
  --v2-progress-track: #574a44;
  --v2-progress-pending: #b8aea7;
  --v2-progress-pending-icon: #b8aea7;
}

.dark.venture02-theme .v2-checkout-progress__icon,
.dark.venture02-theme .v2-checkout-progress .step-icon-wrapper {
  border-color: #675850 !important;
  background: #18181b !important;
}

.dark.venture02-theme .v2-checkout-progress__step.is-active .v2-checkout-progress__icon,
.dark.venture02-theme .v2-checkout-progress .step-active .step-icon-wrapper {
  border-color: #d95b60 !important;
  background: #b51d24 !important;
}

@media (max-width: 767px) {
  .venture02-theme .v2-checkout-progress--mobile {
    --v2-progress-icon-size: 42px;
  }

  .venture02-theme .v2-checkout-progress--mobile .v2-checkout-progress__track {
    left: 16.6667% !important;
    width: 66.6666% !important;
  }

  .venture02-theme .v2-checkout-progress--mobile .v2-checkout-progress__label,
  .venture02-theme .v2-checkout-progress--mobile .step-active > span > span,
  .venture02-theme .v2-checkout-progress--mobile .step-inactive > span > span {
    margin-top: 9px;
    font-size: 11px !important;
    letter-spacing: .08em !important;
  }

  .venture02-theme .v2-checkout-progress--mobile .v2-checkout-progress__icon .material-symbols-outlined,
  .venture02-theme .v2-checkout-progress--mobile .step-icon-wrapper .material-symbols-outlined {
    font-size: 19px !important;
  }
}

/* TOP phone composition
 * Keep every unique promotional/service block visible without duplicating the
 * category shortcuts or early-purchase campaign already rendered for mobile. */
@media (max-width: 599px) {
  .front_page.venture02-theme .v2-home-layout {
    display: flex;
    flex-direction: column;
  }

  .front_page.venture02-theme .v2-sidebar {
    display: grid;
    width: 100%;
    order: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
  }

  .front_page.venture02-theme .v2-sidebar > .v2-eyecatch {
    display: grid;
    min-width: 0;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .front_page.venture02-theme .v2-sidebar > .v2-side-panel,
  .front_page.venture02-theme .v2-sidebar > .v2-side-promo--early,
  .front_page.venture02-theme .v2-sidebar > .v2-eyecatch > .v2-side-promo--early {
    display: none;
  }

  .front_page.venture02-theme .v2-sidebar > .v2-warranty-card,
  .front_page.venture02-theme .v2-sidebar > .v2-side-promo--store,
  .front_page.venture02-theme .v2-sidebar > .v2-eyecatch > .v2-warranty-card,
  .front_page.venture02-theme .v2-sidebar > .v2-eyecatch > .v2-side-promo--store {
    width: 100%;
    min-width: 0;
    height: 104px;
    min-height: 104px;
  }

  .front_page.venture02-theme .v2-sidebar > .v2-warranty-card {
    padding: 12px 9px;
  }

  .front_page.venture02-theme .v2-sidebar > .v2-eyecatch > .v2-warranty-card {
    padding: 12px 9px;
  }

  .front_page.venture02-theme .v2-sidebar > .v2-warranty-card strong {
    font-size: .72rem;
  }

  .front_page.venture02-theme .v2-sidebar > .v2-eyecatch > .v2-warranty-card strong {
    font-size: .72rem;
  }

  .front_page.venture02-theme .v2-sidebar > .v2-warranty-card p {
    font-size: .58rem;
  }

  .front_page.venture02-theme .v2-sidebar > .v2-eyecatch > .v2-warranty-card p {
    font-size: .58rem;
  }

  .front_page.venture02-theme .v2-sidebar > .v2-side-promo--store > span {
    justify-items: center;
    padding: 10px 8px;
    background: rgba(255, 253, 247, .82);
    text-align: center;
  }

  .front_page.venture02-theme .v2-sidebar > .v2-eyecatch > .v2-side-promo--store > span {
    justify-items: center;
    padding: 10px 8px;
    background: rgba(255, 253, 247, .82);
    text-align: center;
  }

  .front_page.venture02-theme #category-collection.v2-category-tabs {
    min-height: 0 !important;
    padding: 16px 14px;
  }

  .front_page.venture02-theme .v2-category-tabs__header {
    gap: 14px;
  }

  .front_page.venture02-theme .v2-category-tabs__panel {
    min-height: 0;
    padding: 10px 0 0;
  }

  .front_page.venture02-theme .v2-category-tabs__panel:not([hidden]) {
    gap: 12px;
  }

  .front_page.venture02-theme .v2-category-tabs__list-button {
    margin-top: 0;
    transform: none;
  }

  .front_page.venture02-theme .v2-promo-row {
    height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .front_page.venture02-theme .v2-promo-row a:first-child,
  .front_page.venture02-theme .v2-promo-row a:nth-child(2) {
    display: block;
    width: 100%;
    height: 104px;
  }

  .front_page.venture02-theme .v2-promo-row a:first-child img,
  .front_page.venture02-theme .v2-promo-row a:nth-child(2) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .front_page.venture02-theme .v2-wide-promo > span,
  .front_page.venture02-theme .v2-wide-promo--colors > span,
  .front_page.venture02-theme .v2-wide-promo--light > span {
    display: grid;
    padding: 10px 16px;
    place-content: center;
    justify-items: center;
    background: rgba(255, 253, 247, .68);
    text-align: center;
  }

  .front_page.venture02-theme .v2-wide-promo:hover > span,
  .front_page.venture02-theme .v2-wide-promo:focus-visible > span {
    transform: none;
  }

  .front_page.venture02-theme .v2-mobile-bottom-promos {
    width: 100%;
    height: 104px;
    margin-inline: 0;
  }

  .front_page.venture02-theme .v2-mobile-campaign > span {
    padding: 10px 16px;
    place-content: center;
    justify-items: center;
    background: rgba(255, 253, 247, .7);
    text-align: center;
  }

  .front_page.venture02-theme .v2-mobile-campaign--early b {
    position: static;
    margin-top: 2px;
    transform: none;
  }
}

@media (max-width: 359px) {
  .front_page.venture02-theme .v2-sidebar,
  .front_page.venture02-theme .v2-sidebar > .v2-eyecatch {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 599px) {
  .v2-gallery-lightbox {
    padding: 58px 12px 24px;
  }

  .v2-gallery-lightbox__figure {
    max-width: 100%;
    max-height: calc(100dvh - 82px);
  }

  .v2-gallery-lightbox__image {
    max-height: calc(100dvh - 142px);
  }

  .v2-gallery-lightbox__close,
  .v2-gallery-lightbox__arrow {
    width: 40px;
    height: 40px;
  }

  .v2-gallery-lightbox__close {
    top: 10px;
    right: 10px;
  }

  .v2-gallery-lightbox__prev {
    left: 8px;
  }

  .v2-gallery-lightbox__next {
    right: 8px;
  }

  .front_page.venture02-theme .v2-footer-guide__inner,
  body.venture02-theme .v2-footer-guide__inner {
    width: min(calc(100% - 32px), var(--v2-shell));
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .front_page.venture02-theme .v2-footer-guide a,
  body.venture02-theme .v2-footer-guide a {
    display: grid;
    min-height: 68px;
    padding: 7px 4px;
    place-items: center;
    align-content: center;
    gap: 2px;
    border-right: 1px solid var(--v2-line);
    border-bottom: 1px solid var(--v2-line);
    font-size: .66rem;
    line-height: 1.3;
    text-align: center;
  }

  .front_page.venture02-theme .v2-footer-guide a:nth-child(2n),
  body.venture02-theme .v2-footer-guide a:nth-child(2n) {
    border-right: 0;
  }

  .front_page.venture02-theme .v2-footer-guide a:nth-last-child(-n + 2),
  body.venture02-theme .v2-footer-guide a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .front_page.venture02-theme .v2-footer-guide .material-symbols-outlined,
  body.venture02-theme .v2-footer-guide .material-symbols-outlined {
    font-size: 27px;
  }
}

@media (hover: none) {
  .v2-gallery-main .v2-gallery-arrow {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body#page_product_detail.venture-detail-page .venture-detail-related-design .v2-related-arrow:not(.swiper-button-lock) {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Product imagery must stay fully visible on LIST and DETAIL. Keep these rules
 * page-scoped so the calibrated TOP product compositions are unchanged. */
body#page_product_list.venture-list-page .venture-product-card__media {
  position: relative;
  display: block;
  padding: 0;
}

body#page_product_list.venture-list-page .venture-product-card__media img,
body#page_product_list.venture-list-page .venture-product-card:hover .venture-product-card__media img,
body#page_product_list.venture-list-page .venture-product-card:focus-within .venture-product-card__media img {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  object-fit: contain;
  object-position: center;
  transform: none;
}

body#page_product_detail.venture-detail-page .v2-gallery-image-button {
  display: block;
  padding: 12px;
}

body#page_product_detail.venture-detail-page #gallery-main {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

body#page_product_detail.venture-detail-page .venture-detail-related-design .v2-product-card__image {
  position: relative;
  display: block;
  padding: 0;
}

body#page_product_detail.venture-detail-page .venture-detail-related-design .venture-product-card img,
body#page_product_detail.venture-detail-page .venture-detail-related-design .venture-product-card:hover img,
body#page_product_detail.venture-detail-page .venture-detail-related-design .venture-product-card:focus-within img {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px) !important;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  transform: none;
}

@media (max-width: 599px) {
  body#page_product_list.venture-list-page .venture-product-card__media img,
  body#page_product_list.venture-list-page .venture-product-card:hover .venture-product-card__media img,
  body#page_product_list.venture-list-page .venture-product-card:focus-within .venture-product-card__media img,
  body#page_product_detail.venture-detail-page .venture-detail-related-design .venture-product-card img,
  body#page_product_detail.venture-detail-page .venture-detail-related-design .venture-product-card:hover img,
  body#page_product_detail.venture-detail-page .venture-detail-related-design .venture-product-card:focus-within img {
    inset: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px) !important;
  }

  body#page_product_detail.venture-detail-page .v2-gallery-image-button {
    padding: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-gallery-lightbox,
  .v2-gallery-lightbox__image,
  .v2-gallery-lightbox__close,
  .v2-gallery-lightbox__arrow,
  .v2-gallery-arrow,
  .v2-gallery-zoom-hint,
  .v2-breadcrumb a,
  .v2-review-jump,
  .v2-favorite-button,
  body#page_product_detail.venture-detail-page .venture-detail-related-design .v2-related-arrow {
    animation: none;
    transition: none;
  }
}
