@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: #4C4C4C;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  text-rendering: geometricPrecision;
  letter-spacing: 0;
  line-height: 2;
  background: #FEF8F1;
  background-attachment: fixed;
}

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 {
  width: 30rem;
  margin-inline: auto;
}

.l-side-left {
  font-size: min(0.78125vw, 1.8518518519vh);
  background: #FEF8F1;
}
@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: #fff;
  overflow-x: clip;
}

.l-side-menu {
  padding-left: 9.5rem;
  font-size: min(0.78125vw, 1.8518518519vh);
}
@media screen and (max-width: 959px) {
  .l-side-menu {
    padding-left: 5rem;
    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;
  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: #4C4C4C;
  color: #949B1E;
  transition: 0.3s ease-out background-color;
}
.c-more-button .c-icon {
  width: 0.6rem;
  height: 1.5rem;
  fill: #949B1E;
}

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

.c-section-title {
  text-align: center;
}
.c-section-title .-en {
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 3.8rem;
  line-height: 1.1;
  letter-spacing: 0.2em;
  color: #949B1E;
}
.c-section-title .-jp {
  display: block;
  margin-top: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
}

.c-image-text-block {
  position: relative;
  padding-top: 2.7rem;
}
.c-image-text-block:not(.-reverse) .c-image-text-block__image {
  margin-left: auto;
}
.c-image-text-block:not(.-reverse) .c-image-text-block__text {
  left: 2.2rem;
}
.c-image-text-block.-reverse .c-image-text-block__text {
  right: 2.2rem;
}

.c-image-text-block__image {
  width: 30rem;
}

.c-image-text-block__text {
  position: absolute;
  top: 0;
  writing-mode: vertical-rl;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1.1;
  letter-spacing: 0.2em;
  color: #949B1E;
}

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

.c-pickup-card__image {
  position: relative;
  background-color: #ECECEC;
  overflow: hidden;
  margin-bottom: 2rem;
}
.c-pickup-card__image img {
  aspect-ratio: 20/16;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-pickup-card__image.-blog img {
  aspect-ratio: 600/400;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-pickup-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: #fff;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.2rem;
  opacity: 0;
  z-index: 1;
  background: rgba(148, 155, 30, 0.3);
  transition: 0.3s ease-out opacity;
}

.c-pickup-card__title {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.c-pickup-card__caption {
  margin-top: 1.2rem;
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: justify;
}

.c-pics-section-title {
  display: flex;
  align-items: baseline;
  line-height: 1;
  gap: 0.8rem;
}
.c-pics-section-title .-en {
  position: relative;
  padding-right: 1.6rem;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
}
.c-pics-section-title .-en::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 1px;
  height: 90%;
  background: currentColor;
  rotate: 20deg;
  transform-origin: top right;
}
.c-pics-section-title .-jp {
  font-size: 1.4rem;
  font-weight: 500;
}

.c-pics-section-desc {
  margin-top: 2rem;
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: justify;
}

.c-pics-section-point {
  position: relative;
  margin-top: 2rem;
  padding: 1.5rem 3rem;
  border: 1px solid #ECECEC;
  background: #fff;
  z-index: 2;
}

.c-pics-section-point-top,
.c-pics-section-point-bottom {
  position: absolute;
  left: 0.4rem;
  width: calc(100% - 0.8rem);
  display: flex;
  justify-content: space-between;
}
.c-pics-section-point-top::before, .c-pics-section-point-top::after,
.c-pics-section-point-bottom::before,
.c-pics-section-point-bottom::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: #ECECEC;
}

.c-pics-section-point-top {
  top: 0.4rem;
}
.c-pics-section-point-top::before {
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.c-pics-section-point-top::after {
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.c-pics-section-point-bottom {
  bottom: 0.4rem;
}
.c-pics-section-point-bottom::before {
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}
.c-pics-section-point-bottom::after {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.c-pics-section-point-title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.16em;
  color: #949B1E;
}

.c-pics-section-point-list {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 0.8rem;
}

.c-pics-section-point-list__item {
  position: relative;
  margin-top: 0.8rem;
  padding-left: 0.8rem;
}
.c-pics-section-point-list__item::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0;
  width: max(0.3rem, 3px);
  height: max(0.3rem, 3px);
  background: #949B1E;
  border-radius: 50%;
}

.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__image {
  position: relative;
  aspect-ratio: 1/1;
  margin-bottom: 1.2rem;
  background-color: #ECECEC;
}
.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: #fff;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.2rem;
  opacity: 0;
  z-index: 1;
  background: rgba(148, 155, 30, 0.3);
  transition: 0.3s ease-out opacity;
}
.c-item-card.-soldout .c-item-card__image::before {
  content: "SOLD OUT";
  color: #949B1E;
  font-size: 1.8rem;
  letter-spacing: 0.03rem;
  font-weight: 500;
  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(148, 155, 30, 0.8);
  z-index: 0;
}

.c-item-more,
.c-item-status {
  font-size: 1rem;
  width: -moz-max-content;
  width: max-content;
  line-height: 1;
  margin: 1.2rem 0 1.2rem;
}

.c-item-series {
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #949B1E;
}

.c-item-name {
  min-height: 3.6rem;
  font-size: 1.3rem;
  line-height: 1.3;
}

.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 {
  margin-top: 1.6rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
.c-item-price span {
  display: inline-block;
  margin-inline: 0.2rem;
}
.c-item-price small {
  font-size: 1.2rem;
}

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

.c-pics-card__image {
  position: relative;
}
.c-pics-card__image img {
  aspect-ratio: 130/104;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-pics-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: #fff;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.2rem;
  opacity: 0;
  z-index: 1;
  background: rgba(148, 155, 30, 0.3);
  transition: 0.3s ease-out opacity;
}

.c-pics-card__name {
  margin-top: 0.5rem;
  font-size: 1.4rem;
}

.c-leather-name {
  margin-top: 1.5rem;
  line-height: 1;
  min-height: 4.1rem;
}
.c-leather-name .-jp {
  font-size: 1rem;
}
.c-leather-name .-en {
  margin-top: 0.3rem;
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}

.c-leather-desc {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: 0.06em;
}

.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(148, 155, 30, 0.1);
}

.c-pickup-type-list__text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8em;
  width: 100%;
  line-height: 1;
}
.c-pickup-type-list__text .-en {
  font-family: "Lato", 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(148, 155, 30, 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: #949B1E;
  transition: background-color 0.3s ease-out;
}
.c-color-button__text .-en {
  font-family: "Lato", 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%);
}

