@charset "UTF-8";

/* -------------------------------------
  TABLE OF CONTENTS
------------------------------------- */
/*
  01. HOME / HERO
  02. PAGE HEADINGS
  03. HOME SECTIONS / CATALOG
  04. CATEGORY
  05. ITEM DETAIL
  06. ABOUT
  07. STATIC PAGES
*/

body.is-modal-open,
body.is_takeoutModalOpen,
body.is_purchaseButtonModalOpen {
  overflow: hidden;
}


/* -------------------------------------
  01. HOME / HERO
------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  margin: 0 var(--content-section-horizontal);
  background: #fff;
}
.home-hero {
  height: calc(var(--home-hero-height, 80) * 1vh);
  height: calc(var(--home-hero-height, 80) * 1svh);
  color: var(--hero-text-color, #ffffff);
  background: #fff;
}
.home-hero:focus,
.home-hero:focus-visible {
  outline: none;
}
.home-hero:not(.is-full-width) {
  margin-left: var(--content-section-horizontal);
  margin-right: var(--content-section-horizontal);
}
.home-hero.is-full-width {
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
}
.home-hero.is-full-width,
.home-hero.is-full-width .home-hero__viewport,
.home-hero.is-full-width .home-hero__track,
.home-hero.is-full-width .home-hero__slide,
.home-hero.is-full-width .home-hero__media,
.home-hero.is-full-width .home-hero__media picture,
.home-hero.is-full-width .home-hero__media img {
  border-radius: 0;
}
.home-hero__viewport,
.home-hero__track,
.home-hero__slide,
.home-hero__media,
.home-hero__media picture,
.home-hero__media img {
  width: 100%;
  height: 100%;
}
.home-hero__viewport {
  position: relative;
  overflow: hidden;
}
.home-hero[data-hero-layout="editorial"],
.home-hero[data-hero-layout="editorial-vertical"] {
  display: grid;
  grid-template-columns: minmax(0, 70%) minmax(0, 30%);
  background: var(--home-hero-editorial-bg);
}
.home-hero[data-hero-layout="editorial"][data-hero-editorial-side="left"],
.home-hero[data-hero-layout="editorial-vertical"][data-hero-editorial-side="left"] {
  grid-template-columns: minmax(0, 30%) minmax(0, 70%);
}
.home-hero[data-hero-layout="editorial"] .home-hero__viewport,
.home-hero[data-hero-layout="editorial"] .home-hero__overlay,
.home-hero[data-hero-layout="editorial"] .home-hero__controls,
.home-hero[data-hero-layout="editorial-vertical"] .home-hero__viewport,
.home-hero[data-hero-layout="editorial-vertical"] .home-hero__overlay,
.home-hero[data-hero-layout="editorial-vertical"] .home-hero__controls {
  grid-row: 1;
}
.home-hero[data-hero-layout="editorial"] .home-hero__inner {
  position: absolute;
  z-index: 4;
  width: calc(100% - (var(--layout-margin-horizontal) * 2));
  max-width: 75vw;
  min-width: 0;
  padding: 0;
  background: transparent;
  overflow: visible;
}
.home-hero[data-hero-layout="editorial-vertical"] .home-hero__inner {
  position: absolute;
  z-index: 4;
  width: min(620px, calc(100% - (var(--layout-margin-horizontal) * 2)));
  max-width: min(620px, 42vw);
  min-width: 0;
  padding: 0;
  background: transparent;
  overflow: visible;
}
.home-hero[data-hero-layout="editorial"][data-hero-editorial-side="right"] .home-hero__viewport,
.home-hero[data-hero-layout="editorial"][data-hero-editorial-side="right"] .home-hero__overlay,
.home-hero[data-hero-layout="editorial"][data-hero-editorial-side="right"] .home-hero__controls,
.home-hero[data-hero-layout="editorial-vertical"][data-hero-editorial-side="right"] .home-hero__viewport,
.home-hero[data-hero-layout="editorial-vertical"][data-hero-editorial-side="right"] .home-hero__overlay,
.home-hero[data-hero-layout="editorial-vertical"][data-hero-editorial-side="right"] .home-hero__controls {
  grid-column: 1;
}
.home-hero[data-hero-layout="editorial"][data-hero-editorial-side="left"] .home-hero__viewport,
.home-hero[data-hero-layout="editorial"][data-hero-editorial-side="left"] .home-hero__overlay,
.home-hero[data-hero-layout="editorial"][data-hero-editorial-side="left"] .home-hero__controls,
.home-hero[data-hero-layout="editorial-vertical"][data-hero-editorial-side="left"] .home-hero__viewport,
.home-hero[data-hero-layout="editorial-vertical"][data-hero-editorial-side="left"] .home-hero__overlay,
.home-hero[data-hero-layout="editorial-vertical"][data-hero-editorial-side="left"] .home-hero__controls {
  grid-column: 2;
}
.home-hero__track {
  display: block;
}
.home-hero {
  touch-action: pan-y;
}
.home-hero__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  isolation: isolate;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.5s ease, visibility 0s linear 1.5s;
}
.home-hero__slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transition: opacity 1.5s ease;
}
.home-hero__slide.is-outgoing {
  z-index: 1;
  visibility: visible;
  pointer-events: none;
}
.home-hero__media picture,
.home-hero__media img {
  display: block;
}
.home-hero__media img {
  object-fit: cover;
  transform: scale(1);
  filter: blur(0);
  opacity: 1;
  transition:
    transform 1.8s ease,
    filter 1.4s ease,
    opacity 1.5s ease;
    
}
/* .home-hero__media img.flip {
  transform: scale(-1, 1);
} */
.home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.28) 100%);
}
.home-hero[data-hero-layout="editorial"] .home-hero__overlay,
.home-hero[data-hero-layout="editorial-vertical"] .home-hero__overlay {
  position: relative;
  inset: auto;
  align-self: stretch;
  justify-self: stretch;
  pointer-events: none;
}
.home-hero__inner {
  position: absolute;
  z-index: 4;
  width: calc(100% - (var(--layout-margin-horizontal) * 2));
  max-width: calc(100% - (var(--layout-margin-horizontal) * 2));
  --hero-inner-translate-x: 0;
  --hero-inner-translate-y: 0;
  transform: translate(var(--hero-inner-translate-x), var(--hero-inner-translate-y));
  pointer-events: auto;
  user-select: text;

}
.home-hero[data-hero-vertical="top"] .home-hero__inner {
  top: clamp(40px, 7vw, 76px);
  bottom: auto;
}
.home-hero[data-hero-vertical="center"] .home-hero__inner {
  top: 50%;
  bottom: auto;
  --hero-inner-translate-y: -50%;
}
.home-hero[data-hero-vertical="bottom"] .home-hero__inner {
  top: auto;
  bottom: clamp(40px, 7vw, 76px);
}
.home-hero[data-hero-horizontal="left"] .home-hero__inner {
  left: var(--layout-margin-horizontal);
  right: auto;
  text-align: left;
}
.home-hero[data-hero-horizontal="center"] .home-hero__inner {
  left: 50%;
  right: auto;
  text-align: center;
  --hero-inner-translate-x: -50%;
}
.home-hero[data-hero-horizontal="right"] .home-hero__inner {
  right: var(--layout-margin-horizontal);
  left: auto;
  text-align: right;
}
.home-hero[data-hero-layout="editorial"][data-hero-editorial-side="right"] .home-hero__inner,
.home-hero[data-hero-layout="editorial-vertical"][data-hero-editorial-side="right"] .home-hero__inner {
  right: calc(var(--layout-margin-horizontal) * 0.7);
  left: auto;
  --hero-inner-translate-x: 0;
  transform: translate3d(0, var(--hero-inner-translate-y), 0);
  text-align: right;
}
.home-hero[data-hero-layout="editorial"][data-hero-editorial-side="left"] .home-hero__inner,
.home-hero[data-hero-layout="editorial-vertical"][data-hero-editorial-side="left"] .home-hero__inner {
  left: calc(var(--layout-margin-horizontal) * 0.7);
  right: auto;
  --hero-inner-translate-x: 0;
  transform: translate3d(0, var(--hero-inner-translate-y), 0);
  text-align: left;
}
.home-hero[data-hero-layout="editorial"] .home-hero__copy,
.home-hero[data-hero-layout="editorial-vertical"] .home-hero__copy {
  position: relative;
  z-index: 2;
  max-width: min(10em, 100%);
}
.home-hero[data-hero-layout="editorial"][data-hero-editorial-side="left"] .home-hero__copy {
  margin-inline: 0 auto;
}
.home-hero[data-hero-layout="editorial"][data-hero-editorial-side="right"] .home-hero__copy {
  margin-inline: auto 0;
}
.home-hero[data-hero-layout="editorial"] .home-hero__eyebrow,
.home-hero[data-hero-layout="editorial"] .home-hero__body,
.home-hero[data-hero-layout="editorial"] .home-hero__actions,
.home-hero[data-hero-layout="editorial-vertical"] .home-hero__eyebrow,
.home-hero[data-hero-layout="editorial-vertical"] .home-hero__body,
.home-hero[data-hero-layout="editorial-vertical"] .home-hero__actions {
  position: relative;
  z-index: 3;
}
.home-hero[data-hero-layout="standard-vertical"] .home-hero__inner,
.home-hero[data-hero-layout="editorial-vertical"] .home-hero__inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: clamp(14px, 2.2vw, 28px);
  width: auto;
  max-width: calc(100% - (var(--layout-margin-horizontal) * 2));
}
.home-hero[data-hero-layout="standard-vertical"] .home-hero__inner > *,
.home-hero[data-hero-layout="editorial-vertical"] .home-hero__inner > * {
  align-self: flex-start;
}
.home-hero[data-hero-layout="standard-vertical"] :is(.home-hero__eyebrow, .home-hero__copy, .home-hero__body, .home-hero__actions),
.home-hero[data-hero-layout="editorial-vertical"] :is(.home-hero__eyebrow, .home-hero__copy, .home-hero__body, .home-hero__actions) {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: start;
}
.home-hero[data-hero-layout="standard-vertical"] .home-hero__eyebrow,
.home-hero[data-hero-layout="editorial-vertical"] .home-hero__eyebrow {
  margin: 0;
  margin-left: -1.6vw;
  letter-spacing: 0.12em;
}
.home-hero[data-hero-layout="standard-vertical"] .home-hero__copy,
.home-hero[data-hero-layout="editorial-vertical"] .home-hero__copy {
  max-width: none;
  max-height: min(9em, 100%);
}
.home-hero[data-hero-layout="standard-vertical"] .home-hero__body,
.home-hero[data-hero-layout="editorial-vertical"] .home-hero__body {
  margin-block: 0;
  max-width: none;
  max-height: min(28em, 100%);
  align-self: flex-start;
}

