@charset "UTF-8";
.catalog-product-card {
  display: flex;
  height: 100%;
  overflow: hidden;
  border: 1px solid #decfd1;
  background: #fff;
  box-shadow: 0 14px 34px rgba(76, 47, 54, 0.07);
  flex-direction: column;
}

.catalog-product-card__link {
  display: flex;
  height: 100%;
  color: inherit;
  flex: 1;
  flex-direction: column;
  text-decoration: none;
}

.catalog-product-card__link:hover {
  color: inherit;
  text-decoration: none;
}

.catalog-product-card .catalog-product-card__link:focus-visible {
  outline: 3px solid #6e3c46;
  outline-offset: -3px;
}

.catalog-product-card__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: #eee8e2;
}

.catalog-product-card__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-product-card__visual > .catalog-product-card__image--placeholder {
  padding: 20%;
  background: #f5efeb;
  object-fit: contain;
}

.catalog-product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  max-width: calc(100% - 28px);
  overflow: hidden;
  padding: 7px 11px;
  color: #fff;
  background: rgba(101, 52, 61, 0.94);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.catalog-product-card__body {
  display: flex;
  min-height: 176px;
  padding: 20px 20px 19px;
  flex: 1;
  flex-direction: column;
}

.catalog-product-card__meta {
  margin: 0;
  color: #765228;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.catalog-product-card__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.catalog-product-card__brands li {
  padding: 4px 7px;
  border: 1px solid #e6d9d8;
  color: #65343d;
  background: #fbf6f5;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.catalog-product-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 10px 0 0;
  color: #372d30;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.catalog-product-card__price {
  display: flex;
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px solid #eee5e2;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  color: #74666a;
}

.catalog-product-card__price > span {
  font-size: 0.64rem;
  line-height: 1.5;
}

.catalog-product-card__price > strong {
  color: #65343d;
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
}

.catalog-product-card__price small {
  font-size: 0.58rem;
  font-weight: 500;
}

.catalog-product-card__price--contact > strong {
  font-size: 0.75rem;
  white-space: normal;
  text-align: right;
}

.catalog-product-card__detail {
  display: inline-flex;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
  color: #65343d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.catalog-product-card__detail > span {
  transition: transform 180ms ease;
}

.catalog-product-card__link:hover .catalog-product-card__detail > span {
  transform: translateX(4px);
}

