/* General Reset & Setup */
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #D0A391 #FAF8F7;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #FAF8F7;
}

::-webkit-scrollbar-thumb {
  background: #D0A391;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  /* SP default */
  background-color: #000;
  color: #fff;
  position: relative;
  z-index: 0;
  font-family: "Noto Sans JP", sans-serif;
  
  /* Right-Click and Copy Protection: Disable selection globally */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

p {
  font-size: 14px;
}

body::before {
  content: "";
  display: block;
  width: 100%;
  background-repeat: no-repeat;
  background-image: url("../img/bgs.jpg");
  background-size: cover;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Serif JP", serif;
  color: #ffffff;
}

.font-bodoni {
  font-family: "Bodoni Moda", serif;
}

.font-noto-serif {
  font-family: "Noto Serif JP", serif;
}

.font-noto-sans {
  font-family: "Noto Sans JP", sans-serif;
}

.radbg2 {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: linear-gradient(rgb(229 178 184 / 84%) 0%, rgba(229, 178, 184, 0.53) 50.04%, rgba(229, 178, 184, 0) 100%);
  padding: 80px 0;
}

@media (min-width: 1024px) {
  body {
    font-size: 16px;
    /* PC default */
  }
  p {
    font-size: 16px;
  }
}

/* Section Spacing */
.section-spacing {
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .section-spacing {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* CTA Buttons */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  min-width: 200px;
}

@media (max-width: 767px) {
  .cta-btn {
    width: 100%;
    padding: 1rem;
    min-width: unset;
  }
}

/* Scroll Animation for FV */
@keyframes scrollLine {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

.animate-scroll-line {
  animation: scrollLine 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

/* Swiper custom pagination */
.swiper-pagination-bullet {
  background: #C8A9A2 !important;
  opacity: 0.5 !important;
  width: 10px !important;
  height: 10px !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: #5A4D4A !important;
  transform: scale(1.2);
}

/* ══════════════════════════════
   LIGHTBOX MODAL CUSTOM STYLING (Flawless Centering & Controls)
   ══════════════════════════════ */
#lightbox {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 99999 !important;
  background-color: rgba(0, 0, 0, 0.95) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  backdrop-filter: blur(10px) !important;
}

#lightbox.hidden {
  display: none !important;
}

/* Lightbox Image */
#lightbox-img {
  width: 85vw !important;
  height: 85vw !important;
  max-width: 500px !important;
  max-height: 500px !important;
  object-fit: cover !important; /* Forces all images to fill the exact same premium square size */
  margin: auto !important; /* Forces horizontal and vertical centering */
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: lightboxFadeIn 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Buttons inside lightbox */
#lightbox button {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
}

#lightbox button:focus {
  outline: none;
}


/* Infinite Marquee */
.marquee-container {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.marquee-content {
  display: flex;
  animation: marquee 30s linear infinite;
  /* ensure smooth */
  will-change: transform;
}

.marquee-content>div {
  flex-shrink: 0;
  margin-right: 20px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

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

/* Fade Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:root {
  --orange: #E5B2B8;
  /* Changed to Gentle Pink */
  --orange-d: #D1949C;
  --text-mid: #CBAE91;
  /* Keep gold as accent */
  --hdr-h: 80px;
  --theme-primary: #E5B2B8;
}

/* FV Type17 Styles */
.fv-type17 {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  margin-top: var(--hdr-h, 80px);
  background: transparent;
}

.fv-stage {
  position: absolute;
  left: 160px;
  right: 72px;
  top: 20px;
  bottom: 28px;
}

@media (max-width: 1023px) {
  .fv-stage {
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 20px;
  }

  .slide-counter-wrap {
    display: none !important;
  }

  .blog-btn {
    display: none !important;
  }

  .copy-main {
    font-size: 24px !important;
  }

  .copy-sub {
    font-size: 13px !important;
  }
}

.fv-stage-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.14), 0 4px 14px rgba(0, 0, 0, 0.08);
}

.slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.slide.active {
  opacity: 1;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center center;
  animation: none;
}

.slide.active .slide-bg {
  animation: kenburns 7s ease-in-out forwards;
}

@keyframes kenburns {
  0% {
    transform: scale(1.0) translate(0, 0);
  }

  100% {
    transform: scale(1.12) translate(-1%, -1%);
  }
}

.slide:nth-child(2n).active .slide-bg {
  animation: kenburns-r 7s ease-in-out forwards;
}

@keyframes kenburns-r {
  0% {
    transform: scale(1.12) translate(1%, 1%);
  }

  100% {
    transform: scale(1.0) translate(0, 0);
  }
}

