@charset "UTF-8";
/***
  The new CSS reset - version 1.7.3 (last updated 7.8.2022)
  GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
  Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
  - The "symbol *" part is to solve Firefox SVG sprite bug
*/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
  - fix for the content editable attribute will work properly.
  - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

*:where(h1, h2, h3, h4, h5, h6) {
  font-weight: inherit;
}

:root {
  --transition-duration: 1.5s;
  --transition-duration-before-load: 0s;
}

.js-fadeInItem {
  opacity: 0;
  transition: opacity var(--transition-duration) ease-out, translate var(--transition-duration) ease-out;
}
.js-fadeInItem.is-active {
  opacity: 1;
}
body:not(.is-loaded) .js-fadeInItem {
  transition-delay: var(--transition-duration-before-load);
}

.js-fadeInDownItem {
  opacity: 0;
  translate: 0 -3rem;
  transition: opacity var(--transition-duration) ease-out, translate var(--transition-duration) ease-out;
}
.js-fadeInDownItem.is-active {
  opacity: 1;
  translate: 0 0;
}
body:not(.is-loaded) .js-fadeInDownItem {
  transition-delay: var(--transition-duration-before-load);
}

.js-fadeInUpItem {
  opacity: 0;
  translate: 0 3rem;
  transition: opacity var(--transition-duration) ease-out, translate var(--transition-duration) ease-out;
}
.js-fadeInUpItem.is-active {
  opacity: 1;
  translate: 0 0;
}
body:not(.is-loaded) .js-fadeInUpItem {
  transition-delay: var(--transition-duration-before-load);
}

.js-fadeInRightItem {
  opacity: 0;
  translate: -3rem 0;
  transition: opacity var(--transition-duration) ease-out, translate var(--transition-duration) ease-out;
}
.js-fadeInRightItem.is-active {
  opacity: 1;
  translate: 0 0;
}
body:not(.is-loaded) .js-fadeInRightItem {
  transition-delay: var(--transition-duration-before-load);
}

.js-fadeInLeftItem {
  opacity: 0;
  translate: 3rem 0;
  transition: opacity var(--transition-duration) ease-out, translate var(--transition-duration) ease-out;
}
.js-fadeInLeftItem.is-active {
  opacity: 1;
  translate: 0 0;
}
body:not(.is-loaded) .js-fadeInLeftItem {
  transition-delay: var(--transition-duration-before-load);
}

.js-fadeInChild {
  opacity: 0;
  transition: opacity var(--transition-duration) ease-out, translate var(--transition-duration) ease-out;
}
.is-active .js-fadeInChild {
  opacity: 1;
}
body:not(.is-loaded) .js-fadeInChild {
  transition-delay: var(--transition-duration-before-load);
}

.js-fadeInUpChild {
  opacity: 0;
  translate: 0 3rem;
  transition: opacity var(--transition-duration) ease-out, translate var(--transition-duration) ease-out;
}
.is-active .js-fadeInUpChild {
  opacity: 1;
  translate: 0 0;
}
body:not(.is-loaded) .js-fadeInUpChild {
  transition-delay: var(--transition-duration-before-load);
}

.js-fadeInDownChild {
  opacity: 0;
  translate: 0 -3rem;
  transition: opacity var(--transition-duration) ease-out, translate var(--transition-duration) ease-out;
}
.is-active .js-fadeInDownChild {
  opacity: 1;
  translate: 0 0;
}
body:not(.is-loaded) .js-fadeInDownChild {
  transition-delay: var(--transition-duration-before-load);
}

.js-fadeInRightChild {
  opacity: 0;
  translate: 3rem 0;
  transition: opacity var(--transition-duration) ease-out, translate var(--transition-duration) ease-out;
}
.is-active .js-fadeInRightChild {
  opacity: 1;
  translate: 0 0;
}
body:not(.is-loaded) .js-fadeInRightChild {
  transition-delay: var(--transition-duration-before-load);
}

.js-fadeInLeftChild {
  opacity: 0;
  translate: -3rem 0;
  transition: opacity var(--transition-duration) ease-out, translate var(--transition-duration) ease-out;
}
.is-active .js-fadeInLeftChild {
  opacity: 1;
  translate: 0 0;
}
body:not(.is-loaded) .js-fadeInLeftChild {
  transition-delay: var(--transition-duration-before-load);
}