.home-hero[data-hero-layout="standard-vertical"] .home-hero__link,
.home-hero[data-hero-layout="editorial-vertical"] .home-hero__link {
  min-width: 0;
  min-height: 124px;
  padding: 1.2em 0.9em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.home-hero__eyebrow,
.home-hero__copy,
.home-hero__body,
.home-hero__actions {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 16px, 0);
  animation: homeHeroTextBlurFadeIn 1.2s var(--easeOutQuad) forwards;
}
.home-hero.has-text-shadow :is(.home-hero__eyebrow, .home-hero__copy, .home-hero__body, .home-hero__actions, .home-hero__actions .home-hero__link) {
  text-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
}
.home-hero__eyebrow { animation-delay: 0.2s; }
.home-hero__copy { animation-delay: 0.38s; }
.home-hero__body { animation-delay: 0.56s; }
.home-hero__actions { animation-delay: 0.74s; }
.home-hero__eyebrow {
  margin: 0 0 10px;
  font-size: var(--font-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.home-hero__copy {
  margin: 0;
  font-family: var(--font-family-heading-hero);
  /* font-family: var(--font-family-gothic-display); */
  font-size: calc(var(--font-display-xl) * var(--home-hero-copy-font-scale, 1));
  font-weight: var(--font-weight-heading-page);
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-wrap: balance;
}
.home-hero__body {
  margin: 16px 0 0;
  max-width: min(560px, 100%);
  font-size: var(--font-size-body-small);
  line-height: 1.7;
  text-wrap: pretty;
}

.home-hero__img {
  line-height: 0;
}
.home-hero__img img {
  display: inline-block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(var(--home-hero-height, 80) * 0.4svh * var(--home-hero-copy-font-scale, 1));
  object-fit: contain;
  vertical-align: top;
}

.home-hero[data-hero-horizontal="center"] .home-hero__body {
  margin-left: auto;
  margin-right: auto;
}
.home-hero[data-hero-horizontal="right"] .home-hero__body {
  margin-left: auto;
}
.home-hero__actions {
  margin: 22px 0 0;
  pointer-events: auto;
}
.home-hero__media img {
  -webkit-user-drag: none;
  user-select: none;
}
.home-hero__link {
  position: relative;
  z-index: 3;
  min-width: 100px;
}
.home-hero.is-single-slide .home-hero__controls {
  display: none;
}
.home-hero__controls {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}
.home-hero[data-hero-layout="editorial"] .home-hero__controls {
  position: relative;
  inset: auto;
}
.home-hero__dots {
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  pointer-events: auto;
}
.home-hero__dot {
  width: 9px;
  height: 9px;
  aspect-ratio: 1 / 1;
  padding: 0;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--hero-text-color, #ffffff) 36%, transparent);
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.home-hero__dot.is-active {
  background: var(--hero-text-color, #ffffff);
  transform: scale(1.2);
}
@keyframes homeHeroTextBlurFadeIn {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0, 16px, 0);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}
@media (max-width: 768px) {
  .home-hero[data-hero-layout="editorial"],
  .home-hero[data-hero-layout="editorial-vertical"] {
    display: block;
    height: auto;
    min-height: 0;
  }
  .home-hero[data-hero-layout="editorial"] .home-hero__viewport,
  .home-hero[data-hero-layout="editorial"] .home-hero__overlay,
  .home-hero[data-hero-layout="editorial"] .home-hero__controls,
  .home-hero[data-hero-layout="editorial-vertical"] .home-hero__viewport,
  .home-hero[data-hero-layout="editorial-vertical"] .home-hero__overlay,
  .home-hero[data-hero-layout="editorial-vertical"] .home-hero__controls {
    grid-column: auto;
    grid-row: auto;
  }
  .home-hero[data-hero-layout="editorial"] .home-hero__viewport,
  .home-hero[data-hero-layout="editorial-vertical"] .home-hero__viewport {
    position: relative;
    width: 100%;
    height: clamp(280px, calc(var(--home-hero-height, 80) * 0.56vh), 520px);
    height: clamp(280px, calc(var(--home-hero-height, 80) * 0.56svh), 520px);
    min-height: clamp(280px, calc(var(--home-hero-height, 80) * 0.56vh), 520px);
    min-height: clamp(280px, calc(var(--home-hero-height, 80) * 0.56svh), 520px);
  }
  .home-hero[data-hero-layout="editorial"] .home-hero__overlay,
  .home-hero[data-hero-layout="editorial-vertical"] .home-hero__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    height: clamp(280px, calc(var(--home-hero-height, 80) * 0.56vh), 520px);
    height: clamp(280px, calc(var(--home-hero-height, 80) * 0.56svh), 520px);
  }
  .home-hero[data-hero-layout="editorial"] .home-hero__controls,
  .home-hero[data-hero-layout="editorial-vertical"] .home-hero__controls {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    height: clamp(280px, calc(var(--home-hero-height, 80) * 0.56vh), 520px);
    height: clamp(280px, calc(var(--home-hero-height, 80) * 0.56svh), 520px);
  }
  .home-hero[data-hero-layout="editorial"] .home-hero__inner,
  .home-hero[data-hero-layout="editorial-vertical"] .home-hero__inner {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto !important;
    --hero-inner-translate-y: 0;
    width: auto;
    max-width: none;
    min-height: 0;
    padding: 24px 20px 26px;
    transform: none;
    text-align: left;
    background: var(--home-hero-editorial-bg);
  }
  .home-hero[data-hero-layout="editorial"][data-hero-editorial-side="left"] .home-hero__inner,
  .home-hero[data-hero-layout="editorial"][data-hero-editorial-side="right"] .home-hero__inner,
  .home-hero[data-hero-layout="editorial-vertical"][data-hero-editorial-side="left"] .home-hero__inner,
  .home-hero[data-hero-layout="editorial-vertical"][data-hero-editorial-side="right"] .home-hero__inner {
    left: auto !important;
    right: auto;
    transform: none;
  }
  .home-hero[data-hero-layout="editorial"][data-hero-editorial-side="left"] .home-hero__inner {
    text-align: left;
  }
  .home-hero[data-hero-layout="editorial"][data-hero-editorial-side="right"] .home-hero__inner {
    text-align: right;
  }
  .home-hero[data-hero-layout="editorial"] .home-hero__copy,
  .home-hero[data-hero-layout="editorial-vertical"] .home-hero__copy {
    max-width: none;
  }
  .home-hero[data-hero-layout="editorial"] .home-hero__body,
  .home-hero[data-hero-layout="editorial-vertical"] .home-hero__body {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
  .home-hero[data-hero-layout="editorial"] .home-hero__dots,
  .home-hero[data-hero-layout="editorial-vertical"] .home-hero__dots {
    left: 50%;
    right: auto;
    bottom: 18px;
    transform: translateX(-50%);
  }
 
  .home-hero[data-hero-layout="standard-vertical"] .home-hero__copy,
  .home-hero[data-hero-layout="editorial-vertical"] .home-hero__copy {
    margin-left: 0;
    margin-right: 0;
    max-height: min(7em, 100%);
  }
  .home-hero[data-hero-layout="editorial-vertical"][data-hero-editorial-side="left"] .home-hero__inner {
    justify-content: flex-end;
  }
  .home-hero[data-hero-layout="editorial-vertical"][data-hero-editorial-side="right"] .home-hero__inner {
    justify-content: flex-start;
  }
  .home-hero[data-hero-layout="standard-vertical"] .home-hero__body,
  .home-hero[data-hero-layout="editorial-vertical"] .home-hero__body {
    max-height: min(22em, 100%);
  }
}
@media (max-width: 767px) {

}
@media (prefers-reduced-motion: reduce) {
  .home-hero__track,
  .home-hero__slide,
  .home-hero__media img,
  .home-hero__eyebrow,
  .home-hero__copy,
  .home-hero__body,
  .home-hero__actions,
  .home-hero__dot {
    transition: none;
    animation: none;
    opacity: 1;
    filter: none;
    transform: none;
  }
}
@media (max-width: 768px) {
  .page-top {
    width: 42px;
    height: 42px;
  }
}
.page-top {
  position: fixed;
  right: max(18px, var(--layout-margin-horizontal));
  bottom: max(18px, var(--layout-margin-horizontal));
  z-index: 30;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #111;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0.28s, background-color 0.28s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.page-top:hover {
  background: rgba(255, 255, 255, 0.96);
}
.page-top .material-symbols-outlined {
  font-size: 18px;
  line-height: 1;
}




/* -------------------------------------
  02. PAGE HEADINGS
------------------------------------- */

.page-heading-title,
.static-body .inquirySection > h1 {
  position: relative;
  z-index: 0;
  display: inline-flex;
  margin: 0 0 40px;
  align-items: baseline;
  gap: 0.55em;
  font-family: var(--font-family-heading-page);
  font-size: var(--font-size-heading-page);
  line-height: 1.25;
  letter-spacing: var(--letter-spacing-heading-page, 0.03em);
  font-weight: var(--font-weight-heading-page, 400);
  isolation: isolate;
}
.page-heading-title > span {
  display: inline-block;
  font-family: var(--font-family-sans);
  font-size: var(--font-size-label);
  font-weight: 400;
  letter-spacing: var(--letter-spacing-heading-section-sub, 0.08em);
  color: color-mix(in srgb, var(--text-color) 50%, transparent);
}

/* -------------------------------------
  03. HOME SECTIONS / CATALOG
------------------------------------- */
.catalog {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  display: block;
}
#content + .catalog {margin-top: var(--header-height);}
.catalog-inner {
  width: 100%;
  padding: var(--layout-margin-vertical) var(--content-section-horizontal);
  box-sizing: border-box;
}
.catalog-empty {
  padding-bottom: var(--layout-margin-vertical);
}
.catalog-empty p {
  font-size: var(--font-s);
}
.item-list-actions[hidden] {
  display: none;
}
.item-list-actions.is-loading .item-list-more {
  pointer-events: none;
  opacity: 0.4;
}
.item-list-actions.is-loading .item-list-more {
  position: relative;
  text-indent: -9999px;
  overflow: hidden;
}
.item-list-actions.is-loading .item-list-more::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--text-color);
  animation: item-list-loading-dot 0.95s ease-in-out infinite;
}
.catalog .product-grid {
  display: grid;
  gap: 32px 28px;
  grid-auto-flow: dense;
}
.catalog .product-grid.pc-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.catalog .product-grid.pc-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.catalog .product-grid.pc-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.catalog .product-card {
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  display: block;
}
@media(min-width: 1025px) {
  .catalog .product-grid.featured.pc-cols-4 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 8), :nth-child(24n + 15), :nth-child(24n + 22)) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .catalog .product-grid.featured.pc-cols-4 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 15)) {
    grid-column: 1 / span 2;
  }
  .catalog .product-grid.featured.pc-cols-4 .product-card:is(:nth-child(24n + 8), :nth-child(24n + 22)) {
    grid-column: 3 / span 2;
  }
  .catalog .product-grid.featured.pc-cols-4 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 8), :nth-child(24n + 15), :nth-child(24n + 22)) .product-media {
    aspect-ratio: 4 / 5;
    aspect-ratio: var(--catalog-image-aspectratio);
  }
  .catalog .product-grid.featured.pc-cols-4 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 8), :nth-child(24n + 15), :nth-child(24n + 22)) .product-price {
    font-size: var(--font-s);
  }
}
@media(min-width: 1025px) {
  .catalog .product-grid.featured.pc-cols-3 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 10), :nth-child(24n + 19)) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .catalog .product-grid.featured.pc-cols-3 .product-card:nth-child(24n + 10) {
    grid-column: 2 / span 2;
  }
  .catalog .product-grid.featured.pc-cols-3 .product-card:nth-child(24n + 19) {
    grid-column: 1 / span 2;
  }
  .catalog .product-grid.featured.pc-cols-3 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 10), :nth-child(24n + 19)) .product-media {
    aspect-ratio: 4 / 5;
    aspect-ratio: var(--catalog-image-aspectratio);
  }
  .catalog .product-grid.featured.pc-cols-3 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 10), :nth-child(24n + 19)) .product-price {
    font-size: var(--font-s);
  }
}
@media(min-width: 600px) and (max-width: 1024px) {

  .catalog .product-grid.featured.tb-cols-4 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 8), :nth-child(24n + 15), :nth-child(24n + 22)) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .catalog .product-grid.featured.tb-cols-4 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 15)) {
    grid-column: 1 / span 2;
  }
  .catalog .product-grid.featured.tb-cols-4 .product-card:is(:nth-child(24n + 8), :nth-child(24n + 22)) {
    grid-column: 3 / span 2;
  }
  .catalog .product-grid.featured.tb-cols-4 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 8), :nth-child(24n + 15), :nth-child(24n + 22)) .product-media {
    aspect-ratio: 4 / 5;
    aspect-ratio: var(--catalog-image-aspectratio);
  }
  .catalog .product-grid.featured.tb-cols-4 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 8), :nth-child(24n + 15), :nth-child(24n + 22)) .product-price {
    font-size: var(--font-s);
  }
  .catalog .product-grid.featured.tb-cols-3 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 10), :nth-child(24n + 19)) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .catalog .product-grid.featured.tb-cols-3 .product-card:nth-child(24n + 10) {
    grid-column: 2 / span 2;
  }
  .catalog .product-grid.featured.tb-cols-3 .product-card:nth-child(24n + 19) {
    grid-column: 1 / span 2;
  }
  .catalog .product-grid.featured.tb-cols-3 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 10), :nth-child(24n + 19)) .product-media {
    aspect-ratio: 4 / 5;
    aspect-ratio: var(--catalog-image-aspectratio);
  }
  .catalog .product-grid.featured.tb-cols-3 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 10), :nth-child(24n + 19)) .product-price {
    font-size: var(--font-s);
  }
}
@media(max-width: 599px) {

  .item-list-more {
    width: 100%;
  }
  .catalog .product-grid.featured.sp-cols-1 .product-card {
    grid-column: auto;
    grid-row: auto;
  }
  .catalog .product-grid.featured.sp-cols-1 .product-card .product-media {
    aspect-ratio: 3 / 4;
    aspect-ratio: var(--catalog-image-aspectratio);
  }
  .catalog .product-grid.featured.sp-cols-1 .product-card .product-price {
    font-size: var(--font-xs);
  }
  .catalog .product-grid.featured.sp-cols-2 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 13)) {
    grid-column: 1 / span 2;
    grid-row: span 2;
  }
  .catalog .product-grid.featured.sp-cols-2 .product-card:is(:nth-child(24n + 10), :nth-child(24n + 19)) {
    grid-column: auto;
    grid-row: auto;
  }
  .catalog .product-grid.featured.sp-cols-2 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 13)) .product-media {
    aspect-ratio: 4 / 5;
    aspect-ratio: var(--catalog-image-aspectratio);
  }
  .catalog .product-grid.featured.sp-cols-2 .product-card:is(:nth-child(24n + 10), :nth-child(24n + 19)) .product-media {
    aspect-ratio: 3 / 4;
    aspect-ratio: var(--catalog-image-aspectratio);
  }
  .catalog .product-grid.featured.sp-cols-2 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 13)) .product-price {
    font-size: var(--font-s);
  }
  .catalog .product-grid.featured.sp-cols-2 .product-card:is(:nth-child(24n + 10), :nth-child(24n + 19)) .product-price {
    font-size: var(--font-xs);
  }
  .catalog .product-grid.featured.sp-cols-3 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 10), :nth-child(24n + 19)) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .catalog .product-grid.featured.sp-cols-3 .product-card:nth-child(24n + 10) {
    grid-column: 2 / span 2;
  }
  .catalog .product-grid.featured.sp-cols-3 .product-card:nth-child(24n + 19) {
    grid-column: 1 / span 2;
  }
  .catalog .product-grid.featured.sp-cols-3 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 10), :nth-child(24n + 19)) .product-media {
    aspect-ratio: 4 / 5;
    aspect-ratio: var(--catalog-image-aspectratio);
  }
  .catalog .product-grid.featured.sp-cols-3 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 10), :nth-child(24n + 19)) .product-price {
    font-size: var(--font-s);
  }
}
@media(min-width: 1025px) {
  .catalog .product-grid.featured.pc-cols-5 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 8)) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .catalog .product-grid.featured.pc-cols-5 .product-card:nth-child(24n + 1) {
    grid-column: 1 / span 2;
  }
  .catalog .product-grid.featured.pc-cols-5 .product-card:nth-child(24n + 8) {
    grid-column: 4 / span 2;
  }
  .catalog .product-grid.featured.pc-cols-5 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 8)) .product-media {
   aspect-ratio: 4 / 5;
    aspect-ratio: var(--catalog-image-aspectratio);
  }
  .catalog .product-grid.featured.pc-cols-5 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 8)) .product-price {
    font-size: var(--font-s);
  }
}
.catalog .product-card a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.catalog .product-card {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.catalog .product-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.catalog .product-media {
  position: relative;
  aspect-ratio: 3 / 4;
  aspect-ratio: var(--catalog-image-aspectratio);
  overflow: hidden;
  border-radius: var(--image-radius);
}
.catalog .product-card img:not(.label_image) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.55s var(--easeOutQuad);
}
.catalog .product-media > img.label_image.list {
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 2;
  width: min(25%, 40px);
  width: clamp(30px, 22%, 40px);
  height: auto;
  object-fit: contain;
}
.catalog .product-info {
  padding: 10px 0 0px;
}
.catalog .product-title {
  font-family: var(--font-family-heading-card);
  font-size: var(--font-size-heading-card);
  line-height: 1.3;
  font-weight: var(--font-weight-heading-product-card, var(--font-weight-heading-card, 400));
  letter-spacing: var(--letter-spacing-heading-card, 0.03em);
  color: var(--text-color);
  margin-bottom: 10px;
}

.catalog .product-price {
  display: flex;
  gap: 6px 8px;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--font-family-sans);
  font-size: calc(var(--font-size-price) + 0.2rem);
  letter-spacing: 0.06em;
  color: color-mix(in srgb, var(--text-color) 80%, transparent);
  line-height: 1.3;
}


@media(min-width: 1025px) {
  .catalog .product-grid.pc-cols-5 .product-title {
    font-size: calc(var(--font-size-heading-card));
  }
  .catalog .product-grid.featured.pc-cols-3 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 10), :nth-child(24n + 19)) .product-title,
  .catalog .product-grid.featured.pc-cols-4 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 8), :nth-child(24n + 15), :nth-child(24n + 22)) .product-title,
  .catalog .product-grid.featured.pc-cols-5 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 8)) .product-title {
    font-size: var(--font-l);
  }
}
@media(min-width: 600px) and (max-width: 1024px) {
  .catalog .product-grid.tb-cols-4 .product-title {
    font-size: calc(var(--font-size-heading-card) * 0.9);
  }
  .catalog .product-grid.featured.tb-cols-3 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 10), :nth-child(24n + 19)) .product-title,
  .catalog .product-grid.featured.tb-cols-4 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 8), :nth-child(24n + 15), :nth-child(24n + 22)) .product-title {
    font-size: calc( var(--font-l) * 0.9) ;
  }
}
@media(max-width: 599px) {
  .catalog .product-grid.sp-cols-3 .product-title {
    font-size: calc(var(--font-size-heading-card) * 0.87);
  }
  .catalog .product-grid.sp-cols-3 .item-meta > span { font-size: var(--font-xxs);}

  .catalog .product-grid.featured.sp-cols-1 .product-card .product-title,
  .catalog .product-grid.featured.sp-cols-2 .product-card:is(:nth-child(24n + 10), :nth-child(24n + 19)) .product-title {
    font-size: var(--font-s);
  }
  .catalog .product-grid.featured.sp-cols-2 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 13)) .product-title,
  .catalog .product-grid.featured.sp-cols-3 .product-card:is(:nth-child(24n + 1), :nth-child(24n + 10), :nth-child(24n + 19)) .product-title {
    font-size: var(--font-l);
  }
}


.catalog .product-price :is(.proper, .sale) {
  display: inline-block;
}
.catalog .product-price .proper {
  font-weight: 400;
}
.catalog .product-price :is(.proper, .sale)::first-letter {
  display: inline-block;
  font-size: 0.82em;
  margin-right: 0.08em;
}
.catalog .product-price .sale {
  font-weight: 500;
  color: var(--sale-color);
}

.catalog .product-price .off {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 0.8em;
  border-radius: 3px;
  background: var(--sale-color);
  color: #fff;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
.catalog .product-card:hover {
}
.catalog .product-card:hover .product-media img {
  transform: scale(1.045);
}
.catalog .product-card:hover .product-media.is-visible.is-loaded img {
  transform: scale(1.045);
}
/* 
.catalog .product-grid.instagram .product-card a {
  position: relative;
  overflow: hidden;
  border-radius: var(--image-radius);
}
.catalog .product-grid.instagram .product-media {
  border-radius: inherit;
}
.catalog .product-grid.instagram .product-info {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(14px, 1.5vw, 22px);
  color: #fff;
  background:
    linear-gradient(
      to top,
      rgb(0 0 0 / 0.40) 0%,
      rgb(0 0 0 / 0.20) 20%,
      rgb(0 0 0 / 0.02) 70%
    );
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}
.catalog .product-grid.instagram .product-card:is(:hover, :focus-within) .product-info {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.catalog .product-grid.instagram .product-title,
.catalog .product-grid.instagram .product-price {
  color: #fff;
}
.catalog .product-grid.instagram .product-title {
  margin-bottom: 8px;
  text-shadow: 0 1px 14px rgb(0 0 0 / 0.28);
}
.catalog .product-grid.instagram .product-price {
  color: #fff;
}
.catalog .product-grid.instagram .product-price .sale {
  color: #fff;
}
.catalog .product-grid.instagram .item-meta {
  color: #fff;
}
@media(min-width: 769px) {
  .catalog .product-grid.instagram .item-meta .soldout {
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--text-color) 10%, #fff);
    color: color-mix(in srgb, var(--text-color) 60%, #fff);
    background: color-mix(in srgb, var(--text-color) 6%, #fff);
  }
} */

@media(max-width: 1024px) {
  .catalog .product-grid.tb-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .catalog .product-grid.tb-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 30px;
  }
  .catalog .product-grid.tb-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px 20px;
  }
}
/* 
@media(min-width: 769px) {
  .catalog .product-grid.instagram {
    gap: clamp(20px, 1.8vw, 28px);
  }
}

@media(max-width: 768px) {
  .catalog .product-grid.instagram .product-card a {
    overflow: visible;
    border-radius: 0;
  }
  .catalog .product-grid.instagram .product-media {
    border-radius: var(--image-radius);
  }
  .catalog .product-grid.instagram .product-info {
    position: static;
    display: block;
    padding: 10px 0 0px;
    color: var(--text-color);
    background: transparent;
    opacity: 1;
    transform: none;
    transition: none;
    pointer-events: auto;
  }
  .catalog .product-grid.instagram .product-title {
    color: var(--text-color);
    text-shadow: none;
  }
  .catalog .product-grid.instagram .product-price {
    color: color-mix(in srgb, var(--text-color) 70%, transparent);
  }
  .catalog .product-grid.instagram .product-price .sale {
    color: var(--sale-color);
  }
  .catalog .product-grid.instagram .item-meta {
    color: var(--text-color);
  }
} */

@media(max-width: 599px) {
  .catalog .product-grid.sp-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
  }
  .catalog .product-grid.sp-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 20px;
  }
  .catalog .product-grid.sp-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px 15px;
  }
}

/*-------------------------------------

= HOME SECTIONS

------------------------------------- */