.fv-stage-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.0) 30%, rgba(0, 0, 0, 0.0) 45%, rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
  z-index: 5;
  border-radius: 20px;
}

.slide-counter-wrap {
  position: absolute;
  left: 90px;
  top: 20px;
  bottom: 28px;
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 20;
}

.counter-current {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.counter-sep {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}

.counter-total {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
}

.counter-dots {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.cdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(208, 163, 145, 0.3);
  cursor: pointer;
  transition: all .3s;
  border: none;
  outline: none;
}

.cdot.active {
  background: var(--orange);
  height: 18px;
  border-radius: 3px;
}

.fv-copy {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  z-index: 10;
  padding: 0;
  pointer-events: none;
  text-align: center;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  animation: floatCopy 6s ease-in-out infinite;
  transition: all 0.3s ease;
}

@keyframes floatCopy {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -8px);
  }
}

.copy-main {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.16em;
  line-height: 1.6;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.85), 0 2px 4px rgba(0, 0, 0, 0.8);
}

.copy-divider {
  width: 90px;
  height: 2.5px;
  background: linear-gradient(90deg, #E5B2B8 0%, #CBAE91 100%); /* Premium Rose to Gold gradient line */
  margin: 20px auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.copy-sub {
  font-size: clamp(13px, 1.5vw, 17px);
  font-weight: 500;
  color: #FDF4EC; /* Soft ivory gold tint for maximum elegance */
  letter-spacing: 0.22em;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.8);
  line-height: 1.9;
}

.blog-btn {
  position: absolute;
  left: 80px;
  bottom: -4px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 50;
  box-shadow: 0 0 0 6px rgba(208, 163, 145, 0.2), 0 0 0 12px rgba(208, 163, 145, 0.08), 0 14px 40px rgba(208, 163, 145, 0.55);
  transition: background .25s, transform .25s, box-shadow .25s;
  animation: blog-pulse 2.8s ease-in-out infinite;
}

@keyframes blog-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(208, 163, 145, 0.2), 0 0 0 12px rgba(208, 163, 145, 0.08), 0 14px 40px rgba(208, 163, 145, 0.55);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(208, 163, 145, 0.25), 0 0 0 22px rgba(208, 163, 145, 0.1), 0 18px 50px rgba(208, 163, 145, 0.6);
  }
}

.blog-btn:hover {
  background: var(--orange-d);
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 0 0 10px rgba(208, 163, 145, 0.25), 0 18px 50px rgba(208, 163, 145, 0.65);
}

.blog-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.blog-ja {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}

/* ══════════════════════════════
   HEADER (Type 17)
══════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--hdr-h, 80px);
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.nav-group {
  display: flex;
  align-items: stretch;
  list-style: none;
}

.nav-group.left {
  justify-content: flex-end;
}

.nav-group.right {
  justify-content: flex-start;
}

.nav-group li {
  flex: 0 0 auto;
}

.nav-group li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 0;
  width: 100px;
  text-decoration: none;
  border-left: 1px solid rgba(74, 66, 61, 0.08);
  position: relative;
  transition: background .22s;
  height: 100%;
}

.nav-group.right li:last-child a {
  border-right: 1px solid rgba(74, 66, 61, 0.08);
}

.nav-group li a:hover {
  background: rgba(208, 163, 145, 0.06);
}

.nav-group li a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--orange, #D0A391);
  transform: scaleX(0);
  transition: transform .25s;
  border-radius: 2px;
}

.nav-group li a:hover::after {
  transform: scaleX(1);
}

.nav-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon svg {
  width: 22px;
  height: 22px;
}

.nav-group li a:hover .nav-icon svg {
  opacity: 0.75;
}

.nav-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-mid, #7a6a58);
}

.header-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 10px;
  text-decoration: none;
  border-left: 1px solid rgba(74, 66, 61, 0.08);
  border-right: 1px solid rgba(74, 66, 61, 0.08);
}

.logo-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.logo-en {
  font-size: 10px;
  letter-spacing: 0.15em;
  line-height: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 310;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #4A423D;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════
   DRAWER (Type 17)
══════════════════════════════ */
.sp-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 290;
  pointer-events: none;
}

.sp-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity .3s;
}

.sp-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(300px, 82vw);
  height: 100%;
  background: #FAF8F7;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -6px 0 30px rgba(0, 0, 0, 0.15);
}

.sp-drawer.open {
  pointer-events: auto;
}

.sp-drawer.open .sp-drawer-overlay {
  opacity: 1;
}

.sp-drawer.open .sp-drawer-panel {
  transform: translateX(0);
}

.sp-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(74, 66, 61, 0.08);
}

