  * {
    box-sizing: border-box;
  }
  html, body {
    margin: 0;
    background: #F8F2E7;
    overflow-x: hidden;
  }

  /* ============================================================
     UTILITY: SP / PC display toggle (breakpoint 768px)
     ============================================================ */
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }

  .max900 {
    display: none;
  }
  .max600 {
    display: none;
  }

  /* ============================================================
     LOADING OVERLAY (page_loading)
     ============================================================ */
  .loading {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(120% 120% at 50% 22%, #241712 0%, #100907 55%, #000 100%);
    transition: opacity 0.7s ease, visibility 0.7s ease;
  }
  .loading.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .loading__track {
    position: absolute;
    top: 50%;
    width: 50vw;
    container-type: inline-size;
    opacity: 0;
    pointer-events: none;
  }
  .loading__track--left {
    left: 0;
    aspect-ratio: 554 / 155;
    transform: translateY(-70%);
    transform-origin: left center;
    animation: loadingTrackInLeft 1.1s cubic-bezier(.19,1,.22,1) .1s forwards;
  }
  .loading__track--right {
    right: 0;
    aspect-ratio: 537 / 153;
    transform: translateY(-93%);
    transform-origin: right center;
    animation: loadingTrackInRight 1.1s cubic-bezier(.19,1,.22,1) .1s forwards;
  }
  .loading__track-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
  }
  @keyframes loadingTrackInLeft {
    from { opacity: 0; transform: translateY(-70%) translateX(-6%) scaleX(.9); }
    to   { opacity: 1; transform: translateY(-70%) translateX(0) scaleX(1); }
  }
  @keyframes loadingTrackInRight {
    from { opacity: 0; transform: translateY(-93%) translateX(6%) scaleX(.9); }
    to   { opacity: 1; transform: translateY(-93%) translateX(0) scaleX(1); }
  }
  .loading__note {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--w);
    height: auto;
    display: block;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.4) rotate(calc(var(--rot) - 20deg));
    animation:
      loadingNoteIn .7s cubic-bezier(.34,1.56,.64,1) var(--delay) both,
      loadingNoteFloat var(--dur, 4s) ease-in-out calc(var(--delay) + .7s) infinite;
  }
  @keyframes loadingNoteIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(.4) rotate(calc(var(--rot) - 20deg)); }
    to   { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(var(--rot)); }
  }
  @keyframes loadingNoteFloat {
    0%, 100% { transform: translate(-50%, -50%) rotate(var(--rot)) translate(0, 0); }
    50%      { transform: translate(-50%, -50%) rotate(calc(var(--rot) + 5deg)) translate(3%, -10%); }
  }
  .loading__center {
    position: absolute;
    left: 50%;
    bottom: 8%;
    z-index: 2;
    text-align: center;
    color: #EDDFCA;
    padding: 0 24px;
    transform: translateX(-50%);
    opacity: 0;
    animation: centerIn 1s ease-out .3s forwards;
  }
  @keyframes centerIn {
    from { opacity: 0; transform: translateX(-50%) translateY(14px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
  }
  .loading__bar {
    position: relative;
    width: 200px;
    height: 1px;
    margin: 32px auto 0;
    background: rgba(237, 223, 202, .22);
    overflow: hidden;
  }
  .loading__bar-fill {
    position: absolute;
    inset: 0;
    width: 0%;
    background: linear-gradient(90deg, #B69458, #F5E7BE);
    animation: barFill 2.4s cubic-bezier(.65, 0, .35, 1) .3s forwards;
  }
  @keyframes barFill {
    to { width: 100%; }
  }
  @media (prefers-reduced-motion: reduce) {
    .loading__track,
    .loading__note,
    .loading__center,
    .loading__bar-fill {
      animation: none !important;
      opacity: 1 !important;
      transform: none !important;
    }
  }

  /* ============================================================
     HEADER / HERO (page_logo)
     ============================================================ */
  .mv {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 961;
    overflow: hidden;
    background: #000;
  }
  .mv__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .mv__gradient {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.36) 100%;
  }
  .logo-hero {
    position: absolute;
    top: 29.68%;
    left: 9.01%;
    width: 81.93%;
    height: 40.49%;
  }
  .logo-hero__sr {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .logo-hero__track {
    position: absolute;
    container-type: inline-size;
    opacity: 0;
    pointer-events: none;
  }
  .logo-hero__track--left {
    left: 2%;
    top: 42.8%;
    width: 36%;
    aspect-ratio: 554 / 155;
    transform-origin: left center;
    animation: heroTrackInLeft 1.1s cubic-bezier(.19,1,.22,1) .1s forwards;
  }
  .logo-hero__track--right {
    left: 69%;
    top: 16.8%;
    width: 36%;
    aspect-ratio: 537 / 153;
    transform-origin: right center;
    animation: heroTrackInRight 1.1s cubic-bezier(.19,1,.22,1) .1s forwards;
  }
  .logo-hero__track-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
  }
  @keyframes heroTrackInLeft {
    from { opacity: 0; transform: translateX(-6%) scaleX(.9); }
    to   { opacity: 1; transform: translateX(0) scaleX(1); }
  }
  @keyframes heroTrackInRight {
    from { opacity: 0; transform: translateX(6%) scaleX(.9); }
    to   { opacity: 1; transform: translateX(0) scaleX(1); }
  }
  .logo-hero__note {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--w);
    height: auto;
    display: block;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.4) rotate(calc(var(--rot) - 20deg));
    animation:
      heroNoteIn .7s cubic-bezier(.34,1.56,.64,1) var(--delay) both,
      heroNoteFloat var(--dur, 4s) ease-in-out calc(var(--delay) + .7s) infinite;
  }
  @keyframes heroNoteIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(.4) rotate(calc(var(--rot) - 20deg)); }
    to   { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(var(--rot)); }
  }
  @keyframes heroNoteFloat {
    0%, 100% { transform: translate(-50%, -50%) rotate(var(--rot)) translate(0, 0); }
    50%      { transform: translate(-50%, -50%) rotate(calc(var(--rot) + 5deg)) translate(3%, -10%); }
  }
  .logo-hero__text {
    position: absolute;
    inset: 0;
    container-type: inline-size;
  }
  .logo-line {
    position: absolute;
    display: flex;
    align-items: flex-end;
  }
  .logo-word {
    display: flex;
    align-items: flex-end;
    height: 100%;
  }
  .logo-letter {
    height: 100%;
    width: auto;
    display: block;
    opacity: 0;
    transform: translateY(18%);
    animation: letterIn .6s cubic-bezier(.19,1,.22,1) forwards;
    animation-delay: calc(.9s + var(--i) * 0.035s);
  }
  @keyframes letterIn {
    from { opacity: 0; transform: translateY(18%); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .logo-line--top {
    left: 13.77%;
    top: 6.85%;
    height: 8.9%;
    column-gap: 1.5cqw;
  }
  .logo-line--top .logo-word {
    column-gap: 0.35cqw;
  }
  .logo-line--christmas {
    left: 13.43%;
    top: 21.23%;
    height: 26.03%;
  }
  .logo-line--christmas .logo-word {
    column-gap: 0.2cqw;
  }
  .logo-line--cake {
    left: 39.5%;
    top: 51.37%;
    height: 28.08%;
    column-gap: 0.9cqw;
  }
  .logo-line--cake .logo-word {
    column-gap: 0.2cqw;
  }
  @media (prefers-reduced-motion: reduce) {
    .logo-hero__track,
    .logo-hero__note,
    .logo-letter {
      animation: none !important;
      opacity: 1 !important;
      transform: none !important;
    }
  }

  /* ============================================================
     LEAD (ご予約期間)
     ============================================================ */
  .lead {
    position: relative;
    overflow: hidden;
    background: #0B0D0A;
    padding: 120px 24px 112px;
  }
  .lead__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }
  .lead__bg .sparkle {
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    transform: translate(-50%, -50%);
  }
  .lead__bg .sparkle svg {
    display: block;
    overflow: visible;
  }
  .lead__bg .sparkle path {
    fill: #c6a567;
  }
  .lead__decoration {
    position: absolute;
    top: 0;
    display: block;
    pointer-events: none;
    z-index: 0;
  }
  .lead__decoration--right {
    right: 0;
    width: 50vw;
    height: calc(min(25.9vw, 517px) * 4.177);
  }
  .lead__decoration--left {
    left: 0;
    top: 0;
    width: 50vw;
    height: calc(min(28.03vw, 559px) * 4.74);
  }
  .lead__inner {
    position: relative;
    z-index: 1;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
  .lead__text {
    margin: 0;
    font-family: 'Sawarabi Mincho', serif;
    font-size: 28px;
    line-height: 2.4;
    letter-spacing: 0.06em;
    color: #fff7ed;
    text-align: center;
    white-space: nowrap;
  }
  .lead__card {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 41px 81px;
    border: 1px solid #fff7ed;
    border-radius: 8px;
    background: #0e1900;
  }
  .lead__card-heading {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Sawarabi Mincho', serif;
    color: #e7ddd0;
    text-align: center;
  }
  .lead__card-heading-en {
    margin: 0;
    font-size: 40px;
    line-height: 2.4;
    letter-spacing: 0.06em;
  }
  .lead__card-heading-jp {
    margin: -16px 0 0;
    font-size: 32px;
    line-height: 2.4;
    letter-spacing: 0.06em;
  }
  .lead__card-period {
    margin: 0;
    font-family: 'Sawarabi Mincho', serif;
    color: #e7ddd0;
    text-align: center;
  }
  .lead__card-period-date {
    margin: 0;
    font-size: 32px;
    line-height: 2.4;
    letter-spacing: 0.06em;
  }
  .lead__card-period-note {
    margin: 0;
    font-size: 24px;
    line-height: 2.4;
    letter-spacing: 0.06em;
  }

  /* ============================================================
     LINEUP
     ============================================================ */
  .lineup {
    position: relative;
    overflow: hidden;
    background: #F8F2E7;
    padding: 96px 24px 120px;
    z-index: 10;
  }
  .lineup__inner {
    max-width: 1600px;
    margin: 0 auto;
  }
  .lineup__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  .lineup__ornament {
    display: block;
    width: 100px;
    height: auto;
    flex: none;
  }
  .lineup__title {
    margin: 0;
    font-family: 'Bodoni Moda', serif;
    font-weight: 700;
    font-size: 48px;
    letter-spacing: 0.12em;
    color: #0b0d0a;
    text-align: center;
    white-space: nowrap;
  }
  .lineup__row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 64px clamp(24px, 6vw, 140px);
    padding-top: 64px;
  }
  .pendant {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 282px;
  }
  .pendant--low {
    margin-top: 64px;
  }
  .pendant__swing {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .pendant__thread {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 16px;
  }
  .pendant__line {
    display: block;
    width: 1.5px;
    height: 90px;
    background: linear-gradient(to bottom, rgba(198, 165, 103, 0), #c6a567);
  }
  .pendant__ring {
    display: block;
    width: 15.5px;
    height: 15.5px;
    margin-top: -1.5px;
    border: 1.5px solid #c6a567;
    border-radius: 50%;
    box-sizing: border-box;
  }
  .pendant__medal {
    position: relative;
    display: block;
    width: 282px;
    height: 282px;
    margin-top: 23px;
    padding: 0;
    border: none;
    background: none;
    appearance: none;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .pendant__medal:hover,
  .pendant__medal:focus-visible,
  .pendant:has(.pendant__label:hover) .pendant__medal,
  .pendant:has(.pendant__label:focus-visible) .pendant__medal {
    transform: scale(1.05);
  }
  .pendant__medal:focus-visible {
    outline: 2px solid #c6a567;
    outline-offset: 6px;
  }
  .pendant__medal:active {
    transform: scale(0.98);
  }
  .pendant__mat,
  .pendant__photo {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(198, 165, 103, 0.6);
    box-shadow: 0 0 0 8px rgba(198, 165, 103, 0.08);
    overflow: hidden;
  }
  .pendant__mat {
    background: #c1c1c1;
    transform: rotate(var(--rot-a, 0deg));
  }
  .pendant__photo {
    transform: rotate(var(--rot-b, 0deg));
  }
  .pendant__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
  }
  .pendant__label {
    display: block;
    margin-top: 20px;
    text-align: center;
    text-decoration: none;
  }
  .pendant__name,
  .pendant__name-jp {
    transition: color 0.3s ease;
  }
  .pendant__label:hover .pendant__name,
  .pendant__label:focus-visible .pendant__name,
  .pendant__label:hover .pendant__name-jp,
  .pendant__label:focus-visible .pendant__name-jp,
  .pendant:has(.pendant__medal:hover) .pendant__name,
  .pendant:has(.pendant__medal:focus-visible) .pendant__name,
  .pendant:has(.pendant__medal:hover) .pendant__name-jp,
  .pendant:has(.pendant__medal:focus-visible) .pendant__name-jp {
    color: #c6a567;
  }
  .pendant__name {
    margin: 0;
    font-family: 'Bodoni Moda', serif;
    font-weight: 600;
    font-size: 32px;
    letter-spacing: 0.12em;
    color: #71000a;
    white-space: nowrap;
  }
  .pendant__name-jp {
    margin: 6px 0 0;
    font-family: 'Sawarabi Mincho', serif;
    font-size: 28px;
    letter-spacing: 0.06em;
    color: #291a14;
    white-space: nowrap;
  }
  @media (prefers-reduced-motion: reduce) {
    .pendant__thread,
    .pendant__medal {
      transition: transform 0.4s ease-out;
    }
  }

  /* ============================================================
     CONTENT (slide + item-text, alternating rows, one per Lineup item)
     ============================================================ */
  .content-lineup {
    background: #F8F2E7;
    padding: 96px 24px 0;
    margin-block: -2px;
    width: 100%;
    max-width: 1920px;
    margin: auto;
  }
  .content-row {
    scroll-margin-top: 32px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 48px clamp(32px, 5vw, 96px);
    max-width: 1856px;
    margin: 0 auto;
    padding: 80px 0;
  }
  .content-row .slide {
    min-width: 0;
  }
  .content-row .item-text {
    flex: 1 1 420px;
    min-width: 0;
    margin: 0;
  }
  .content-row.reverse {
    flex-direction: row-reverse;
  }

  /* ============================================================
     SLIDE (photo card shared by all 4 Lineup items; used normal + mirrored)
     ============================================================ */
  .slide {
    position: relative;
    width: 100%;
    max-width: 1006px;
    margin: 0 auto;
    aspect-ratio: 1006.441 / 935.203;
    overflow: visible;
  }
  .slide--reverse {
    transform: scaleX(-1);
  }

  .slide--reverse .swiper-slide {
    transform: scaleX(-1);
  }

  .slide__deco {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  .slide__deco img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
  }
  .slide__deco--top2 { right: 19.4%; top: 12.786%; width: 31.200906%; height: 35.595037%; }
  .slide__deco--top1 { right: 0%; top: 0%;z-index: 2; width: 33.203744%; height: 36.917797%; }
  .slide__deco--bottom2 { left: 13.86%; bottom: 2.81%;width: 34.137962%;height: 29.880241%;}
  .slide__deco--bottom1 { left: 0; bottom: 0;width: 18.233437%;height: 26.610290%;}
  .slide__frame {
    position: absolute;
    left: 4.5947%;
    top: 20.4234%;
    width: 87.0394%;
    height: 63.3018%;
  }
  .slide__photo {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 94.5946%;
    border: 1px solid rgba(184, 140, 56, 0.4);
    box-sizing: border-box;
    overflow: hidden;
    touch-action: pan-y;
  }
  .slide__photo.is-clickable {
    cursor: pointer;
  }
  .slide__photo .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .slide__frame .slide__dots {
    position: absolute;
    left: 91.7808%;
    top: 98.6486%;
    width: 8.2192%;
    height: 1.3514%;
    bottom: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .slide__dots .swiper-pagination-bullet {
    width: 11.11%;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 50%;
    background: #0B0D0A;
    opacity: 1;
    margin: 0;
    cursor: pointer;
    transition: background-color .3s ease;
  }
  .slide__dots .swiper-pagination-bullet-active {
    background: #C6A567;
  }
  @media (max-width: 900px) {
    .slide__frame .slide__dots {
      left: auto;
      right: 0%;
      top: auto;
      bottom: -2%;
      width: auto;
      height: auto;
      gap: 10px;
    }
    .slide__dots .swiper-pagination-bullet {
      width: 9px;
      height: 9px;
    }
  }
  .slide__note-track {
    position: absolute;
    left: 0;
    bottom: 15%;
    width: 95.6837%;
    height: 74.2085%;
    overflow: visible;
    pointer-events: none;
    z-index: 1;
    animation: noteTrackStack 8s linear infinite;
  }
  .slide__note-track .slide__note-move {
    transform-box: fill-box;
    transform-origin: center;
    animation: noteTrackScale 8s linear infinite;
  }
  .slide__note-track image {
    transform-box: fill-box;
    transform-origin: center;
    animation: noteBob .7s ease-in-out infinite;
  }
  @keyframes noteTrackScale {
    0%   { transform: scale(0); }
    6%   { transform: scale(1); }
    95%  { transform: scale(1); }
    100% { transform: scale(0); }
  }
  @keyframes noteBob {
    0%, 100% { transform: translateY(0) rotate(-6deg); }
    50%      {transform: translateY(12px) rotate(6deg);}
  }
  @keyframes noteTrackStack {
    0%     { z-index: 0; }
    74%    { z-index: 0; }
    75%    { z-index: 3; }
    100%   { z-index: 3; }
  }

  /* ============================================================
     ITEM TEXT (product detail card shared by all 4 Lineup items)
     ============================================================ */
  .item-text {
    position: relative;
    width: 100%;
    max-width: 809px;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: 'Sawarabi Mincho', serif;
    color: #291A14;
  }
  .item-text * {
    box-sizing: border-box;
  }
  .item-text__top {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
  }
  .item-text__badge {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 8px 24px;
    background: #71000A;
    border-radius: 100px;
    color: #fff;
    font-size: 24px;
    line-height: 2.4;
    letter-spacing: 1.44px;
    white-space: nowrap;
  }
  .item-text__name {
    display: flex;
    flex-direction: column;
  }
  .item-text__name-en {
    font-family: 'Bodoni Moda', serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 2.88px;
    color: #71000A;
  }
  .item-text__name-ja {
    margin-top: 4px;
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 2.4px;
    color: #291A14;
  }
  .item-text__desc {
    margin: 0;
    font-size: 24px;
    line-height: 1.8;
    letter-spacing: 1.44px;
    color: #0B0D0A;
  }
  .item-text__divider {
    display: block;
    width: 560px;
    max-width: 100%;
    height: 0;
    margin: 0;
    border: none;
    border-top: 1px solid #C6A567;
  }
  .item-text__divider--top {
    margin-top: 16px;
  }
  .item-text__divider--bottom {
    margin-top: 32px;
  }
  .item-text__size-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 16px;
    font-size: 24px;
    line-height: 2.4;
    letter-spacing: 1.44px;
    color: #291A14;
  }
  .item-text__cross-section {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 8px;
  }
  .item-text__photo {
    flex-shrink: 0;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
  }
  .item-text__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .item-text__callout-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
  }
  .item-text__callouts {
    margin-top: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .item-text__callout-text {
    margin: 0;
    padding-right: 12px;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 1.2px;
    color: #291A14;
    text-wrap: nowrap;
  }
  .item-text__price {
    display: flex;
    justify-content: end;
    margin: 16px 0 0;
    padding-right: 25px;
    font-size: 32px;
    line-height: 2.4;
    letter-spacing: 1.92px;
    color: #291A14;
  }
  .item-text__member {
    margin-top: 16px;
    padding: 8px;
    background: #5E0005;
    border: 1px solid #D7B895;
    border-radius: 8px;
  }
  .item-text__member-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 24px;
    padding: 24px;
    color: #E7DDD0;
  }
  .item-text__member-name {
    display: flex;
    flex-direction: column;
  }
  .item-text__member-en {
    font-family: 'Bodoni Moda', serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 2.88px;
  }
  .item-text__member-jp {
    margin-top: 4px;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 1.44px;
  }
  .item-text__member-jp span {
    font-family: 'Bodoni Moda', serif;
    font-weight: 600;
    letter-spacing: 2.88px;
  }
  .item-text__member-price {
    margin: 0 0 0 auto;
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 1.92px;
    white-space: nowrap;
  }

  /* ============================================================
     INFO (ご予約・お引き渡し情報)
     ============================================================ */
  .info {
    background: #F8F2E7;
    padding: 0 24px 64px;
  }
  .info__wrap {
    max-width: 1600px;
    margin: 0 auto;
  }
  .info__card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    width: 100%;
    padding: 81px 81px 65px;
    background: #0e1900;
    border: 1px solid rgba(184, 140, 56, 0.35);
    border-radius: 8px;
  }
  .info__rows {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
  .info__row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
  }
  .info__value-wrap {
    align-self: center;
    flex: 1;
    min-width: 0;
  }
  .info__label {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 318px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff7ed;
    font-family: 'Sawarabi Mincho', serif;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.06em;
    color: #fff7ed;
    text-align: center;
    white-space: nowrap;
  }
  .info__value {
    margin: 0;
    font-family: 'Sawarabi Mincho', serif;
    font-size: 24px;
    letter-spacing: 0.06em;
    color: #e7ddd0;
    line-height: 2.4;
  }
  .info__row--period .info__value {
    color: #fff7ed;
  }
  .info__value-date {
    margin: 0;
    line-height: 1.6;
  }
  .info__value-note {
    margin: 0;
    font-size: 24px;
    line-height: 2.4;
  }
  .info__notes {
    margin: 40px 0 0;
    padding: 0;
    list-style: none;
    max-width: 100%;
    font-family: 'Sawarabi Mincho', serif;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.06em;
    color: #291a14;
  }
  .info__notes li {
    margin: 0;
  }

  /* ============================================================
     BOTTOM / PROMO (Seibu Prince Global Rewards アプリのご案内)
     ============================================================ */
  .promo {
    position: relative;
    width: 100%;
    background: #5F533D;
    font-family: 'Sawarabi Mincho', serif;
    z-index: 10;
  }
  .promo__track {
    position: relative;
    width: 100%;
    height: 5.625vw;
    max-height: 108px;
    overflow: hidden;
    transform: translateY(-50%);
  }
  .promo__track-strip {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    height: 100%;
    width: max-content;
    animation: promoTrackScroll 36s linear infinite;
    will-change: transform;
  }
  .promo__track-strip img {
    display: block;
    height: 100%;
    width: auto;
    flex-shrink: 0;
  }
  @keyframes promoTrackScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-25%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .promo__track-strip {
      animation: none;
    }
  }
  .promo__body {
    padding: 80px 20px;
  }
  .promo__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .promo__title {
    margin: 0;
    font-size: 40px;
    line-height: 2.4;
    letter-spacing: 2.4px;
    color: #FFF7ED;
    text-align: center;
  }
  .promo__row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 86px;
    width: 100%;
    max-width: 1565px;
    margin-top: 40px;
  }
  .promo__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
    width: 723px;
    max-width: 100%;
  }
  .promo__desc {
    margin: 0;
    width: 100%;
    font-size: 24px;
    line-height: 2.4;
    letter-spacing: 1.44px;
    color: #FFF7ED;
    text-align: left;
  }
  .promo__desc p {
    margin: 0;
  }
  .promo__right {
    flex-shrink: 0;
    width: 756px;
    max-width: 100%;
  }
  .promo__photo {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 756 / 425;
    object-fit: cover;
  }
  .cta-btn-wrap {
    position: relative;
    display: inline-block;
  }
  .cta-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 1px 43px 1px 57px;
    background: #5E0005;
    border: 1px solid #C6A567;
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: border-color .3s ease, transform .3s ease;
  }
  .cta-btn::before,
  .cta-btn::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0%;
    background: #E7DDD0;
    z-index: 0;
    transition: width .4s ease;
  }
  .cta-btn::before { left: 0; }
  .cta-btn::after  { right: 0; }
  .cta-btn:hover::before,
  .cta-btn:hover::after {
    width: 51%;
  }
  .cta-btn__note {
    position: absolute;
    left: 50%;
    bottom: 0%;
    width: 24px;
    pointer-events: none;
    transform: translateX(-50%);
    transition: bottom .4s ease;
  }
  .cta-btn:hover ~ .cta-btn__note {
    bottom: calc(100% + 10px);
  }
  .cta-btn__note svg {
    display: block;
    width: 100%;
    height: auto;
  }
  .cta-btn__note-base {
    fill: #5E0005;
    stroke: #E7DDD0;
    stroke-width: 1;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
  }
  .cta-btn:hover {
    border-color: #5E0005;
  }
  .cta-btn:hover .cta-btn__label {
    color: #5E0005;
  }
  .cta-btn:hover .cta-btn__arrow-path {
    stroke: #5E0005;
  }
  .cta-btn:active {
    transform: scale(.97);
  }
  .cta-btn__label {
    position: relative;
    z-index: 1;
    font-family: 'Sawarabi Mincho', serif;
    font-size: 32px;
    line-height: 2.4;
    letter-spacing: 1.92px;
    color: #E7DDD0;
    text-align: center;
    white-space: nowrap;
    transition: color .4s ease;
  }
  .cta-btn__arrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 8px;
    height: 11px;
  }
  .cta-btn__arrow svg {
    display: block;
    width: 11px;
    height: 8px;
    transform: rotate(90deg);
  }
  .cta-btn__arrow-path {
    stroke: #E7DDD0;
    transition: stroke .4s ease;
  }
  @media (prefers-reduced-motion: reduce) {
    .cta-btn {
      transition: none;
    }
  }

  /* ============================================================
     FOOTER
     ============================================================ */
  .footer {
    background: #343434;
  }
  .footer__panel {
    background: #200003;
    padding: 80px 24px;
  }
  .footer__inner {
    max-width: 1079px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }
  .footer__sns {
    display: grid;
    grid-template-columns: repeat(2, 366px);
    gap: 25px;
    justify-content: center;
  }
  .footer__sns-item {
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    width: 366px;
    height: 96px;
    padding: 0 38px 0 22px;
    border: 2px solid #ffffff;
    text-decoration: none;
    color: #ffffff;
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }
  .footer__sns-item:hover,
  .footer__sns-item:focus-visible {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #c6a567;
  }
  .footer__sns-item:hover .footer__sns-arrow,
  .footer__sns-item:focus-visible .footer__sns-arrow {
    transform: translateY(-50%) rotate(-45deg) translate(3px, -3px);
  }
  .footer__sns-icon {
    display: block;
    width: 47px;
    height: 49px;
    flex-shrink: 0;
    object-fit: contain;
  }
  .footer__sns-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    margin-left: 15px;
  }
  .footer__sns-item--single .footer__sns-text {
    justify-content: center;
  }
  .footer__sns-name {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    white-space: nowrap;
  }
  .footer__sns-handle {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 12px;
    color: #ffffff;
    white-space: nowrap;
  }
  .footer__sns-arrow {
    position: absolute;
    right: 22px;
    top: 50%;
    width: 17px;
    height: 17px;
    transform: translateY(-50%) rotate(-45deg);
    transition: transform 0.3s ease;
  }
  .footer__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 72px;
  }
  .footer__logo-link {
    display: block;
    line-height: 0;
  }
  .footer__logo-link:hover .footer__logo,
  .footer__logo-link:focus-visible .footer__logo {
    opacity: 0.65;
  }
  .footer__logo {
    display: block;
    width: auto;
    transition: opacity 0.3s ease;
  }
  .footer__logo--wide {
    height: 57px;
  }
  .footer__logo--tall {
    height: 119px;
  }
  .footer__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
  }
  .footer__links-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 29px;
  }
  .footer__links-row a {
    font-family: 'Sawarabi Mincho', serif;
    font-size: 24px;
    letter-spacing: 0.06em;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
  }
  .footer__links-row a:hover,
  .footer__links-row a:focus-visible {
    color: #c6a567;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .footer__divider {
    display: block;
    width: 1px;
    height: 21px;
    background: #ffffff;
  }
  .footer__copyright {
    margin: 0;
    padding: 16px 24px 22px;
    text-align: center;
    font-family: 'Bodoni Moda', serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.12em;
    color: #fff7ed;
  }