.home-picks,
.home-collection-list-section {
  width: 100%;
  padding: 0 var(--content-section-horizontal);
  box-sizing: border-box;

  padding-top: var(--layout-margin-vertical);
  padding-bottom: var(--layout-margin-vertical);
}
.home-section-stack {
  display: flex;
  flex-direction: column;
}
.home-section-stack > .home-section--intro {
  order: 20;
}
.home-section-stack > .home-section--pickup {
  order: 40;
}
.home-section-stack > .home-section--collection {
  order: 60;
}
.home-section-stack > .home-section--catalog {
  order: 80;
}
.home-section-stack > .home-section--blog-latest {
  order: 120;
}
.home-section-stack > .home-section--banner {
  order: 30;
}
.home-section-stack > .home-section--pinned {
  order: 0;
}
.home-section-stack[data-home-banner-position="after-hero"] > .home-section--banner {
  order: 10;
}
.home-section-stack[data-home-banner-position="after-intro"] > .home-section--banner {
  order: 30;
}
.home-section-stack[data-home-banner-position="after-pickup"] > .home-section--banner {
  order: 50;
}
.home-section-stack[data-home-banner-position="after-collection"] > .home-section--banner {
  order: 70;
}
.home-section-stack[data-home-banner-position="after-catalog"] > .home-section--banner {
  order: 90;
}
.home-section-stack[data-home-banner-position="after-blog-latest"] > .home-section--banner {
  order: 130;
}
.BlogPinnedArticle {
  width: calc(100% - (var(--content-section-horizontal) * 2));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;

  margin-top: calc( calc( (var(--header-height)) * -0.5) + 20px );
  margin-bottom: calc( calc( (var(--header-height)) * 0.5) - 20px );

  padding: 15px clamp(18px, 2vw, 28px);
  box-sizing: border-box;
  border-radius: var(--image-radius);
  font-size: var(--font-s);
  font-family: var(--font-family-sans);
  background: color-mix(in srgb, var(--text-color) 10%, transparent);
}
.BlogPinnedArticle .blog-pinned-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  font-size: var(--font-xs);
  letter-spacing: 0.08em;
  color: var(--text-color-strong);
  opacity: 0.8;
}
.BlogPinnedArticle .blog-pinned-label::before {
  content: "info";
  font-family: "Material Symbols Outlined";
  font-size: 16px;
  color: var(--accent-color);
  line-height: 1;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}
.BlogPinnedArticle a {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
@media (max-width: 767px) {
  .BlogPinnedArticle {
    gap: 10px;
    width: calc(100% - (var(--content-section-horizontal) * 2));
    padding: 16px;
  }
}
.section-title {
  margin: 0 0 40px 0;
  font-family: var(--font-family-heading-section);
  font-size: var(--font-size-heading-section);
  line-height: 1.6;
  letter-spacing: var(--letter-spacing-heading-section, 0.02em);
  font-weight: var(--font-weight-heading-section, 400);
  color: color-mix(in srgb, var(--text-color) 90%, transparent);

  display: inline-flex;
  align-items: baseline;
  gap: 0.55em;
}


.section-title > span {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-label);
  font-weight: 400;
  letter-spacing: var(--letter-spacing-heading-section-sub, 0.08em);
  color: color-mix(in srgb, var(--text-color) 40%, transparent);
}


/* home sections */
.home-picks {
  position: relative;
}

.home-picks-slider {
  position: relative;
  overflow: visible;
}
.home-picks-stage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}
.home-picks-slide {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  filter: blur(0);
  transition: none;
}
.home-picks-visual {
  min-width: 0;
}
.home-picks-media-link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: var(--text-color);
}
.home-picks-detail {
  display: grid;
  align-content: start;
  gap: 10px;
}
.home-picks-visual,
.home-picks-kicker,
.home-picks-title,
.home-picks-description {
  opacity: 1;
  transform: none;
}
.home-picks-kicker {
  position: absolute;
  top: 14px;
  left: -6px;
  z-index: 2;
  margin: 0;
  padding: 8px 13px 8px 15px;
  border-radius: 0 999px 999px 0;
  background: var(--accent-color);
  color: var(--accent-text-color);
  font-size: var(--font-xs);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
  box-shadow: 0 6px 14px color-mix(in srgb, #000 14%, transparent);
  pointer-events: none;
}
.home-picks-kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  z-index: -2;
  width: 6px;
  height: 6px;
  background: color-mix(in srgb, var(--accent-color) 70%, #000);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.home-picks-media {
  margin: 0;
  width: 100%;
  overflow: hidden;
  border-radius: var(--image-radius);
  background: color-mix(in srgb, var(--text-color) 4%, transparent);
  aspect-ratio: 4 / 5;
}
.home-picks.is-single-pick .home-picks-media {
  aspect-ratio: 16 / 10;
}
.home-picks-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--easeOutQuad);
}
.home-picks-title {
  margin: 0;
  font-family: var(--font-family-heading-card);
  font-size: var(--font-m);
  font-weight: var(--font-weight-heading-card);
  line-height: 1.35;
  letter-spacing: var(--letter-spacing-heading-card, 0.03em);
}
.home-picks-description {
  margin: 0;
  font-size: var(--font-s);
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--text-color) 70%, transparent);
}
.home-picks-nav {
  position: absolute;
  top: var(--layout-margin-vertical);
  right: var(--content-section-horizontal);
  display: none;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.home-picks-nav-btn {
  appearance: none;
  -webkit-appearance: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 0;
  background: color-mix(in srgb, var(--text-color) 7%, transparent);
  color: var(--text-color);
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 0;
}
.home-picks-nav-btn .material-symbols-outlined {
  font-size: 18px;
  line-height: 1;
}

.home-collection-list {
  --home-collection-gap: clamp(14px, 2vw, 26px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--home-collection-gap);
}
.home-collection-item {
  flex: 0 1 100%;
  min-width: 0;
}
.home-collection-list.pc-cols-2 .home-collection-item {
  flex-basis: calc((100% - var(--home-collection-gap)) / 2);
}
.home-collection-list.pc-cols-3 .home-collection-item {
  flex-basis: calc((100% - var(--home-collection-gap) - var(--home-collection-gap)) / 3);
}
.home-collection-list.pc-cols-4 .home-collection-item {
  flex-basis: calc((100% - var(--home-collection-gap) - var(--home-collection-gap) - var(--home-collection-gap)) / 4);
}
.home-collection-card {
  position: relative;
  display: grid;
  color: var(--text-color);
  text-decoration: none;
}
.home-collection-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--image-radius);
  background: var(--surface-color-soft);
  aspect-ratio: 16 / 10;
  aspect-ratio: var(--home-collection-image-aspectratio);
}
.home-collection-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--easeOutQuad);
}
.home-collection-label {
  font-family: var(--font-family-heading-card);
  font-size: var(--font-m);
  font-weight: var(--font-weight-heading-card);
  line-height: 1.35;
  letter-spacing: var(--letter-spacing-heading-card, 0.05em);
  text-align: center;
}
.home-collection-list.label-overlay .home-collection-card {
  overflow: hidden;
  border-radius: var(--image-radius);
}
.home-collection-list.label-overlay .home-collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: rgb(0 0 0 / 0.36);
  pointer-events: none;
}
.home-collection-list.label-overlay .home-collection-media {
  border-radius: inherit;
}
.home-collection-list.label-overlay .home-collection-label {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 18px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 12px rgb(0 0 0 / 0.28);
}
.home-collection-list.label-below .home-collection-card {
  gap: 12px;
}
.home-collection-list.label-below .home-collection-label {
  color: var(--text-color);
}
.home-collection-list.label-badge .home-collection-label {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 0.58em 1.1em;
  border-radius: calc( var(--image-radius) * 0.5);
  background: color-mix(in srgb, var(--accent-color) 80%, transparent);
  transition: background-color 0.3s ease;
  color: var(--accent-text-color);
  font-size: var(--font-s);
  line-height: 1;
  text-align: center;
}



[data-reveal-stagger-item] {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.74s ease calc(90ms + var(--reveal-stagger, 0ms)),
    transform 0.82s cubic-bezier(0.16, 1, 0.3, 1) calc(90ms + var(--reveal-stagger, 0ms));
}
[data-reveal-stagger-item].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}


[data-hd-reveal] {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1) var(--hd-reveal-delay, 0ms),
    transform 1.9s cubic-bezier(0.16, 1, 0.3, 1) var(--hd-reveal-delay, 0ms),
    filter 1.9s cubic-bezier(0.16, 1, 0.3, 1) var(--hd-reveal-delay, 0ms);
}
[data-hd-reveal]:not(.is-visible) {
  will-change: opacity, transform, filter;
}
[data-hd-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

@media (hover: hover) and (pointer: fine) {
  .catalog .product-card:hover .product-media img,
  .catalog .product-card:hover .product-media.is-visible.is-loaded img,
  .home-picks-media-link:hover img,
  .home-collection-card:hover img {
    transform: scale(1.045);
  }
  .home-collection-list.label-badge .home-collection-card:hover .home-collection-label {
    background: var(--accent-color);
  }
}

@media (max-width: 1024px) {
  .home-collection-list.tb-cols-2 .home-collection-item {
    flex-basis: calc((100% - var(--home-collection-gap)) / 2);
  }
  .home-collection-list.tb-cols-3 .home-collection-item {
    flex-basis: calc((100% - var(--home-collection-gap) - var(--home-collection-gap)) / 3);
  }
  .home-collection-list.tb-cols-4 .home-collection-item {
    flex-basis: calc((100% - var(--home-collection-gap) - var(--home-collection-gap) - var(--home-collection-gap)) / 4);
  }
}

@media (max-width: 767px) {

  .home-picks-nav {
    display: flex;
  }
  .home-picks-slider {
    width: calc(100% + (var(--content-section-horizontal) * 2));
    margin-left: calc(var(--content-section-horizontal) * -1);
    margin-right: calc(var(--content-section-horizontal) * -1);
    padding: 0 0 4px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--content-section-horizontal);
    scroll-padding-right: var(--content-section-horizontal);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .home-picks-slider::-webkit-scrollbar {
    display: none;
  }
  .home-picks-stage {
    display: flex;
    width: max-content;
    gap: 16px;
  }
  .home-picks-stage::before,
  .home-picks-stage::after {
    content: "";
    flex: 0 0 var(--content-section-horizontal);
  }

  .home-picks-slide {
    flex: 0 0 min(78vw, 340px);
    scroll-snap-align: start;
  }
  .home-picks-slide:last-child {
    scroll-snap-align: end;
  }
  .home-picks.is-single-pick .home-picks-nav {
    display: none;
  }
  .home-picks.is-single-pick .home-picks-slider {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }
  .home-picks.is-single-pick .home-picks-stage {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }
  .home-picks.is-single-pick .home-picks-stage::before,
  .home-picks.is-single-pick .home-picks-stage::after {
    display: none;
  }
  .home-picks.is-single-pick .home-picks-slide {
    flex: initial;
    scroll-snap-align: none;
  }
  .home-picks-detail {
    max-width: none;
    gap: 12px;
  }
  .home-picks-description {
    line-height: 1.85;
  }
  .home-picks-description,
  .home-picks-kicker {
    font-size: var(--font-xs);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-hd-reveal],
  [data-reveal-stagger-item],
  .home-intro-grid .home-intro-title,
  .home-intro-grid .home-intro-body,
  .home-intro-grid .home-intro-image,
  .about-message-copy,
  .about-message-image,
  .about-history-item {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
  .about-history-item:last-child::before {
    animation: none;
  }
}





/* -------------------------------------
  04. CATEGORY
------------------------------------- */

.catalog-page-header {
  margin: 0 var(--layout-margin-horizontal) ;
}

.breadcrumb-nav {
  margin-bottom: 3vw;
}
.catalog-page-header > .breadcrumb-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45em;
  font-family: var(--font-family-sans);
  font-size: var(--font-size-label);
  letter-spacing: 0.1em;
  color: color-mix(in srgb, var(--text-color) 60%, transparent);
}
.catalog-page-header > .breadcrumb-nav a {
  text-decoration: none;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  font-size: var(--font-size-label);
  color: color-mix(in srgb, var(--text-color) 60%, transparent);
}
.breadcrumb__child {
  display: inline-flex;
  align-items: center;
}
.breadcrumb__child + .breadcrumb__child::before {
  content: "/";
  margin-right: 0.5em;
  color: color-mix(in srgb, var(--text-color) 38%, transparent);
}
.breadcrumb__link,
.breadcrumb__notlink {
  color: inherit;
}
.breadcrumb__link {
  color: var(--text-color);
  text-decoration: none;
}
.breadcrumb__link:link,
.breadcrumb__link:visited,
.breadcrumb__link:hover,
.breadcrumb__link:active {
  color: var(--text-color);
  text-decoration: none;
}
.breadcrumb__notlink {
  color: color-mix(in srgb, var(--text-color) 40%, transparent);
}
.catalog-page-intro {
  display: grid;
  gap: 10px;
  /* max-width: 960px; */
}
.catalog-page-title.page-heading-title {
  font-family: var(--font-family-heading-page);
}
.child-categories-nav {
  position: relative;
  min-width: 0;
  margin-bottom: 1vw;
}
.child-categories-nav::before,
.child-categories-nav::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 3px;
  width: 50px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.child-categories-nav::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-color) 40%, transparent);
}
.child-categories-nav::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-color) 40%, transparent);
}
.child-categories-nav.can-scroll-left::before { opacity: 1; }
.child-categories-nav.can-scroll-right::after { opacity: 1; }
.catalog-page-child-categories {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  min-width: 0;
  overflow: auto hidden;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding: 2px 0 8px;
}
.catalog-page-child-categories::-webkit-scrollbar {
  display: none;
}
.child-categories-scrollbar {
  height: 3px;
  background: color-mix(in srgb, var(--text-color) 10%, transparent);
  position: relative;
  border-radius: 999px;
}
.child-categories-scrollbar-thumb {
  position: absolute;
  top: 0;
  height: 100%;
  background: color-mix(in srgb, var(--text-color) 60%, transparent);
  border-radius: 999px;
  cursor: pointer;
}
.catalog-page-child-category {
  display: flex;
  flex-shrink: 0;
}
.catalog-page-child-category a {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 8px 12px;
  color: color-mix(in srgb, var(--text-color) 80%, transparent);
  font-size: var(--font-s);
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0.06em;
}
.catalog-page-child-category a:hover {
  color: var(--text-color);
}
.child-categories-arrow {
  position: absolute;
  top: 48%;
  transform: translateY(-48%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #333;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}
.child-categories-arrow.prev { left: -2px; }
.child-categories-arrow.next { right: -2px; }
.child-categories-nav.can-scroll-left .child-categories-arrow.prev,
.child-categories-nav.can-scroll-right .child-categories-arrow.next {
  opacity: .8;
  pointer-events: auto;
}

/* Category navigation layout options */
.child-categories-nav[data-category-nav-layout="labels"] .catalog-page-child-categories {
  flex-wrap: wrap;
  overflow: visible;
  padding-bottom: 0;
}
.child-categories-nav[data-category-nav-layout="labels"] .catalog-page-child-category a {
  background: color-mix(in srgb, var(--text-color) 6%, transparent);;
  border-radius: 4px;
  padding: 8px 14px;
  font-size: var(--font-xs);
  
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.child-categories-nav[data-category-nav-layout="labels"] .catalog-page-child-category a:hover {
  background: color-mix(in srgb, var(--text-color) 10%, transparent);;

}

.category-page .catalog {
  min-height: 0;
}
.category-page .catalog-inner {
  padding-top: 36px;
}
.catalog-header {
  margin-bottom: 0;
}

.catalog-header-body {
  display: grid;
  gap: 18px;
}
.catalog-title-block {
  position: relative;
  z-index: 0;
  display: grid;
  gap: 10px;
}
@media(min-width: 600px) and (max-width: 1024px) {
 

  .category-page .catalog-inner {
    padding-top: 28px;
  }
  }
  
  
@media(max-width: 599px) {


  .catalog-page-intro {
    gap: 0px;
  }
  .catalog-page-child-categories {
    gap: 6px;
  }
  .catalog-page-child-category a {
    min-height: 28px;
    padding: 0 10px;
  }

}
.item-list-actions {
  display: flex;
  justify-content: center;
  margin-top: var(--layout-margin-vertical);
}
.item-list-more {
  min-width: 180px;
  min-height: 46px;
  padding-inline: 1.8em;
  letter-spacing: 0.2em;
}

@keyframes item-list-loading-dot {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.92);
    background: color-mix(in srgb, var(--accent-color) 38%, transparent);
    box-shadow:
      -14px 0 0 color-mix(in srgb, var(--accent-color) 68%, transparent),
      14px 0 0 color-mix(in srgb, var(--accent-color) 38%, transparent);
  }
  33% {
    transform: translate(-50%, -50%) scale(1);
    background: color-mix(in srgb, var(--accent-color) 68%, transparent);
    box-shadow:
      -14px 0 0 color-mix(in srgb, var(--accent-color) 38%, transparent),
      14px 0 0 color-mix(in srgb, var(--accent-color) 38%, transparent);
  }
  66% {
    transform: translate(-50%, -50%) scale(0.96);
    background: color-mix(in srgb, var(--accent-color) 38%, transparent);
    box-shadow:
      -14px 0 0 color-mix(in srgb, var(--accent-color) 38%, transparent),
      14px 0 0 color-mix(in srgb, var(--accent-color) 68%, transparent);
  }
}

/* -------------------------------------
  05. ITEM DETAIL / REVIEW
------------------------------------- */
#detail .hero {
  position: relative;
  height: 80vh;
  height: 80dvh;
  overflow: hidden;
}
/* #detail > article.no-detail-hero .detail-two-column-layout {
  padding-top: var(--layout-margin-vertical);
} */
/* @media (min-width: 768px) {
  #detail > article.no-detail-hero .detail-two-column-layout {
    padding-top: calc(var(--header-height) + 24px);
  }
} */