.js-fadeInBox.-numbering [class*=js-fadeInChild]:nth-child(1),
.js-fadeInBox.-numbering [class*=js-fadeInUpChild]:nth-child(1) {
  transition-delay: 0.3s;
}
.js-fadeInBox.-numbering [class*=js-fadeInChild]:nth-child(2),
.js-fadeInBox.-numbering [class*=js-fadeInUpChild]:nth-child(2) {
  transition-delay: 0.6s;
}
.js-fadeInBox.-numbering [class*=js-fadeInChild]:nth-child(3),
.js-fadeInBox.-numbering [class*=js-fadeInUpChild]:nth-child(3) {
  transition-delay: 0.9s;
}
.js-fadeInBox.-numbering [class*=js-fadeInChild]:nth-child(4),
.js-fadeInBox.-numbering [class*=js-fadeInUpChild]:nth-child(4) {
  transition-delay: 1.2s;
}
.js-fadeInBox.-numbering [class*=js-fadeInChild]:nth-child(5),
.js-fadeInBox.-numbering [class*=js-fadeInUpChild]:nth-child(5) {
  transition-delay: 1.5s;
}
.js-fadeInBox.-numbering [class*=js-fadeInChild]:nth-child(6),
.js-fadeInBox.-numbering [class*=js-fadeInUpChild]:nth-child(6) {
  transition-delay: 1.8s;
}
.js-fadeInBox.-numbering [class*=js-fadeInChild]:nth-child(7),
.js-fadeInBox.-numbering [class*=js-fadeInUpChild]:nth-child(7) {
  transition-delay: 2.1s;
}
.js-fadeInBox.-numbering [class*=js-fadeInChild]:nth-child(8),
.js-fadeInBox.-numbering [class*=js-fadeInUpChild]:nth-child(8) {
  transition-delay: 2.4s;
}
.js-fadeInBox.-numbering [class*=js-fadeInChild]:nth-child(9),
.js-fadeInBox.-numbering [class*=js-fadeInUpChild]:nth-child(9) {
  transition-delay: 2.7s;
}
.js-fadeInBox.-numbering [class*=js-fadeInChild]:nth-child(10),
.js-fadeInBox.-numbering [class*=js-fadeInUpChild]:nth-child(10) {
  transition-delay: 3s;
}

.-delay1 {
  transition-delay: 0.3s !important;
}

.-delay2 {
  transition-delay: 0.6s !important;
}

.-delay3 {
  transition-delay: 0.9s !important;
}

.-delay4 {
  transition-delay: 1.2s !important;
}

.-delay5 {
  transition-delay: 1.5s !important;
}

.-delay6 {
  transition-delay: 1.8s !important;
}

.-delay7 {
  transition-delay: 2.1s !important;
}

.-delay8 {
  transition-delay: 2.4s !important;
}

.-delay9 {
  transition-delay: 2.7s !important;
}

.-delay10 {
  transition-delay: 3s !important;
}

html {
  font-size: 0.78125vw;
}
@media screen and (max-width: 959px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  color: #301400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 2;
  background: linear-gradient(160.62deg, #5C3511 0%, #936031 100%);
  background-attachment: fixed;
}
body.is-fixed {
  overflow-y: hidden;
}

img,
svg {
  display: block;
  width: 100%;
  height: auto;
}

.c-svg-sprite {
  display: none;
}

a,
button {
  cursor: pointer;
}

.l-content {
  position: relative;
}

.l-wrapper__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 37.5rem 1fr;
}
@media screen and (max-width: 959px) {
  .l-wrapper__grid {
    padding-left: 5rem;
    grid-template-columns: 37.5rem 1fr;
  }
}
@media screen and (max-width: 768px) {
  .l-wrapper__grid {
    padding-left: 0;
    grid-template-columns: 100%;
  }
}

.l-inner {
  max-width: 32rem;
  margin-inline: auto;
}

