@charset "UTF-8";

:root {
  --site-header-height: 90px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 90px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 90px;
  color: #222;
  background: #fff;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  line-height: 1.5;
  overflow-x: hidden;

}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  min-height: 90px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
}

.site-logo {
  margin: 16px 0 0;
}

.site-logo a {
  display: block;
}

.site-logo img {
  width: 148px;
  height: auto;
}

.global-nav {
  margin-top: 8px;
}

.global-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 34px;
  margin: 0;
  padding: 0 24px;
  list-style: none;
}

.global-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  color: #777;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.global-nav a:hover,
.global-nav a:focus-visible {
  color: #222;
}

.hero {
  position: relative;
  height: calc(100svh - 90px);
  min-height: 500px;
  overflow: hidden;
  background: #111;
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1.8s ease, transform 7.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(360px, 38vw);
  transform: translate(-50%, -50%);
}

.hero-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.18));
}


.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-scroll-text {
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}

.hero-scroll-line {
  position: relative;
  display: block;
  width: 1px;
  height: 86px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.hero-scroll-line::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 40px;
  content: "";
  background: #fff;
  animation: hero-scroll-line-flow 1.8s cubic-bezier(0.77, 0, 0.18, 1) infinite;
}

@keyframes hero-scroll-line-flow {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(86px);
  }
}


@media (max-width: 767px) {
  .hero-scroll-text {
  font-size: 11px;
}

.hero-scroll-line {
  height: 68px;
}

@keyframes hero-scroll-line-flow {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(68px);
  }
}
}










.concept {
  overflow: hidden;
  padding: 86px 0 60px;
  background: #fff;
}

.concept-intro {
  display: grid;
  grid-template-columns: minmax(230px, 26vw) 1fr;
  align-items: center;
  gap: 44px;
}