/* floating coupon */
.floating-coupon {
  position: fixed;
  left: 15px;
  bottom: 15px;
  z-index: 55;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  width: min(240px, calc(100vw - 20px));
  min-height: 92px;
  overflow: visible;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0s linear;
}
body.is-page-top .floating-coupon:not(.item-page-coupon),
body.is-page-bottom .floating-coupon:not(.item-page-coupon) {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition-delay: 0s, 0s, 0.28s;
}
.floating-coupon__ticket {
  position: relative;
  overflow: hidden;
  border-radius: 8px 0 0 8px;
  background: var(--coupon-color);
}
.floating-coupon__ticket::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  background: var(--bg-color);
  transform: translateY(-50%);
}
.has-no-bgcolor .floating-coupon__ticket::after {
  background: #fff;
}
.floating-coupon__body {
  display: grid;
  align-content: center;
  gap: 5px;
  min-width: 0;
  padding: 10px 10px 8px 16px;
  border: 0px solid var(--line-color-soft);
  border-left: 0;
  border-radius: 0 8px 8px 0;
  background: #fff;
}
.floating-coupon__discount {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 3px 0;
  color: var(--coupon-color);
  font-family: var(--font-family-sans);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 0.95;
}
.floating-coupon__discount::before {
  content: "";
  flex: 0 0 auto;
  box-sizing: border-box;
  width: 0.9em;
  height: 0.62em;
  border: 0.08em solid currentColor;
  border-radius: 0.08em;
  background:
    linear-gradient(
      to bottom,
      transparent 0 20%,
      currentColor 20% 34%,
      transparent 34% 66%,
      currentColor 66% 80%,
      transparent 80% 100%
    )
    68% 50% / 0.08em 100% no-repeat;
  transform: rotate(-8deg);
}
.floating-coupon__name {
  margin: 0;
  color: #333;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.03em;
}
.floating-coupon__code {
  margin: 0;
  color: #b1b1b1;
  font-size: var(--font-xs);
  line-height: 1.35;
  letter-spacing: 0.04em;
}
.floating-coupon__code span { font-weight: bold;}
.floating-coupon__code span[data-coupon-copy] {
  cursor: copy;
}
.floating-coupon__code span[data-coupon-copy].is-copied {
  color: var(--coupon-color);
}
.floating-coupon__more {
  justify-self: start;
  color: var(--coupon-color) !important;
  font-size: var(--font-xs);
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-align: right;
}
.floating-coupon__more::before {
  content: "";
  display: inline-block;
  margin-right: 4px;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 5px solid currentColor;
  transform: translateY(-1px);
}
.floating-coupon__more:hover {
  text-decoration: underline;
}
.floating-coupon__mobile-link {
  display: none;
}
.floating-coupon__close {
  position: absolute;
  top: -4px;
  right: -4px;
  z-index: 9;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #efefef;
  color: #999;
  cursor: pointer;
}
.floating-coupon__close-icon {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
}
.floating-coupon__close-icon::before,
.floating-coupon__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
}
.floating-coupon__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.floating-coupon__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.floating-coupon__close:hover {
  color: var(--coupon-color);
}
.item-page-coupon {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: auto;
  width: 100%;
  max-width: 480px;
  margin: 30px auto 30px;
  box-shadow: none;
  transform: none;
}
.item-page-coupon .floating-coupon__body {
  position: relative;
  overflow: hidden;
  border: 5px solid var(--surface-color-soft);
  border-left: 0;
}
.item-page-coupon .floating-coupon__body > * {
  position: relative;
  z-index: 1;
}
.item-page-coupon .floating-coupon__more {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  justify-self: auto;
  background: #fff;
  padding: 2px 3px 1px 3px;
  font-weight: bold;
}
.item-page-coupon .floating-coupon__body::after {
  content: "COUPON";
  position: absolute;
  right: -10px;
  bottom: -10px;
  z-index: 0;
  display: grid;
  place-items: center;
  width: 140px;
  height: 140px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px #fff, inset 0 0 0 7px currentColor;
  color: var(--coupon-color);
  font-family: var(--font-family-sans);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  opacity: 0.2;
  transform: rotate(-27deg);
  pointer-events: none;
  box-sizing: border-box;
}

#detail #item-price-anchor {
  scroll-margin-top: var(--header-height);
}
/* floating add-to-cart box (test: always visible) */
.floating-cart-box {
  position: fixed;
  right: clamp(12px, 2vw, 24px);
  bottom: clamp(12px, 2vw, 24px);
  z-index: 60;
  display: grid;
  gap: 8px;
  min-width: min(88vw, 300px);
  max-width: 400px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  border-radius: calc( var(--image-radius) * 1 );
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0s linear;
}
.floating-cart-box.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}
@media (max-width: 767px) {
  .floating-coupon {
    left: 50%;
    right: auto;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    z-index: 58;
    grid-template-columns: 8px minmax(0, 1fr);
    width: min(220px, calc(100vw - 8px));
    min-height: 0;
    border-width: 1px;
    border-radius: 5px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
    transform: translateX(-50%);
    transition:
      bottom 0.28s ease,
      opacity 0.28s ease,
      transform 0.28s ease,
      visibility 0s linear;
  }
  .floating-coupon__ticket::after {
    display: none;
  }
  .floating-coupon:not(.item-page-coupon) .floating-coupon__ticket {
    border-radius: 5px 0 0 5px;
  }
  .floating-coupon:not(.item-page-coupon) .floating-coupon__body {
    border-radius: 0 5px 5px 0;
  }
  .floating-coupon__body {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 10px 8px;
  }
  .floating-coupon__discount {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    font-size: 1.6rem;
    margin: 0;
    white-space: nowrap;
  }
  .floating-coupon__discount::before,
  .floating-coupon__code,
  .floating-coupon__more {
    display: none;
  }
  .floating-coupon__name {
    grid-column: 2;
    grid-row: 1;
    overflow: hidden;
    font-size: var(--font-xs);
    line-height: 1.35;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .floating-coupon__mobile-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
  }
  body.has-floating-cart-box .floating-coupon {
    display: none;
  }
  body.has-base-message-button-visible .floating-coupon:not(.item-page-coupon) {
    bottom: calc(66px + env(safe-area-inset-bottom, 0px));
  }
  .item-page-coupon {
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 20px minmax(0, 1fr);
    width: 100%;
    max-width: 500px;
    min-height: 92px;
    margin: 40px auto;
    box-shadow: none;
    transform: none;
    transition: none;
  }
  .item-page-coupon .floating-coupon__ticket::after {
    display: block;
  }
  .item-page-coupon .floating-coupon__body {
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    align-items: stretch;
    gap: 5px;
    padding: 14px 16px 10px;
  }
  
  .item-page-coupon .floating-coupon__discount {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    font-size: 2.4rem;
    margin: 3px 0;
  }
  .item-page-coupon .floating-coupon__discount::before {
    display: inline-block;
  }
  .item-page-coupon .floating-coupon__code,
  .item-page-coupon .floating-coupon__more {
    display: block;
  }
  .item-page-coupon .floating-coupon__name {
    grid-column: auto;
    grid-row: auto;
    overflow: visible;
    font-size: 1.3rem;
    white-space: normal;
    text-overflow: clip;
  }
  body.has-base-message-button-visible .item-page-coupon,
  body.has-floating-cart-box .item-page-coupon {
    bottom: auto;
    display: grid;
  }
}
@media (min-width: 481px) and (max-width: 767px) {

  .floating-coupon:not(.item-page-coupon) .floating-coupon__body {
    gap: 8px;
    padding: 10px;
  }
  .floating-coupon:not(.item-page-coupon) .floating-coupon__discount {
    font-size: 1.4rem;
  }
  .floating-coupon:not(.item-page-coupon) .floating-coupon__name {
    font-size: 1.2rem;
  }
}
.floating-cart-box__name {
  margin: 0;
  color: #111;
  font-size: var(--font-s);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.floating-cart-box__price {
  margin: 0;
  color: #111;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.floating-cart-box__price :is(.proper, .sale) {
  font-size: var(--font-m);
}
.floating-cart-box__price .proper {
  font-weight: 400;
}
.floating-cart-box__price :is(.proper, .sale)::first-letter {
  display: inline-block;
  font-size: 0.8em;
  margin-right: 0.1em;
}
.floating-cart-box__price .sale {
  font-weight: 500;
  color: var(--sale-color);
}
.floating-cart-box__price .list {
  margin-left: 0.5em;
  font-size: var(--font-xs);
  opacity: 0.55;
  text-decoration-thickness: 1px;
}
.floating-cart-box__price .off {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5em;
  padding: 0.45em 0.78em;
  border-radius: 3px;
  background: var(--sale-color);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.06em;
}

/* -------------------------------------
  03. HOME SECTIONS / CATALOG
------------------------------------- */
.catalog .item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin-top: 15px;
}
.catalog .item-meta > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0.1em 0.9em;
  border-radius: 3px;
  box-sizing: border-box;
  font-family: var(--font-family-sans);
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.06em;
}
.catalog .item-meta .preOrder {
  border: 1px solid var(--line-color-soft);
  color: var(--text-color);
  background: transparent;
}
.catalog .item-meta .waitingForSale,
.catalog .item-meta .soldout {
  border: 0;
  color: var(--text-color);
  letter-spacing: 1px;
}
.catalog .item-meta .waitingForSale {
  background: var(--surface-color-soft);
}
.catalog .item-meta .soldout {
  background: color-mix(in srgb, var(--text-color) 10%, transparent);
}
.catalog .item-meta .community {
  background: #f2bb31;
  color: #fff;
}
.catalog .item-meta .takeout,
.catalog .item-meta .lottery {
  background: color-mix(in srgb, var(--bg-color) 90%, white);
  border: 1px solid var(--line-color-soft);
  color: var(--text-color-strong);
  font-weight: 500;
}
@media (max-width: 767px) {
 .catalog .item-meta {
    margin-top: 10px;
  }
}



/* -------------------------------------
  05. ITEM DETAIL
------------------------------------- */

/* section */
#detail .product-section {
  font-size: var(--font-xs);
  margin: 10vw 0;
}
#detail > .content-shell {
  padding-left: var(--content-section-horizontal);
  padding-right: var(--content-section-horizontal);
  box-sizing: border-box;
}
#detail .detail-two-column-layout {
  display: grid;
  grid-template-columns: 58% 37%;
  justify-content: space-between;
  align-items: start;
  row-gap: clamp(36px, 5vw, 72px);
  margin: 0 0 var(--layout-margin-vertical) 0;
}


@media(min-width: 768px) and (max-width: 1024px) {
  #detail .detail-two-column-layout {
    grid-template-columns: 56% 39%;
  }
}
#detail .detail-two-column-layout > .product-section {
  margin: 0;
}
#detail .detail-two-column-layout > .product-section:not(.appsIDC) {
  display: contents;
}
#detail.layout-leftclm .detail-two-column-layout > .product-section.appsIDC {
  grid-column: 1 / 2;
  padding: 0;
  margin-top: var(--appsidc-offset, 0px);
}
#detail.layout-oneclm .detail-two-column-layout > .product-section.appsIDC {
  grid-column: 1 / -1;
  padding: 0;
  margin-top: 10vw;
}
#detail:not(.layout-oneclm):not(.layout-leftclm) .detail-two-column-layout > .product-section.appsIDC {
  grid-column: 1 / 2;
  padding: 0;
  margin-top: var(--appsidc-offset, 0px);
}
#detail .detail-two-column-layout > .product-section.appsIDC #appsItemDetailCustom {
  width: 100%;
  margin: 0;
  padding: 0;
}
#detail.layout-oneclm .detail-two-column-layout {
  display: block;
}
#detail.layout-oneclm .detail-two-column-layout > .product-section:not(.appsIDC) {
  display: block;
}
#detail.layout-oneclm .product-section .product-columns {
  display: grid;
  grid-template-columns: 57% 38%;
  justify-content: space-between;
  align-items: start;
}
@media(min-width: 768px) and (max-width: 1024px) {
  #detail.layout-oneclm .product-section .product-columns {
    grid-template-columns: 55% 40%;
  }
  #detail .product-section .product-info .purchaseButton {
    min-width: 0;
  }
  #detail .product-section .product-info .purchaseButton__btn {
    padding-left: 1.2em;
    padding-right: 1.2em;
    font-size: var(--font-s);
    letter-spacing: 0.12em;
  }
}
/* product-section layout */
#detail .product-section .product-columns {
  display: contents;
}
#detail .product-section .product-columns .product-visual {
  grid-column: 1 / 2;
  grid-row: 1;
  width: auto;
  position: static;
  top: auto;
  align-self: flex-start;
}


/* Item Detail Image Aspect Ratio */
#detail .product-section figure.detail-main-media  img,
#detail .product-section figure.detail-main-media {
  /* Min Stage */
  aspect-ratio: 1 / 1; 
  aspect-ratio: var(--itemdetail-image-aspectratio);
}
 /* Thumbnail */
#detail .detail-viewer-thumbs img {  aspect-ratio: 1 / 1; }



#detail .product-section .detail-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#detail .product-section .product-info .purchaseButton {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 18px;
  align-self: center;
  min-width: 0;
}
#detail .product-section .product-info .purchaseButton__btn {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 46px;
  min-height: 46px;
  padding: 0 1.8em;
  line-height: 46px;
  margin: 0;
  font-size: var(--font-s);
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
#detail .product-section .product-info .purchaseButton__btn.purchaseButton__btn--addToCart,
#detail .product-section .product-info .purchaseButton__btn.purchaseButton__btn--requestRestockMail,
#detail .product-section .product-info .purchaseButton__btn.purchaseButton__btn--comingSoon {
  background: var(--accent-color);
  color: var(--accent-text-color);
}
#detail .product-section .product-info .purchaseButton__btn:disabled,
#detail .product-section .product-info .purchaseButton__btn[disabled],
#detail .product-section .product-info .purchaseButton__btn.purchaseButton__btn--comingSoonStay,
#detail .product-section .product-info .purchaseButton__btn.purchaseButton__btn--soldOut,
#detail .product-section .product-info .purchaseButton__btn.purchaseButton__btn--endOfSale,
#detail .product-section .product-info .purchaseButton__btn.purchaseButton__btn--notApplying {
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
 filter: grayscale(100%);
  /* mix-blend-mode: multiply; */

}
/* #detail .product-section .product-info .purchaseButton__btn.purchaseButton__btn--soldOut,
#detail .product-section .product-info .purchaseButton__btn.purchaseButton__btn--endOfSale {
  color: color-mix(in srgb, var(--accent-color) 50%, var(--text-color) 50%);
} */



/* -------------------------------------
  IMAGE VIEWER
------------------------------------- */

#detail .detail-viewer {
  display: grid;
  position: relative;
  gap: 0.8rem;
}
#detail .detail-viewer.direct-gallery {
  display: block;
}
#detail .detail-main-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--image-radius);
  cursor: default;
  pointer-events: auto;
}
#detail .detail-viewer > .detail-label-clip {
  position: absolute;
  top: 8px;
  left: 8px;
  right: auto;
  z-index: 3;
  overflow: hidden;
  max-width: 50px;
  border-top-left-radius: var(--image-radius);
  display: block;
  width: auto;
  height: auto;
}
#detail .detail-viewer > .detail-label-clip > * {
  display: block;
  width: 100%;
  height: auto;
}
#detail .detail-viewer > .detail-label-clip .label_image.detail,
#detail .detail-viewer > .detail-label-clip .label_image.detail img,
#detail .detail-viewer > .detail-label-clip img.label_image.detail {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
#detail .detail-viewer.has-lightbox .detail-main-media {
  position: relative;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='42' viewBox='0 0 42 42'%3E%3Ccircle cx='21' cy='21' r='21' fill='rgba(255,255,255,0.68)'/%3E%3Cpath d='M21 15.5v11M15.5 21h11' stroke='black' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") 21 21, auto;
}
#detail .detail-viewer.direct-gallery .detail-main-media {
  display: none;
  cursor: default;
}
#detail .detail-viewer.direct-gallery .detail-viewer-meta {
  display: none;
}
#detail .detail-main-image {
  width: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.45s ease;
  position: relative;
  z-index: 1;
}
#detail .detail-main-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.52s var(--easeInOutSine), transform 0.45s ease;
}
#detail .detail-main-image-overlay.is-active {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  #detail .detail-main-media:hover .detail-main-image,
  #detail .detail-main-media:hover .detail-main-image-overlay {
    transform: scale(1.008);
  }
}
#detail .detail-viewer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
#detail .detail-viewer.is-single-thumbless .detail-viewer-thumbs,
#detail .detail-viewer.is-single-thumbless .detail-viewer-meta {
  display: none;
}
#detail .detail-viewer-caption,
#detail .detail-viewer-count {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}
#detail .detail-viewer-thumbs {
  --thumb-visible-count: 6;
  --thumb-gap: 8px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--thumb-gap) * (var(--thumb-visible-count) - 1))) / var(--thumb-visible-count));
  gap: var(--thumb-gap);
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-gutter: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (max-width: 1280px) {
  #detail .detail-viewer-thumbs {
    --thumb-visible-count: 8;
  }
}
#detail .detail-viewer.direct-gallery .detail-viewer-thumbs {
  grid-auto-flow: row;
  grid-auto-columns: auto;
  grid-template-columns: 1fr;
  gap: 30px;
  overflow: visible;
  padding-bottom: 0;
  scroll-snap-type: none;
}
#detail .detail-viewer-thumbs::-webkit-scrollbar {
  display: none;
}
#detail .detail-viewer-thumbs figure {
  margin: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: calc( var(--image-radius) * 0.7 );
  scroll-snap-align: start;
  transition: opacity 0.2s ease;
}
#detail .detail-viewer.direct-gallery .detail-viewer-thumbs figure {
  cursor: default;
}
#detail .detail-viewer.direct-gallery.has-lightbox .detail-viewer-thumbs figure {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='42' viewBox='0 0 42 42'%3E%3Ccircle cx='21' cy='21' r='21' fill='rgba(255,255,255,0.68)'/%3E%3Cpath d='M21 15.5v11M15.5 21h11' stroke='black' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") 21 21, auto;
}
#detail .detail-viewer-thumbs figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
#detail .detail-viewer.thumb-gallery .detail-viewer-thumbs figure:not(.is-active) {
  opacity: 0.5;
}
#detail .detail-viewer-thumbs img {
  display: block;
  width: 100%;
  object-fit: cover;
}



