/***
  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 {
  --color-base: #94817B;
  --color-01: #9CB4A6;
  --color-02: #D4A5A5;
  --color-03: #6B5C57;
  --color-04: #FFFEFA;
  --color-text: var(--color-base);
  --color-menu: var(--color-base);
  --color-caution: #f00;
  --bg-color-01: #FFFEFA;
  --bg-color-02: #F7F5F2;
  --bg-color-03: var(--color-01);
  --bg-color-footer: #6B5C57;
  --border-color-01: #ECECEC;
}

:root {
  --font-base: "Zen Kaku Gothic New", sans-serif;
  --font-english: "Cormorant Garamond", serif;
  --font-number: "Inter", sans-serif;
  --font-noto: 'Noto Sans JP', sans-serif;
  --font-mincho: "Hiragino Mincho ProN", 'Noto Serif JP', serif;
}

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

.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-load-complete) .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-load-complete) .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-load-complete) .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-load-complete) .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-load-complete) .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-load-complete) .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-load-complete) .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-load-complete) .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-load-complete) .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-load-complete) .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;
}
body:not(.is-load-complete) .-delay1 {
  transition-delay: calc(0.3s + var(--transition-duration-before-load)) !important;
}

.-delay2 {
  transition-delay: 0.6s !important;
}
body:not(.is-load-complete) .-delay2 {
  transition-delay: calc(0.6s + var(--transition-duration-before-load)) !important;
}

.-delay3 {
  transition-delay: 0.9s !important;
}
body:not(.is-load-complete) .-delay3 {
  transition-delay: calc(0.9s + var(--transition-duration-before-load)) !important;
}

.-delay4 {
  transition-delay: 1.2s !important;
}
body:not(.is-load-complete) .-delay4 {
  transition-delay: calc(1.2s + var(--transition-duration-before-load)) !important;
}

.-delay5 {
  transition-delay: 1.5s !important;
}
body:not(.is-load-complete) .-delay5 {
  transition-delay: calc(1.5s + var(--transition-duration-before-load)) !important;
}

.-delay6 {
  transition-delay: 1.8s !important;
}
body:not(.is-load-complete) .-delay6 {
  transition-delay: calc(1.8s + var(--transition-duration-before-load)) !important;
}

.-delay7 {
  transition-delay: 2.1s !important;
}
body:not(.is-load-complete) .-delay7 {
  transition-delay: calc(2.1s + var(--transition-duration-before-load)) !important;
}

.-delay8 {
  transition-delay: 2.4s !important;
}
body:not(.is-load-complete) .-delay8 {
  transition-delay: calc(2.4s + var(--transition-duration-before-load)) !important;
}

.-delay9 {
  transition-delay: 2.7s !important;
}
body:not(.is-load-complete) .-delay9 {
  transition-delay: calc(2.7s + var(--transition-duration-before-load)) !important;
}

.-delay10 {
  transition-delay: 3s !important;
}
body:not(.is-load-complete) .-delay10 {
  transition-delay: calc(3s + var(--transition-duration-before-load)) !important;
}

:root {
  --loading-duration-body: 0.6s;
  --loading-duration-wrapper: 1.2s;
}

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

body {
  position: relative;
  z-index: 1;
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 1.5rem;
  text-rendering: geometricPrecision;
  letter-spacing: 0;
  line-height: 2;
  background: url(../images/mothersday2026_bg.webp) no-repeat top left/cover;
  background-color: #FEF8F1;
  background-attachment: fixed;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #FEF8F1;
  opacity: 1;
  transition: opacity var(--loading-duration-body) ease-out;
}
body.is-loaded::before {
  opacity: 0;
}

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

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

a,
button {
  cursor: pointer;
}

.l-content {
  position: relative;
}

.l-wrapper {
  opacity: 0;
  transition: opacity var(--loading-duration-wrapper) ease-out 1.2s;
}
.is-loaded .l-wrapper {
  opacity: 1;
}

.l-wrapper__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 37.5rem 28.2rem;
}
@media screen and (max-width: 959px) {
  .l-wrapper__grid {
    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: 30.6rem;
  margin-inline: auto;
}

.l-side-left {
  font-size: min(0.78125vw, 1.6666666667vh);
}
@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;
  justify-content: center;
  align-content: end;
  padding-right: 11.6em;
  padding-bottom: 12.5em;
}

.l-main {
  position: relative;
  background-color: var(--bg-color-01);
  overflow-x: clip;
}

.l-side-menu {
  font-size: min(0.78125vw, 1.8518518519vh);
}
@media screen and (max-width: 959px) {
  .l-side-menu {
    font-size: min(1.5220700152vw, 1.8518518519vh);
  }
}
@media screen and (max-width: 768px) {
  .l-side-menu {
    display: none;
  }
}
.l-side-menu .c-index-list__link {
  position: relative;
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding-block: 0.8em;
  padding-inline: 1em;
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2%;
  transition: 0.3s ease-out color;
}
.l-side-menu .c-index-list__link .c-icon {
  display: none;
}
.l-side-menu .c-index-list__link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}
.l-side-menu .c-index-list__link:hover {
  color: var(--main-color-);
}
.l-side-menu .c-index-list__link:hover::after {
  transform: scaleX(1);
  opacity: 1;
}
.l-side-menu .c-index-list__item {
  border: none;
}
.l-side-menu .c-index-list__item + .c-index-list__item {
  margin-top: 1em;
}

.c-logo {
  aspect-ratio: 70/15;
  fill: currentColor;
}

.c-mincho-text {
  font-family: var(--font-mincho);
  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: var(--color-base);
  color: var(--color-01);
  transition: 0.3s ease-out background-color;
}
.c-more-button .c-icon {
  width: 0.6rem;
  height: 1.5rem;
  fill: var(--color-01);
}

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

.c-section-title {
  text-align: center;
}
.c-section-title .-en {
  display: block;
  font-family: var(--font-english);
  font-weight: 700;
  font-size: 3.8rem;
  line-height: 1.1;
  letter-spacing: 16%;
}
.c-section-title .-jp {
  display: block;
  margin-top: 1.2rem;
  font-weight: 800;
  letter-spacing: 12%;
  line-height: 1;
}

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

.c-series-card__image {
  position: relative;
  background-color: var(--bg-color-02);
  overflow: hidden;
  margin-bottom: 2rem;
}
.c-series-card__image img {
  aspect-ratio: 20/16;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-series-card__image::before {
  content: "CLICK";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-family: var(--font-english);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 12%;
  opacity: 0;
  z-index: 1;
  background: rgb(from var(--color-02) r g b/0.5);
  transition: 0.3s ease-out opacity;
}

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

.c-series-card__caption {
  margin-top: 1.2rem;
  font-size: 1.2rem;
  letter-spacing: 6%;
  line-height: 1.4;
  text-align: justify;
}

.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: var(--bg-color-02);
}
.c-item-card__image::before {
  content: "CLICK";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-family: var(--font-english);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 12%;
  opacity: 0;
  z-index: 1;
  background-color: rgb(from var(--color-02) r g b/0.5);
  transition: 0.3s ease-out opacity;
}
.c-item-card.-soldout .c-item-card__image::before {
  content: "SOLD OUT";
  color: var(--color-01);
  font-size: 1.8rem;
  letter-spacing: 0.03rem;
  font-weight: 500;
  background: rgba(146, 146, 146, 0.6) !important;
  opacity: 1;
}

.c-item-series {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 6%;
  margin-bottom: 0.5rem;
}

.c-item-name {
  min-height: 3.2rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.14;
}

.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: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
.c-item-price span {
  display: inline-block;
  font-family: var(--font-number);
}
.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: 20/16;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-pics-card__image::before {
  content: "CLICK";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-family: var(--font-english);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 12%;
  opacity: 0;
  z-index: 1;
  background: rgb(from var(--color-02) r g b/0.5);
  transition: 0.3s ease-out opacity;
}

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

.c-leather-name {
  margin-top: 2rem;
  line-height: 1;
  min-height: 4.1rem;
}
.c-leather-name .-jp {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 6%;
}
.c-leather-name .-en {
  margin-top: 0.4rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 6%;
  white-space: nowrap;
}

.c-leather-desc {
  margin-top: 0.6rem;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 6%;
}

.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: transparent;
  color: var(--color-03);
  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: rgb(from var(--color-01) r g b/0.5);
}
.c-swiper-navigations .swiper-button-next::after,
.c-swiper-navigations .swiper-button-prev::after {
  display: none;
}
.c-swiper-navigations .swiper-button-prev .c-icon {
  transform: rotate(180deg);
}

.swiper-scrollbar.swiper-scrollbar-horizontal {
  height: max(0.3rem, 3px);
  background: var(--bg-color-02);
  border-radius: 0;
}
.swiper-scrollbar.swiper-scrollbar-horizontal .swiper-scrollbar-drag {
  background: #708578;
  border-radius: 0;
  cursor: grab;
}

.c-link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 6rem;
  margin-inline: auto;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 8%;
  padding: 1rem 2rem;
  color: var(--color-04);
  background-color: var(--color-base);
  transition: 0.3s ease-out;
  transition-property: color, background-color;
}
.c-link-button .c-icon {
  width: 0.6rem;
  height: 1.2rem;
  fill: currentColor;
}
.c-link-button:hover {
  color: var(--color-base);
  background-color: var(--bg-color-02);
}

.c-index-list__item {
  border-bottom: 1px solid rgba(76, 76, 76, 0.2);
}

.c-index-list__link {
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
  padding-block: 1.2rem;
  letter-spacing: 2%;
  line-height: 1;
  transition: 0.3s ease-out color;
}
.c-index-list__link .c-icon {
  width: 0.48rem;
  height: 0.96rem;
  fill: currentColor;
}
.c-index-list__link:hover {
  color: var(--color-02);
}

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

.p-side-title__logo .c-logo {
  width: 7em;
  height: 1.4em;
}

.p-side-title__text {
  margin-top: 0.6em;
  font-family: var(--font-english);
  font-weight: 700;
  font-size: 3.8em;
  line-height: 1;
  letter-spacing: 10%;
}

.p-side-left__copy {
  position: absolute;
  top: 4.1em;
  right: 6.1em;
  writing-mode: vertical-rl;
  text-align: right;
  text-orientation: upright;
  font-weight: 700;
  font-size: 1.8em;
  line-height: 1.75;
  letter-spacing: 55%;
}
.p-side-left__copy span {
  display: block;
}
.p-side-left__copy span:first-child {
  margin-bottom: 1.5em;
}

.p-side-left__text {
  margin-top: 4.2em;
}
.p-side-left__text p {
  font-size: 1.2em;
  font-weight: 500;
  line-height: 2.3;
  letter-spacing: 10%;
}
.p-side-left__text p + p {
  margin-top: 1.3em;
}

.p-meinvisual {
  position: relative;
}

.p-meinvisual__title {
  position: absolute;
  top: 7.8rem;
  width: 100%;
  color: var(--color-03);
  text-align: center;
}

.p-meinvisual__logo {
  visibility: hidden;
  margin-bottom: 2rem;
}
.p-meinvisual__logo .c-logo {
  width: 8rem;
  margin-inline: auto;
  fill: currentColor;
}
@media screen and (max-width: 959px) {
  .p-meinvisual__logo {
    visibility: visible;
  }
}

.p-meinvisual__text {
  font-family: var(--font-english);
  font-weight: 700;
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: 10%;
}

.p-meinvisual__subtext {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 6%;
}

.p-meinvisual__image img {
  aspect-ratio: 375/667;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.p-meinvisual__scroll-text {
  position: sticky;
  top: calc(100dvh - 4rem);
  width: 100%;
  text-align: center;
  font-family: var(--font-english);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 4%;
  color: var(--color-03);
}

.p-introduction {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background: url(../images/mothersday2026_introduction_bg.webp) no-repeat top right/cover;
}
.p-introduction .l-inner {
  width: 30.6rem;
}
.p-introduction p {
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.p-introduction__title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: 34%;
  color: var(--color-02);
}

.p-introduction__desc {
  margin-top: 4rem;
}
.p-introduction__desc p {
  font-size: 1.4rem;
  line-height: 2.1;
  letter-spacing: 10%;
  white-space: nowrap;
}
.p-introduction__desc p + p {
  margin-top: 1.6rem;
}

.p-index-section {
  position: relative;
  padding: 8rem 0 8rem;
  background: var(--color-01);
  color: var(--color-04);
}
.p-index-section .c-section-title .-en {
  color: var(--color-04);
}

.p-index-section-list {
  margin-top: 4rem;
}
.p-index-section-list .c-index-list__item {
  border-bottom: 1px solid var(--color-04);
}
.p-index-section-list .c-index-list__item + .c-index-list__item {
  margin-top: 0.6rem;
}
.p-index-section-list .c-index-list__link {
  font-size: 1.6rem;
  font-weight: 400;
  padding-block: 1.4rem;
  padding-inline: 0 1rem;
  letter-spacing: 10%;
  transition: 0.3s ease-out opacity;
}
.p-index-section-list .c-index-list__link .c-icon {
  width: 0.7rem;
  height: 1.4rem;
  fill: currentColor;
}
.p-index-section-list .c-index-list__link:hover {
  color: var(--color-04);
  opacity: 0.5;
}

.p-staff-recommend {
  padding: 8rem 0 8rem;
}

.p-staff-recommend__title .-en {
  display: block;
  font-family: var(--font-english);
  font-weight: 700;
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: 16%;
}
.p-staff-recommend__title .-jp {
  display: block;
  margin-bottom: 1.4rem;
  font-weight: 800;
  letter-spacing: 10%;
  line-height: 1;
  color: var(--color-02);
}

.p-staff-recommend__section {
  position: relative;
  margin-top: 4rem;
}
.p-staff-recommend__section a {
  position: relative;
  display: block;
  z-index: 1;
}
.p-staff-recommend__section a:hover .p-staff-recommend__image-wrap::before {
  opacity: 1;
}
.p-staff-recommend__section a:hover .p-staff-recommend__click .c-icon {
  transform: translateX(0rem);
}
.p-staff-recommend__section::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  pointer-events: auto;
}
.p-staff-recommend__section.is-active::after {
  animation: hide-guard calc(1.5s + var(--loading-duration-body) + var(--loading-duration-wrapper)) forwards;
}
.p-staff-recommend__section.is-loading-active::after {
  animation: hide-guard calc(1.5s + var(--loading-duration-body) + var(--loading-duration-wrapper) + var(--transition-duration-before-load)) forwards !important;
}
.is-active .p-staff-recommend__section::after {
  animation: hide-guard calc(2.4s + var(--loading-duration-body) + var(--loading-duration-wrapper)) forwards;
}
.is-loading-active .p-staff-recommend__section::after {
  animation: hide-guard calc(2.4s + var(--loading-duration-body) + var(--loading-duration-wrapper) + var(--transition-duration-before-load)) forwards !important;
}

@keyframes hide-guard {
  0%, 99.9% {
    z-index: 10;
  }
  100% {
    z-index: -1;
  }
}
.p-staff-recommend__image {
  position: relative;
}

.p-staff-recommend__image-wrap {
  position: relative;
  width: 31rem;
  margin-left: auto;
}
.p-staff-recommend__image-wrap img {
  position: relative;
  z-index: 0;
}
.p-staff-recommend__image-wrap::before {
  content: "CLICK";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-family: var(--font-english);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 12%;
  opacity: 0;
  z-index: 1;
  background: rgb(from var(--color-02) r g b/0.5);
  transition: 0.3s ease-out opacity;
}
.p-staff-recommend__image-wrap::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--bg-color-01) 0%, transparent 20%);
}

.p-staff-recommend__head {
  position: relative;
  display: grid;
  grid-template-columns: max-content 1fr;
  margin-top: -6rem;
}

.p-staff-recommend__staff {
  transform: translateX(-10%);
  text-align: center;
}

.p-staff-recommend__staff-image {
  width: 9rem;
  height: 9rem;
  box-sizing: content-box;
  border: 0.36rem solid var(--bg-color-01);
  border-radius: 50%;
  background-color: var(--bg-color-01);
}
.p-staff-recommend__staff-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-staff-recommend__staff-name {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 10%;
}

.p-staff-recommend__copy {
  padding-top: 7.5rem;
}
.p-staff-recommend__copy span {
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding: 0.4rem 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 12%;
  color: var(--color-04);
  background: var(--color-02);
}
.p-staff-recommend__copy span + span {
  margin-top: 0.5rem;
}
.p-staff-recommend__copy span.-pr-none {
  padding-right: 0;
}

.p-staff-recommend__name {
  margin-top: 2.2rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 10%;
}

.p-staff-recommend__price {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  font-family: var(--font-number);
}
.p-staff-recommend__price small {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: var(--font-base);
}

.p-staff-recommend__text {
  margin-top: 1.6rem;
  font-size: 1.4rem;
  line-height: 1.42;
  letter-spacing: 6%;
  text-align: justify;
}

.p-staff-recommend__click {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 3rem;
  gap: 1.2rem;
}
.p-staff-recommend__click span {
  font-family: var(--font-english);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 10%;
}
.p-staff-recommend__click .c-icon {
  width: 2.1rem;
  height: 1.4rem;
  fill: var(--color-02);
  transform: translateX(-0.3rem);
  transition: 0.3s ease-out transform;
}

.p-staff-recommend__section--reverse .p-staff-recommend__image-wrap {
  margin-left: 0;
}
.p-staff-recommend__section--reverse .p-staff-recommend__image-wrap::after {
  left: initial;
  right: -1px;
  background: linear-gradient(to left, var(--bg-color-01) 0%, transparent 20%);
}
.p-staff-recommend__section--reverse .p-staff-recommend__head {
  grid-template-columns: 1fr max-content;
}
.p-staff-recommend__section--reverse .p-staff-recommend__staff {
  order: 2;
  transform: translateX(10%);
}
.p-staff-recommend__section--reverse .p-staff-recommend__copy {
  order: 1;
}

.p-popular-series {
  padding: 8rem 0;
  color: var(--color-03);
  background: var(--bg-color-02);
  overflow-x: clip;
}
.p-popular-series .swiper-scrollbar {
  background: var(--bg-color-01);
}

.p-pics-section {
  padding: 8rem 0;
  overflow-x: clip;
}
.p-pics-section + .p-pics-section {
  position: relative;
}
.p-pics-section + .p-pics-section::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 1.5rem);
  height: 1px;
  background: var(--color-base);
}

.p-pics-section-swiper {
  position: relative;
  margin-top: 4rem;
}
.p-pics-section-swiper .swiper {
  margin-left: -1rem;
  overflow: visible;
}
.p-pics-section-swiper .swiper-slide {
  width: 21rem;
  padding-inline: 1rem;
}

.p-type-pics-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.2rem;
  margin-top: 4rem;
  margin-inline: auto;
}

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

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

.p-type-pics-list__text {
  margin-top: 0.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
}

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

.p-price-pics-list__link {
  display: grid;
  place-content: center;
  height: 6.2rem;
  padding-top: 0.1rem;
  font-family: var(--font-number);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: var(--color-04);
  background-color: var(--color-base);
  transition: 0.3s ease-out;
  transition-property: color, background-color;
}
.p-price-pics-list__link:hover {
  color: var(--color-base);
  background-color: var(--bg-color-02);
}

.p-ranking-area {
  padding: 8rem 0;
  color: var(--color-04);
  background: var(--bg-color-03);
}

.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-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  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;
  padding-bottom: 0.35rem;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  background: var(--color-base);
  z-index: 2;
}

.p-ranking-section-list__item:nth-child(1) .c-item-card__image::after {
  background-color: #DCC053;
}
.p-ranking-section-list__item:nth-child(2) .c-item-card__image::after {
  background-color: #B9B9BA;
}
.p-ranking-section-list__item:nth-child(3) .c-item-card__image::after {
  background-color: #B67659;
}

.p-ranking-section-swiper {
  position: relative;
  margin-top: 4rem;
}
.p-ranking-section-swiper .swiper {
  overflow: visible;
}
.p-ranking-section-swiper .swiper-slide {
  width: 14.2rem;
  padding-inline: 0.6rem;
}
.p-ranking-section-swiper .c-swiper-navigations .swiper-button-next,
.p-ranking-section-swiper .c-swiper-navigations .swiper-button-prev {
  color: var(--color-04);
}
.p-ranking-section-swiper .c-swiper-navigations .swiper-button-next:hover,
.p-ranking-section-swiper .c-swiper-navigations .swiper-button-prev:hover {
  background: rgba(255, 254, 250, 0.3019607843);
}

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

.p-option-area {
  padding: 8rem 0;
  color: var(--color-03);
  background: var(--bg-color-02);
}
.p-option-area .l-inner {
  max-width: 30rem;
}

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

.p-option-section__en-title {
  position: relative;
  margin-bottom: 4rem;
  font-family: var(--font-english);
  font-weight: 700;
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: 16%;
  text-align: center;
}
.p-option-section__en-title::after {
  content: "";
  display: block;
  margin-top: 1rem;
  margin-inline: auto;
  width: 10rem;
  height: 0.2rem;
  border-radius: 1rem;
  background: var(--color-01);
}

.p-option-section__jp-title {
  margin-top: 2.4rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 8%;
  color: var(--color-01);
}

.p-option-section__subtitle {
  margin-top: 1.2rem;
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 6%;
}

.p-option-section__text {
  font-size: 1.2rem;
  line-height: 1.45;
  letter-spacing: 6%;
}

.p-top-button {
  position: sticky;
  bottom: 2rem;
  width: 5.2rem;
  height: 5.2rem;
  margin-top: -7.2rem;
  margin-left: auto;
  margin-right: 2rem;
  margin-bottom: 2rem;
  z-index: 50;
  opacity: 0;
  transition: 0.3s ease-out opacity;
  pointer-events: none;
}
.p-top-button.is-button-active {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (min-width: 769px) {
  .p-top-button {
    display: none;
  }
}

.p-top-button__link {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  background: var(--color-03);
  border-radius: 50%;
  transition: 0.3s ease-out background-color;
}
.p-top-button__link:hover {
  background: var(--color-02);
}
.p-top-button__link img {
  width: 1.14rem;
  height: 2.157rem;
  fill: none;
}

.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: start;
  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: #301400;
}
.s-header-menu-button::after {
  width: 2.8rem;
}

.s-header-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  padding: 1px 0;
  color: var(--color-03);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #FFFEFA;
  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: 11.45rem 6.6rem 0;
  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-logo {
  width: 7rem;
}
.s-header-menu-logo svg {
  fill: currentColor;
}

.s-header-menu-title {
  margin-top: 2rem;
  margin-bottom: 5rem;
  font-family: var(--font-english);
  font-weight: 700;
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: 10%;
  white-space: nowrap;
}

.s-footer {
  padding: 6rem 0;
  color: #fff;
  background-color: var(--bg-color-footer);
}
.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__title svg {
  width: 100%;
}

.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;
}

.s-header-menu .s-menu a.is-section-active {
  color: var(--color-02);
}
.l-side-menu .s-menu {
  position: sticky;
  top: 0;
  right: 0;
  display: grid;
  align-items: end;
  justify-content: center;
  height: 100vh;
}
.l-side-menu .s-menu a.is-section-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.s-menu__inner {
  padding-bottom: 11em;
}

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

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

.s-menu__title {
  position: relative;
  font-family: var(--font-english);
  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: var(--color-02);
}

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

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