/* ============================================================
   CUSTOM CURSOR — Santa on a sleigh (desktop, fine-pointer only)
   ============================================================ */
html.has-santa-cursor,
html.has-santa-cursor * {
  cursor: none !important;
}
.santa-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 76px;
  height: 45px;
  margin-left: -38px;
  margin-top: -23px;
  pointer-events: none;
  z-index: 100000;
  opacity: 0;
  transition: opacity .25s ease;
  will-change: transform;
}
.santa-cursor.is-active {
  opacity: 1;
}
.santa-cursor__rig {
  width: 100%;
  height: 100%;
  transform-origin: 50% 85%;
  animation: santaCursorBob 1s ease-in-out infinite;
}
.santa-cursor.is-clicked .santa-cursor__rig {
  animation-play-state: paused;
  transform: scale(.88) translateY(3px);
}
.santa-cursor__svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
@keyframes santaCursorBob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-4px) rotate(-2.5deg); }
}
.santa-cursor__spark {
  position: fixed;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #C6A567;
  pointer-events: none;
  z-index: 99999;
  opacity: .9;
  animation: santaCursorSpark .7s ease-out forwards;
}
@keyframes santaCursorSpark {
  0%   { opacity: .9; transform: translate(0, 0) scale(1); }
  100% { opacity: 0;  transform: translate(var(--sx, 0px), var(--sy, 14px)) scale(.3); }
}