.concept-copy {
  padding-left: clamp(24px, 2.8vw, 32px);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.concept-copy h2 {
  margin: 0;
  color: #222;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.7;
  white-space: nowrap;
}

.concept-copy p {
  margin: 4px 0 0;
  color: #222;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.concept-gallery {
  width: 100%;
  overflow: hidden;
}

.concept-gallery-track {
  display: flex;
  width: max-content;
  animation: concept-flow 46s linear infinite;
  will-change: transform;
}

.concept-gallery-set {
  display: flex;
  gap: 26px;
  padding-right: 26px;
}

.concept-gallery img {
  flex: 0 0 auto;
  width: clamp(230px, 28vw, 340px);
  height: clamp(334px, 40vw, 486px);
  object-fit: cover;
  object-position: center;
}

.concept-body {
  max-width: 620px;
  margin: 82px auto 0;
  padding: 0 24px;
  color: #333;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 2.2;
  text-align: center;
}

.concept-body p {
  margin: 0;
}

.concept-body p + p {
  margin-top: 30px;
}

.concept-body {
  max-width: 620px;
  margin: 82px auto 0;
  padding: 0 24px;
  color: #333;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 2.2;
  text-align: center;
}

.concept-body p {
  margin: 0;
}

.concept-body p + p {
  margin-top: 30px;
}

/* 光が流れている間だけ */
.concept-body.is-shining {
  color: transparent;
  background: linear-gradient(
    110deg,
    #333 0%,
    #333 42%,
    #d8d8d8 48%,
    #ffffff 50%,
    #d8d8d8 52%,
    #333 58%,
    #333 100%
  );
  background-size: 420% 100%;
  background-position: 160% 0;
  -webkit-background-clip: text;
  background-clip: text;
  animation: conceptTextLight 7s linear;
}

@keyframes conceptTextLight {
  0% {
    background-position: 160% 0;
  }

  100% {
    background-position: -160% 0;
  }
}

@keyframes concept-flow {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.product {
  overflow: hidden;
  padding: 72px 0 96px;
  background: #fff;
}

.product-inner {
  display: grid;
  max-width: 1080px;
  min-height: 800px;
  grid-template-columns: 460px 1fr;
  gap: 64px;
  margin: 0 auto;
}

.product-left,
.product-right {
  position: relative;
}

.product-image-frame {
  position: relative;
  overflow: hidden;
  background: #fff;
  --reveal-delay: 0s;
  will-change: transform;
}

.product-image-frame::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background: #fff;
  transform: translateX(0);
  will-change: transform;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  will-change: opacity, transform;
}

.product-image-main {
  height: 360px;
  margin-top: 76px;
}

.product-image-sub {
  width: 340px;
  height: 420px;
  margin: 120px 0 0 72px;
}

.product-image-wide {
  width: 480px;
  height: 300px;
  margin-left: 28px;
  margin-top: -40px;
}

.product-image-frame.is-revealed .product-image {
  animation: product-image-reveal 1.05s cubic-bezier(0.77, 0, 0.18, 1) forwards var(--reveal-delay);
}

.product-image-frame.is-revealed::after {
  animation: product-shutter-reveal 1.05s cubic-bezier(0.77, 0, 0.18, 1) forwards var(--reveal-delay);
}

.product-label {
  position: absolute;
  top: 220px;
  left: clamp(-56px, -3.8vw, -24px);
  z-index: 10;
  max-width: calc(100vw - 48px);
  margin: 0;
  color: rgba(0, 0, 0, 0.13);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(76px, 10vw, 142px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  pointer-events: none;
  white-space: nowrap;
}

.product-copy {
  position: relative;
  z-index: 1;
  margin-top: 84px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.product-copy h2 {
  margin: 0 0 26px;
  color: #222;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.7;
}

.product-copy p {
  margin: 0;
  color: #333;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2.1;
}

.product-copy p + p {
  margin-top: 22px;
}

@keyframes product-shutter-reveal {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(101%);
  }
}

@keyframes product-image-reveal {
  from {
    opacity: 1;
    transform: scale(1.035);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-image {
    opacity: 1;
    transform: none;
  }

  .product-image-frame::after {
    display: none;
  }

  .product-image-frame.is-revealed .product-image,
  .product-image-frame.is-revealed::after {
    animation: none;
  }
}

.product-showcase {
  --product-showcase-bg: #9b8e60;
  --product-showcase-start-bg: #fff;
  position: relative;
  height: 300svh;
  min-height: 1680px;
  color: #fff;
  background-color: var(--product-showcase-start-bg);
  transition: background-color 1.1s ease;
}

.product-showcase.is-bg-visible {
  background-color: var(--product-showcase-bg);
}

.product-showcase-heading {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.product-showcase-sticky {
  position: sticky;
  top: var(--site-header-height);
  height: calc(100svh - var(--site-header-height));
  min-height: 560px;
  overflow: hidden;
  background-color: var(--product-showcase-start-bg);
  transition: background-color 1.1s ease;
}

.product-showcase.is-bg-visible .product-showcase-sticky {
  background-color: var(--product-showcase-bg);
}

.product-showcase-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 52.8%) minmax(360px, 47.2%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.product-showcase-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.product-showcase-media {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background-color: var(--product-showcase-start-bg);
  transition: background-color 1.1s ease;
}

.product-showcase.is-bg-visible .product-showcase-media {
  background-color: var(--product-showcase-bg);
}

.product-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-showcase-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 76px) clamp(34px, 6.4vw, 76px);
  background-color: var(--product-showcase-start-bg);
  transition: background-color 1.1s ease;
}

.product-showcase.is-bg-visible .product-showcase-copy {
  background-color: var(--product-showcase-bg);
}

.product-showcase-label {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(31px, 3.3vw, 39px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.product-showcase-count {
  display: flex;
  align-items: baseline;
  margin: 12px 0 38px;
  font-family: serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
}

.product-showcase-count span:first-child {
  font-size: clamp(64px, 7vw, 86px);
}

.product-showcase-count span:last-child {
  margin-left: 8px;
  font-size: clamp(34px, 4vw, 44px);
}

.product-showcase-rule {
  width: 100%;
  height: 1px;
  margin-bottom: 42px;
  background: rgba(255, 255, 255, 0.72);
}

.product-showcase-copy h3 {
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(21px, 2.2vw, 25px);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.product-showcase-copy p:last-child {
  max-width: 44em;
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 2.2;
}

@media (prefers-reduced-motion: reduce) {
  .product-showcase,
  .product-showcase-sticky,
  .product-showcase-media,
  .product-showcase-copy {
    transition: none;
  }

  .product-showcase-panel {
    transform: none;
    transition: none;
  }
}

.items {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 108px) 0 clamp(64px, 7vw, 92px);
  background: #fff;
}

.items-heading {
  position: absolute;
  top: 22px;
  left: clamp(8px, 1.4vw, 22px);
  z-index: 0;
  margin: 0;
  color: rgba(0, 0, 0, 0.13);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(76px, 10vw, 142px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-orientation: mixed;
  writing-mode: vertical-rl;
  pointer-events: none;
}

.items-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  justify-self: center;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 96px 68px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.items-card {
  min-width: 0;
  text-align: center;
}

.items-link {
  display: grid;
  justify-items: center;
  color: #222;
  transition: opacity 0.2s ease;
}

.items-link:hover,
.items-link:focus-visible {
  opacity: 0.72;
}

.items-card img {
  width: min(100%, 170px);
  height: 210px;
  margin: 0 auto 26px;
  object-fit: contain;
}

.items-name,
.items-price {
  display: block;
  color: #444;
}

.items-name {
  margin-top: 0;
  font-family: serif;
  font-size: 12px;
  line-height: 1.3;
}

.items-price {
  margin-top: 6px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 13px;
  line-height: 1.5;
}

.items-all-link {
  position: relative;
  display: block;
  width: max-content;
  margin: 82px auto 0;
  padding-bottom: 12px;
  color: #222;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  transition: opacity 0.2s ease;
}

.items-all-link::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 38%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translateX(-50%);
  transition: width 0.35s ease;
}

.items-all-link:hover::after,
.items-all-link:focus-visible::after {
  width: 100%;
}
@media (max-width: 1024px) {
  .items-grid {
    gap: 72px 40px;
  }

  .items-card img {
    width: min(100%, 150px);
    height: 190px;
  }
}

.profile {
  --profile-dot-radius: 6px;
  --profile-dot-size: 12px;
  --profile-line-start: clamp(24px, 3vw, 42px);
  --profile-line-y: 78px;
  position: relative;
  background: #fff;
}

.profile-sticky {
  position: sticky;
  top: var(--site-header-height);
  height: calc(100svh - var(--site-header-height));
  min-height: 520px;
  padding: 72px 0 88px;
  background: #fff;
}

.profile-heading {
  margin: 0 0 42px;
  padding-left: var(--profile-line-start);
  color: rgba(0, 0, 0, 0.13);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(76px, 10vw, 142px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
}

.profile-viewport {
  width: 100%;
  overflow: hidden;
}

.profile-track {
  position: relative;
  width: max-content;
  min-width: 2200px;
  padding: var(--profile-line-y) min(28vw, 360px) 56px var(--profile-line-start);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.profile-line {
  position: absolute;
  top: calc(var(--profile-line-y) - 0.5px);
  right: 0;
  left: var(--profile-line-start);
  height: 1px;
  background: #e8e8e8;
  transform: scaleX(0);
  transform-origin: left center;
}

.profile-list {
  display: flex;
  gap: 112px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-item {
  position: relative;
  flex: 0 0 212px;
  padding-top: 46px;
  color: #555;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  opacity: 0;
}

.profile-dot {
  position: absolute;
  top: 0;
  left: 28px;
  width: var(--profile-dot-size);
  height: var(--profile-dot-size);
  border-radius: 50%;
  background: #eeeeee;
  transform: translateY(-50%);
}

.profile-year {
  display: block;
  margin-bottom: 7px;
  color: #333;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 13px;
  line-height: 1;
}

.profile-item p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.75;
}

.profile.is-visible .profile-line {
  animation: profile-line-reveal 1.05s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

.profile.is-visible .profile-item {
  animation: profile-item-reveal 0.95s ease forwards;
}

.profile.is-visible .profile-item:nth-child(1) {
  animation-delay: 0.65s;
}

.profile.is-visible .profile-item:nth-child(2) {
  animation-delay: 1.03s;
}

.profile.is-visible .profile-item:nth-child(3) {
  animation-delay: 1.41s;
}

.profile.is-visible .profile-item:nth-child(4) {
  animation-delay: 1.79s;
}

.profile.is-visible .profile-item:nth-child(5) {
  animation-delay: 2.17s;
}

.profile.is-visible .profile-item:nth-child(6) {
  animation-delay: 2.55s;
}

.profile.is-visible .profile-item:nth-child(7) {
  animation-delay: 2.93s;
}

.profile.is-visible .profile-item:nth-child(8) {
  animation-delay: 3.31s;
}

.profile.is-visible .profile-item:nth-child(9) {
  animation-delay: 3.69s;
}

@keyframes profile-line-reveal {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes profile-line-reveal-y {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

@keyframes profile-item-reveal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 767px) {
  :root {
    --site-header-height: 112px;
  }

  html {
    scroll-padding-top: 112px;
  }

  body {
    padding-top: 112px;
  }

  .site-header {
    min-height: 112px;
  }

  .site-logo img {
    width: 132px;
  }

  .global-nav {
    width: 100%;
    margin-top: 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .global-nav::-webkit-scrollbar {
    display: none;
  }

  .global-nav ul {
    width: max-content;
    min-width: 100%;
    flex-wrap: nowrap;
    gap: 24px;
    justify-content: flex-start;
    padding: 0 20px 12px;
  }

  .global-nav a {
    font-size: 12px;
  }

  .hero {
    height: calc(100svh - 112px);
    min-height: 420px;
  }

  .hero-logo {
    width: min(250px, 64vw);
  }

  .concept {
    padding: 64px 0 72px;
  }

  .concept-intro {
    display: block;
  }

  .concept-copy {
    padding: 0 24px;
  }

  .concept-copy h2 {
    font-size: 22px;
    letter-spacing: 0.1em;
    white-space: normal;
  }

  .concept-gallery {
    margin-top: 34px;
  }

  .concept-gallery-track {
    animation-duration: 38s;
  }

  .concept-gallery-set {
    gap: 18px;
    padding-right: 18px;
  }

  .concept-gallery img {
    width: 190px;
    height: 276px;
  }

  .concept-body {
    margin-top: 56px;

    letter-spacing: 0.12em;
    line-height: 2;
    text-align: left;
  }

  .concept-body p + p {
    margin-top: 24px;
  }

  .product {
    overflow: hidden;
    padding: 24px 0 72px;
  }

  .product-inner {
    position: relative;
    display: grid;
    width: 100%;
    max-width: 430px;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.2fr);
    column-gap: 10px;
    row-gap: 24px;
    min-height: 0;
    margin: 0 auto;
    padding: 0 20px;
  }

  .product-left,
  .product-right {
    display: contents;
  }

  .product-image-main,
  .product-image-wide,
  .product-image-sub {
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
  }

  .product-image-main {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    aspect-ratio: 1.3 / 1;
    margin-top: 80px;
  }

  .product-image-wide {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    aspect-ratio: 1.18 / 1;
  }

  .product-copy {
    z-index: 2;
    grid-column: 1 / -1;
    grid-row: 2;
    /* width: min(100%, 300px); */
    min-width: 0;
    justify-self: center;
    margin-top: 12px;
  }

  .product-image-sub {
    grid-column: 1;
    grid-row: 2;
    display: none;
    aspect-ratio: 1.3 / 1;
    margin-top: 50px;
  }

  .product-label {
    top: clamp(142px, 42vw, 178px);
    right: 20px;
    left: 20px;
    z-index: 1;
    display: block;
    color: rgba(0, 0, 0, 0.13);
    font-size: 52px;
    line-height: 0.9;
    text-align: right;
    white-space: nowrap;
  }

  .product-copy h2 {
    margin-bottom: 18px;
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }

  .product-copy p {
    font-size: 14px;
    letter-spacing: 0.08em;
    line-height: 2.55;
  }

  .product-copy p + p {
    margin-top: 20px;
  }

  .product-showcase {
    min-height: 1660px;
  }

  .product-showcase-sticky {
    min-height: 0;
  }

  .product-showcase-panel {
    grid-template-columns: 1fr;
    grid-template-rows: 34% 66%;
  }

  .product-showcase-copy {
    justify-content: center;
    padding: 24px 24px 30px;
  }

  .product-showcase-label {
    font-size: 28px;
  }

  .product-showcase-count {
    margin: 8px 0 22px;
  }

  .product-showcase-count span:first-child {
    font-size: 52px;
  }

  .product-showcase-count span:last-child {
    margin-left: 6px;
    font-size: 30px;
  }

  .product-showcase-rule {
    margin-bottom: 24px;
  }

  .product-showcase-copy h3 {
    margin-bottom: 14px;
    font-size: 21px;
  }

  .product-showcase-copy p:last-child {
    font-size: 11px;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }

  .items {
    padding: 64px 0 70px;
  }

  .items-heading {
    position: static;
    margin: 0 0 42px;
    padding: 0 24px;
    font-size: 52px;
    line-height: 0.9;
    transform: none;
    writing-mode: horizontal-tb;
  }

  .items-inner {
    padding: 0 24px;
  }

  .items-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 54px 24px;
  }

  .items-card img {
    width: min(100%, 120px);
    height: 154px;
    margin-bottom: 18px;
  }

  .items-name {
    font-size: 15px;
  }

  .items-price {
    font-size: 11px;
  }

  .items-all-link {
    margin-top: 58px;
    font-size: 20px;
  }

  .profile {
    --profile-line-x: 6px;
    --profile-line-y: 6px;
    --profile-track-x: 24px;
    height: auto !important;
    padding: 64px 0 74px;
  }

  .profile-sticky {
    position: static;
    height: auto;
    min-height: 0;
    padding: 0 24px;
  }

  .profile-heading {
    margin-bottom: 42px;
    padding-left: 0;
    font-size: 52px;
  }

  .profile-viewport {
    overflow: visible;
  }

  .profile-track {
    width: 100%;
    min-width: 0;
    padding: 0 0 0 var(--profile-track-x);
    transform: none !important;
    transition: none;
  }

  .profile-line {
    top: var(--profile-line-y);
    bottom: 0;
    left: calc(var(--profile-line-x) - 0.5px);
    width: 1px;
    height: auto;
    transform: scaleY(0);
    transform-origin: center top;
  }

  .profile-list {
    display: block;
  }

  .profile-item {
    flex: none;
    width: auto;
    min-height: 92px;
    padding: 0 0 0 28px;
  }

  .profile-item + .profile-item {
    margin-top: 38px;
  }

  .profile-dot {
    top: var(--profile-line-y);
    left: calc(var(--profile-line-x) - var(--profile-track-x) - var(--profile-dot-radius));
  }

  .profile-year {
    font-size: 14px;
  }

  .profile-item p {
    max-width: 28em;
    font-size: 12px;
    line-height: 1.85;
  }

  .profile.is-visible .profile-line {
    animation-name: profile-line-reveal-y;
  }
}





.product-detail-page {
  padding: 40px 0 0;
  background: #fff;
}

.product-detail {
  padding: 0 0 104px;
}

.product-detail-layout {
  display: grid;
  max-width: 1080px;
  grid-template-columns: minmax(340px, 420px) minmax(0, 1fr);
  gap: clamp(68px, 8vw, 128px);
  align-items: start;
  margin: 0 auto;
  padding: 0 28px;
}

.product-gallery {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.product-gallery-main {
  position: relative;
  display: flex;
  height: 420px;
  align-items: center;
  justify-content: center;
  border: 1px solid #777;
  background: #fff;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-gallery-main img.is-gallery-fading {
  animation: product-gallery-fade 0.42s ease both;
}

@keyframes product-gallery-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-gallery-main img.is-gallery-fading {
    animation: none;
  }
}

.product-gallery-arrow {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 76px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.product-gallery-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  content: "";
  border-top: 2px solid #686868;
  border-left: 2px solid #686868;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.product-gallery-arrow-prev {
  left: 14px;
}

.product-gallery-arrow-next {
  right: 14px;
}

.product-gallery-arrow-next::before {
  transform: translate(-50%, -50%) rotate(135deg);
}

.product-gallery-arrow:hover::before,
.product-gallery-arrow:focus-visible::before {
  border-color: #644b4c;
}

.product-gallery-arrow:focus-visible {
  outline: 1px solid #9a7374;
  outline-offset: 2px;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.product-gallery-thumbs li {
  display: flex;
  aspect-ratio: 1 / 1;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e5e5;
  background: #fff;
  opacity: 0.24;
  cursor: pointer;
}

.product-gallery-thumbs li.is-current {
  border-color: #777;
  opacity: 1;
}

.product-gallery-thumbs img {
  width: auto;
  max-width: 100%;
  max-height: auto;
  object-fit: contain;
}

.product-info {
  min-width: 0;
}

.product-info h1 {
  margin: 0 0 18px;
  color: #050505;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Times New Roman", serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.product-price {
  margin: 0 0 30px;
  color: #111;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
}

.product-spec-group + .product-spec-group {
  margin-top: 56px;
}

.product-spec-group h2 {
  margin: 0 0 14px;
  color: #111;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.product-spec-list {
  margin: 0;
  font-family: sans-serif;
}

.product-spec-list div {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 20px;
  align-items: baseline;
  min-height: 42px;
  padding: 10px 0 9px;
  border-bottom: 1px solid #8b8b8b;
}

.product-spec-list dt,
.product-spec-list dd {
  margin: 0;
  color: #111;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.55;
}

.product-spec-list dt {
  font-weight: 500;
}

.product-spec-list dd {
  font-weight: 400;
}

.color-variation {
  margin-top: 64px;
}

.color-variation h2 {
  margin: 0 0 24px;
  color: #050505;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;

  line-height: 1.2;
}

.color-variation ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(72px, 1fr));
  gap: clamp(26px, 3vw, 72px);
  align-items: end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.color-variation li {
  min-width: 0;
}

.color-variation a {
  display: block;
  transition: opacity 0.2s ease;
}

.color-variation a:hover,
.color-variation a:focus-visible {
  opacity: 0.7;
}

.color-variation img {
  width: auto;
  height: 128px;
  margin: 0 auto;
  object-fit: contain;
}

.product-story {
  display: grid;
  max-width: 1080px;
  grid-template-columns: minmax(0, 560px) minmax(320px, 1fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
  margin: 0 auto;
  padding: 0 28px 120px;
}

.product-story-image {
  overflow: hidden;
  aspect-ratio: 1.43 / 1;
  background: #f5f5f5;
}

.product-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-story-copy {
  max-width: 410px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.product-story-copy h2 {
  margin: 0 0 28px;
  color: #050505;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.18;
}

.product-story-copy p {
  margin: 0;
  color: #333;
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 2.15;
}

.product-story-copy p + p {
  margin-top: 16px;
}

@media (max-width: 900px) {
  .product-detail-page {
    padding-top: 56px;
  }

  .product-detail {
    padding-bottom: 76px;
  }

  .product-detail-layout,
  .product-story {
    display: block;
    padding-right: 24px;
    padding-left: 24px;
  }

  .product-gallery-main {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .product-gallery-main img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
  }

  .product-gallery-thumbs {
    gap: 8px;
  }

  .product-info {
    margin-top: 48px;
  }

  .product-info h1 {
    font-size: 42px;
  }

  .product-spec-list div {
    grid-template-columns: minmax(112px, 34%) 1fr;
    gap: 16px;
  }

  .product-spec-group h2 {
    font-size: 13px;
  }

  .product-spec-list dt,
  .product-spec-list dd {
    font-size: 12px;
  }

  .color-variation ul {
    gap: 8px;
  }

  .color-variation img {
    height: 96px;
  }

  .product-story {
    padding-bottom: 88px;
  }

  .product-story-copy {
    max-width: none;
    margin-top: 42px;
  }
}

@media (max-width: 480px) {
  .product-gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-info h1 {
    font-size: 34px;
  }

  .product-price,
  .product-spec-group h2,
  .product-spec-list dt,
  .product-spec-list dd,
  .product-story-copy p {
    font-size: 12px;
  }

  .product-spec-list div {
    display: block;
    min-height: 0;
  }

  .product-spec-list dd {
    margin-top: 4px;
  }

  .color-variation h2 {
    font-size: 24px;
  }

  .color-variation ul {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 22px;
  }

  .color-variation img {
    height: 112px;
  }
}


.contact-page {
  padding: 54px 40px 150px;
  background: #fff;
}

.contact-hero {
  max-width: 1284px;
  margin: 0 auto;
  padding: 8px 0 48px;
  border-bottom: 1px solid #222;
  text-align: center;
}

.contact-hero h1 {
  margin: 0;
  color: #050505;
  font-family: "Times New Roman", "Cormorant Garamond", serif;
  font-size: clamp(46px, 4.4vw, 60px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.contact-content {
  display: grid;
  max-width: 1284px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 602px);
  gap: clamp(72px, 12vw, 184px);
  margin: 70px auto 0;
}

.contact-info h2,
.contact-form-block h2 {
  margin: 0 0 46px;
  color: #050505;
  font-family: "Times New Roman", "Cormorant Garamond", serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.contact-info p {
  margin: 0;
  color: #050505;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1.9;
}

.contact-info p + p {
  margin-top: 12px;
}

.contact-message {
  margin: -18px 0 26px;
  padding: 15px 18px;
  border: 1px solid #bdbdbd;
  color: #222;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 13px;
  line-height: 1.7;
}

.contact-message p {
  margin: 0;
}

.contact-message p + p {
  margin-top: 4px;
}

.contact-message-success {
  border-color: #a9b8a6;
  background: #f6faf5;
}

.contact-message-error {
  border-color: #c7aaa6;
  background: #fff7f6;
}

.contact-form {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}

.contact-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-field + .contact-field {
  margin-top: 24px;
}

.contact-field label {
  display: block;
  margin-bottom: 8px;
  color: #050505;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid #9d9d9d;
  border-radius: 7px;
  color: #222;
  background: #fff;
  font: inherit;
  font-size: 15px;
  line-height: 1.6;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field input {
  height: 54px;
  padding: 0 14px;
}

.contact-field textarea {
  min-height: 198px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: #222;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

.contact-help {
  margin: 0 0 12px;
  color: #050505;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.75;
}

.contact-help + .contact-help {
  margin-top: 2px;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 48px;
  margin-top: 32px;
  padding: 0 34px;
  border: 1px solid #222;
  border-radius: 0;
  color: #222;
  background: #fff;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  color: #fff;
  background: #222;
}

.global-nav a[aria-current="page"],
.footer-nav a[aria-current="page"] {
  color: #222;
}

@media (max-width: 767px) {
  .contact-page {
    padding: 42px 24px 88px;
  }

  .contact-hero {
    padding: 0 0 34px;
  }

  .contact-content {
    display: block;
    margin-top: 48px;
  }

  .contact-info h2,
  .contact-form-block h2 {
    margin-bottom: 28px;
    font-size: 24px;
  }

  .contact-info p {
    font-size: 14px;
    line-height: 1.85;
  }

  .contact-form-block {
    margin-top: 56px;
  }

  .contact-field + .contact-field {
    margin-top: 22px;
  }

  .contact-help {
    font-size: 13px;
  }

  .contact-submit {
    width: 100%;
  }
}

.site-footer {
  position: relative;
  background: #d9d9d9;
  color: #999;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 118px;
  padding: 34px 34px 0;
}

.footer-logo img {
  width: 184px;
  height: auto;
}

.footer-nav ul {
  display: flex;
  gap: 34px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  color: #000000;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #555;
}

.footer-bottom {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  min-height: 64px;
  padding: 0 28px 18px;
}

.footer-copy {
  justify-self: start;
  margin: 0;
  color: #9a9a9a;
  font-size: 12px;
  letter-spacing: 0.01em;
}

.page-top {
  --page-top-line-height: 38px;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  color: #000000;
  font-size: 10px;
  letter-spacing: 0.04em;
  line-height: 1;
  transition: color 0.2s ease;
}

.page-top:hover,
.page-top:focus-visible {
  color: #030303;
}

.page-top-line {
  position: relative;
  display: block;
  width: 1px;
  height: var(--page-top-line-height);
  margin-bottom: 11px;
  overflow: hidden;
  background: rgba(150, 150, 150, 0.35);
}

.page-top-line::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 18px;
  content: "";
  background: currentColor;
  animation: page-top-line-flow 1.8s cubic-bezier(0.77, 0, 0.18, 1) infinite;
}

.page-top-text {
  display: block;
}

@keyframes page-top-line-flow {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(calc(var(--page-top-line-height) * -1));
  }
}

.footer-policy-wrap {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-self: end;
}

.footer-policy {
  color: #000000;
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.footer-policy:hover,
.footer-policy:focus-visible {
  color: #555;
}

.footer-arrow {
  position: relative;
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid #9a9a9a;
  border-radius: 50%;
  color: #777;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-arrow span {
  position: relative;
  width: 8px;
  height: 8px;
}

.footer-arrow span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: center;
}

.footer-arrow span::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 5px;
  content: "";
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

.footer-arrow:hover,
.footer-arrow:focus-visible {
  border-color: #555;
  color: #555;
}

@media (max-width: 767px) {
  .footer-main {
    display: block;
    min-height: 0;
    padding: 34px 24px 0;
  }

  .footer-logo img {
    width: 150px;
  }

  .footer-nav {
    margin-top: 32px;
  }

  .footer-nav ul {
    flex-wrap: wrap;
    gap: 16px 22px;
  }

  .footer-nav a {
    font-size: 10px;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    padding: 34px 24px 22px;
  }

  .footer-copy,
  .page-top,
  .footer-policy-wrap {
    justify-self: start;
  }

  .page-top {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-policy-wrap {
    justify-self: end;
  }
}



.contact-link {
  background: #fff;
   padding-top: 200px;
}

.contact-link-bg {
  position: relative;
  display: flex;
  min-height: clamp(340px, 42vw, 520px);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background-image: url("../img/contact-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fff;
}

.contact-link-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.336);
  transition: background-color 0.3s ease;
}

.contact-link-bg:hover::after,
.contact-link-bg:focus-visible::after {
  background: rgba(0, 0, 0, 0.18);
}

.contact-link-bg:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -8px;
}

.contact-link-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.contact-link-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
}

.contact-link-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(320px, calc(100vw - 48px));
  min-height: 40px;
  margin-top: 22px;
  padding: 0 44px 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  color: #fff;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.contact-link-button::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 23px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translateY(-50%);
}

.contact-link-button::before {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.contact-link-bg:hover .contact-link-button,
.contact-link-bg:focus-visible .contact-link-button {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 767px) {
  .site-footer {
    background: #d9d9d9;
  }

  .footer-main {
    display: block;
    min-height: 0;
    padding: 46px 22px 0;
    text-align: center;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-logo img {
    width: 210px;
    max-width: 62vw;
  }

  .footer-nav {
    margin-top: 34px;
  }

  .footer-nav ul {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: 20px 38px;
  }

  .footer-nav a {
    color: #777;
    font-size: 15px;
    letter-spacing: 0.02em;
  }

  .footer-bottom {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 250px;
    padding: 38px 22px 28px;
    text-align: center;
  }

  .page-top {
    --page-top-line-height: 56px;
    justify-self: center;
    order: 1;
    color: #555;
    font-size: 15px;
    letter-spacing: 0.04em;
  }

  .page-top-line {
    height: var(--page-top-line-height);
    margin-bottom: 14px;
    background: rgba(120, 120, 120, 0.22);
  }

  .page-top-line::before {
    height: 26px;
    background: #777;
  }

  .footer-copy {
    justify-self: center;
    order: 2;
    margin-top: 38px;
    color: #777;
    font-size: 12px;
    letter-spacing: 0.02em;
    line-height: 1.5;
    text-align: center;
  }

  .footer-policy-wrap {
    justify-self: end;
    order: 3;
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 30px;
  }

  .footer-policy {
    color: #555;
    font-size: 13px;
    letter-spacing: 0.04em;
  }

  .footer-arrow {
    width: 36px;
    height: 36px;
    border-color: #777;
    color: #555;
  }

  .footer-arrow span {
    width: 12px;
    height: 12px;
  }

  .footer-arrow span::before {
    width: 13px;
  }

  .footer-arrow span::after {
    width: 7px;
    height: 7px;
  }
}


.privacy-page {
  padding: 54px 40px 150px;
  background: #fff;
}

.privacy-hero {
  max-width: 1080px;
  margin: 0 auto;
  padding: 8px 0 48px;
  border-bottom: 1px solid #222;
  text-align: center;
}

.privacy-hero h1 {
  margin: 0;
  color: #050505;
  font-family: "Times New Roman", "Cormorant Garamond", serif;
  font-size: clamp(46px, 4.4vw, 60px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.privacy-breadcrumb {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  color: #777;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.privacy-breadcrumb a {
  transition: color 0.2s ease;
}

.privacy-breadcrumb a:hover,
.privacy-breadcrumb a:focus-visible {
  color: #222;
}

.privacy-content {
  max-width: 920px;
  margin: 70px auto 0;
  color: #222;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 2.1;
}

.privacy-content p {
  margin: 0;
}

.privacy-section {
  margin-top: 48px;
}

.privacy-section h2 {
  margin: 0 0 16px;
  color: #050505;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.privacy-section ul {
  margin: 18px 0 0;
  padding-left: 1.4em;
}

.privacy-section li {
  margin: 0;
}

.privacy-section li + li {
  margin-top: 8px;
}

.privacy-contact {
  margin-top: 56px !important;
  padding-top: 28px;
  border-top: 1px solid #d8d8d8;
}

.privacy-contact a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 767px) {
  .privacy-page {
    padding: 42px 24px 88px;
  }

  .privacy-hero {
    padding: 0 0 34px;
  }

  .privacy-hero h1 {
    font-size: 42px;
  }

  .privacy-breadcrumb {
    margin-top: 20px;
    font-size: 10px;
  }

  .privacy-content {
    margin-top: 48px;
    font-size: 13px;
    line-height: 2;
  }

  .privacy-section {
    margin-top: 38px;
  }

  .privacy-section h2 {
    font-size: 14px;
  }
}





.all-items-page {
  padding: 34px 40px 120px;
 justify-self: center;
}

.all-items-head {
  padding: 60px 0 68px;
  text-align: center;
}

.all-items-head h1 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 12px;
  color: #555;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1;
}

.all-items-head h1::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: #9d9d9d;
}

.all-items-section {
  max-width: 1240px;
  margin: 0 auto;
}

.all-items-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 96px 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.all-item-card {
  text-align: center;
}

.all-item-card a {
  display: block;
  color: inherit;
  transition: opacity 0.2s ease;
}

.all-item-card a:hover,
.all-item-card a:focus-visible {
  opacity: 0.7;
}

.all-item-card img {
  width: min(100%, 210px);
  height: 210px;
  margin: 0 auto 0px;
  object-fit: contain;
}

.all-item-name {
  margin: 0;
  color: #444;
  font-family: serif;
  font-size: 12px;
  line-height: 1.3;
}

.all-item-price {
  margin: 6px 0 0;
  color: #444;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 13px;
  line-height: 1.5;
}

.all-item-card.is-new a {
  position: relative;
  padding-top: 24px;
}

.all-item-badge {
  position: absolute;
  top: 0;
  left: 18px;
  display: inline-flex;
  min-width: 38px;
  min-height: 20px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border: 1px solid #a8a8a8;
  color: #666;
  background: transparent;
  font-family: sans-serif;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.all-items-divider {
  max-width: 1240px;
  margin: 86px auto 92px;
  border-top: 1px solid #a7a7a7;
}

@media (max-width: 1024px) {
  .all-items-grid {
    gap: 72px 40px;
  }

  .all-item-card img {
    width: min(100%, 150px);
    height: 190px;
  }
}

@media (max-width: 767px) {
  .all-items-page {
    padding: 24px 20px 84px;
  }

  .all-items-head {
    padding: 38px 0 44px;
  }

  .all-items-head h1 {
    font-size: 32px;
    padding-bottom: 10px;
  }

  .all-items-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 54px 24px;
  }

  .all-item-card img {
    width: min(100%, 120px);
    height: 154px;
    margin-bottom: 18px;
  }

  .all-item-name {
    font-size: 15px;
  }

  .all-item-price {
    font-size: 11px;
  }

  .all-item-badge {
    left: 6px;
    min-width: 34px;
    min-height: 18px;
    font-size: 9px;
  }

  .all-items-divider {
    margin: 58px auto 62px;
  }
}



.all-items-divider-wrap {
  max-width: 1240px;
  margin: 86px auto 92px;
}

.all-items-divider {
  margin: 0;
  border-top: 1px solid #a7a7a7;
}

.all-items-collection {
  margin: 12px 0 0;
  color: #555;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1;
}