.swiper-scrollbar {
  height: max(0.3rem, 3px);
  background: #ECECEC;
  border-radius: 0;
}
.swiper-scrollbar .swiper-scrollbar-drag {
  background: #949B1E;
  border-radius: 0;
  cursor: grab;
}

.c-link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30rem;
  height: 6rem;
  margin-inline: auto;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 1rem 2rem;
  border: 1px solid #ECECEC;
  background-color: #fff;
  text-decoration: none;
  box-shadow: 0.6rem 0.6rem 0 #FFE772;
  transition: 0.3s ease-out;
  transition-property: transform, box-shadow, color, background-color;
}
.c-link-button:hover {
  color: #fff;
  background-color: rgba(148, 155, 30, 0.7);
  transform: translate(0, 0.6rem);
  box-shadow: 0 0 0 #FFE772;
}

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

.p-meinvisual {
  position: relative;
}

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

.p-meinvisual__title {
  position: absolute;
  top: 4.7rem;
  left: 4.6rem;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 959px) {
  .p-meinvisual__title {
    top: 4.7rem;
  }
}

.p-meinvisual__text {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.p-meinvisual__scroll {
  position: absolute;
  top: 0;
  left: 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 - 12rem);
  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: #949B1E;
  border-radius: 2px;
  animation: scrollBarMove 2.5s ease-out infinite;
}

@keyframes scrollBarMove {
  0% {
    top: -2.6rem;
  }
  60% {
    top: 7rem; /* 下に到達 */
  }
  100% {
    top: 7rem; /* 少し止まる */
  }
}
.p-index-section {
  position: relative;
  padding: 6rem 0 4rem;
}
.p-index-section::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 28.8rem;
  background: #ECECEC;
}
.p-index-section .l-inner {
  position: relative;
}

