	<style>
/* ============================================================
   BASE / RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-primary: #2E2E2E;
  --color-secondary: #777777;
  --color-tertiary: #A5A5A5;
  --color-white: #FFFFFF;
  --color-bg-alt: #FAFAFA;
  --color-mint: #D8F1ED;
  --color-gray-ui: #EDEDED;
  --color-border: rgba(46,46,46,0.15);
  --font-main: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  --font-ja: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  --container-max: 1366px;
  --side-width: 320px;
  --rail-label-left: 270px;
}

html { scroll-behavior: smooth; }
body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.88;
  color: var(--color-primary);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; }

/* All text elements use Hiragino */
.top-side-label, .top-side-vivum-label, .top-copy, .top-about-head h3,
.top-social-link, .top-about-card p, .top-outline-btn, .top-about-links a,
.top-store-intro h2, .top-store-intro p, .top-product-name, .top-product-price,
.top-product-price span, .top-journal-meta, .top-journal-card h3, .top-journal-date,
.top-journal-excerpt, .top-news-date, .top-news-title, .top-reserve-pill,
.top-about-mobile-brand, .top-about-mobile-section-label, .top-store-mobile-label-inline,
.top-journal-mobile-label span, .top-news-mobile-label span, .top-reserve-mobile-label span,
.breadcrumb, .hero-title, .menu-cat-label, .menu-item-name, .menu-item-price,
.menu-other-btn, .reserve-sidebar-label, .reserve-pill-btn, .footer-cta-btn, .footer-link,
.vs-header-nav a, .vs-btn-reserve, .vs-btn-online-store, .vs-btn-mypage, .vs-btn-cart {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif !important;
}

/* ============================================================
   WRAPPER MOBILE FIX - removes padding so hero goes full width
============================================================ */
@media (max-width: 1023px) {
  #wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  body {
    overflow-x: hidden !important;
  }
}

/* ============================================================
   HEADER
============================================================ */
.nao-banner {
  width: 100%; height: 40px; background: var(--color-mint);
  display: flex; align-items: center; justify-content: center;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-size: 11px; color: var(--color-primary); letter-spacing: 0.08em;
}

/* ============================================================
   PAGE ROOT
============================================================ */
.top-page-root { width: 100%; background: #fff; }

/* ибиб SECTION DIVIDER ибиб */
.section-divider { width: 100%; height: 1px; background: var(--color-primary); }

/* ============================================================
   LAYOUT SHARED
============================================================ */
.top-section { position: relative; }
.top-section::before {
  content: "";
  position: absolute;
  left: 0px; top: 0;
  width: 450px; height: 1px;
  background: var(--color-primary);
}
.top-layout {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: var(--side-width) 693px;
  column-gap: 160px;
  align-items: start;
}
.top-side { position: relative; min-height: 1px; }
.top-side-label {
  display: block;
  padding-top: 56px;
  padding-left: var(--rail-label-left);
  font-size: 18px; font-weight: 500; line-height: 1;
  white-space: nowrap; color: var(--color-primary);
  letter-spacing: 0.03em;
}
.top-main { width: 693px; min-width: 0; }

/* ============================================================
   HERO
============================================================ */
.top-hero { position: relative; overflow: hidden; }
.top-hero-track { display: flex; transition: transform 0.45s ease; }

.top-hero-image {
  flex: 0 0 100%;
  width: 100%;
}

.top-hero-image picture,
.top-hero-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}
@media (max-width: 1023px) {
  .top-hero {
    width: 100% !important;
    position: relative !important;
    left: 0 !important;
    transform: none !important;
    overflow: hidden !important;
    margin: 0 !important;
    margin-top: 80px !important;  /* вл Adjust this to match your header height */
  }
  .top-hero-track,
  .top-hero-image {
    height: auto !important;
    width: 100% !important;
  }
  .top-hero-image img {
    height: 100vh !important;
    width: 100vw !important;
    object-fit: cover !important;
  }
}

/* ============================================================
   ABOUT
============================================================ */
.top-about { padding-top: 0; }
.top-about::before { top: 610px; }
.top-about .top-main { padding-top: 36px; }
.top-about .top-side-label { padding-top: 655px; }