.l-side-left {
  font-size: min(0.78125vw, 1.8518518519vh);
}
@media screen and (max-width: 959px) {
  .l-side-left {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-side-left {
    display: none;
  }
}

.l-side-left__inner {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-content: center;
  gap: 3rem;
}

.l-main {
  position: relative;
  background-color: #E7BA91;
  overflow-x: clip;
}
:where(.l-main > *) {
  position: relative;
  background-color: #FFFDFB;
}

.l-side-menu {
  font-size: min(0.78125vw, 1.8518518519vh);
}
@media screen and (max-width: 959px) {
  .l-side-menu {
    font-size: min(1.1111111111vw, 1.8518518519vh);
  }
}
@media screen and (max-width: 768px) {
  .l-side-menu {
    display: none;
  }
}

.c-mincho-text {
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.83;
  letter-spacing: 0.02em;
}

.c-more-button {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 30rem;
  height: 3.6rem;
  margin-inline: auto;
  margin-top: 1.4rem;
  font-size: 1.6rem;
  line-height: 1;
  background-color: #301400;
  color: #FFFDFB;
  transition: 0.3s ease-out background-color;
}
.c-more-button .c-icon {
  width: 0.6rem;
  height: 1.5rem;
  fill: #FFFDFB;
}

a.c-more-button:hover {
  background-color: rgba(48, 20, 0, 0.8);
}

.c-item-card {
  position: relative;
  display: block;
}
.c-item-card:has(.c-item-status), .c-item-card.-soldout {
  pointer-events: none;
}
.c-item-card:hover .c-item-card__image::before {
  opacity: 1;
}
.c-item-card::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0.8rem;
  height: 0.8rem;
  margin-top: 0.3rem;
  background: currentColor;
  opacity: 0.5;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.c-item-card__image {
  position: relative;
  aspect-ratio: 1/1;
  margin-bottom: 1.2rem;
  background-color: #FFFDFB;
}
.c-item-card__image::before {
  content: "VIEW MORE";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #FFFDFB;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.2rem;
  opacity: 0;
  z-index: 1;
  transition: 0.3s ease-out opacity;
}
.c-item-card.-soldout .c-item-card__image::before {
  content: "SOLD OUT";
  color: #FFFDFB;
  font-size: 1.8rem;
  letter-spacing: 0.03rem;
  font-weight: 400;
  background: rgba(146, 146, 146, 0.6) !important;
  opacity: 1;
}

.c-item-card__image-tag {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  font-size: 1rem;
  line-height: 1;
  padding: 0.2rem 0.7rem;
  background: rgba(255, 253, 251, 0.8);
  z-index: 0;
}

.c-item-more,
.c-item-status {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  width: -moz-max-content;
  width: max-content;
  line-height: 1;
  margin: 1.2rem 0 1.2rem;
}

.c-item-more {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
}
.c-item-more .c-icon {
  width: 0.8rem;
  height: 1rem;
}

.c-item-info {
  font-family: "Noto Sans JP", sans-serif;
}

.c-item-series {
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

.c-item-name {
  font-size: 1.07rem;
  white-space: nowrap;
  letter-spacing: 0.1rem;
  line-height: 1.2;
}

.c-item-color {
  display: flex;
  gap: 0.4rem;
  margin-top: 1.2rem;
  padding-left: 0.2rem;
}

.c-item-color__item {
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  overflow: hidden;
}
.c-item-color__item span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
}

.c-item-price {
  font-family: "Oxygen", sans-serif;
  margin-top: 1.6rem;
  font-size: 1.2rem;
  line-height: 1;
}
.c-item-price span {
  display: inline-block;
  font-size: 1.6rem;
  margin-inline: 0.3rem 0.2rem;
}

.c-item-info-flex {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.6rem;
}
.c-item-info-flex .c-item-info {
  padding-bottom: 0.2rem;
  text-align: left;
}
.c-item-info-flex .c-item-price {
  margin-top: 0;
  text-align: right;
}

.c-leather-card {
  position: relative;
  display: block;
}
.c-leather-card:hover .c-leather-card__image::before {
  opacity: 1;
}

.c-leather-card__image {
  position: relative;
  aspect-ratio: 30/16;
}
.c-leather-card__image::before {
  content: "VIEW MORE";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #FFFDFB;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.2rem;
  opacity: 0;
  z-index: 1;
  background: rgba(48, 20, 0, 0.3);
  transition: 0.3s ease-out opacity;
}

.c-leather-name {
  margin-top: 1.8rem;
  line-height: 1;
}
.c-leather-name .-jp {
  font-size: 1.2rem;
}
.c-leather-name .-en {
  margin-top: 0.8rem;
  font-family: "Oxygen", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.18em;
}

.c-leather-desc {
  margin-top: 2.2rem;
  font-size: 1.15rem;
}

.c-pickup-type-list__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: stretch;
  opacity: 1;
  transition: background-color 0.3s ease-out;
}
.c-pickup-type-list__link:hover {
  background-color: rgba(255, 253, 251, 0.1);
}