#detail .detail-viewer.direct-gallery .detail-viewer-thumbs img {
  aspect-ratio: auto;
}
#detail .detail-viewer-dots {
  display: none;
}
#detail .detail-viewer-swipe {
  display: none;
}
@media (max-width: 767px) {
  #detail .detail-viewer:is(.direct-gallery, .thumb-gallery) {
    display: grid;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
  }
  #detail .detail-viewer:is(.direct-gallery, .thumb-gallery) .detail-main-media {
    display: none;
    width: 90%;
    margin-bottom: 10px;
  }
  #detail .detail-viewer:is(.direct-gallery, .thumb-gallery) .detail-viewer-swipe {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 90%;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  #detail .detail-viewer:is(.direct-gallery, .thumb-gallery) .detail-viewer-swipe::-webkit-scrollbar {
    display: none;
  }
  #detail .detail-viewer-swipe-slide {
    scroll-snap-align: start;
  }
  #detail .detail-viewer-swipe-slide img {
    width: 100%;
    aspect-ratio: var(--itemdetail-image-aspectratio);
    object-fit: cover;
    display: block;
  }
  #detail .detail-viewer:is(.direct-gallery, .thumb-gallery) .detail-viewer-thumbs {
    --thumb-visible-count: 5;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (var(--thumb-gap) * (var(--thumb-visible-count) - 1))) / var(--thumb-visible-count));
    grid-template-columns: none;
    gap: var(--thumb-gap);
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  #detail .detail-viewer.direct-gallery .detail-viewer-thumbs img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
  #detail .detail-viewer:is(.direct-gallery, .thumb-gallery) .detail-viewer-thumbs::-webkit-scrollbar {
    display: none;
  }
  #detail .detail-viewer.is-single-image {
    width: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
  }
  #detail .detail-viewer.is-single-image .detail-main-media {
    display: block;
    width: 100%;
    margin-bottom: 0;
  }
  #detail .detail-viewer.is-single-image .detail-viewer-thumbs,
  #detail .detail-viewer.is-single-image .detail-viewer-dots,
  #detail .detail-viewer.is-single-image .detail-viewer-swipe,
  #detail .detail-viewer.is-single-image .detail-viewer-meta {
    display: none;
  }
}



#detail .product-gallery {
  margin-top: 3vw;
  margin-bottom: 8vw;
}
.detail-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000003;
  display: grid;
  place-items: center;
  padding: clamp(20px, 3vw, 44px);
  background: rgba(0, 0, 0, 0.7);
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='42' viewBox='0 0 42 42'%3E%3Ccircle cx='21' cy='21' r='21' fill='rgba(0,0,0,0.92)'/%3E%3Cpath d='M17 17l8 8M25 17l-8 8' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") 21 21, auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
.detail-lightbox.is-image-zoomed {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='42' viewBox='0 0 42 42'%3E%3Ccircle cx='21' cy='21' r='21' fill='rgba(255,255,255,0.68)'/%3E%3Cpath d='M15.5 21h11' stroke='black' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") 21 21, auto;
}
  
.detail-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.detail-lightbox-image-wrap {
  width: auto;
  max-width: min(94vw, 1180px);
  max-height: 89vh;
  display: grid;
  place-items: center;
  cursor: inherit;
  position: relative;
  z-index: 2;
}
.detail-lightbox-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 89vh;
  object-fit: contain;
  display: block;
  opacity: 1;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='42' viewBox='0 0 42 42'%3E%3Ccircle cx='21' cy='21' r='21' fill='rgba(255,255,255,0.68)'/%3E%3Cpath d='M21 15.5v11M15.5 21h11' stroke='black' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") 21 21, auto;
  transition: opacity 0.24s ease, transform 0.28s ease;
  border-radius: var(--image-radius);
}
.detail-lightbox-image.is-fading {
  opacity: 0.12;
}
.detail-lightbox-image.is-zoomed {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='42' viewBox='0 0 42 42'%3E%3Ccircle cx='21' cy='21' r='21' fill='rgba(255,255,255,0.68)'/%3E%3Cpath d='M15.5 21h11' stroke='black' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") 21 21, auto;
  transition: opacity 0.24s ease, transform 0.12s ease-out;
}
.detail-lightbox-nav {
  position: absolute;
  border: 0;
  cursor: pointer;
  font: inherit;
}
.detail-lightbox-nav {
  top: calc(50% - 6px);
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 1);
  color: #111;
  font-size: 24px;
  line-height: 1;
  padding: 0;
  z-index: 3;
  transition: background-color 0.26s ease, color 0.26s ease, opacity 0.26s ease;
  outline: none;
}
.detail-lightbox.is-image-zoomed .detail-lightbox-nav {
  z-index: 1;
  pointer-events: none;
}
.detail-lightbox-nav-glyph {
  display: inline-block;
  transform: translateY(-2px);
  line-height: 1;
}
.detail-lightbox-nav.prev {
  left: 5px;
}
.detail-lightbox-nav.next {
  right: 5px;
}
.detail-lightbox-count {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Helvetica Neue", Helvetica, Arial, "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-size: var(--font-m);
  letter-spacing: 0.1em;
}
.detail-lightbox-touch-hint {
  position: absolute;
  left: 50%;
  bottom: 78px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0s linear 0.4s;
}
.detail-lightbox-touch-hint-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: rgba(255, 255, 255, 0.92);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}
.detail-lightbox-touch-hint-item::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: currentColor;
}
.detail-lightbox-touch-hint-item.zoom::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='10.5' cy='10.5' r='6.5' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M15.5 15.5 21 21' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M10.5 7.5v6M7.5 10.5h6' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='10.5' cy='10.5' r='6.5' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M15.5 15.5 21 21' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M10.5 7.5v6M7.5 10.5h6' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.detail-lightbox-touch-hint-item.zoom::after {
  content: "ZOOM";
}
.detail-lightbox-touch-hint-item.swipe::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 5 3 12l5 7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 5l5 7-5 7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 12h16' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 5 3 12l5 7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 5l5 7-5 7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 12h16' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.detail-lightbox-touch-hint-item.swipe::after {
  content: "SWIPE";
}
.detail-lightbox:not(.has-touch-swipe-hint) .detail-lightbox-touch-hint-item.swipe {
  display: none;
}
.detail-lightbox.is-touch-hint-visible .detail-lightbox-touch-hint {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}
.detail-lightbox-close {
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.92);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  z-index: 4;
}

@media(max-width: 599px) {
  #detail .product-gallery-grid {
    grid-template-columns: 1fr;
    gap: 6vw;
  }
  .detail-lightbox-nav {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .detail-lightbox-close {
    display: grid;
  }
}


/* -------------------------------------
  PRODUCT INFO
------------------------------------- */

#detail .product-section .product-columns .product-info {
  grid-column: 2 / 3;
  grid-row: 1;
  width: auto;
  padding-top: 20px;
  position: -webkit-sticky;
  position: sticky;
  top: var(--product-info-sticky-top, 3vw);
  bottom: auto;
  align-self: flex-start;
  transition: top 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: top;
}
#detail.layout-oneclm .product-section .product-columns .product-info {
  position: static;
  top: auto;
  transition: none;
}
@media (min-width: 768px) {
  #detail.layout-oneclm.is-sticky-visual .product-section .product-columns .product-visual {
    position: -webkit-sticky;
    position: sticky;
    top: 2vw;
  }
  #detail.layout-oneclm.is-sticky-info .product-section .product-columns .product-info {
    position: -webkit-sticky;
    position: sticky;
    top: 2vw;
  }
  #detail .product-section .product-columns .product-info:has(#postageInfo.show),
  #detail .product-section .product-columns .product-info:has(#irBG[style*="display: block"]),
  #detail .product-section .product-columns .product-info:has(#irContainer[style*="display: block"]) {
    z-index: 1000004;
  }
  #detail.layout-oneclm .product-section .product-columns .product-info:has(#postageInfo.show),
  #detail.layout-oneclm .product-section .product-columns .product-info:has(#irBG[style*="display: block"]),
  #detail.layout-oneclm .product-section .product-columns .product-info:has(#irContainer[style*="display: block"]) {
    position: relative;
  }
}
#overlayBackground.shippingModal__overlay {
  z-index: 1000003 !important;
}
#postageInfo.shippingModal {
  z-index: 1000004 !important;
}
@media (max-width: 768px) {
  body:has(#postageInfo.show) > .informationBanner {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}
body:has(#postageInfo.show) header {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

#detail .communityOverlay {
  inset: 0 !important;
  z-index: 1000003 !important;
}

#detail .communityModal {
  top: 50% !important;
  left: 50% !important;
  z-index: 1000004 !important;
  transform: translate(-50%, -50%) !important;
  max-width: min(92vw, 560px) !important;
  max-height: calc(100dvh - 48px) !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}
#irBG.irBG {
  z-index: 1000003 !important;
}
#irContainer.irContainer,
#reportMessage {
  z-index: 1000004 !important;
}
@media (min-width: 1280px) {
  #detail .product-section .product-columns .product-info:has(#irContainer[style*="display: block"]) > :not(.product-sharetools) {
    visibility: hidden;
  }
  #detail .product-section .product-columns .product-info:has(#irContainer[style*="display: block"]) .product-sharetools > :not(.product-report) {
    visibility: hidden;
  }
  #detail .product-section .product-columns .product-info:has(#irContainer[style*="display: block"]) .product-report > a {
    visibility: hidden;
  }
}
#detail .product-section .product-columns .product-info .product-name {
  font-family: var(--font-family-heading-product);
  font-size: var(--font-size-heading-section);
  font-weight: var(--font-weight-heading-product, 400);
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 30px;
  letter-spacing: var(--letter-spacing-heading-product, 0.02em);
}
#detail .product-section .product-columns .product-info .product-digital-content {
  margin: 10px 0 0;
}
#detail .product-section .product-columns .product-info .product-digital-content span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--surface-color-soft);
  color: var(--text-color-muted);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-label);
  letter-spacing: 0.04em;
  line-height: 1;
}

#detail .product-section .product-columns .product-info .product-description {
  font-size: var(--font-size-body);
  line-height: 1.8;
  margin: 1vw 0;
}

#detail .product-section .product-columns .product-info .purchase-price {
  font-size: var(--font-size-price-large);
  font-family: var(--font-family-heading-product);
  line-height: 1.2;
}
#detail .product-section .product-columns .product-info .purchase-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 2vw;
  padding: 0.8em 1.4em;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.08em;
}
#detail .product-section .product-columns .product-info .purchase-note {
  margin-top: 1.2vw;
  font-size: 11px;
  opacity: 0.75;
}
#detail .product-section .product-columns .product-info .price {
  font-family: var(--font-family-sans);
}
#detail .product-section .product-columns .product-info .price {
  margin-top: 2vw;
  display: block;
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--text-color) 10%, transparent);
}
#detail .product-section .product-columns .product-info .price .subscription-price-block + .subscription-price-block {
  margin-top: 18px;
}
#detail .product-section .product-columns .product-info .price .subscription-price-label {
  margin: 0 0 10px;
  font-size: var(--font-xs);
  line-height: 1.6;
  letter-spacing: 0.12em;
  color: color-mix(in srgb, var(--text-color) 90%, transparent);
}

#detail .product-section .product-columns .product-info .price :is(.proper, .sale) {
  display: inline-block;
  font-size: var(--itemdetail-price-font-size);
  letter-spacing: 0.03em;
  line-height: 1;
}
#detail .product-section .product-columns .product-info .price .proper {
  font-weight: 400;
}
#detail .product-section .product-columns .product-info .price :is(.proper, .sale)::first-letter {
  display: inline-block;
  font-size: 0.8em;
  margin-right: 0.1em;
}
#detail .product-section .product-columns .product-info .price .sale {
  font-weight: 500;
  color: var(--sale-color);
}
#detail .product-section .product-columns .product-info .price .list {
  display: inline-block;
  margin-left: 0.6em;
  font-size: var(--font-s);
  opacity: 0.55;
  letter-spacing: 0;
  text-decoration-thickness: 1px;
}
#detail .product-section .product-columns .product-info .price .off {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.6em;
  padding: 0.4em 0.7em;
  box-sizing: border-box;
  border-radius: 3px;
  background: var(--sale-color);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
#detail .product-section .product-columns .product-info .price .tax {
  display: inline-block;
  margin-left: 0.2em;
  font-size: var(--font-xs);
  color: inherit;
  opacity: 1;
  letter-spacing: 0.08em;
}
#detail .product-section .product-columns .product-info .price .sale + .tax {
  color: var(--sale-color);
}
#detail .product-section .product-columns .product-info .stockStatus {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 1vw 0;
}
#detail .product-section .product-columns .product-info .comingSoon,
#detail .product-section .product-columns .product-info .soldout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6em 1.6em;
  box-sizing: border-box;
  border-radius: 3px;
  font-size: var(--font-xs);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
 
}
#detail .product-section .product-columns .product-info .comingSoon {
  border: 0;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--text-color) 10%, transparent);
  background: var(--surface-color-soft);
  color: var(--text-color-muted);
}
#detail .product-section .product-columns .product-info .soldout {
  border: 0;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--text-color) 10%, transparent);
  background: color-mix(in srgb, var(--text-color) 6%, transparent);
  color: var(--text-color-strong);
}
#detail .product-section .product-columns .product-info #itemAttention {
  margin-top: 20px;
  background: color-mix(in srgb, var(--text-color) 7%, transparent);
  padding:20px 25px;
  border-radius: var(--image-radius);
}
#detail .product-section .product-columns .product-info .communityLabel {
  margin: 18px 0 !important;
  padding: 16px 18px !important;
  border-radius: var(--image-radius) !important;
  font-family: var(--font-family-sans);
}
#detail .product-section .product-columns .product-info .communityLabel p {
  margin: 0 !important;
  font-size: var(--font-xs) !important;
  line-height: 1.7 !important;
}
#detail .product-section .product-columns .product-info .communityLabel .communityLabel__title {
  font-size: var(--font-s) !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
}
#detail .product-section .product-columns .product-info .communityLabel .communityLabel__note {
  margin-top: 8px !important;
}
#detail .product-section .product-columns .product-info #itemAttention :is(.takeout, .lottery) {
  margin: 0 0 20px 0;
}
#detail .product-section .product-columns .product-info #itemAttention :is(.takeout__label, .lottery__label) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0.4em 1.1em;
  box-sizing: border-box;
  border-radius: 3px;
  font-family: var(--font-family-sans);
  font-size: var(--font-size-body-small);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  background: var(--surface-color-soft);
  border: 1px solid var(--line-color-soft);
  color: var(--text-color);
}
#detail .product-section .product-columns .product-info #itemAttention :is(.takeout__data, .lottery__data) {
  display: inline-block;
  margin-top: 10px;
  font-size: var(--font-size-body-small);
  line-height: 1.7;
  font-weight: bold;
  color: var(--text-color);
}
#takeoutModal {
  overflow: hidden !important;
  overscroll-behavior: contain;
}
#takeoutModal .takeoutModal__container {
  box-sizing: border-box;
  display: flex !important;
  flex-direction: column;
  max-height: min(720px, calc(100dvh - 48px)) !important;
  overflow: hidden !important;
}
#takeoutModal .takeoutModal__submit {
  display: flex !important;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}
#takeoutModal.is_success .takeoutModal__submit {
  display: none !important;
}
#takeoutModal.is_success .takeoutModal__result {
  display: flex !important;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  overflow: hidden !important;
}
#takeoutModal .takeoutModal__title {
  flex: 0 0 auto;
}
#takeoutModal .takeoutModal__inner {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
@media (max-width: 828px) {
  #takeoutModal {
    align-items: stretch !important;
  }
  #takeoutModal .takeoutModal__container {
    height: 100dvh !important;
    max-height: 100dvh !important;
    min-height: 0;
    width: 100% !important;
  }
}
.purchaseButtonModal__wrapper {
  overflow: hidden !important;
  overscroll-behavior: contain;
}
.purchaseButtonModal__wrapper .purchaseButtonModal__container {
  box-sizing: border-box;
  display: flex !important;
  flex-direction: column;
  max-height: min(720px, calc(100dvh - 48px)) !important;
  overflow: hidden !important;
}
.purchaseButtonModal__wrapper .purchaseButtonModal__submit {
  display: flex !important;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}
.purchaseButtonModal__wrapper.is_success .purchaseButtonModal__submit {
  display: none !important;
}
.purchaseButtonModal__wrapper.is_success .purchaseButtonModal__result {
  display: flex !important;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  overflow: hidden !important;
}
.purchaseButtonModal__wrapper .purchaseButtonModal__title {
  flex: 0 0 auto;
}
.purchaseButtonModal__wrapper .purchaseButtonModal__inner {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.purchaseButtonModal__wrapper .purchaseButtonModal__inner.ageVerificationModal__inner {
  flex: 0 0 auto;
}
.purchaseButtonModal__wrapper .purchaseButtonModal__inner.ageVerificationModal__footer {
  flex: 0 0 auto;
}
@media (max-width: 828px) {
  .purchaseButtonModal__wrapper {
    align-items: stretch !important;
  }
  .purchaseButtonModal__wrapper .purchaseButtonModal__container {
    height: 100dvh !important;
    max-height: 100dvh !important;
    min-height: 0;
    width: 100% !important;
  }
  .purchaseButtonModal__wrapper.is_success .purchaseButtonModal__container {
    height: 100dvh !important;
  }
}
#detail .product-section .product-columns .product-info .membershipPoint__amountWrapper {
  font-size: var(--font-s);
  font-weight: 500 !important;
  line-height:1.8;
}
#detail .product-section .product-columns .product-info .membershipPoint__amount {
  font-size: var(--font-m);
  font-weight:500 !important;
}
#detail .product-section .product-columns .product-info .membershipPoint__pointName {
  margin-right: 0.2em;
}
#detail .product-section .product-columns .product-info .attention {
  margin-top: 0.55em;
  line-height: 1.6;
}
#detail .product-section .product-columns .product-info .membershipPoint__attentionLink {
  color: inherit;
}