.p-index-section-list {
  margin-top: 4rem;
  padding: 2rem;
  background-color: #fff;
  box-shadow: 0.6rem 0.6rem 0 #FFE772;
}
.p-index-section-list .p-index-list {
  width: 21.6rem;
  margin-inline: auto;
}
.p-index-section-list .p-index-list__link {
  padding-inline: 1rem;
}

.p-index-list__item + .p-index-list__item {
  border-top: 1px solid rgba(76, 76, 76, 0.2);
}

.p-index-list__link {
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: center;
  font-size: 1.4rem;
  padding-block: 1.1rem;
  line-height: 1.2;
  transition: 0.3s ease-out color;
}
.p-index-list__link .c-icon {
  width: 0.5rem;
  height: 1rem;
  fill: currentColor;
}
.p-index-list__link:hover {
  color: #949B1E;
}

.p-luckyday-section {
  padding-top: 6rem;
  padding-bottom: 8rem;
}
.p-luckyday-section .l-inner {
  width: 30rem;
}

.p-luckyday-text {
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.p-luckyday-text-title {
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}

.p-luckyday-text-desc {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 1.43;
}

.p-luckyday-list {
  padding: 2rem;
  background-color: #ECECEC;
}

.p-luckyday-title {
  margin-bottom: 2rem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #949B1E;
  text-align: center;
}
.p-luckyday-title small {
  font-size: 1.2rem;
}
.p-luckyday-title span {
  font-size: 2rem;
}

.p-luckyday-list__row {
  display: grid;
  grid-template-columns: 9rem 1fr;
  font-size: 1.4rem;
  line-height: 1.5;
  padding-block: 0.7rem;
  color: #3D1805;
}
.p-luckyday-list__row + .p-luckyday-list__row {
  border-top: 1px solid #E9E0D5;
}

.p-luckyday-list__date .-date {
  display: inline-block;
  width: 1.4rem;
  text-align: center;
}

.p-luckyday-list__name small {
  display: block;
  font-size: 1rem;
}

.p-luckyday-img {
  margin-top: 0.7rem;
}

.p-pickup-item {
  padding: 8rem 0 0;
}

.p-pickup-item-swiper {
  position: relative;
  margin-top: 4rem;
}
.p-pickup-item-swiper .swiper {
  width: 22rem;
  overflow: visible;
}
.p-pickup-item-swiper .swiper-slide {
  padding: 0 1rem;
}

.c-swiper-navigations {
  display: grid;
  grid-template-columns: max-content 16rem max-content;
  align-items: center;
  justify-content: center;
  gap: 2.3rem;
  margin-top: 4rem;
}
.c-swiper-navigations:has(.swiper-scrollbar-lock) {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-swiper-navigations {
    width: 28rem;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }
}
.c-swiper-navigations .swiper-scrollbar {
  position: relative;
  top: inherit;
  bottom: inherit;
  left: inherit;
  right: inherit;
  transform: inherit;
  margin: 0;
}
.c-swiper-navigations .swiper-button-next,
.c-swiper-navigations .swiper-button-prev {
  position: relative;
  top: inherit;
  left: inherit;
  right: inherit;
  transform: inherit;
  display: grid;
  place-items: center;
  margin: 0;
  width: max(3.1rem, 31px);
  height: max(3.4rem, 34px);
  background: rgba(148, 155, 30, 0);
  color: #4C4C4C;
  font-size: 1.8rem;
  z-index: 10;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-swiper-navigations .swiper-button-next,
  .c-swiper-navigations .swiper-button-prev {
    display: none;
  }
}
.c-swiper-navigations .swiper-button-next .c-icon,
.c-swiper-navigations .swiper-button-prev .c-icon {
  width: max(0.6rem, 6px);
  height: max(1.5rem, 15px);
  fill: currentColor;
}
.c-swiper-navigations .swiper-button-next:hover,
.c-swiper-navigations .swiper-button-prev:hover {
  background: rgba(148, 155, 30, 0.3);
}
.c-swiper-navigations .swiper-button-next::after,
.c-swiper-navigations .swiper-button-prev::after {
  display: none;
}
.c-swiper-navigations .swiper-button-next .c-icon {
  transform: rotate(180deg);
}

.p-recommended-series {
  padding-bottom: 8rem;
}

.p-pics-section {
  padding: 6rem 0 4rem;
  overflow-x: clip;
}

.p-pics-section-list {
  position: relative;
  margin-top: 4rem;
  padding-block: 3rem;
  background: #ECECEC;
}
.p-pics-section-list .l-inner {
  position: relative;
}
.p-pics-section-list .swiper-scrollbar {
  background: #fff;
}

.p-pics-section-swiper {
  position: relative;
}
.p-pics-section-swiper .swiper {
  width: 28.4rem;
  margin: 0;
  overflow: visible;
}
.p-pics-section-swiper .swiper-slide {
  width: 14.2rem;
  padding-inline: 0.6rem;
}

.p-leather-pics .p-pics-section-list::before {
  content: "";
  display: block;
  position: absolute;
  top: -1.6rem;
  left: 0;
  width: 6.8rem;
  height: 20rem;
  background: #FFE772;
}

.p-color-pics .p-pics-section-list::before {
  content: "";
  display: block;
  position: absolute;
  top: -6.8rem;
  right: 0;
  width: 20rem;
  height: 6.8rem;
  background: #FFE772;
}

.p-type-pics .p-pics-section-list::before {
  content: "";
  display: block;
  position: absolute;
  top: -1.7rem;
  left: 0;
  width: 20rem;
  height: 6.8rem;
  background: #FFE772;
}

.p-ranking-area {
  margin-top: 6rem;
  padding: 7rem 0;
  border-top: max(10px, 1rem) solid #ECECEC;
  border-bottom: max(10px, 1rem) solid #ECECEC;
}

.p-ranking-section {
  margin-top: 4rem;
}
.p-ranking-section + .p-ranking-section {
  margin-top: 8rem;
}

.p-ranking-section-title {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
}

.p-ranking-section-text {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  line-height: 1.2;
  text-align: center;
}

.p-ranking-section-list {
  margin-top: 5rem;
  counter-reset: item-counter;
}
.p-ranking-section-list .c-item-card__image {
  position: relative;
  counter-increment: item-counter;
}
.p-ranking-section-list .c-item-card__image::after {
  content: counter(item-counter);
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  font-family: "Lato", sans-serif;
  font-size: 1.8rem;
  color: #fff;
  background: #949B1E;
  z-index: 2;
}

.p-ranking-section-list__item:nth-child(1) .c-item-card__image::after {
  background-color: #BA9500;
}
.p-ranking-section-list__item:nth-child(2) .c-item-card__image::after {
  background-color: #989A9C;
}
.p-ranking-section-list__item:nth-child(3) .c-item-card__image::after {
  background-color: #905134;
}

.p-all-products {
  padding-block: 6rem;
  text-align: center;
}

.p-option-area {
  padding: 8rem 0;
  background: #ECECEC;
}
.p-option-area .l-inner {
  max-width: 30rem;
}

.p-option-section + .p-option-section {
  margin-top: 6rem;
}

.p-option-section__title {
  margin-top: 3rem;
  font-weight: 500;
}
.p-option-section__title .-jp {
  font-size: 1.8rem;
  line-height: 1;
  color: #949B1E;
}

.p-option-section__text {
  margin-top: 1.8rem;
  font-size: 1.2rem;
  line-height: 1.4;
}

.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;
  overscroll-behavior: contain;
  background: #FFED9C;
  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-header-menu-title {
  margin-bottom: 5rem;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.1;
  letter-spacing: 0.1em;
}

.s-footer {
  padding: 6rem 0;
  color: #fff;
  background-color: #00030D;
}
.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: currentColor;
}

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

.l-side-menu .s-menu {
  background-color: #FFED9C;
  position: sticky;
  top: 0;
  right: 0;
  display: grid;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: #4C4C4C;
}
.s-menu a.is-section-active {
  color: #949B1E;
}

.s-menu__list {
  display: flex;
  flex-direction: column;
  gap: 3.5em;
  width: -moz-max-content;
  width: max-content;
}
.s-header .s-menu__list, .l-side-menu .s-menu__list {
  width: 19rem;
}
.s-menu__list + .p-index-list {
  margin-top: 2em;
}

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

.s-menu__title {
  position: relative;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 2em;
  letter-spacing: 0.2em;
  line-height: 1;
  transition: 0.3s ease-out color;
}
a.s-menu__link:hover .s-menu__title {
  color: #949B1E;
}

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

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