.c-pickup-type-list__text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.8em;
  width: 100%;
  line-height: 1;
}
.c-pickup-type-list__text .-en {
  font-family: "Oxygen", sans-serif;
  font-size: 1em;
  letter-spacing: 0.12em;
  opacity: 0.5;
}
.c-pickup-type-list__text .-jp {
  font-size: 1.2em;
}

.c-color-button {
  position: relative;
  display: flex;
  align-items: center;
  height: 4em;
}
.c-color-button.-darkbrown {
  background: linear-gradient(to right, #592D24 84.05%, #4D251D 92.03%, #401D16 100%);
}
.c-color-button.-brown {
  background: linear-gradient(to right, #683728 81.99%, #5A2D1F 90.99%, #4B2317 100%);
}
.c-color-button.-camel {
  background: linear-gradient(to right, #AB4B17 82.4%, #9F4311 91.2%, #923A0B 100%);
}
.c-color-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 253, 251, 0.15);
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

a.c-color-button:hover::before {
  opacity: 1;
}

.c-color-button__text {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-inline: 1em;
  width: 100%;
  line-height: 1;
  color: #FFFDFB;
  transition: background-color 0.3s ease-out;
}
.c-color-button__text .-en {
  font-family: "Oxygen", sans-serif;
  font-size: 1.2em;
  letter-spacing: 0.14em;
}
.c-color-button__text::after {
  content: "";
  display: block;
  align-self: end;
  width: 0.8em;
  height: 0.8em;
  background: currentColor;
  opacity: 0.5;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.p-side-title {
  display: flex;
  justify-content: center;
  width: 28.5em;
}

.p-meinvisual {
  position: sticky;
  top: 0;
}

.p-meinvisual__logo {
  display: none;
}
@media screen and (max-width: 959px) {
  .p-meinvisual__logo {
    display: block;
    width: 15rem;
    margin-bottom: 2.6rem;
  }
}

.p-meinvisual__title {
  position: absolute;
  top: 12.5rem;
  left: 50%;
  width: -moz-max-content;
  width: max-content;
  transform: translateX(-50%);
}
@media screen and (max-width: 959px) {
  .p-meinvisual__title {
    top: 8.47rem;
  }
}

.p-meinvisual__text {
  font-family: "Oxygen", sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.3;
  letter-spacing: 0.2em;
  margin-bottom: 5rem;
}

.p-meinvisual__scroll {
  position: absolute;
  top: 0;
  right: 4.5rem;
  height: calc(100% - 2rem);
  pointer-events: none;
  transition: opacity 0.5s ease-out;
}
.p-meinvisual__scroll.is-hidden {
  opacity: 0;
}

.p-meinvisual__scroll-line {
  position: sticky;
  top: calc(100dvh - 9rem);
  right: 0;
  width: 2px;
  height: 7rem;
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.5);
}

.p-meinvisual__scroll-bar {
  position: absolute;
  top: -2.6rem;
  left: 0;
  width: 100%;
  height: 2.6rem;
  background: #301400;
  border-radius: 2px;
  animation: scrollBarMove 2.5s ease-out infinite;
}

@keyframes scrollBarMove {
  0% {
    top: -2.6rem;
  }
  60% {
    top: 7rem; /* 下に到達 */
  }
  100% {
    top: 7rem; /* 少し止まる */
  }
}
.p-introduction {
  position: relative;
  overflow-x: clip;
  padding: 8rem 0;
  background: linear-gradient(180deg, rgba(241, 214, 187, 0) 0%, #E7BA91 50%);
}

.p-introduction-bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.p-introduction__en-text {
  width: 26.2rem;
  margin-inline: auto;
  margin-bottom: 4rem;
  font-family: "Oxygen", sans-serif;
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.7;
}

.p-introduction__text {
  width: 26.2rem;
  margin-inline: auto;
  line-height: 2.3;
}
.p-introduction__text p + p {
  margin-top: 2rem;
}

.p-present {
  position: relative;
  padding: 0 0 8rem;
  text-align: center;
  background-color: #E7BA91;
}

.p-present-image {
  margin-bottom: 3rem;
}

.p-present-title {
  font-family: "Oxygen", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.p-present-date {
  margin-bottom: 2rem;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.p-present-text {
  margin-bottom: 1rem;
}

.p-present-note {
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  margin-bottom: 3rem;
  border-bottom: 0.5px solid currentColor;
}

.p-pickup-item {
  padding: 8rem 0;
  background: linear-gradient(0deg, rgba(48, 20, 0, 0.3), rgba(48, 20, 0, 0.3)), linear-gradient(180deg, #936031 0%, #5C3511 100%);
  color: #FFFDFB;
}

.p-pickup-item-title {
  font-family: "Oxygen", sans-serif;
  font-size: 3.2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  line-height: 1;
  text-align: center;
  margin-bottom: 3rem;
}

.p-pickup-type-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 6rem;
}
.p-pickup-type-list .c-pickup-type-list__item {
  position: relative;
}
.p-pickup-type-list .c-pickup-type-list__item:nth-child(-n+2)::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: calc(100% - 2px);
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.p-pickup-type-list .c-pickup-type-list__item:nth-child(even)::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 1px;
  height: calc(100% - 2px);
  background: currentColor;
  opacity: 0.5;
}
.p-pickup-type-list .c-pickup-type-list__item:nth-child(1)::before {
  left: 0;
}
.p-pickup-type-list .c-pickup-type-list__item:nth-child(2)::before {
  right: 0;
}
.p-pickup-type-list .c-pickup-type-list__item:nth-child(2)::after {
  top: 0;
}
.p-pickup-type-list .c-pickup-type-list__item:nth-child(4)::after {
  bottom: 0;
}
.p-pickup-type-list .c-pickup-type-list__link {
  height: 8.3rem;
  padding: 0 1.5rem;
}
.p-pickup-type-list .c-pickup-type-list__text {
  gap: 0.8rem;
}
.p-pickup-type-list .c-pickup-type-list__text .-en {
  font-size: 1rem;
}
.p-pickup-type-list .c-pickup-type-list__text .-jp {
  font-size: 1.15rem;
}
.p-pickup-type-list .c-pickup-type-list__text::after {
  content: "";
  display: block;
  align-self: end;
  width: 0.8rem;
  height: 0.8rem;
  margin-top: 0.3rem;
  background: currentColor;
  opacity: 0.5;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.p-pickup-color-list {
  margin-top: 4rem;
}

.c-pickup-color-list__item + .c-pickup-color-list__item {
  margin-top: 1rem;
}

.c-pickup-color-list__link {
  position: relative;
  display: grid;
  grid-template-columns: 37.5% 1fr;
  align-items: center;
  gap: 0;
}
.c-pickup-color-list__link:hover .c-color-button::before {
  opacity: 1;
}

.c-pickup-color-list__image {
  overflow: hidden;
}

.c-pickup-color-list__link .c-color-button {
  height: 100%;
}
.c-pickup-color-list__link .c-color-button__text {
  padding-inline: 2.5rem 2rem;
}
.c-pickup-color-list__link .c-color-button__text .-en {
  font-family: "Oxygen", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.16em;
}
.c-pickup-color-list__link .c-color-button__text::after {
  width: 0.8rem;
  height: 0.8rem;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  margin-top: 6rem;
}
.swiper-pagination.swiper-pagination-lock {
  margin-top: 0;
}
.swiper-pagination .swiper-pagination-bullet {
  position: relative;
  display: block;
  width: 2rem;
  height: 2rem;
  opacity: 1;
  margin: 0 !important;
  border-radius: 0;
  background: transparent;
  transition: all 0.3s ease;
}
.swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(19, 20, 19, 0.4);
}
.swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: #BA9308;
  opacity: 0;
  clip-path: path("M10,0l1.079,7.395,5.992-4.466-4.466,5.992,7.395,1.079-7.395,1.079,4.466,5.992-5.992-4.466-1.079,7.395-1.079-7.395-5.992,4.466,4.466-5.992-7.395-1.079,7.395-1.079L2.929,2.929l5.992,4.466,1.079-7.395Z");
  transition: 0s ease opacity;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  opacity: 0;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  opacity: 1;
}

.p-category-section {
  position: relative;
  overflow-x: clip;
}

.p-category-section.-darkbrown .c-item-card__image::before {
  background: rgba(45, 26, 19, 0.3);
}

.p-category-section.-brown .c-item-card__image::before {
  background: rgba(99, 53, 39, 0.3);
}

.p-category-section.-camel .c-item-card__image::before {
  background: rgba(169, 80, 27, 0.3);
}

.p-category-section__head {
  padding: 8rem 0 0;
  color: #FFFDFB;
}
.-darkbrown .p-category-section__head {
  background: linear-gradient(360deg, #592D24 75.43%, #4D251D 87.71%, #401D16 100%);
}
.-brown .p-category-section__head {
  background: linear-gradient(0deg, #683728 67.13%, #5A2D1F 83.56%, #4B2317 100%);
}
.-camel .p-category-section__head {
  background: linear-gradient(0deg, #AB4B17 70.6%, #9F4311 85.3%, #923A0B 100%);
}

.p-category-section__title {
  font-weight: 300;
  line-height: 1;
}
.p-category-section__title .-en {
  font-family: "Oxygen", sans-serif;
  font-size: 3.2rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.2rem;
}
.p-category-section__title .-jp {
  font-size: 1.2rem;
}

.p-category-section__text {
  margin-top: 2rem;
}

.p-category-section__image {
  margin-top: 5rem;
}

.p-category-lineup {
  padding: 5rem 0 7rem;
  background: #E4D9CE;
}
.p-category-lineup .l-inner {
  max-width: 34rem;
}
.p-category-lineup .swiper-slide {
  padding: 1rem;
}

.p-category-lineup__title {
  position: relative;
  font-family: "Oxygen", sans-serif;
  font-size: 2.4rem;
  margin-bottom: 5rem;
  line-height: 1;
  text-align: center;
}
.p-category-lineup__title::after {
  content: "";
  display: block;
  margin: 1.2rem auto 0;
  width: 5.1rem;
  height: 1px;
  background: currentColor;
}

.p-category-lineup__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.p-category-lineup__link {
  display: block;
}

.p-category-lineup__image {
  overflow: hidden;
}
.p-category-lineup__image img {
  transition: transform 0.3s ease-out;
}

.p-pics-section {
  padding: 8rem 0;
  overflow-x: clip;
}
.p-pics-section + .p-pics-section {
  border-top: 1px solid #301400;
}

.c-pics-section-title {
  text-align: center;
  line-height: 1;
}
.c-pics-section-title .-en {
  font-family: "Oxygen", sans-serif;
  font-size: 3.2rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.2rem;
}
.c-pics-section-title .-jp {
  font-size: 1.2rem;
}

.p-gift-list {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 100%;
  gap: 2rem;
}

.p-gift-list__link {
  display: grid;
  grid-template-columns: 1fr max-content;
  grid-auto-flow: dense;
}
.p-gift-list__link.-reverse {
  grid-template-columns: max-content 1fr;
}
.p-gift-list__link.-reverse .p-gift-list__image {
  grid-column: 2/3;
}
.p-gift-list__link.-reverse .p-gift-list__text {
  grid-column: 1/2;
}
.p-gift-list__link.-reverse .p-gift-list__name::after {
  align-self: end;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.p-gift-list__link:hover .p-gift-list__image::before {
  opacity: 1;
}

.p-gift-list__image {
  position: relative;
}
.p-gift-list__image::before {
  content: "VIEW MORE";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #FFFDFB;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.2rem;
  opacity: 0;
  z-index: 1;
  background: rgba(48, 20, 0, 0.3);
  transition: 0.3s ease-out opacity;
}

.p-gift-list__text {
  display: flex;
  align-items: center;
  width: 5.5rem;
  writing-mode: vertical-rl;
  font-family: "Oxygen", sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: left;
}

.p-gift-list__name {
  display: flex;
}
.p-gift-list__name::after {
  content: "";
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  margin-top: 0.6rem;
  background: currentColor;
  opacity: 0.5;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.p-leather-pics-list {
  width: 31rem;
  margin-top: 5rem;
  margin-inline: auto;
}

.p-leather-pics-list__item {
  padding-inline: 0.5rem;
}

.js-leatherSlider {
  overflow: visible;
}

.p-swiper-fraction-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.p-swiper-fraction-container .swiper-button-prev,
.p-swiper-fraction-container .swiper-button-next {
  position: relative;
  top: initial !important;
  width: max(0.6rem, 6px);
  height: max(1.5rem, 15px);
  margin: 0 !important;
}
.p-swiper-fraction-container .swiper-button-prev::before,
.p-swiper-fraction-container .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350%;
  height: 200%;
}
.p-swiper-fraction-container .swiper-button-prev::after,
.p-swiper-fraction-container .swiper-button-next::after {
  display: none;
}
.p-swiper-fraction-container .swiper-button-prev svg,
.p-swiper-fraction-container .swiper-button-next svg {
  width: max(0.6rem, 6px);
  height: max(1.5rem, 15px);
}
.p-swiper-fraction-container .swiper-button-prev svg {
  rotate: 180deg;
}

.swiper-fraction {
  width: auto;
  font-family: "Oxygen", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
}
.swiper-fraction > span {
  display: inline-block;
  width: 2rem;
  text-align: center;
}

.p-category-pics-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
  width: 28rem;
  margin-top: 5rem;
  margin-inline: auto;
}

.p-category-pics-list__link {
  display: block;
}
.p-category-pics-list__link:hover .p-category-pics-list__image {
  opacity: 0.5;
}

.p-category-pics-list__image {
  aspect-ratio: 1/1;
  width: 100%;
  transition: opacity 0.3s ease-out;
}

.p-category-pics-list__text {
  margin-top: 0.4rem;
  font-size: 1.2rem;
  line-height: 1.2;
  text-align: center;
}

.p-price-pics-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 18rem;
  margin-top: 4rem;
  margin-inline: auto;
}

.p-price-pics-list__link {
  display: grid;
  place-content: center;
  height: 3.6rem;
  padding-top: 0.1rem;
  font-family: "Oxygen", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  border: 1px solid rgba(61, 24, 5, 0.5);
  transition: 0.3s ease-out;
  transition-property: color, background-color;
}
.p-price-pics-list__link:hover {
  color: #FFFDFB;
  background-color: #3D1805;
}
.p-price-pics-list__link span {
  font-size: 1.2rem;
}

.p-link-area {
  padding: 8rem 0;
  color: #FFFDFB;
  background: linear-gradient(0deg, rgba(48, 20, 0, 0.3), rgba(48, 20, 0, 0.3)), linear-gradient(180deg, #936031 0%, #5C3511 100%);
}
.p-link-area .c-more-button {
  background-color: #180600;
}

.p-link-section {
  width: 30rem;
  margin-inline: auto;
  text-align: center;
}
.p-link-section + .p-link-section {
  margin-top: 8rem;
}
.p-link-section a {
  display: block;
}
.p-link-section a:hover .p-link-section__image::after {
  opacity: 1;
}
.p-link-section a:hover .c-more-button {
  background-color: rgba(48, 20, 0, 0.8);
}

.p-link-section__title {
  font-weight: 300;
  margin-bottom: 2rem;
}
.p-link-section__title .-en {
  font-family: "Oxygen", sans-serif;
  font-size: 3.2rem;
  letter-spacing: 0.2em;
  line-height: 1;
}

.p-link-section__text {
  margin-bottom: 4rem;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.p-link-section__image {
  position: relative;
  margin-bottom: 4rem;
}
.p-link-section__image::after {
  content: "VIEW MORE";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #FFFDFB;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.2rem;
  opacity: 0;
  z-index: 1;
  background: rgba(48, 20, 0, 0.5);
  transition: 0.3s ease-out opacity;
}

.s-header {
  position: fixed;
  top: 0;
  width: 37.5rem;
  z-index: 100;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .s-header {
    visibility: visible;
    width: 100%;
  }
}
.s-header .s-menu {
  font-size: 0.703125vw;
}
@media (width < 768px) {
  .s-header .s-menu {
    font-size: 2.4vw;
  }
}

.s-header-button {
  position: absolute;
  top: 2.5rem;
  right: 4rem;
}

.s-header-menu-button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  width: 3.8rem;
  height: 3.5rem;
}
.s-header-menu-button::before, .s-header-menu-button::after,
.s-header-menu-button span {
  content: "";
  display: block;
  width: 3.8rem;
  height: 1px;
  background-color: currentColor;
}

.s-header-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  padding: 1px 0;
  overflow-y: auto;
  color: #FFFDFB;
  background: linear-gradient(160.62deg, #5C3511 0.24%, #936031 100.84%);
  visibility: hidden;
}

.s-header-menu-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.s-header-menu-inner {
  position: relative;
  display: grid;
  place-content: center;
  padding: 7rem 5rem;
  min-height: 100%;
}

.s-header-menu-close {
  cursor: pointer;
  position: absolute;
  top: 2.5rem;
  right: 4rem;
  gap: 0.4rem;
  width: 3.6rem;
  height: 3.5rem;
  z-index: 2;
}
.s-header-menu-close::before, .s-header-menu-close::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.6rem;
  height: 1px;
  background-color: currentColor;
  transform-origin: center;
}
.s-header-menu-close::after {
  transform: translate(-50%, -50%) rotate(15deg);
}
.s-header-menu-close::before {
  transform: translate(-50%, -50%) rotate(-15deg);
}

.s-header-menu .s-menu__list {
  width: 15rem;
  margin-inline: auto;
}
.s-header-menu .s-menu-pickup-type-list {
  margin-top: 2rem;
  width: 15rem;
  margin-inline: auto;
}
.s-header-menu .s-menu-pickup-type-list .c-pickup-type-list__link {
  padding-block: 1.2rem;
}
.s-header-menu .s-menu-color-list {
  width: 15rem;
  margin-inline: auto;
}

.s-footer {
  padding: 6rem 0;
  color: #FFFDFB;
  background-color: #301400;
}
.s-footer a {
  transition: 0.3s ease-out opacity;
}
.s-footer a:hover {
  opacity: 0.5;
}

.s-footer__title {
  width: 9.24rem;
  margin-inline: auto;
  margin-bottom: 2.3rem;
}

.s-footer__sns {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
}
.s-footer__sns .c-icon {
  width: 2.8rem;
  height: 2.8rem;
  fill: #FFFDFB;
}

.s-footer__copyright {
  font-size: 0.96rem;
  line-height: 1;
  text-align: center;
  margin-top: 3rem;
  letter-spacing: 0.12em;
}

.s-menu {
  font-family: "Oxygen", sans-serif;
  font-weight: 300;
}
.l-side-menu .s-menu {
  position: sticky;
  top: 0;
  right: 0;
  display: grid;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: #FFFDFB;
}

.s-menu__list {
  display: flex;
  flex-direction: column;
  gap: 3.5em;
  width: -moz-max-content;
  width: max-content;
}

.s-header .s-menu__link {
  align-items: center;
}

.s-menu__title {
  position: relative;
  font-size: 2em;
  letter-spacing: 0.06em;
  line-height: 1;
  transition: 0.3s ease-out opacity;
}
a.s-menu__link:hover .s-menu__title {
  opacity: 0.5;
}

.s-menu-pickup-type-list {
  display: flex;
  flex-direction: column;
  margin-top: 2em;
  width: 15em;
}
.s-menu-pickup-type-list .c-pickup-type-list__link {
  padding-block: 1.2em;
}
.s-menu-pickup-type-list .c-pickup-type-list__item:not(:first-child) {
  border-top: 1px solid rgba(255, 253, 251, 0.5);
}

.s-menu-color-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 1em;
  width: 15em;
}

@media screen and (min-width: 769px) {
  .u-sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .u-pc {
    display: none;
  }
}