.attention.salesPeriod.salesPeriod--willStart,
.attention.salesPeriod.salesPeriod--term,
.attention.salesPeriod.salesPeriod--finish,
.attention.salesPeriod.salesPeriod--available {
  line-height: 1.8em !important;
  padding: 15px 25px;
  margin: 30px 0 !important;
  font-weight: bold;
  font-size: var(--font-s);
  border-radius: var(--image-radius);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background: var(--surface-color-soft);
  border-left: 6px solid var(--accent-color);
  }




.ageVerificationWarning {
  color: inherit !important;
  margin: 30px 0 !important;
  font-size: calc( var(--itemdetail-price-font-size) * 1.1 ) !important;
}
#detail .product-section .product-columns .product-info #purchase_form {
  margin: 20px 0;
}
#detail .product-section .product-columns .product-info #itemSelect {
  width: 100%;
}
#detail .product-section .product-columns .product-info #itemSelect > * {
  width: 100%;
}
#detail .product-section .product-columns .product-info #itemSelect :is(#amountSelectWrap, #variationSelectWrap, [id^="variationSelectWrap"], .itemOptionElement) {
  display: block;
  width: 100% !important;
  max-width: none !important;
  margin-bottom: 20px;
}
#detail .product-section .product-columns .product-info #itemSelect label {
  display: block !important;
  margin: 0 0 8px;
  font-size: var(--font-s);
  line-height: 1.5;
  letter-spacing: 0.08em;

}
#detail .product-section .itemOption__caption {
  color: var(--text-color-strong);
  font-weight: bold;
  margin: 2px 0 5px 0;
}
#detail .product-section .itemOption__bottomCaptionBlock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
#detail .product-section .itemOption__count {
  margin-left: auto;
  text-align: right;
  margin-right: 5px;
  font-weight: bold;
}
#detail .product-section .itemOption__caption--error {
  color: var(--sale-color);
}


#detail .product-section .product-columns .product-info #amountSelectWrap {
  width: 100%;
}
#detail .product-section .product-columns .product-info #variationSelectWrap,
#detail .product-section .product-columns .product-info [id^="variationSelectWrap"],
#detail .product-section .product-columns .product-info .itemOptionElement {
  width: 100%;
  margin-bottom: 12px;
}
#detail .product-section .product-columns .product-info #amountSelect {
  width: 100% !important;
  max-width: none !important;
  min-height: 44px !important;
  padding: 0.75em 2.6em 0.75em 1.1em !important;
  font-size: var(--font-m) !important;
  line-height: 1.4 !important;
  white-space: normal !important;
  word-break: normal !important;
  border: 1px solid color-mix(in srgb, #333 16%, transparent);
  border-radius: 8px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23666' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-position: right 1.1em center !important;
  background-repeat: no-repeat !important;
  background-size: 10px 6px !important;
  color: #333 !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
}
#detail .product-section .product-columns .product-info #variationSelectWrap select,
#detail .product-section .product-columns .product-info [id^="variationSelectWrap"] select,
#detail .product-section .product-columns .product-info .itemOptionElement .itemOption__select {
  width: 100% !important;
  max-width: none !important;
  min-height: 44px !important;
  border: 1px solid color-mix(in srgb, #333 16%, transparent) !important;
  border-radius: 8px !important;
  background-color: #fff !important;
  color: #333 !important;
  /* background-color: var(--surface-color-soft) !important; */

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23666' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-position: right 1.1em center !important;
  background-repeat: no-repeat !important;
  background-size: 10px 6px !important;
  padding: 0.75em 2.6em 0.75em 1.1em !important;
  font-size: var(--font-s) !important;
  line-height: 1.4 !important;
  letter-spacing: 0.04em !important;
  box-shadow: none;
  white-space: normal !important;
  word-break: normal !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  outline: none;
}
#detail .product-section .product-columns .product-info .itemOptionElement .itemOption__input,
#detail .product-section .product-columns .product-info .itemOptionElement textarea {
  width: 100%;
  max-width: none !important;
  border: 1px solid color-mix(in srgb, #333 16%, transparent) !important;
  border-radius: 8px !important;
  background-color: #fff !important;
  color: #333 !important;
  /* background-color: var(--surface-color-soft) !important; */

  padding: 14px 16px !important;
  font-family: var(--font-family-sans);
  font-size: var(--font-s) !important;
  line-height: 1.6 !important;
  letter-spacing: 0.04em !important;
  box-shadow: none !important;
  outline: none;
  resize: vertical;
}
#detail .product-section .product-columns .product-info .itemOptionElement .itemOption__input {
  min-height: 50px !important;
  height: 50px !important;
  resize: none;
}
#detail .product-section .product-columns .product-info .itemOptionElement textarea {
  min-height: 112px !important;
}
#detail .product-section .product-columns .product-info .itemOptionElement .itemOption__input::placeholder,
#detail .product-section .product-columns .product-info .itemOptionElement textarea::placeholder {
  color: color-mix(in srgb, #333 48%, transparent);
  opacity: 1;
}
#detail .product-section .product-info .purchaseButton {
  margin-top: 18px;
}
#detail .product-section .product-info .purchaseButton__btn:disabled:hover,
#detail .product-section .product-info .purchaseButton__btn[disabled]:hover,
#detail .product-section .product-info .purchaseButton__btn.purchaseButton__btn--comingSoonStay:hover,
#detail .product-section .product-info .purchaseButton__btn.purchaseButton__btn--soldOut:hover,
#detail .product-section .product-info .purchaseButton__btn.purchaseButton__btn--endOfSale:hover,
#detail .product-section .product-info .purchaseButton__btn.purchaseButton__btn--notApplying:hover {
  opacity: 1;
}
#detail .product-section .product-info .purchaseButton__btn:hover {
  opacity: 0.8;
}
@media(max-width: 767px) {
  #detail.layout-oneclm .product-section .product-columns {
    display: block;
  }
  #detail.layout-oneclm .product-section .product-columns .product-visual {
    position: static;
    top: auto;
  }
  #detail .detail-two-column-layout {
    display: block;
    margin: 0 0 var(--layout-margin-vertical) 0;
  }
  #detail .detail-two-column-layout > .product-section {
    margin: 0 0 10vw;
  }
  #detail.layout-leftclm .detail-two-column-layout > .product-section.appsIDC,
  #detail.layout-oneclm .detail-two-column-layout > .product-section.appsIDC,
  #detail:not(.layout-oneclm):not(.layout-leftclm) .detail-two-column-layout > .product-section.appsIDC {
    margin-top: clamp(56px, 14vw, 96px);
  }
  #detail.layout-leftclm .detail-two-column-layout > .product-section.appsIDC {
    margin-top: 10vw;
  }
  #detail .detail-two-column-layout > .product-section:last-child {
    margin-bottom: 0;
  }
  #detail .product-section .product-columns {
    display: block;
  }
  #detail .product-section .product-columns .product-visual {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    position: static;
    top: auto;
  }
  #detail .product-section .product-columns .product-info {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    position: static;
    top: auto;
  }
  #detail .product-section .product-columns .product-info {
    width: 100%;
    margin-top: 8vw;
    /* padding: 6vw 5vw; */
    position: static;
    top: auto;
  }
  #detail .product-section .product-columns .product-info .product-description {
    margin-top: 3vw;
  }
  #detail .product-section .product-columns .product-info .price {
    margin-top: 6vw;
  }
 
  #detail .product-section .product-columns .product-info #purchase_form {
    margin-top: 5vw;
  }
  #detail .product-section .product-info .purchaseButton {
    margin-top: 0;
  }
  #detail .product-section .product-info .purchaseButton {
    display: flex;
    flex-direction: column;
    align-self: center;
    margin-top: 18px;
  }
  #detail .product-section .product-info .purchaseButton__btn {
    display: block;
    height: 46px;
    min-height: 46px;
    line-height: 46px;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
  }
}

/* -------------------------------------
  RODUCT Additiona Info Accordion
------------------------------------- */

.product-additional-info {
  margin-top: 26px;
}
.product-additional-info .accordion-item {
  border-top: 1px solid var(--line-color-soft);
}
.product-additional-info .accordion-item:last-child {
  border-bottom: 1px solid var(--line-color-soft);
}
.product-additional-info .accordion-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  list-style: none;
  cursor: pointer;
  padding: 2.1rem 0;
}
.product-additional-info .accordion-summary::-webkit-details-marker {
  display: none;
}
.product-additional-info .accordion-label {
  font-size: var(--font-s);
  font-weight: var(--font-weight-heading-card);
  line-height: 1;
  opacity: 1;
  transition: opacity 0.28s var(--easeOutSine);
}

.product-additional-info .accordion-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-color);
}
.product-additional-info .accordion-icon::before,
.product-additional-info .accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1.5px;
  background: var(--accent-text-color);
  transform: translate(-50%, -50%);
}
.product-additional-info .accordion-icon::after {
  width: 1.5px;
  height: 8px;
  transition: opacity 0.2s ease;
}
.product-additional-info .accordion-item[open] .accordion-icon::after {
  opacity: 0;
}
.product-additional-info .accordion-item[open] .accordion-icon {
  background: var(--line-color-soft);
}
.product-additional-info .accordion-item[open] .accordion-icon::before {
  background: var(--text-color-muted);
}
.product-additional-info .accordion-content {
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  transition: height 0.48s var(--easeInOutSine), opacity 0.32s ease;
}
.product-additional-info .accordion-item[open] .accordion-content {
  opacity: 1;
}
.product-additional-info .accordion-content > * {
  padding-bottom: 3rem;
  font-size: var(--font-s);
  line-height: 1.9;
}
.product-additional-info .accordion-body {
  margin: 0;
}
.product-additional-info .accordion-body > p > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 18px 8px;
}
.product-additional-info .guide-payment {
  display: grid;
  gap: 14px;
}
.product-additional-info .guide-payment > .paymentMethodsLogoTag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-additional-info .guide-payment .paymentMethodsLogoTag__method {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  list-style-type: none;
}
.product-additional-info .guide-payment .paymentMethodsLogoTag__method--bnpl {
  flex: 0 0 100%;
}
.product-additional-info .guide-payment > .paymentMethodsLogoTag > .paymentMethodsLogoTag__method + .paymentMethodsLogoTag__method {
  margin-top: 0;
}
.product-additional-info .guide-payment .paymentMethodsLogoTag__method > p {
  display: none;
  align-items: center;
  min-height: 24px;
  margin: 0;
  padding: 0 12px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--text-color) 10%, transparent);
  color: var(--text-color);
  font-size: var(--font-s);
  line-height: 1;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.product-additional-info .guide-payment .paymentMethodsLogoTag__imgWrapper {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}
.product-additional-info .guide-payment .paymentMethodsLogoTag__img {
  display: block;
  width: auto;
  height: 24px;
  max-width: 100%;
  object-fit: contain;
  box-sizing: content-box;
  padding: 4px 6px;
  border-radius: 4px;
  background: #fff;
}
.product-additional-info .guide-payment .paymentMethodsLogoTag__method--creditcard .paymentMethodsLogoTag__img {
  height: 26px;
  padding-left: 3px;
  padding-right: 3px;
}
.product-additional-info .guide-payment .paymentMethodsLogoTag__method--bnpl .paymentMethodsLogoTag__imgWrapper,
.product-additional-info .guide-payment .paymentMethodsLogoTag__method--creditcard .paymentMethodsLogoTag__imgWrapper,
.product-additional-info .guide-payment .paymentMethodsLogoTag__method--carrier .paymentMethodsLogoTag__imgWrapper {
  gap: 2px;
}
.product-additional-info .guide-payment .paymentMethodsLogoTag__method--bnpl .paymentMethodsLogoTag__img,
.product-additional-info .guide-payment .paymentMethodsLogoTag__method--carrier .paymentMethodsLogoTag__img {
  padding-left: 3px;
  padding-right: 3px;
}

.review01 { margin: 0 !important;}
.review01__title {
  display: none;
}
.review01__tabWrap {
  border: 0 !important;
  padding: 6px 3px 6px 4px !important;
  border-radius: var(--image-radius) !important;
  background: color-mix(in srgb, var(--text-color) 4%, transparent) !important;
}
.review01__tab {
  display: flex !important;
  align-items: center;
  gap: 0 3px;
}
.review01__tab::after {
  display: none !important;
}
.review01__tabChild {
  position: relative;
  height: 35px !important;
  width: 22% !important;
}

.review01__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.review01__tabChild label {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  min-height: 34px;
  padding: 0 0.95em;
  border-radius: 999px;
  color: var(--text-color-muted);
  transition: background-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
  height: 35px !important;
  line-height: 35px !important;
}
.review01__tabIcon {
  width: 20px !important;
  height: 20px !important;
  background-size: 20px !important;
}
.review01__radio + label {
  font-weight: normal !important;
  font-size: var(--font-xs) !important;
  white-space: nowrap;
}
.review01__radio:checked + label {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  box-shadow: 0 1px 0 var(--surface-color-soft), 0 1px 6px var(--surface-color-soft);
}

.review01__count {
  margin-left: 4px !important;
  font-weight: bold;
   font-size: var(--font-s) !important;
}
.review01__list {
  height: auto !important;
  min-height: 0 !important;
  border: 0 !important;
}

.review01__trigger {
  height: 40px !important;
}
.review01__trigger::before {
  width: 8px !important;
  height: 8px !important;
  border-right: 1px solid var(--text-color) !important;
  border-bottom: 1px solid var(--text-color) !important;
}
.is-open .review01__trigger:before {
  top: 20px !important;
}
.product-additional-info .product-description,
.product-additional-info .purchase-guide,
.product-additional-info .reviews,
.product-additional-info .payment-info {
  margin: 0;
}




#detail .product-section .product-columns .product-info .product-sharetools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

#detail .product-section .product-columns .product-info .product-sharebtn {
  display: flex;
  align-items: center;
  gap: 16px;
}

#detail .product-section .product-columns .product-info .product-sharebtn-label {
  margin: 0;
  font-family: var(--font-family-sans);
  font-size: var(--font-size-label);
  letter-spacing: 0.08em;
  color: var(--text-color-muted);
}

#detail .product-section .product-columns .product-info .product-sharebtn-list {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#detail .product-section .product-columns .product-info .product-sharebtn-list a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 30px;
  padding: 0;
  color: var(--text-color);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-label);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
  text-decoration: none;
}

#detail .product-section .product-columns .product-info .product-sharebtn-list .sns-icon {
  width: 20px;
  height: 20px;
  display: block;
}

#detail .product-section .product-columns .product-info .product-sharebtn-list a[aria-label="Share on X"] .sns-icon {
  padding: 4px;
  outline: 1px solid #bbb;
  border-radius: 50%;
  background: #fff;
  filter: invert(1);
}

#detail .product-section .product-columns .product-info .product-sharebtn-list a span {
  transform: translateY(-0.5px);
  white-space: nowrap;
}

#detail .product-section .product-columns .product-info .product-report {
  margin-top: 0;
  text-align: right;
}

#detail .product-section .product-columns .product-info .product-report > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 2em;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text-color) 20%, transparent);
  color: var(--text-color);
  font-size: var(--font-xxs);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
#detail .product-section .product-columns .product-info .product-report > a:hover {
  background: color-mix(in srgb, var(--text-color) 6%, transparent);
  border-color: color-mix(in srgb, var(--text-color) 20%, transparent);
  color: color-mix(in srgb, var(--text-color) 78%, transparent);
}

#detail .product-section .product-columns .product-info .product-report #irContainer {
  position: fixed !important;
  top: 50% !important;
  right: auto !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
}

/* -------------------------------------
   ITEM PRODUCT  AppsIDC
------------------------------------- */

#detail .product-section.appsIDC {
  margin: 0;
  padding: clamp(40px, 6vw, 90px) 0 clamp(56px, 7vw, 110px);
  padding-top: 0;
}
#detail .product-section.appsIDC #appsItemDetailCustom {
  width: min(100%, 1120px);
  margin: 0 auto;
}
#detail .product-section.appsIDC .appsItemDetailCustomTag_heading {
  margin: clamp(20px, 2.4vw, 32px) 0 clamp(12px, 1.5vw, 20px);
  padding-inline: 0;
  font-family: var(--font-family-heading-section);
  font-size: var(--font-l);
  font-weight: var(--font-weight-heading-section, 400);
  line-height: 1.3;
  letter-spacing: 0.03em;
}
#detail .product-section.appsIDC .appsItemDetailCustomTag_image {
  display: block;
  margin: clamp(36px, 5vw, 76px) 0;
  border-radius: var(--image-radius);
}
#detail .product-section.appsIDC.imageFullwidth .appsItemDetailCustomTag_image,
#detail .product-section.appsIDC .appsItemDetailCustomTag_image.imageFullwidth {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  width: 100dvw;
  max-width: none;
}
#detail .product-section.appsIDC.imageAutowidth .appsItemDetailCustomTag_image,
#detail .product-section.appsIDC .appsItemDetailCustomTag_image.imageAutowidth {
  position: static;
  transform: none;
  width: 100%;
  max-width: 100%;
}
#detail .product-section.appsIDC .appsItemDetailCustomTag_description {
  margin: 0 0 clamp(26px, 3vw, 40px);
  padding-inline: 0;
  font-family: var(--font-family);
  font-size: var(--font-size-body);
  opacity: 0.88;
  line-height: 1.95;
  letter-spacing: 0.06em;
}