.top-side-vivum-label {
  display: block;
  padding-top: 0px;
  padding-left: var(--rail-label-left);
  font-size: 16px; font-weight: 500; line-height: 1.3;
  margin-top: -595px;
  color: var(--color-primary);
  letter-spacing: 0.02em; white-space: nowrap;
}

.top-about-intro {
  display: grid;
  grid-template-columns: 461px 245px;
  column-gap: 34px;
  align-items: start;
  margin-top: 40px;
}
.top-copy { font-size: 14px; line-height: 24px; color: var(--color-primary); margin-bottom: 0px; }
.top-about-collage { position: relative; width: 245px; height: 472px; }
.top-about-collage img { position: absolute; object-fit: cover; }
.top-collage-a { left: 54px; top: -37px; width: 225px; height: 151px; }
.top-collage-b { left: 0; top: 150px; width: 228px; height: 158px; }
.top-collage-c { right: -40px; top: 275px; width: 132px; height: 166px; }

.top-about-columns {
  margin-top: 50px;
  display: grid; grid-template-columns: 1fr 1fr; column-gap: 60px;
}
.top-about-head { display: flex; align-items: center; gap: 24px; margin-bottom: 24px; }
.top-about-head h3 { font-size: 28px; font-weight: 400; line-height: 1; letter-spacing: 0.02em; }
.top-social-link { font-size: 13px; text-decoration: underline; text-underline-offset: 2px; color: var(--color-primary); letter-spacing: 0.02em; }
.top-about-card p { font-size: 14px; line-height: 24px; margin-bottom: 20px; }

