@charset "UTF-8";
.sp {
  display: none;
}

html {
  scroll-behavior: smooth;
}

.font-birthstone {
  font-family: "Birthstone", serif;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0;
  }
}
body {
  font-family: YuMincho, "Hiragino Mincho ProN", serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  background-image: url(../images/common_bg.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center top;
}

@media screen and (max-width: 768px) {
  body {
    background-image: none;
  }
}
.italic {
  font-style: italic;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

video {
  width: 100%;
  height: auto;
}

.right {
  text-align: right;
}

.font_s {
  font-size: 12px;
}

sup {
  padding-top: 3px;
  vertical-align: text-top;
  font-size: 9px;
  line-height: 1;
}

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

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
*, ::before, ::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b, strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code, kbd, samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub {
  bottom: -0.25em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg, img, embed, object, iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td {
  vertical-align: top;
  padding: 0;
}

th {
  vertical-align: top;
  padding: 0;
  text-align: left;
  font-weight: bold;
}

.collection_2026_ss .video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .collection_2026_ss .video-background {
    position: relative;
    width: 100%;
    min-height: 100vh;
    z-index: 0;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .collection_2026_ss .video-background .pc {
    display: none;
  }
}
.collection_2026_ss .video-background__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 768px) {
  .collection_2026_ss .video-background__video {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
    margin: 0 auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
.collection_2026_ss .video-background__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .collection_2026_ss .video-background__overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.collection_2026_ss .video-sound-toggle {
  position: fixed;
  top: 45px;
  left: 10px;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: background 0.2s, -webkit-transform 0.2s;
  transition: background 0.2s, -webkit-transform 0.2s;
  transition: background 0.2s, transform 0.2s;
  transition: background 0.2s, transform 0.2s, -webkit-transform 0.2s;
}
.collection_2026_ss .video-sound-toggle:hover {
  background: rgba(0, 0, 0, 0.8);
}
.collection_2026_ss .video-sound-toggle:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
.collection_2026_ss .video-sound-toggle .video-sound-toggle__icon {
  font-size: 1.2em;
}
.collection_2026_ss .sp-hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 16;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  cursor: pointer;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.collection_2026_ss .sp-hamburger:hover {
  background: rgba(0, 0, 0, 0.8);
}
.collection_2026_ss .sp-hamburger__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
.is-sp-menu-open .collection_2026_ss .sp-hamburger__bar:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.is-sp-menu-open .collection_2026_ss .sp-hamburger__bar:nth-child(2) {
  opacity: 0;
}
.is-sp-menu-open .collection_2026_ss .sp-hamburger__bar:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}
.collection_2026_ss .sp-menu {
  position: fixed;
  inset: 0;
  z-index: 15;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.3s, opacity 0.3s;
  transition: visibility 0.3s, opacity 0.3s;
}
.collection_2026_ss .sp-menu.is-open {
  visibility: visible;
  opacity: 1;
}
.collection_2026_ss .sp-menu.is-open .sp-menu__panel {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.collection_2026_ss .sp-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.collection_2026_ss .sp-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .collection_2026_ss .sp-menu__panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.collection_2026_ss .sp-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .collection_2026_ss .sp-menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 24px;
    padding: 48px 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
}
.collection_2026_ss .sp-menu__item {
  width: 80%;
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .collection_2026_ss .sp-menu__item:first-child {
    margin-top: 80px;
  }
}
@media screen and (min-width: 768px) {
  .collection_2026_ss .sp-menu__item {
    width: auto;
    margin: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 200px;
            flex: 1 1 200px;
    max-width: 280px;
  }
}
.collection_2026_ss .sp-menu__panel .category {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  display: block;
  width: 100%;
  position: relative;
}
.collection_2026_ss .sp-menu__panel .category a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.collection_2026_ss .sp-menu__panel .category .category__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 768px) {
  .collection_2026_ss .sp-menu__panel .category .category__title {
    bottom: 5%;
  }
  .collection_2026_ss .sp-menu__panel .category .category__image {
    top: 5.5%;
    width: 92%;
  }
}
.collection_2026_ss .scroll-spacer {
  min-height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .collection_2026_ss .scroll-spacer {
    display: none;
  }
}
.collection_2026_ss .scroll-prompt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  -webkit-animation: scroll-prompt-fade 1.2s ease-out 0.5s both;
          animation: scroll-prompt-fade 1.2s ease-out 0.5s both;
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.collection_2026_ss .scroll-prompt.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.collection_2026_ss .scroll-prompt__text {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
}
.collection_2026_ss .scroll-prompt__line {
  width: 1px;
  height: 32px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(transparent));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
  border-radius: 1px;
  -webkit-animation: scroll-prompt-line 2s ease-in-out infinite;
          animation: scroll-prompt-line 2s ease-in-out infinite;
}
.collection_2026_ss .scroll-prompt__chevron-wrap {
  display: block;
  -webkit-animation: scroll-prompt-bounce 2s ease-in-out infinite;
          animation: scroll-prompt-bounce 2s ease-in-out infinite;
}
.collection_2026_ss .scroll-prompt__chevron {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.85);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.85);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@-webkit-keyframes scroll-prompt-fade {
  from {
    opacity: 0;
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes scroll-prompt-fade {
  from {
    opacity: 0;
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes scroll-prompt-line {
  0%, 100% {
    opacity: 0.4;
    -webkit-transform: scaleY(0.6);
            transform: scaleY(0.6);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    opacity: 1;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}
@keyframes scroll-prompt-line {
  0%, 100% {
    opacity: 0.4;
    -webkit-transform: scaleY(0.6);
            transform: scaleY(0.6);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    opacity: 1;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}
@-webkit-keyframes scroll-prompt-bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
}
@keyframes scroll-prompt-bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
}
.collection_2026_ss .categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 40px 24px 40px;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .collection_2026_ss .categories {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 24px 0 0;
    gap: 1em;
  }
}
@media screen and (max-width: 768px) {
  .collection_2026_ss .categories {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.collection_2026_ss .categories.categories--carousel {
  display: block;
  max-width: none;
  padding: 40px 0 0px;
}
@media screen and (max-width: 768px) {
  .collection_2026_ss .categories.categories--carousel {
    padding: 24px 0 48px;
  }
}
.collection_2026_ss .categories.categories--carousel .categories__slider {
  width: 100%;
  overflow: hidden;
}
.collection_2026_ss .categories.categories--carousel .categories__slider--infinite .categories__slider-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200%; /* 12枚。1枚 = 25% → 約4枚で画面幅 */
  -webkit-animation: categories-infinite-scroll 50s linear infinite;
          animation: categories-infinite-scroll 50s linear infinite;
}
.collection_2026_ss .categories.categories--carousel .categories__slider .category {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.333%;
          flex: 0 0 8.333%; /* トラックの1/12 = スライダー幅の約25% */
  margin: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .collection_2026_ss .categories.categories--carousel {
    display: none;
  }
}
@-webkit-keyframes categories-infinite-scroll {
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes categories-infinite-scroll {
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.collection_2026_ss .category {
  opacity: 0;
  -webkit-transform: translateY(50px) scale(0.92);
          transform: translateY(50px) scale(0.92);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.collection_2026_ss .category.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}
.collection_2026_ss .category--1 {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.collection_2026_ss .category--2 {
  -webkit-transition-delay: 0.08s;
          transition-delay: 0.08s;
}
.collection_2026_ss .category--3 {
  -webkit-transition-delay: 0.16s;
          transition-delay: 0.16s;
}
.collection_2026_ss .category--4 {
  -webkit-transition-delay: 0.24s;
          transition-delay: 0.24s;
}
.collection_2026_ss .category .category__title {
  font-size: clamp(1rem, 1.5vw, 2.5rem);
  font-weight: bold;
  margin-top: 5px;
  position: absolute;
  bottom: clamp(3%, 3vw, 7%);
  left: 0;
  right: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .collection_2026_ss .category .category__title {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
@media screen and (max-width: 768px) {
  .collection_2026_ss .category .category__title {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .collection_2026_ss .category:hover .category__title,
  .collection_2026_ss .category a:hover .category__title {
    opacity: 1;
  }
}
.collection_2026_ss .category .category__image {
  top: 5.5%;
  left: 0;
  right: 0;
  position: absolute;
  width: 85%;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .collection_2026_ss .category .category__image {
    top: 5.5%;
    width: 91%;
  }
}
.collection_2026_ss .category .category__image img {
  display: block;
  width: 100%;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.collection_2026_ss .category a:hover .category__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.collection_2026_ss .fade-in {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}
.collection_2026_ss .fade-in.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

body:has(.video-background) .container {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (min-width: 768px) {
  body:has(.video-background) .container {
    max-width: none;
  }
}

.category_page .categories {
  margin-top: 40px;
}

.collection_2026_ss__category_page__wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.collection_2026_ss__category_page__wrapper .category_title {
  margin-top: 5%;
}
.collection_2026_ss__category_page__wrapper .category_title h2 {
  text-align: center;
  font-size: 3rem;
}
.collection_2026_ss__category_page__wrapper .style_card__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 6%;
  margin-top: 2%;
}
.collection_2026_ss__category_page__wrapper .style_card__wrapper .style_card {
  border: 1px solid #000;
  padding: 4%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.collection_2026_ss__category_page__wrapper .style_card__wrapper .style_card .style_title h3 {
  text-align: center;
  font-size: 1.3rem;
}
.collection_2026_ss__category_page__wrapper .style_card__wrapper .style_card .pic_slider__wrapper {
  width: 70%;
  margin: 0 auto;
  background-color: #FFF;
}
.collection_2026_ss__category_page__wrapper .style_card__wrapper .style_card .pic_slider__wrapper .pic_slider {
  margin: 2% 0 5%;
  width: 100%;
  overflow: hidden;
}
.collection_2026_ss__category_page__wrapper .style_card__wrapper .style_card .pic_slider__wrapper .pic_slider .pic_slider__item {
  background-color: #FFF;
  padding: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 300px;
}
.collection_2026_ss__category_page__wrapper .style_card__wrapper .style_card .pic_slider__wrapper .pic_slider .pic_slider__item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.collection_2026_ss__category_page__wrapper .style_card__wrapper .style_card .pic_slider__wrapper .pic_slider .pic_slider__item video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.collection_2026_ss__category_page__wrapper .style_card__wrapper .style_card .pic_slider__wrapper .pic_slider .slick-prev,
.collection_2026_ss__category_page__wrapper .style_card__wrapper .style_card .pic_slider__wrapper .pic_slider .slick-next {
  z-index: 10;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.collection_2026_ss__category_page__wrapper .style_card__wrapper .style_card .pic_slider__wrapper .pic_slider .slick-prev:before,
.collection_2026_ss__category_page__wrapper .style_card__wrapper .style_card .pic_slider__wrapper .pic_slider .slick-next:before {
  font-size: 24px;
  color: #000;
  line-height: 30px;
  text-align: center;
}
.collection_2026_ss__category_page__wrapper .style_card__wrapper .style_card .pic_slider__wrapper .pic_slider .slick-prev {
  left: 10px;
}
.collection_2026_ss__category_page__wrapper .style_card__wrapper .style_card .pic_slider__wrapper .pic_slider .slick-next {
  right: 10px;
}
.collection_2026_ss__category_page__wrapper .style_card__wrapper .style_card .pic_slider__wrapper .pic_slider .slick-dots {
  bottom: -30px;
}
.collection_2026_ss__category_page__wrapper .style_card__wrapper .style_card .pic_slider__wrapper .pic_slider .slick-dots li button:before {
  font-size: 12px;
  color: #000;
  opacity: 0.3;
}
.collection_2026_ss__category_page__wrapper .style_card__wrapper .style_card .pic_slider__wrapper .pic_slider .slick-dots li.slick-active button:before {
  opacity: 1;
}
@media (max-width: 768px) {
  .collection_2026_ss__category_page__wrapper .style_card__wrapper .style_card .pic_slider__wrapper .pic_slider {
    margin: 20px 0;
  }
  .collection_2026_ss__category_page__wrapper .style_card__wrapper .style_card .pic_slider__wrapper .pic_slider .slick-next:before {
    font-size: 2rem;
  }
}
.collection_2026_ss__category_page__wrapper .style_card__wrapper .style_card .link_btn {
  margin-top: auto;
  padding-top: 5%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.collection_2026_ss__category_page__wrapper .style_card__wrapper .style_card .link_btn a {
  display: block;
  width: 100%;
  background-color: #000;
  padding: 5% 2%;
  color: #FFF;
  text-align: center;
  font-size: 1rem;
}
.collection_2026_ss__category_page__wrapper .style_card__wrapper .style_card .link_btn a:hover {
  opacity: 0.7;
}
.collection_2026_ss__category_page__wrapper .style_card__wrapper .style_card .link_btn a + a {
  margin-top: 2%;
}
@media (max-width: 768px) {
  .collection_2026_ss__category_page__wrapper .style_card__wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .collection_2026_ss__category_page__wrapper .style_card__wrapper .style_card + .style_card {
    margin-top: 5%;
  }
  .collection_2026_ss__category_page__wrapper .style_card__wrapper .pic_slider__wrapper {
    width: 90% !important;
  }
}/*# sourceMappingURL=2026ss_style.css.map */