/* -------------------------------------
   FLOATING CART BOX
------------------------------------- */
.floating-cart-box__price .tax {
  margin-left: 0.2em;
  font-size: var(--font-xs);
  color: inherit;
  opacity: 1;
}
.floating-cart-box__price .sale + .tax {
  color: var(--sale-color);
}
.floating-cart-box__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 0.55em 1em;
  font-size: var(--font-xs);
  line-height: 1;
  letter-spacing: 0.12em;
}
@media (hover: hover) and (pointer: fine) {
  .floating-cart-box__link:hover {
    opacity: 0.85;
  }
}
@media (max-width: 767px) {
  .floating-cart-box {
    background: #fff;
    --floating-mobile-button-width: clamp(140px, 36vw, 190px);
    left: 0;
    right: 0;
    bottom: 0;
    min-width: 0;
    max-width: none;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--floating-mobile-button-width);
    grid-template-areas:
      "name button"
      "price button";
    gap: 6px 12px;
    padding: 10px 12px 10px 20px;
  }
  .floating-cart-box__name {
    grid-area: name;
    max-width: calc(100vw - var(--floating-mobile-button-width) - 28px);
    line-height: 1.3;
  }
  .floating-cart-box__price {
    grid-area: price;
    justify-self: start;
    text-align: left;
    white-space: nowrap;
    line-height: 1.3;
  }
  .floating-cart-box__link {
    grid-area: button; 
    align-self: center;
    width: var(--floating-mobile-button-width);
    min-width: 0;
    height: 100%;
    max-height: 40px;
    min-height: 0;
    padding-inline: 1.2em;
  }
}



/* -------------------------------------
   ITEM SUGGEST SECTION
------------------------------------- */
#detail .suggest-section,
#detail .review-section {
  margin: var(--layout-margin-vertical) 0;
}
#detail .suggest-section .suggest-items h3 {
  margin: 0 0 2.4rem;
  font-family: var(--font-family-heading-section);
  font-size: var(--font-display-s);
  font-weight: var(--font-weight-heading-section, 400);
  line-height: 1.2;
}
#detail .suggest-section #item-pickup-title > span {
  display: none;
}
#detail .review-section .reviews-panel h3 {
  margin: 0 0 2.4rem;
  font-family: var(--font-family-heading-section);
  font-size: var(--font-display-m);
  font-weight: var(--font-weight-heading-section, 400);
  line-height: 1.2;
}
#detail .suggest-section .suggest-items-list {
  display: grid;
  gap: 3vw;
}
#detail .suggest-section .related-items-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
#detail .suggest-section .suggest-item {
  display: block;
  cursor: pointer;
}
#detail .suggest-section .suggest-item-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
#detail .suggest-section .item-pickup-list .suggest-item-link {
  position: relative;
}
#detail .suggest-section .suggest-item-thumb {
  margin: 0;
  position: relative;
  aspect-ratio: var(--catalog-image-aspectratio);
  overflow: hidden;
  border-radius: var(--image-radius);
  cursor: pointer;
}
#detail .suggest-section .suggest-item-thumb img:not(.is-reveal-image) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.55s var(--easeOutQuad);
}
#detail .suggest-section .suggest-item-thumb img.is-reveal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translate3d(0, 14px, 0) scale(1.08);
  transition:
    opacity 920ms ease calc(180ms + var(--reveal-stagger, 0ms)),
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1) calc(180ms + var(--reveal-stagger, 0ms));
}
#detail .suggest-section .suggest-item-thumb img.is-reveal-image.is-visible.is-loaded {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
#detail .suggest-section .suggest-item-body {
  padding: 10px 0 6px;
}
#detail .suggest-section .suggest-item-name {
  margin: 0 0 8px;
  font-family: var(--font-family-heading-card);
  font-size: var(--font-s);
  font-weight: var(--font-weight-heading-card, 400);
  line-height: 1.35;
  letter-spacing: var(--letter-spacing-heading-card, 0.03em);
  color: var(--text-color);
}
#detail .suggest-section .suggest-item-price {
  margin: 0;
  display: flex;
  gap: 6px 8px;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--font-family-sans);
  font-size: var(--font-s);
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: color-mix(in srgb, var(--text-color) 60%, transparent);
}
#detail .suggest-section .suggest-item-price :is(.proper, .sale) {
  display: inline-block;
}
#detail .suggest-section .suggest-item-price :is(.proper, .sale)::first-letter {
  display: inline-block;
  font-size: 0.82em;
  margin-right: 0.08em;
}
#detail .suggest-section .suggest-item-price .sale {
  color: var(--sale-color);
}
#detail .suggest-section .suggest-item-pickup-label {
  position: absolute;
  top: 14px;
  left: -6px;
  z-index: 2;
  margin: 0;
  padding: 8px 13px 8px 15px;
  border-radius: 0 999px 999px 0;
  background: var(--accent-color);
  color: var(--accent-text-color);
  font-family: var(--font-family-sans);
  font-size: var(--font-xs);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
  box-shadow: 0 6px 14px color-mix(in srgb, #000 14%, transparent);
  pointer-events: none;
}
#detail .suggest-section .suggest-item-pickup-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  z-index: -2;
  width: 6px;
  height: 6px;
  background: color-mix(in srgb, var(--accent-color) 70%, #000);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
#detail .suggest-section .suggest-item-price .list {
  display: inline-block;
  color: var(--text-color-muted);
  text-decoration-thickness: 1px;
}
#detail .suggest-section .off {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 0.8em;
  border-radius: 3px;
  background: var(--sale-color);
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: 0.1em;
  }
#detail .suggest-section .item-flow-section {
  position: relative;
}
#detail .suggest-section .item-flow-carousel {
  position: relative;
}
#detail .suggest-section .item-flow-track {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
#detail .suggest-section .item-flow-track::-webkit-scrollbar {
  display: none;
}
#detail .suggest-section .item-flow-list {
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (2 * 18px)) / 3);
}
#detail .suggest-section .item-flow-item {
  min-width: 0;
}
#detail .suggest-section .item-flow-nav {
  position: absolute;
  top: calc(50% - 28px);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-color-soft);
  border-radius: 999px;
  background: #fff;
  color: #333;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0s linear 0.24s, transform 0.24s ease;
}
#detail .suggest-section .item-flow-nav.prev {
  left: 12px;
}
#detail .suggest-section .item-flow-nav.next {
  right: 12px;
}
#detail .suggest-section .item-flow-nav.is-visible {
  opacity: .7;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
#detail .suggest-section .item-flow-nav .material-symbols-outlined {
  font-size: 24px;
  line-height: 1;
}
#detail .suggest-section .item-flow-nav:hover {
  opacity: 0.72;
}
#detail .suggest-section .suggest-item-add {
  display: inline-block;

  text-decoration: none;
  font-size: var(--font-xs);
  letter-spacing: 0.22em;
  line-height: 1;
  padding-bottom: 0.22rem;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  #detail .suggest-section .suggest-item:hover .suggest-item-thumb img:not(.is-reveal-image) {
    transform: scale(1.045);
  }
  #detail .suggest-section .suggest-item:hover .suggest-item-thumb img.is-reveal-image.is-visible.is-loaded {
    transform: translate3d(0, 0, 0) scale(1.045);
  }
}
#detail .product-section .product-info .purchaseButton .communityBox {
  width: 100%;
  margin-left: 0;
}
#detail .product-section .product-info .purchaseButton #communityPurchase {
  margin-top: 12px;
}
#detail .product-section .product-info .purchaseButton #communityPurchase .communityLink {
  margin: 20px 0 10px 0 !important;
}
#detail .product-section .product-info .purchaseButton #communityPurchase .communitySignin {
  margin-top: 20px;
}
#detail .product-section .product-info .purchaseButton #communityPurchase .communitySignin p {
  font-size: var(--font-xs) !important;
  line-height: 1.6 !important;
}
@media (max-width: 1024px) {

  #detail .suggest-section .related-items-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  #detail .suggest-section .item-flow-list {
    grid-auto-columns: calc((100% - (2 * 16px)) / 3);
  }
}
@media (max-width: 599px) {
  #detail .suggest-section .related-items-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  #detail .suggest-section .suggest-item-pickup-label {
    top: 8px;
    left: -4px;
    padding: 5px 8px 5px 9px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 10px color-mix(in srgb, #000 12%, transparent);
  }
  #detail .suggest-section .suggest-item-pickup-label::after {
    bottom: -4px;
    width: 4px;
    height: 4px;
  }
  #detail .suggest-section .item-flow-nav {
    display: none;
  }
  #detail .suggest-section .item-flow-list {
    grid-auto-columns: calc((100% - (2 * 12px)) / 3);
  }
}
#detail .suggest-section .item-pickup-list:has(> .suggest-item:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
#detail .suggest-section .item-pickup-list:has(> .suggest-item:only-child) {
  grid-template-columns: minmax(0, 1fr);
}
#detail .suggest-section .item-pickup-list:has(> .suggest-item:only-child) .suggest-item-thumb {
  aspect-ratio: 16 / 10;
}

/* -------------------------------------
  06. ABOUT
------------------------------------- */
.about-heading-section {
  padding: 0 var(--content-section-horizontal) 0 !important;
}
.about-heading-section .page-heading-title { margin-bottom: 0 !important;}

.about-hero {
  position: relative;
  height: auto;
  max-height: 720px;
  overflow: hidden;
  color: var(--about-hero-text-color, #ffffff);

}
#site > main.about-page > div.about-hero-true.is-full-width .about-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
}
.about-hero-media {
  display: flex;
  align-items: center;
  margin: 0;
  min-width: 0;
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
}

.about-hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.about-hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  box-sizing: border-box;
  padding: 0 var(--layout-margin-horizontal) 3vw;
}


.about-title {
  max-width: 75vw;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
#site > main.about-page > div.about-hero-true .about-title {
  margin-bottom: 0;
  text-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
}

.about-title::before {
  display: none;
}

.home-intro-title {
  font-family: var(--font-family-heading-section);
  font-size: var(--font-l);
  font-weight: var(--font-weight-heading-section);
  line-height: 1.4;
  letter-spacing: var(--letter-spacing-heading-section, 0.02em);
  margin-bottom: 30px;
}

.home-intro-body p {
  font-size: var(--font-s);
  line-height: 1.8;
  letter-spacing: 0.06em;
}
.home-intro-body p + p {
  margin-top: 1.4em;
}
.home-intro-actions {
  margin-top: 40px;
}
.home-intro-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-color);
  font-size: var(--font-s);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-decoration: none;
}
.home-intro-link:link,
.home-intro-link:visited,
.home-intro-link:hover,
.home-intro-link:active {
  color: var(--text-color);
}
.home-intro-link .material-symbols-outlined {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--accent-color);
  color: var(--accent-text-color);
  font-size: 13px;
  line-height: 1;
  transition: transform 0.24s ease;
}
.home-intro-link:hover .material-symbols-outlined {
  transform: translateX(3px);
}

.about-section {
  padding: calc(var(--layout-margin-vertical) * 1) var(--content-section-horizontal) calc(var(--layout-margin-vertical) * 0.5) ;
}
.about-shop-intro {
  padding-top: calc(var(--layout-margin-vertical) * 1);
  padding-bottom: calc(var(--layout-margin-vertical) * 1.5);
}
.about-shop-intro-body {
  max-width: 760px;
}
#site > main.about-page > div.about-hero-true:not(.is-full-width) .about-shop-intro-body {
  margin-left: var(--layout-margin-horizontal);
  margin-right: var(--layout-margin-horizontal);
}
.about-shop-intro-title {
  font-family: var(--font-family-heading-section);
  font-size: var(--font-xl);
  font-weight: var(--font-weight-heading-section, 400);
  line-height: 1.6;
  margin-bottom: 28px;
}
.about-shop-intro-body p {
  font-size: var(--font-s);
  line-height: 1.9;
  letter-spacing: 0.06em;
}
.about-shop-intro-body p + p {
  margin-top: 1.5em;
}
.about-message-section {
  padding-top: calc(var(--layout-margin-vertical) * 0.8);
}
.about-message-list {
  display: grid;
  gap: calc(var(--layout-margin-vertical) * 2);
}
.about-message-item {
  display: grid;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.about-message-item.has-image {
  grid-template-columns: minmax(0, 0.9fr) minmax(290px, 1.1fr);
}
.about-message-item.is-reversed.has-image {
  grid-template-columns: minmax(290px, 1.1fr) minmax(0, 0.9fr);
}
.about-message-item.has-image .about-message-copy {
  grid-column: 1;
  grid-row: 1;
}
.about-message-item.has-image .about-message-image {
  grid-column: 2;
  grid-row: 1;
}
.about-message-item.is-reversed.has-image .about-message-copy {
  grid-column: 2;
  grid-row: 1;
}
.about-message-item.is-reversed.has-image .about-message-image {
  grid-column: 1;
  grid-row: 1;
}
.about-message-copy {
  min-width: 0;
}
.about-message-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-family: var(--font-family-heading-section);
  font-size: var(--font-xl);
  font-weight: var(--font-weight-heading-section, 500);
  line-height: 1;
  letter-spacing: 0.14em;
}
html[data-font-theme="serif"] .about-message-kicker {
  font-size: calc(var(--font-xl) * 0.92);
  font-weight: 400;
  letter-spacing: 0.08em;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
}
.about-message-kicker::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  background: currentColor;
}
.about-message-title {
  font-family: var(--font-family-heading-section);
  font-size: var(--font-l);
  font-weight: var(--font-weight-heading-section, 400);
  line-height: 1.45;
  margin-bottom: 24px;
}
.about-message-body p {
  font-size: var(--font-s);
  line-height: 1.9;
  letter-spacing: 0.06em;
}
.about-message-body p + p {
  margin-top: 1.5em;
}
.about-message-image {
  margin: 0;
  min-width: 0;
}
.about-message-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--image-radius);
}
.about-message-copy,
.about-message-image {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
  transition:
    opacity 0.84s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-message-item[data-hd-reveal] {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}
.about-message-item.is-visible .about-message-copy,
.about-message-item.is-visible .about-message-image {
  opacity: 1;
  transform: none;
  filter: none;
}
.about-message-item.is-visible .about-message-copy {
  transition-delay: 80ms;
}
.about-message-item.is-visible .about-message-image {
  transition-delay: 500ms;
}
.home-intro {
  padding: calc(var(--layout-margin-vertical) * 1) var(--content-section-horizontal) calc(var(--layout-margin-vertical) * 1.5) ;
}
.static-section {
  padding: 0 var(--content-section-horizontal) var(--layout-margin-vertical);
}
.home-intro-grid {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}
.home-intro-grid.has-image {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
}
.home-intro-copy {
  min-width: 0;
}
.home-intro-image {
  margin: 0;
  min-width: 0;
  border-radius: var(--image-radius);
}
.home-intro-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--image-radius);
}
.home-intro-grid .home-intro-title,
.home-intro-grid .home-intro-body,
.home-intro-grid .home-intro-image {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 0.78s ease,
    transform 0.86s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-hd-reveal].is-visible .home-intro-grid .home-intro-title,
[data-hd-reveal].is-visible .home-intro-grid .home-intro-body,
[data-hd-reveal].is-visible .home-intro-grid .home-intro-image {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
[data-hd-reveal].is-visible .home-intro-grid .home-intro-title {
  transition-delay: 80ms;
}
[data-hd-reveal].is-visible .home-intro-grid .home-intro-body {
  transition-delay: 300ms;
}
[data-hd-reveal].is-visible .home-intro-grid .home-intro-image {
  transition-delay: 500ms;
}


.about-history-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(290px, 1.1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
}
.about-history-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  display: grid;
  margin: 50px 0px 0;
  padding: 10px;
  overflow: hidden;
  background: #fcfcfa;
  box-shadow:
    0 5px 10px rgba(19, 14, 7, 0.08),
    0 3px 3px rgba(33, 24, 12, 0.06);
  transform: rotate(1deg);
  box-sizing: border-box;
}
.about-history-visual img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  border-radius: 3px;
}
.about-history-visual div{
  padding: 14px 8px;
  text-align: right;
  opacity: .7;
}
.about-history-visual div .logoText { display: block; font-size: 10px; line-height: 1.2 !important;}
.about-history-visual div .logoImage { max-height: 20px; width: auto; display: inline-block;}
.about-history-panel {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  gap: 16px;
  align-content: start;
  padding: clamp(26px, 3.4vw, 40px) 0vw;
  border-radius: var(--image-radius);
}