.sp-drawer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.sp-drawer-logo-name {
  font-weight: 700;
  letter-spacing: 0.1em;
}

.sp-drawer-close {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #7a6a58;
  border-radius: 50%;
  transition: background .2s;
}

.sp-drawer-close:hover {
  background: rgba(74, 66, 61, 0.06);
}

.sp-drawer-nav {
  list-style: none;
  padding: 8px 0;
  flex: 1;
}

.sp-drawer-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  text-decoration: none;
  color: #4A423D;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(74, 66, 61, 0.05);
  transition: background .2s;
}

.sp-drawer-nav li a:hover {
  background: rgba(208, 163, 145, 0.06);
}

.sp-drawer-nav li a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sp-drawer-sep {
  height: 1px;
  background: rgba(74, 66, 61, 0.1);
  margin: 8px 18px;
}

.sp-drawer-actions {
  padding: 12px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.sp-drawer-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
}

.sp-drawer-actions svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.sp-drawer-sns {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 4px 16px 24px;
}

.sp-drawer-sns a {
  color: #7a6a58;
  transition: color .2s;
}

.sp-drawer-sns a:hover {
  color: var(--orange, #D0A391);
}

.sp-drawer-sns svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

/* ══════════════════════════════
   FLOATING RIGHT BUTTONS
══════════════════════════════ */
.float-right {
  position: fixed;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.float-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 46px;
  padding: 16px 0;
  background: var(--orange, #D0A391);
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  box-shadow: -3px 3px 14px rgba(0, 0, 0, 0.18);
  transition: background .22s, width .22s;
  overflow: hidden;
}

.float-btn:hover {
  background: var(--orange-d, #B88B79);
  width: 52px;
}

.float-btn-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-btn-icon svg {
  width: 19px;
  height: 19px;
  fill: #fff;
}

.float-btn-text {
  writing-mode: vertical-rl;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  white-space: nowrap;
}

.float-sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-right: 10px;
}

.float-sns-link {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #9a8a7a;
  transition: color .22s, transform .22s;
}

.float-sns-link:hover {
  color: var(--orange, #D0A391);
  transform: scale(1.15);
}

.float-sns-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* TV List Item Hover Effect */
.tv-list-item {
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.tv-list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(229, 178, 184, 0.3); /* Exact pink hover bg from user */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1; /* Render in front of parent background */
}

.tv-list-item:hover::before {
  transform: scaleX(1);
}

/* Force all text/icon contents of list item to stay above the sliding bg */
.tv-list-item > * {
  position: relative;
  z-index: 2; /* Render in front of sliding background */
}

.tv-list-item:hover {
  border-color: rgba(229, 178, 184, 0.5);
}

@media (max-width: 1023px) {
  :root {
    --hdr-h: 60px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    padding: 0 8px;
    height: var(--hdr-h);
  }

  .nav-group.left,
  .nav-group.right {
    display: none;
  }

  .header-logo {
    border: none;
    padding: 0;
    justify-content: center;
    grid-column: 2;
  }

  .logo-en {
    display: none;
  }

  .hamburger {
    display: flex;
    grid-column: 3;
    justify-self: end;
  }

  .sp-drawer {
    display: block;
  }
}

@media (min-width: 1024px) {
  .lg\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
  }
}

/* ══════════════════════════════
   MENU PRICE STYLING (High Visibility & Luxury Treatment)
   ══════════════════════════════ */
#menu span.text-theme-primary {
  color: #FFF0F2 !important; /* Beautiful glowing warm ivory white, highly visible on pink card */
  font-family: "Bodoni Moda", serif;
  font-size: 16px !important; /* Elegant uniform 16px price size */
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); /* Ensures perfect readability */
  transition: all 0.3s ease;
}

/* Subtle micro-interaction: when hover on the menu card, prices glow beautifully in soft gold */
#menu .rounded-2xl:hover span.text-theme-primary {
  color: #F8D3B0 !important; /* Soft luxury gold glow on hover */
  text-shadow: 0 2px 8px rgba(248, 211, 176, 0.5);
}

/* SP Overrides */
@media (max-width: 1023px) {
  .p-8,
  .px-8 {
    padding: 40px 10px !important;
  }

  .px-4 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .pl-4 {
    padding-left: 10px !important;
  }

  .p-6 {
    padding: 40px 10px !important;
  }

  #menu span.price-long {
    font-size: 14px !important;
  }
}

/* Voice Swiper equal height matching */
.voice-swiper .swiper-wrapper {
  display: flex !important;
  align-items: stretch !important;
}

.voice-swiper .swiper-slide {
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
}