.top-outline-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  min-width: 220px;
  height: 50px;
  border: 1px solid var(--color-primary);
  border-radius: 999px !important;
  font-size: 12px;
  color: var(--color-primary);
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.05em;
  padding: 0 28px !important;
  line-height: 1 !important;
}
.top-outline-btn:hover { background: var(--color-primary); color: #fff; }
.top-outline-btn--small { min-width: 180px; height: 44px; }

.top-outline-btn svg {
  display: block !important;
  flex-shrink: 0 !important;
  width: 16px !important;
  height: 16px !important;
}

.top-about-links { margin-top: 80px; }
.top-about-links a {
  height: 83px; border-top: 1px solid var(--color-primary);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 30px; font-size: 16px; line-height: 1;
  transition: opacity 0.2s;
  letter-spacing: 0.02em;
}
.top-about-links a:last-child { border-bottom: 1px solid var(--color-primary); margin-bottom: 40px; }
.top-about-links a:hover { opacity: 0.5; font-weight: 500; }
.top-about-links .arrow { font-size: 25px; display: inline-block; transition: transform 0.2s ease; }
.top-about-links a:hover .arrow { transform: translateX(5px); }

.top-center-btn { margin-top: 40px; display: flex; justify-content: center; margin-bottom: 20px; }

.top-about-card:last-child .top-outline-btn { margin-top: 18px; }

/* ============================================================
   STORE
============================================================ */
.top-store { padding-top: 0; }
.top-store::before { top: 0; }
.top-store .top-main { padding-top: 56px; }
.top-store .top-side-label { padding-top: 56px; }

.top-store-marquee { overflow: hidden; margin-bottom: 80px; width: 100%; }
.top-store-marquee-track { display: flex; width: max-content; animation: marqueeScroll 40s linear infinite; }
.top-store-strip { display: grid; grid-template-columns: repeat(6, 245px); }
.top-store-strip img { width: 245px; height: 164px; object-fit: cover; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.top-store-banner { width: 670px; max-width: none; height: 220px; border-radius: 10px; object-fit: cover; margin-bottom: 28px; }
.top-store-intro h2 { font-size: 20px; font-weight: 400; margin-bottom: 16px; }
.top-store-intro p { font-size: 16px; line-height: 24px; margin-bottom: 32px; }

.top-store-grid { display: grid; grid-template-columns: repeat(3, 200px); column-gap: 22px; row-gap: 40px; }
.top-product-card {
  display: block !important;
  position: relative !important;
  background: transparent !important;
  color: var(--color-primary);
  transition: opacity 0.2s;
  padding-bottom: 25px !important;
}
.top-product-card:hover { opacity: 0.7; }
.top-product-card img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 200/136 !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 6px !important;
  background-color: #f4f4f6 !important;
  margin-bottom: 12px;
}
.top-product-name { font-size: 12px; line-height: 1.6; margin-bottom: 4px; }
.top-product-price { font-size: 13px; display: flex; align-items: baseline; gap: 6px; letter-spacing: 0.02em; }
.top-product-price span { font-size: 10px; color: var(--color-secondary); }

.top-product-card::before {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important; left: 0 !important;
  width: 20px !important; height: 20px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 12H20' stroke='%231a1a1a' stroke-width='0.8' stroke-linecap='round'/%3E%3Cpath d='M13 5L21 12L13 19' stroke='%231a1a1a' stroke-width='0.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: left center !important;
  z-index: 2 !important;
  transition: transform 0.2s ease;
}
.top-product-card:hover::before { transform: translateX(5px) !important; }
.top-product-card::after { display: none !important; }

/* ============================================================
   JOURNAL
============================================================ */
.top-journal { padding-top: 0; background: var(--color-bg-alt); display: none; }
.top-journal::before { top: 0; }
.top-journal .top-main { padding-top: 56px; }
.top-journal .top-side-label { padding-top: 56px; }

.top-journal-scroll {
  overflow-x: auto !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  scroll-behavior: smooth !important;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scroll-snap-type: x mandatory;
  padding: 4px 0 20px 0;
  scroll-padding: 0 20px;
}
.top-journal-scroll::-webkit-scrollbar { display: none !important; width: 0 !important; height: 0 !important; }
.top-journal-scroll.is-dragging { cursor: grabbing; }
.top-journal-row { display: flex; gap: 30px; width: max-content; padding-bottom: 30px; scroll-snap-type: x mandatory; }
.top-journal-card { width: 580px; scroll-snap-align: start; scroll-snap-stop: always; flex-shrink: 0; }
.top-journal-card img { width: 643px; height: 340px; object-fit: cover; margin-bottom: 20px; }
.top-journal-meta { width: fit-content; padding-bottom: 3px; border-bottom: 1px solid var(--color-primary); font-size: 13px; line-height: 1.1; margin-bottom: 12px; letter-spacing: 0.04em; }
.top-journal-card h3 { font-size: 16px; font-weight: 400; line-height: 23px; }
.top-journal-date { margin-top: 5px; font-size: 12px; color: var(--color-secondary); letter-spacing: 0.02em; }
.top-journal-excerpt { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--color-primary); font-size: 16px; line-height: 24px; margin-bottom: 32px; }

.top-journal-carousel-wrap { position: relative; }
.journal-nav-btn {
  display: none;
  position: absolute;
  top: calc((100vw - 40px) * 340 / 643 / 2);
  transform: translateY(-50%);
  z-index: 10;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
  cursor: pointer; transition: all 0.3s ease;
  background: rgba(0,0,0,0.32);
}
.journal-nav-btn:hover { background: rgba(0,0,0,0.6); border-color: #fff; }
#journalPrev { left: 10px; }
#journalNext { right: 10px; }

.top-journal-img-wrap { position: relative; margin-bottom: 20px; }
.top-journal-img-wrap img { width: 100%; display: block; }

.top-journal-dots { display: flex; gap: 10px; justify-content: center; padding-bottom: 60px; }
.top-journal-dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--color-border);
  cursor: pointer; transition: all 0.3s ease; border: none; padding: 0;
}
.top-journal-dot.active { background: var(--color-primary); transform: scale(1.2); }

/* Hide journal mobile label */
.top-journal-mobile-label { display: none; }
.top-journal + .section-divider { display: none; }