@media (max-width: 575.98px) {
  .catalog-product-card__body {
    min-height: 166px;
    padding: 18px 17px 17px;
  }
  .catalog-product-card h3 {
    font-size: 1.05rem;
  }
  .catalog-product-card__badge {
    top: 10px;
    left: 10px;
    padding: 6px 8px;
    font-size: 0.56rem;
  }
  .catalog-product-card__price {
    display: block;
  }
  .catalog-product-card__price > span,
  .catalog-product-card__price > strong {
    display: block;
    text-align: left;
  }
  .catalog-product-card__price > strong {
    margin-top: 4px;
    font-size: 0.8rem;
    white-space: normal;
  }
}
@media (prefers-reduced-motion: reduce) {
  .catalog-product-card__detail > span,
  .catalog-product-card__link:hover .catalog-product-card__detail > span {
    transition: none;
    transform: none;
  }
}
.catalog-furisodes-page {
  --catalog-ink: #372d30;
  --catalog-muted: #74666a;
  --catalog-rose: #91505d;
  --catalog-rose-dark: #65343d;
  --catalog-blush: #f6e7e9;
  --catalog-cream: #fbf8f3;
  --catalog-gold: #765228;
  color: var(--catalog-ink);
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.catalog-furisodes-page *,
.catalog-furisodes-page *::before,
.catalog-furisodes-page *::after {
  box-sizing: border-box;
}

.catalog-furisodes-page a:focus-visible,
.catalog-furisodes-page button:focus-visible,
.catalog-furisodes-page select:focus-visible {
  outline: 3px solid #6e3c46;
  outline-offset: 3px;
}

.catalog-page-hero {
  padding: 76px 0 72px;
  border-bottom: 1px solid #ead8db;
  background: radial-gradient(circle at 9% 25%, rgba(255, 255, 255, 0.9) 0 5px, transparent 6px), linear-gradient(135deg, #f6e7e9 0%, #fcf7f5 72%);
  background-size: 76px 76px, auto;
  text-align: center;
}

.catalog-page-eyebrow {
  margin: 0 0 16px;
  color: var(--catalog-rose);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.5;
}

.catalog-page-hero h1,
.catalog-page-results h2,
.catalog-page-cta h2 {
  margin: 0;
  color: var(--catalog-ink);
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.catalog-page-hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.6rem);
  line-height: 1.35;
}

.catalog-page-hero h1::after {
  display: block;
  width: 48px;
  height: 1px;
  margin: 27px auto 0;
  background: var(--catalog-gold);
  content: "";
}

.catalog-page-hero p:last-child {
  margin: 26px 0 0;
  color: var(--catalog-muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  line-height: 2;
}

.catalog-page-content {
  padding: 74px 0 92px;
  background: #fff;
}

.catalog-page-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.catalog-page-filter {
  position: sticky;
  top: 24px;
  border: 1px solid #e4d8d7;
  background: var(--catalog-cream);
}

.catalog-page-filter form {
  padding: 28px 24px 24px;
}

.catalog-page-filter__heading {
  padding-bottom: 22px;
  border-bottom: 1px solid #ded1d0;
}

.catalog-page-filter__heading p {
  margin: 0 0 7px;
  color: var(--catalog-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.catalog-page-filter__heading h2 {
  margin: 0;
  color: var(--catalog-ink);
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.catalog-page-filter__field {
  margin-top: 24px;
}

.catalog-page-filter__field label {
  display: block;
  margin-bottom: 9px;
  color: var(--catalog-rose-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.catalog-page-filter__field select {
  width: 100%;
  min-height: 48px;
  padding: 9px 36px 9px 12px;
  border: 1px solid #cdbdbd;
  border-radius: 0;
  color: var(--catalog-ink);
  background: #fff;
  font-family: inherit;
  font-size: 0.85rem;
}

.catalog-page-filter__submit,
.catalog-page-button {
  display: inline-flex;
  min-height: 50px;
  border: 1px solid transparent;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.catalog-page-filter__submit {
  width: 100%;
  margin-top: 28px;
  padding: 12px 16px;
  color: #fff;
  background: var(--catalog-rose-dark);
  cursor: pointer;
}

.catalog-page-filter__submit:hover {
  background: #4f2830;
}

.catalog-page-filter__submit:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.catalog-page-filter__reset {
  display: block;
  margin-top: 16px;
  color: var(--catalog-rose-dark);
  font-size: 0.72rem;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.catalog-page-results__heading {
  display: flex;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #ded1d0;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.catalog-page-results__heading .catalog-page-eyebrow {
  margin-bottom: 8px;
}

.catalog-page-results h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  line-height: 1.4;
}

.catalog-page-results__count {
  flex: 0 0 auto;
  margin: 0;
  color: var(--catalog-muted);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.catalog-page-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 18px;
  list-style: none;
}

.catalog-page-grid > li {
  min-width: 0;
}

.catalog-page-pagination {
  margin-top: 44px;
}

.catalog-page-pagination--mobile {
  display: none;
}

.catalog-page-pagination .pagination {
  display: flex;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
  list-style: none;
}

.catalog-page-pagination .page-item {
  display: block;
  flex: 0 0 auto;
}

.catalog-page-pagination .page-link {
  display: inline-flex;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  margin-left: 0;
  border: 1px solid #dccdcd;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--catalog-rose-dark);
  background: #fff;
  line-height: 1;
  text-decoration: none;
}

.catalog-page-pagination a.page-link:hover {
  border-color: var(--catalog-rose-dark);
  color: var(--catalog-rose-dark);
  background: var(--catalog-blush);
}

.catalog-page-pagination .page-item.active .page-link {
  border-color: var(--catalog-rose-dark);
  color: #fff;
  background: var(--catalog-rose-dark);
}

.catalog-page-pagination .page-item.disabled .page-link {
  color: #998d90;
  background: #f5f1ef;
}

.catalog-page-empty {
  padding: 72px 28px;
  border: 1px solid #e4d8d7;
  background: var(--catalog-cream);
  text-align: center;
}

.catalog-page-empty__mark {
  display: inline-flex;
  width: 62px;
  height: 62px;
  margin: 0;
  border: 1px solid var(--catalog-gold);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--catalog-gold);
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 1.2rem;
}

.catalog-page-empty h3 {
  margin: 24px 0 0;
  color: var(--catalog-ink);
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 1.45rem;
  letter-spacing: 0.05em;
}

.catalog-page-empty p:not(.catalog-page-empty__mark) {
  margin: 14px 0 0;
  color: var(--catalog-muted);
  font-size: 0.82rem;
  line-height: 1.9;
}

.catalog-page-empty a {
  display: inline-block;
  margin-top: 22px;
  color: var(--catalog-rose-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.catalog-page-cta {
  padding: 72px 0;
  border-top: 1px solid #dfcdd0;
  background: var(--catalog-blush);
}

.catalog-page-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.catalog-page-cta h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.45;
}

.catalog-page-cta__inner > div:first-child > p:last-child {
  margin: 16px 0 0;
  color: var(--catalog-muted);
  font-size: 0.82rem;
  line-height: 1.8;
}

.catalog-page-cta__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  flex-direction: column;
}

.catalog-page-button {
  min-width: 230px;
  padding: 13px 20px;
}

.catalog-page-button:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.catalog-page-button--primary {
  color: #fff;
  background: var(--catalog-rose-dark);
}

.catalog-page-button--primary:hover {
  color: #fff;
  background: #4f2830;
}

.catalog-page-button--outline {
  border-color: var(--catalog-rose-dark);
  color: var(--catalog-rose-dark);
  background: transparent;
}

.catalog-page-button--outline:hover {
  color: #fff;
  background: var(--catalog-rose-dark);
}

@media (max-width: 991.98px) {
  .catalog-page-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .catalog-page-filter {
    position: static;
  }
  .catalog-page-filter form {
    display: grid;
    padding: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .catalog-page-filter__heading {
    grid-column: 1/-1;
  }
  .catalog-page-filter__field,
  .catalog-page-filter__submit,
  .catalog-page-filter__reset {
    margin-top: 0;
  }
  .catalog-page-filter__submit,
  .catalog-page-filter__reset {
    align-self: center;
  }
  .catalog-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .catalog-page-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .catalog-page-cta__actions {
    width: 100%;
    flex-direction: row;
  }
  .catalog-page-button {
    flex: 1;
  }
}
@media (max-width: 767.98px) {
  .catalog-page-hero {
    padding: 56px 0 52px;
  }
  .catalog-page-hero p:last-child br {
    display: none;
  }
  .catalog-page-content {
    padding: 48px 0 68px;
  }
  .catalog-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }
  .catalog-page-results__heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .catalog-page-cta {
    padding: 56px 0;
  }
}
@media (max-width: 575.98px) {
  .catalog-page-hero h1 {
    font-size: 2rem;
  }
  .catalog-page-hero p:last-child {
    font-size: 0.82rem;
    text-align: left;
  }
  .catalog-page-filter form {
    grid-template-columns: 1fr;
  }
  .catalog-page-filter__heading {
    grid-column: auto;
  }
  .catalog-page-filter__reset {
    min-height: 44px;
    padding-top: 12px;
  }
  .catalog-page-grid {
    gap: 16px 10px;
  }
  .catalog-page-pagination--desktop {
    display: none;
  }
  .catalog-page-pagination--mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .catalog-page-pagination--mobile > a,
  .catalog-page-pagination--mobile > span {
    display: inline-flex;
    min-width: 64px;
    min-height: 44px;
    padding: 8px 10px;
    border: 1px solid #dccdcd;
    align-items: center;
    justify-content: center;
    color: var(--catalog-rose-dark);
    background: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
  }
  .catalog-page-pagination--mobile > span[aria-disabled=true] {
    color: #786e71;
    background: #f5f1ef;
  }
  .catalog-page-cta__actions {
    flex-direction: column;
  }
  .catalog-page-button {
    width: 100%;
    min-width: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .catalog-page-filter__submit,
  .catalog-page-button,
  .catalog-page-button:hover {
    transition: none;
    transform: none;
  }
}
.catalog-detail-page {
  padding-top: 46px;
}

.catalog-detail-back {
  display: inline-flex;
  min-height: 44px;
  margin-bottom: 30px;
  align-items: center;
  gap: 10px;
  color: var(--catalog-rose-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.catalog-detail-back:hover {
  color: #4f2830;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.catalog-detail-hero {
  display: grid;
  padding-bottom: 86px;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.catalog-detail-visual {
  overflow: hidden;
  aspect-ratio: 2/3;
  border: 1px solid #e0d4d2;
  background: #f5efeb;
}

.catalog-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalog-detail-visual .catalog-detail-image--placeholder {
  padding: 24%;
}

.catalog-detail-summary {
  padding-top: 20px;
}

.catalog-detail-collection {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 0;
  color: var(--catalog-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.catalog-detail-collection span {
  padding-left: 16px;
  border-left: 1px solid #d5c5c2;
}

.catalog-detail-summary h1,
.catalog-detail-information h2,
.catalog-detail-description h2 {
  color: var(--catalog-ink);
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.catalog-detail-summary h1 {
  margin: 24px 0 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.25;
}

.catalog-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.catalog-detail-tags li {
  padding: 6px 10px;
  border: 1px solid #dbc9c8;
  color: var(--catalog-rose-dark);
  background: #fbf6f5;
  font-size: 0.7rem;
  font-weight: 700;
}

.catalog-detail-price {
  margin-top: 34px;
  padding: 25px 27px;
  border-top: 1px solid #dbc9c8;
  border-bottom: 1px solid #dbc9c8;
  background: var(--catalog-cream);
}

.catalog-detail-price p {
  margin: 0;
}

.catalog-detail-price > p:first-child {
  color: var(--catalog-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.catalog-detail-price > p + p {
  margin-top: 8px;
  color: var(--catalog-rose-dark);
}

.catalog-detail-price strong {
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
}

.catalog-detail-price span {
  font-size: 0.72rem;
}

.catalog-detail-price .catalog-detail-price__contact {
  font-size: 1.1rem;
  font-weight: 700;
}

.catalog-detail-availability {
  margin: 24px 0 0;
  color: var(--catalog-muted);
  font-size: 0.78rem;
  line-height: 1.9;
}

.catalog-detail-reserve {
  width: 100%;
  margin-top: 28px;
}

.catalog-detail-reserve-note {
  margin: 10px 0 0;
  color: var(--catalog-muted);
  font-size: 0.7rem;
  text-align: center;
}

.catalog-detail-information {
  padding: 82px 0;
  border-top: 1px solid #e3d7d5;
  background: var(--catalog-cream);
}

.catalog-detail-information__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.catalog-detail-information h2,
.catalog-detail-description h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.45;
}

.catalog-detail-information__inner > div:first-child > p:last-child {
  margin: 18px 0 0;
  color: var(--catalog-muted);
  font-size: 0.8rem;
  line-height: 1.8;
}

.catalog-detail-specs {
  margin: 0;
  border-top: 1px solid #ddcfcd;
}

.catalog-detail-specs > div {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid #ddcfcd;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
}

.catalog-detail-specs dt {
  color: var(--catalog-rose-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.catalog-detail-specs dd {
  margin: 0;
  color: var(--catalog-ink);
  font-size: 0.82rem;
  line-height: 1.7;
}

.catalog-detail-specs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-detail-description {
  padding: 82px 0;
  background: #fff;
}

.catalog-detail-description__inner {
  max-width: 920px;
}

.catalog-detail-description__content {
  margin-top: 32px;
  padding: 34px 0 0;
  border-top: 1px solid #e0d4d2;
  color: var(--catalog-muted);
  font-size: 0.88rem;
  line-height: 2;
}

@media (max-width: 991.98px) {
  .catalog-detail-hero {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: 42px;
  }
  .catalog-detail-information__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
@media (max-width: 767.98px) {
  .catalog-detail-page {
    padding-top: 30px;
  }
  .catalog-detail-back {
    margin-bottom: 20px;
  }
  .catalog-detail-hero {
    padding-bottom: 60px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .catalog-detail-summary {
    padding-top: 0;
  }
  .catalog-detail-information,
  .catalog-detail-description {
    padding: 60px 0;
  }
}
@media (max-width: 575.98px) {
  .catalog-detail-summary h1 {
    font-size: 2.4rem;
  }
  .catalog-detail-collection {
    gap: 6px 10px;
  }
  .catalog-detail-collection span {
    padding-left: 10px;
  }
  .catalog-detail-price {
    padding: 22px 20px;
  }
  .catalog-detail-specs > div {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 16px;
  }
}