/* ============================================================
   TOTOP BUTTON — fixed bottom-right, revealed after scrolling
   ============================================================ */
.totop-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 64px;
  height: 64px;
  padding: 0;
  background: #5E0005;
  border: 1px solid #C6A567;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease, visibility 0s linear .3s, border-color .3s ease;
}
.totop-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .3s ease, transform .3s ease, border-color .3s ease;
}
.totop-btn:hover {
  border-color: #E7DDD0;
}
.totop-btn svg {
  display: block;
  width: 10px;
  height: auto;
}
.totop-btn__note-path {
  fill: #E7DDD0;
  stroke: #C6A567;
  stroke-width: 0.5;
  stroke-linejoin: round;
  transition: fill .3s ease;
}
.totop-btn:hover .totop-btn__note-path {
  fill: #C6A567;
}
.totop-btn__label {
  font-family: 'Bodoni Moda', serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  line-height: 1;
  color: #E7DDD0;
  transition: color .3s ease;
}
.totop-btn:hover .totop-btn__label {
  color: #C6A567;
}
@media (prefers-reduced-motion: reduce) {
  .totop-btn {
    transition: opacity .2s linear, visibility 0s linear .2s;
  }
  .totop-btn.is-visible {
    transition: opacity .2s linear;
  }
}

  /* ============================================================
     MEDIA QUERIES (min-width / max-width) — grouped at end for cascade order
     ============================================================ */

  @media (max-width: 768px) {
    .pc-only {
      display: none;
    }
    .sp-only {
      display: block;
    }
  }

  @media (max-width: 768px) {
    .logo-hero {
      top: 50%;
      height: 20.27vw;
      transform: translateY(-50%);
    }
  }

  @media (max-width: 768px) {
    .logo-hero__track--left {
      left: -10%;
      top: unset;
      bottom: -30%;
      width: 50%;
    }
    .logo-hero__track--right {
      left: unset;
      right: -10%;
      top: -50%;
      width: 50%;
    }
    .logo-hero__text {
      transform: scale(1.3);
      transform-origin: center;
    }
  }

  @media (min-width: 901px) {
    .lead__decoration--right {
      height: calc(min(25.9vw, 517px) * 1.8138);
    }
    .lead__decoration--left {
      height: calc(min(28.03vw, 559px) * 1.4498);
    }
    .min901 {display: inline;}
  }

  @media (max-width: 900px) {
    .lead {
      padding: 120px 20px 80px;
    }
    .lead__decoration--right {
      display: none;
    }
    .lead__decoration--left {
      width: 100vw;
    }
    .lead__text {
      font-size: 15px;
      white-space: normal;
    }
    .lead__card {
      padding: 32px 16px;
      gap: 32px;
    }
    .lead__card-heading-en {
      font-size: 26px;
    }
    .lead__card-heading-jp {
      font-size: 20px;
      margin-top: -10px;
    }
    .lead__card-period-date {
      font-size: 16px;
    }
    .lead__card-period-note {
      font-size: 12px;
    }
  }

  @media (min-width: 1280px) {
    .lineup__row {
      flex-wrap: nowrap;
      gap: 24px clamp(32px, 4vw, 64px);
    }
    .pendant,
    .pendant--low {
      width: clamp(240px, 20vw, 282px);
    }
    .pendant__medal {
      width: clamp(240px, 20vw, 282px);
      height: clamp(240px, 20vw, 282px);
    }
  }

  @media (max-width: 900px) {
    .lineup {
      padding: 72px 20px 0;
    }
    .lineup__header {
      gap: 20px;
    }
    .lineup__ornament {
      width: 64px;
    }
    .lineup__title {
      font-size: 30px;
    }
    .lineup__row {
      gap: 48px 32px;
      padding-top: 48px;
    }
    .pendant {
      width: 168px;
    }
    .pendant--low {
      margin-top: 40px;
    }
    .pendant__line {
      height: 56px;
    }
    .pendant__medal {
      width: 168px;
      height: 168px;
      margin-top: 16px;
    }
    .pendant__name {
      font-size: 20px;
    }
    .pendant__name-jp {
      font-size: 16px;
      margin-top: 4px;
    }
  }

  @media (max-width: 560px) {
    .lineup__row {
      flex-direction: row;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: center;
      gap: 32px 16px;
    }
    .pendant,
    .pendant--low {
      width: calc(50% - 8px);
      margin-top: 0;
    }
    .pendant__medal {
      width: 120px;
      height: auto;
      aspect-ratio: 1 / 1;
    }
    .pendant__label {
      padding: 0 4px;
    }
    .pendant__name {
      font-size: 16px;
      white-space: normal;
    }
    .pendant__name-jp {
      font-size: 13px;
      white-space: normal;
    }
  }

  @media (min-width: 1280px) {
    .content-row {
      flex-wrap: nowrap;
      margin-left: -68px;
      margin-right: auto;
    }
    .content-row.reverse {
      margin-left: auto;
      margin-right: -68px;
    }
    .content-row .slide {
      flex: 1.24 1 0%;
      min-width: 320px;
      margin-top: -9.4234%;
    }
    .content-row .slide--reverse {
      transform: scaleX(-1);
    }
    .content-row .item-text {
      flex: 1 1 0%;
      min-width: 560px;
    }
    .item-text__member-inner {
      flex-direction: column;
    }
    .item-text__member-price {
      margin: 0;
    }
  }

  @media (max-width: 900px) {
    .content-lineup {
      padding: 0 0 32px;
    }
    .content-row {
      flex-direction: column;
      gap: 40px;
      padding: 40px 0;
    }
    .content-row.reverse {
      flex-direction: column
    }
    .item-text {
      padding-inline: 20px;
    }
  }

  @media (max-width: 600px) {
    .item-text__badge { padding: 1px 18px; font-size: 16px; }
    .item-text__name-ja { font-size: 32px; }
    .item-text__desc, .item-text__size-row { font-size: 18px; }
    .item-text__price, .item-text__member-price { font-size: 26px; }
    .item-text__price {
      justify-content: center;
      padding-right: 0;
    }
    .item-text__member-price {
      margin: 0 auto;
    }
    .item-text__cross-section {
      align-items: center;
      gap: 32px;
    }
    .item-text__photo {
      width: 130px;
      height: 130px;
    }
    .item-text__callouts {
      flex: 1 1 auto;
      width: auto;
      min-width: 0;
      margin-top: 0;
    }
    .item-text__callout-text {
      max-width: none;
      white-space: normal;
      font-size: 14px;
      line-height: 1.5;
    }
    .item-text__member-inner {
      flex-direction: column;
      text-align: center;
    }
    .item-text__member-jp, .item-text__member-en {
      font-size: 18px;
    }
    .max600 {
      display: block;
    }
  }

  @media (max-width: 900px) {
    .info {
      padding: 56px 16px 48px;
    }
    .info__card {
      padding: 40px 16px 40px;
      gap: 32px;
    }
    .info__rows {
      text-align: center;
    }
    .info__row {
      flex-direction: column;
      gap: 12px;
    }
    .info__label {
      width: auto;
      align-self: flex-start;
      padding: 12px 20px;
      font-size: 18px;
    }
    .info__value {
      font-size: 16px;
    }
    .info__value-note {
      font-size: 13px;
    }
    .info__notes {
      font-size: 12px;
      max-width: 100%;
    }
    .promo__desc {
      text-align: center;
    }
  }

  @media (max-width: 600px) {
    .promo__body { padding: 48px 16px; }
    .promo__title { font-size: 18px; }
    .promo__row { gap: 40px; margin-top: 24px; }
    .promo__desc { font-size: 16px; text-align: center; }
    .promo__desc p { white-space: normal; }
    .promo__left { gap: 32px; }
    .cta-btn { padding: 1px 24px 1px 32px; gap: 16px; }
    .cta-btn__label { font-size: 22px; }
    .cta-btn__note { width: 14px; }
    .cta-btn__label { font-size: 18px;}
  }

  @media (max-width: 900px) {
    .promo__track {
      height: 20vw;
    }
    .lead__decoration--left {
          height: calc(min(15.03vw, 559px) * 4.74);
    }
    .info__label {
      margin: auto;
    }
    .footer__panel {
      padding: 48px 20px;
    }
    .footer__inner {
      gap: 48px;
    }
    .footer__sns {
      grid-template-columns: 1fr;
      width: 100%;
      max-width: 366px;
    }
    .footer__sns-item {
      width: 100%;
    }
    .footer__logos {
      flex-direction: column;
      gap: 32px;
    }
    .footer__logo--wide {
      height: 38px;
    }
    .footer__logo--tall {
      height: 78px;
    }
    .footer__links {
      gap: 14px;
    }
    .footer__links-row a {
      font-size: 15px;
    }
    .footer__links-row {
      flex-direction: column;
      gap: 14px;
    }
    .footer__divider {
      display: none;
    }
    .max900 {
      display: inline;
    }
    .min901 {
      display: none;
    }
  }

@media (max-width: 600px) {
  .totop-btn {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    gap: 3px;
  }
  .totop-btn svg {
    width: 8px;
  }
  .totop-btn__label {
    font-size: 9px;
    letter-spacing: 1px;
  }
  .footer__copyright {
    font-size: 10px;
    padding-inline: 12px;
  }
}