/* ============================================================
   NEWS
============================================================ */
.top-news { padding-top: 0; background: #fff; }
.top-news::before { top: 0; }
.top-news .top-main { padding-top: 56px; }
.top-news .top-side-label { padding-top: 56px; }

.top-news-item {
  display: grid; grid-template-columns: 100px 1fr 28px;
  align-items: center; min-height: 82px; gap: 16px;
  border-bottom: 1px solid var(--color-primary);
  padding: 16px 0; color: var(--color-primary); transition: opacity 0.2s;
}
.top-news-item:hover { opacity: 0.6; }
.top-news-date { font-size: 14px; color: var(--color-secondary); white-space: nowrap; letter-spacing: 0.02em; }
.top-news-title { font-size: 14px; line-height: 24px; }
.top-news-arrow {
  font-size: 16px; text-align: right;
  margin-left: -20px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding-right: 5px !important;
}

/* ============================================================
   RESERVE
============================================================ */
.top-reserve { position: relative; padding: 0; background: var(--color-bg-alt); margin-top: 40px; }
.top-reserve::before { content: ""; position: absolute; left: 0; top: 0; width: var(--side-width); height: 1px; background: var(--color-primary); }
.top-reserve .top-main { padding-top: 56px; padding-bottom: 80px; }
.top-reserve .top-side-label { padding-top: 56px; }

.top-reserve-banner {
  position: relative; display: block;
  width: 693px; height: 231px; overflow: hidden; border-radius: 8px;
}
.top-reserve-banner::after { content: ""; position: absolute; inset: 0; background: rgba(46,46,46,0.28); }
.top-reserve-banner img { width: 100%; height: 100%; object-fit: cover; }
.top-reserve-pill {
  position: absolute; left: 50%; top: 50%; z-index: 1;
  transform: translate(-50%,-50%);
  width: 423px; max-width: calc(100% - 40px); height: 69px;
  border-radius: 999px; background: var(--color-mint);
  display: inline-flex; align-items: center; justify-content: center;
  gap: 12px; font-size: 22px; line-height: 1;
  color: var(--color-primary); letter-spacing: 0.04em;
}

/* ============================================================
   MOBILE-ONLY LABELS
============================================================ */
.top-about-mobile-brand,
.top-about-mobile-section-label,
.top-store-mobile-label-inline,
.top-journal-mobile-label,
.top-news-mobile-label,
.top-reserve-mobile-label { display: none; }

/* ============================================================
   SECTION DIVIDER VISIBILITY
============================================================ */
@media (min-width: 1024px) { .section-divider { display: none; } }
@media (max-width: 1023px) { .section-divider { display: block; } }

/* Hide store section divider */
.top-store .section-divider { display: none; }

/* ============================================================
   DESKTOP ONLY - NEWS LAYOUT
============================================================ */
@media (min-width: 1024px) {
  .top-news-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0px !important;
    position: relative !important;
  }
  .top-news-date { order: 1 !important; }
  .top-news-title { order: 2 !important; }
  .top-news-arrow {
    order: 3 !important;
    position: absolute !important;
    right: 25px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}

/* ============================================================
   COLLAGE PICTURE FIX
============================================================ */
.top-about-collage picture { position: absolute; display: block; }
.top-about-collage picture img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   HIDE STORE LAYOUT (keep marquee only)
============================================================ */
.top-store .top-layout { display: none; }

/* ============================================================
   RESPONSIVE MOBILE
============================================================ */
@media (max-width: 1023px) {
  .top-section::before { display: none; }
  .top-reserve::before { display: none; }
  .top-layout { display: block; padding: 0 30px; }
  .top-side { display: none; }
  .top-main { width: 100%; }
  .section-divider { width: 100%; }

  /* About */
  .top-about .top-main { padding-top: 0; }
  .top-about-intro { grid-template-columns: 1fr; gap: 0px; margin-top: 10px; }
  .top-about-collage { width: 100%; height: 400px; margin-top: 0px; }
  .top-collage-a { left: 70px; top: 30px; width: 65%; height: 35%; }
  .top-collage-b { left: 16px; right: 0; top: 190px; width: 68%; height: 40%; }
  .top-collage-c { left: 238px; top: 237px; bottom: 0; width: 25%; height: 35%; }
  .top-about-columns { margin-top: 40px; grid-template-columns: 1fr; gap: 40px; }
  .top-about-links { margin-top: 30px; }
  .top-about-links a { height: 64px; padding: 0 12px; font-size: 16px; }
  .top-about-mobile-brand { display: block; font-size: 18px; font-weight: 500; padding: 7.5px 0 4px; letter-spacing: 0.02em; margin-right: -15px; }
  .top-about-mobile-section-label { display: block; grid-column: 1 / -1; font-size: 18px; letter-spacing: 0.04em; padding-bottom: 0px; border-top: 1px solid var(--color-primary); padding-top: 50px; margin-bottom: -25px; }
  .top-about-card:last-child .top-outline-btn { margin-top: 20px; }

  /* Store */
  .top-store { padding-top: 0; }
  .top-store .top-main { padding-top: 0; }
  .top-store-marquee { margin-bottom: 32px; }
  .top-store-strip { grid-template-columns: repeat(6, 150px); }
  .top-store-strip img { width: 150px; height: 100px; }
  .top-store-banner { width: 100%; height: auto; aspect-ratio: 693/220; margin-bottom: 20px; }
  .top-store-intro { padding-top: 20px; margin-left: 0 !important; }
  .top-store-intro h2 { font-size: 18px; }
  .top-store-grid { grid-template-columns: repeat(2, 1fr); column-gap: 14px; row-gap: 28px; margin-left: 0 !important; }
  .top-store-mobile-label-inline { display: block; font-size: 13px; letter-spacing: 0.04em; margin-bottom: 16px; }

  /* Journal */
  .top-journal { padding-top: 0; }
  .top-journal .top-main { padding-top: 0; }
  .journal-nav-btn { display: inline-flex; }
  .top-journal-card { width: calc(100vw - 40px); }
  .top-journal-card img { width: 100%; height: auto; aspect-ratio: 643/340; margin-bottom: 0; }
  .top-journal-img-wrap { margin-bottom: 20px; }
  .top-journal-dots { padding-bottom: 40px; }

  /* News */
  /* News */
  .top-news { padding-top: 0; }
  .top-news .top-main { padding-top: 9px; }
  .top-news-list {
    min-height: 45px;  /* Remove the fixed min-height */
  }
  .top-news-item { 
    grid-template-columns: 1fr auto; 
    gap: 0px;
    padding: 0px 0; 
    align-items: start; 
    min-height: 45px;  /* Override desktop min-height: 82px */
  }
  .top-news-date { 
    grid-column: 1; 
    font-size: 11px; 
    line-height: 1.2;
    margin-bottom: 0;
    display: block;
  }
  .top-news-title { 
    grid-column: 1; 
    font-size: 12px; 
    margin-top: 0;
    line-height: 1.3;
    display: block;
  }
  .top-news-arrow { 
    grid-column: 2; 
    grid-row: 1 / span 2; 
    align-self: center; 
  }
  .top-news-mobile-label { display: block; padding: 28px 20px 0; border-top: 1px solid rgba(46,46,46,0.2); }
  .top-news-mobile-label span { font-size: 18px; letter-spacing: 0.04em; }
  /* Reserve */
  .top-reserve { margin-top: 0; padding-bottom: 0; }
  .top-reserve .top-main { padding-top: 0; padding-bottom: 0; }
  .top-reserve-banner { width: 100%; height: auto; aspect-ratio: 693/231; border-radius: 0; display: block; }
  .top-reserve-pill { width: 220px; height: 54px; font-size: 18px; }
  .top-reserve-mobile-label { display: block; padding: 28px 20px 16px; border-top: 1px solid var(--color-primary); background: var(--color-bg-alt); }
  .top-reserve-mobile-label span { font-size: 13px; letter-spacing: 0.04em; }

  /* General */
  .top-about .top-main, .top-store .top-main, .top-journal .top-main,
 .top-reserve .top-main { padding-top: 24px; }

  .top-center-btn {
    margin-top: 28px !important;
    margin-left: 0 !important;
    padding-bottom: 40px;
    text-align: center;
    display: flex !important;
    justify-content: left !important;
    width: 100%;
  }
  .top-outline-btn { min-width: 160px; height: 44px; font-size: 14px; }
  .top-copy { font-size: 14px; line-height: 24px; color: var(--color-primary); margin-left: 0px; }


  
}


</style>