.about-history-list {
  position: relative;
  display: grid;
  gap: 36px;
  padding-left: 74px;
}
.about-history-list::before {
  content: "";
  position: absolute;
  top: 0.58em;
  bottom: -28px;
  left: 30px;
  width: 3px;
  background: linear-gradient(to bottom, var(--line-color-soft) 0%, var(--line-color-soft) calc(100% - 32px), transparent 100%);
}
.about-history-item {
  position: relative;
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, 12px, 0);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-hd-reveal].is-visible .about-history-item {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}
[data-hd-reveal].is-visible .about-history-item:nth-child(1) {
  transition-delay: 0.18s;
}
[data-hd-reveal].is-visible .about-history-item:nth-child(2) {
  transition-delay: 0.34s;
}
[data-hd-reveal].is-visible .about-history-item:nth-child(3) {
  transition-delay: 0.5s;
}
[data-hd-reveal].is-visible .about-history-item:nth-child(4) {
  transition-delay: 0.66s;
}
[data-hd-reveal].is-visible .about-history-item:nth-child(5) {
  transition-delay: 0.82s;
}
[data-hd-reveal].is-visible .about-history-item:nth-child(6) {
  transition-delay: 0.98s;
}
.about-history-item::before {
  content: "";
  position: absolute;
  top: calc((var(--font-m) * 1.35 - 17px) / 2);
  left: -50px;
  width: 15px;
  height: 15px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  background: var(--bg-color);
  box-sizing: border-box;
}
.about-history-item:last-child::before {
  background: var(--accent-color);
  border: 0;
  animation: about-history-current-pulse 3.2s ease-in-out infinite;
}

@keyframes about-history-current-pulse {
  0%,
  100% {
    background: color-mix(in srgb, var(--accent-color) 42%, var(--bg-color));
  }
  50% {
    background: var(--accent-color);
  }
}

.about-history-text {
  margin: 0;
  font-size: var(--font-s);
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.about-history-text > span {
  display: block;
  margin-bottom: 10px;
  font-size: var(--font-m);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
  color: var(--text-color-muted);
  opacity: 1;
}

.about-visit {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
}
.about-visit-copy {
  display: grid;
  align-content: start;
  max-width: 62ch;
}

.about-visit-copy p {
  font-size: var(--font-s);
  line-height: 2;
  letter-spacing: 0.06em;
} 

.about-gmap {
  display: block;
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--image-radius);
}
.about-gmap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--image-radius);
}

.about-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.about-payment-body {
  display: grid;
  gap: 20px;
}
.about-payment-lead {
  margin: 0;
  font-size: var(--font-s);
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--text-color);
}
.base-payment-tag {
  --base-payment-logo-box-height: 46px;
  width: 100%;
}
.base-payment-tag .paymentMethodsLogoTag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  margin: 0;
  padding: 22px 26px;
  list-style: none;
  border-radius: var(--image-radius);
  border: 1px solid var(--line-color-soft);
  background: var(--surface-color-soft);
}
.base-payment-tag .paymentMethodsLogoTag__method {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  list-style-type: none;
}
.base-payment-tag .paymentMethodsLogoTag__method--bnpl {
  flex: 0 0 100%;
}
.base-payment-tag .paymentMethodsLogoTag > .paymentMethodsLogoTag__method + .paymentMethodsLogoTag__method {
  margin-top: 0;
}
.base-payment-tag .paymentMethodsLogoTag__method > p {
  display: none;
}
.base-payment-tag .paymentMethodsLogoTag__imgWrapper {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.base-payment-tag .paymentMethodsLogoTag__img {
  display: block;
  width: auto;
  max-width: min(100%, 210px);
  height: 32px;
  object-fit: contain;
  box-sizing: content-box;
  padding: calc((var(--base-payment-logo-box-height) - 32px) / 2) 17px;
  border-radius: 4px;
  background: #fff;
}
.base-payment-tag .paymentMethodsLogoTag__method--bnpl,
.base-payment-tag .paymentMethodsLogoTag__method--creditcard,
.base-payment-tag .paymentMethodsLogoTag__method--carrier {
  grid-column: auto;
}

.base-payment-tag .paymentMethodsLogoTag__method--bnpl .paymentMethodsLogoTag__img {
  max-width: none;
  height: 31px;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: calc((var(--base-payment-logo-box-height) - 31px) / 2);
  padding-bottom: calc((var(--base-payment-logo-box-height) - 31px) / 2);
}
.base-payment-tag .paymentMethodsLogoTag__method--creditcard .paymentMethodsLogoTag__img,
.base-payment-tag .paymentMethodsLogoTag__method--carrier .paymentMethodsLogoTag__img {
  height: 36px;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: calc((var(--base-payment-logo-box-height) - 36px) / 2);
  padding-bottom: calc((var(--base-payment-logo-box-height) - 36px) / 2);
}
.base-payment-tag .paymentMethodsLogoTag__method--creditcard .paymentMethodsLogoTag__img {
  padding-left: 3px;
  padding-right: 3px;
}
.about-guide-card,
.about-faq-item {
  padding: clamp(22px, 3vw, 30px);
  border-radius: var(--image-radius);
  border: 1px solid var(--line-color-soft);
  background: var(--surface-color-soft);
}
.about-guide-card h3,
.about-faq-item h3 {
  font-size: var(--font-m);
  color: var(--text-color);
  font-weight: 500;
  letter-spacing: 0.05em;
  
}
.about-guide-card p,
.about-faq-item p {
  margin-top: 10px;
  font-size: var(--font-s);
  line-height: 1.95;
  letter-spacing: 0.06em;
  color: var(--text-color);
}
.about-faq-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}
.about-faq-item {
  display: grid;
  gap: 18px;
  padding: 30px;
}
.about-faq-item h3,
.about-faq-item p {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 0px;
  align-items: start;
}
.about-faq-item h3 {
  margin: 0;
  font-size: var(--font-m);
  line-height: 1.65;
}
.about-faq-item p {
  margin: 0;
  color: var(--text-color-muted);
}
.about-faq-item h3::before,
.about-faq-item p::before {
  position: relative;
  display: inline-grid;
  align-items: start;
  justify-content: start;
  width: 34px;

  border-radius: 0;
  font-family: var(--font-family-heading-section);
  font-size: var(--font-l);
  font-weight: var(--font-weight-heading-section, 500);
  line-height: 1.3;
  letter-spacing: 0;
  box-sizing: border-box;
}
.about-faq-item h3::before {
  content: "Q";
  color: var(--accent-color);
}
.about-faq-item p::before {
  content: "A";
  color: var(--line-color-soft );
}
.about-faq-item p::after {
  content: none;
}
.about-page .content-main > .about-section:last-child {
  padding-bottom: var(--layout-margin-vertical);
}
.about-page .newsletter-signup {
  margin-top: var(--layout-margin-vertical);
}
@media (max-width: 767px) {
  .about-history-grid,
  .about-visit,
  .static-page-layout,
  .about-guide-grid,
  .about-faq-list {
    grid-template-columns: 1fr;
  }
  .home-intro-grid.has-image {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .home-intro-copy {
    order: 2;
  }
  .home-intro-image {
    order: 1;
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }
  .home-intro-image img {
    height: 100%;
    object-fit: cover;
  }
  .about-message-item,
  .about-message-item.has-image,
  .about-message-item.is-reversed,
  .about-message-item.is-reversed.has-image {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-message-copy,
  .about-message-item.has-image .about-message-copy,
  .about-message-item.is-reversed .about-message-copy,
  .about-message-item.is-reversed.has-image .about-message-copy {
    grid-column: auto;
    grid-row: auto;
    order: 2;
  }
  .about-message-image,
  .about-message-item.has-image .about-message-image,
  .about-message-item.is-reversed .about-message-image,
  .about-message-item.is-reversed.has-image .about-message-image {
    grid-column: auto;
    grid-row: auto;
    order: 1;
  }
  .about-history-visual {
    grid-column: auto;
    grid-row: auto;
    order: 2;
    transform: rotate(-0.4deg);
    max-width: 70vw;
    margin: 0 auto;
  }
  .about-history-panel {
    grid-column: auto;
    grid-row: auto;
    order: 1;
  }

  .base-payment-tag .paymentMethodsLogoTag {
    gap: 6px 10px;
    padding: 20px 15px;
    overflow-x: hidden;
  }
  .base-payment-tag .paymentMethodsLogoTag__method {
    max-width: 100%;
  }
  .base-payment-tag .paymentMethodsLogoTag__imgWrapper {
    flex-wrap: wrap;
    max-width: 100%;
  }
  .base-payment-tag .paymentMethodsLogoTag__img {
    height: 29px;
    padding: calc((var(--base-payment-logo-box-height) - 29px) / 2) 14px;
  }
  .base-payment-tag .paymentMethodsLogoTag__method--bnpl .paymentMethodsLogoTag__img {
    padding-left: 7px;
    padding-right: 7px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .base-payment-tag .paymentMethodsLogoTag__method--bnpl .paymentMethodsLogoTag__imgWrapper {
    gap: 6px;
  }
  .base-payment-tag .paymentMethodsLogoTag__method--creditcard .paymentMethodsLogoTag__img,
  .base-payment-tag .paymentMethodsLogoTag__method--carrier .paymentMethodsLogoTag__img {
    height: 32px;
    padding-left: 7px;
    padding-right: 7px;
    padding-top: calc((var(--base-payment-logo-box-height) - 32px) / 2);
    padding-bottom: calc((var(--base-payment-logo-box-height) - 32px) / 2);
  }
  .base-payment-tag .paymentMethodsLogoTag__method--creditcard .paymentMethodsLogoTag__img {
    padding-left: 3px;
    padding-right: 3px;
  }
}

@media (max-width: 480px) {

  .about-history-list {
    gap: 28px;
    padding-left: 48px;
  }
  .about-history-list::before {
    left: 14px;
  }
  .about-history-item::before {
    left: -40px;
  }
}

@media (max-width: 599px) {
  .home-collection-list-section {
    padding-block: var(--layout-margin-vertical);
    padding-inline: var(--content-section-horizontal);
  }
  .home-collection-list,
  .home-collection-list.pc-cols-2,
  .home-collection-list.pc-cols-3,
  .home-collection-list.pc-cols-4,
  .home-collection-list.tb-cols-2,
  .home-collection-list.tb-cols-3,
  .home-collection-list.tb-cols-4,
  .home-collection-list.sp-cols-1,
  .home-collection-list.sp-cols-2,
  .home-collection-list.sp-cols-3 {
    --home-collection-gap: 14px;
  }
  .home-collection-list.sp-cols-1 .home-collection-item {
    flex-basis: 100%;
  }
  .home-collection-list.sp-cols-2 .home-collection-item {
    flex-basis: calc((100% - var(--home-collection-gap)) / 2);
  }
  .home-collection-list.sp-cols-3 .home-collection-item {
    flex-basis: calc((100% - var(--home-collection-gap) - var(--home-collection-gap)) / 3);
  }
  /* .home-collection-media {
    aspect-ratio: 1 / 1;
  } */
  .home-collection-label {
    font-size: var(--font-s);
  }
  .home-collection-list.label-below .home-collection-card {
    gap: 8px;
  }
  .home-collection-list.label-badge .home-collection-label {
    font-size: var(--font-xs);
  }
}



/* -------------------------------------
  07. STATIC PAGES
------------------------------------- */
.static-page-layout {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;

}
.static-body {z-index: 1;}
.static-body p {
  margin-top: 0;
  font-size: var(--font-s);
  line-height: 2;
  letter-spacing: 0.06em;
}
.static-body p + p,
.static-body > * + * {
  margin-top: 1.4em;
}
.privacy-page .static-page-layout,
.law-page .static-page-layout {
  max-width: 800px;
  margin: var(--layout-margin-vertical) auto;
  font-size: var(--font-s);
  line-height: 2;
  letter-spacing: 0.04em;
}
.privacy-page .static-body h2,
.privacy-page .static-body h3,
.privacy-page .static-body h4,
.law-page .static-body h2,
.law-page .static-body h3,
.law-page .static-body h4 {
  font-family: var(--font-family-heading-section);
  font-size: var(--font-m);
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: var(--font-weight-heading-section, 500);
  margin: 30px 0 10px 0;
}
.privacy-page .static-body p,
.privacy-page .static-body li,
.law-page .static-body p,
.law-page .static-body li {
  font-size: var(--font-s);
  line-height: 2;
  letter-spacing: 0.04em;
  padding-left: 1.5em;
}
.privacy-page .static-body ul,
.privacy-page .static-body ol,
.law-page .static-body ul,
.law-page .static-body ol {
  padding-left: 1.5em;
}
.privacy-page .static-body > * + *,
.law-page .static-body > * + * {
  margin-top: 2.2em;
}
.privacy-page .static-body p + p,
.privacy-page .static-body li,
.law-page .static-body p + p,
.law-page .static-body li {
  margin-top: 0.5em;
}
.privacy-page .static-body dt,
.law-page .static-body dt {
  margin-top: 2.2em;
  font-family: var(--font-family-heading-section);
  font-size: var(--font-m);
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: var(--font-weight-heading-section, 500);
}
.privacy-page .static-body dd,
.law-page .static-body dd {
  margin-top: 0.8em;
  padding-left: 1.5em;
}
.privacy-page .static-body dd + dt,
.law-page .static-body dd + dt {
  margin-top: 2.6em;
}
.privacy-page .static-body dd > ul,
.law-page .static-body dd > ul,
.privacy-page .static-body dd > ol,
.law-page .static-body dd > ol,
.privacy-page .static-body dd > ul li,
.law-page .static-body dd > ul li,
.privacy-page .static-body dd > ol li,
.law-page .static-body dd > ol li {
  padding-left: 0;
}
.telnumValid__txt {
  color: #333;
}
.not-shop-public-body {
  margin-top: 0;
}
.not-shop-public-message {
  margin: 0;
  text-align: center;
  font-size: var(--font-s);
  font-family: var(--font-family-heading-section);
  line-height: 1.9;
  letter-spacing: 0.05em;
}
.static-body .main {
  width: 100%;
}
.static-body .inquirySection {
  position: relative;
  border: 1px solid currentColor;
  border: 3px solid color-mix(in srgb, currentColor 10%, transparent);

  padding: 40px;
  border-radius: var(--image-radius);
  overflow: hidden;
}
html.has-no-bgcolor .static-body .inquirySection {
  background: #fff;
  color: #333;
}


.static-body .inquirySection::before,
.static-body .inquirySection::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  width: 40px;
  height: 40px;
  z-index: 1;
}
.static-body .inquirySection::before {
  background: color-mix(in srgb, currentColor 6%, transparent);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.static-body .inquirySection::after {
  background: color-mix(in srgb, currentColor 30%, transparent);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
 
}


.static-body .inquirySection > h1 {
  text-transform:capitalize;
  margin-bottom: 50px;
}
.static-body .inquirySection > p {
  margin-top: 0;
  max-width: 44em;
}
.static-body .inquirySection > form {
  margin-top: 28px;
}
.static-body .inquirySection > form > dl {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  column-gap: clamp(20px, 4vw, 48px);
  row-gap: 18px;
  align-items: start;
}
.static-body .inquirySection dt {
  margin: 0;
  padding-top: 14px;
  font-size: var(--font-s);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: bold;
}
.static-body #inquiryConfirmSection.inquirySection dt {padding-top: 0;}

.static-body .inquirySection dt span {
  display: inline-block;
  margin-left: 0.6em;
  color: rgb(232, 63, 63);
  font-size: 0.9em;
  letter-spacing: 0.06em;
  text-transform: none;
}
.static-body .inquirySection dd {
  margin: 0;
}
.static-body .inquirySection dd.error {
  grid-column: 2;
  margin-top: -8px;
  color: var(--sale-color);
  font-size: var(--font-xs);
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.static-body .inquirySection :is(input[type="text"], input[type="email"], input[type="tel"], textarea) {
  width: 100%;
  min-height: 56px;
  padding: 16px 18px;
  border: 1px solid color-mix(in srgb, currentColor 16%, transparent);
  border-radius: 4px;
  background: color-mix(in srgb, currentColor 5%, transparent);
  color: inherit;
  font: inherit;
  font-size: var(--font-s);
  line-height: 1.6;
  letter-spacing: 0.04em;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}
.static-body .inquirySection textarea {
  min-height: 320px;
  resize: vertical;
}
.static-body .inquirySection :is(input[type="text"], input[type="email"], input[type="tel"], textarea):focus {
  outline: none;
  border-color: color-mix(in srgb, currentColor 30%, transparent);
  background: var(--bg-color);
}
.static-body .inquirySection :is(input[type="text"], input[type="email"], input[type="tel"], textarea)::placeholder {
  color: color-mix(in srgb, currentColor 48%, transparent);
}
.static-body .inquirySection .control-panel {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.static-body .inquirySection #buttonLeave {
  min-width: 260px;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--accent-color);
  color: var(--accent-text-color);
  font-family: var(--font-family-sans);
  font-size: var(--font-s);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.24s ease, transform 0.24s ease;
  appearance: none;
  -webkit-appearance: none;
}
.static-body .inquirySection #buttonLeave:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.static-body .inquirySection .clear {
  display: none;
}




@media (max-width: 767px) {
  
  .static-body .inquirySection::before,
  .static-body .inquirySection::after {
    width: 30px;
    height: 30px;
  }
  .static-body .inquirySection {
    padding: 30px 20px;
  }
  .static-body .inquirySection > form > dl {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
  .static-body .inquirySection dt {
    padding-top: 0;
  }
  .static-body .inquirySection dd.error {
    grid-column: auto;
    margin-top: -2px;
    margin-bottom: 8px;
  }
  .static-body .inquirySection :is(input[type="text"], input[type="email"], input[type="tel"], textarea) {
    font-size: 16px;
  }
  .static-body .inquirySection :is(input[type="text"], input[type="email"], input[type="tel"], textarea)::placeholder {
    font-size: var(--font-xs);
  }
  .static-body .inquirySection #buttonLeave {
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 767px) {
  .about-hero-inner {

    padding-bottom: 36px;
  }
  .about-lead {
    margin-top: 18px;
  }
  .about-gmap {
    min-height: 220px;
  }
}
