@charset "UTF-8";

/* ==========================================================================
   Main Stylesheet (Migrated from Root)
   ========================================================================== */

:root {
  --color-mocha: #706357;
  --color-sage: #8F9779;
  --color-ivory: #FAF9F6;
  --color-light-beige: #F5F1E9;
  --color-text: #333333;
  --color-bg: #FFFFFF;

  --font-main: 'Noto Sans JP', sans-serif;
  --font-title: 'Noto Sans JP', sans-serif;

  --section-margin-pc: 120px;
  --section-margin-sp: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.8;
  overflow-x: hidden;
  padding-top: 100px;
  /* Match header height to prevent overlap */
}

@media (max-width: 768px) {
  body {
    padding-top: 80px;
    /* Adjusted for mobile header height */
  }
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.4;
  color: #512002;
}

.sp-only {
  display: none !important;
}

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

  .sp-only {
    display: block !important;
  }

  .sp-only.inline {
    display: inline !important;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
}

.section-margin {
  margin-bottom: var(--section-margin-pc);
}

.section-margin-none {
  margin-bottom: 0;
}

.section-padding {
  padding: var(--section-margin-pc) 0;
}

@media (max-width: 768px) {
  .section-margin {
    margin-bottom: var(--section-margin-sp);
  }

  .section-padding {
    padding: var(--section-margin-sp) 0;
  }
}

.section-margin-top {
  margin-top: var(--section-margin-pc);
}

@media (max-width: 768px) {
  .section-margin-top {
    margin-top: var(--section-margin-sp);
  }
}

/* FV Hero Badges (Integrated into FV) */
.fv-badges-in-fv {
  position: absolute;
  bottom: 150px;
  /* Elevated significantly higher */
  left: 0;
  width: 100%;
  z-index: 500;
  /* Absolute front */
}

.badge-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.badge-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-mocha) 0%, #8b7d6f 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  animation: badgeFloat 6s ease-in-out infinite;
  transition: all 0.3s;
}

.badge-item:hover .badge-circle {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.badge-item:nth-child(2) .badge-circle {
  animation-delay: 1.5s;
}

.badge-item:nth-child(3) .badge-circle {
  animation-delay: 3s;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.badge-circle p {
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 1.5rem;
  /* Restored size */
  font-weight: 400;
  line-height: 1.5;
}

.badge-circle p span {
  font-size: 1.1rem;
  /* Restored size */
  font-weight: normal;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .fv-badges-in-fv {
    bottom: 30px;
  }

  .badge-flex {
    gap: 30px;
  }

  .badge-circle {
    width: 170px;
    height: 170px;
  }

  .badge-circle p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .fv-badges-in-fv {
    position: absolute;
    bottom: 20px;
    left: 0;
    padding: 0;
    background: transparent;
  }

  .badge-flex {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    padding: 0 10px;
  }

  .badge-item {
    flex: 0 0 auto;
  }

  .badge-item:last-child {
    margin-top: 0;
  }

  .badge-circle {
    width: 110px;
    height: 110px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    padding: 0 5px;
  }

  .badge-circle p {
    font-size: 1rem;
    /* さらに大きく */
    line-height: 1.2;
  }

  .badge-circle p span {
    font-size: 0.75rem;
    /* さらに大きく */
    margin-top: 2px;
  }
}

/* ==========================================================================
   Components
   ========================================================================== */

.btn {
  display: inline-block;
  padding: 18px 40px;
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
  outline: 1px solid currentColor;
  background: transparent;
  color: var(--color-mocha);
}

.btn::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  background: var(--color-ivory);
  z-index: -1;
  transition: all 0.3s ease;
  border: 1px solid currentColor;
}

.btn:hover::before {
  top: 0;
  left: 0;
}

.btn-sage {
  color: var(--color-sage);
}

.btn-sage::before {
  background: #F4F5F1;
}

.btn-mocha {
  color: var(--color-mocha);
}

.btn-mocha::before {
  background: var(--color-ivory);
}

.btn-line {
  color: #06C755;
}

.btn-line::before {
  background: #f0fdf4;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  overflow: hidden;
  /* For entrance animation */
}

.section-header .title {
  font-family: var(--font-title);
  font-size: 2.2rem;
  letter-spacing: 0.2em;
  color: #512002;
  /* Exact color requested */
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 10px;
  position: relative;
  opacity: 0;
  transform: translateX(-50px);
  animation: titleFlowIn 1.2s ease-out forwards;
}

@keyframes titleFlowIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .section-header .title {
    flex-direction: column-reverse;
    /* 装飾を上に配置 */
    gap: 8px;
    font-size: 1.8rem;
    letter-spacing: 0.15em;
  }
}

.section-header .title::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: var(--color-sage);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 2,11.5 2,13.5C2,15.5 3.75,17.25 3.75,17.25C7,11 17,8 17,8Z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 2,11.5 2,13.5C2,15.5 3.75,17.25 3.75,17.25C7,11 17,8 17,8Z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
}

#about {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background-color: var(--color-ivory);
  /* Reverted to Ivory base */
}

/* Worries Section */
.worries-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.worries-img {
  flex: 0 0 25%;
  /* Reduced from 40% */
}

.worries-content {
  flex: 1;
}

@media (max-width: 768px) {
  .worries-container {
    flex-direction: column;
    gap: 30px;
  }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s;
}

header.scrolled {
  height: 80px;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.header-inner {
  width: 100%;
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 3%;
  display: flex;
  align-items: center;
}

.logo img {
  height: 65px;
  width: auto;
  transition: height 0.4s;
}

header.scrolled .logo img {
  height: 48px;
}

.pc-nav {
  margin-left: auto;
  margin-right: 40px;
}

.pc-nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

.pc-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-title);
  font-size: 0.92rem;
  color: var(--color-text);
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.pc-nav a span {
  font-size: 10px;
  font-family: var(--font-main);
  color: var(--color-sage);
  margin-top: 3px;
  opacity: 0.7;
}

.pc-nav a:hover {
  color: var(--color-sage);
  opacity: 1;
}

.header-reserve-btn {
  background: var(--color-sage);
  color: #fff !important;
  padding: 14px 28px;
  font-size: 0.88rem;
  font-family: var(--font-title);
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  border-radius: 4px;
}

.header-reserve-btn span {
  font-size: 0.85rem;
  transition: transform 0.3s;
}

.header-reserve-btn:hover {
  background: var(--color-mocha);
  opacity: 1;
}

.header-reserve-btn:hover span {
  transform: translateX(4px);
}

@media (max-width: 1024px) {

  .pc-nav,
  .nav-reserve {
    display: none;
  }
}

/* FV New Redesign (Perpetual-inspired) */
.main-fv-new {
  height: 100vh;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  display: flex;
  margin-bottom: var(--section-margin-pc);
}

.fv-inner {
  display: flex;
  width: 100%;
  height: 100%;
}

.fv-text-side {
  flex: 0 0 45%;
  min-width: 0;
  /* Prevent expansion due to long content */
  background-color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  /* Ensure text is on top of the image frame */
  overflow: visible;
}

.fv-text-wrap {
  position: relative;
  z-index: 110;
  padding: 0 10%;
  width: 100%;
  transform: translateY(-100px);
  /* -60pxから引き上げ */
}

.fv-ribbon {
  background: var(--color-sage);
  color: #fff;
  padding: 25px 80px;
  /* Further enlarged padding */
  font-family: var(--font-title);
  font-size: 3.2rem;
  /* Hero-sized font */
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 60px;
  box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.12);
  /* Even deeper shadow */
  white-space: nowrap;
  position: relative;
  z-index: 120;
  margin-right: -350px;
  /* Deeper overlap for dramatic effect */
  font-weight: 400;
}

/* Vertical line segments for mobile individual boxes */
.v-line {
  display: inline;
}

.fv-brand-area {
  color: #512002;
}

.fv-sub {
  font-family: var(--font-title);
  font-size: 44px;
  /* Requested size */
  color: #512002;
  /* Requested color */
  margin-bottom: 15px;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.fv-main-logo {
  font-size: 4.8rem;
  font-family: var(--font-title);
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 400;
}

.fv-main-logo span {
  font-size: 3rem;
  color: var(--color-mocha);
  vertical-align: middle;
}

.fv-private {
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  color: var(--color-mocha);
  margin-left: 5px;
}

.fv-image-side {
  flex: 1;
  min-width: 0;
  /* Prevent shrinkage issues on wide screens */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 100vh;
}

.fv-img-frame {
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  z-index: 5;
  transform: none;
}

.swiper-fv {
  width: 100%;
  height: 100%;
}

.swiper-fv .swiper-slide {
  width: 100%;
  height: 100%;
}

.swiper-fv .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fv-zoom 20s ease-in-out infinite alternate;
}

@keyframes fv-zoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

@media (max-width: 1024px) {
  .fv-inner {
    flex-direction: column;
    position: relative;
  }

  /* Relative for absolute positioning of text overlay */
  .fv-text-side {
    flex: 0 0 0;
    padding: 0;
    min-height: 0;
  }

  /* Text side becomes a container for absolute overlay */
  .fv-image-side {
    flex: 1;
    padding: 0;
    width: 100%;
    height: 100vh;
    min-height: 600px;
  }

  .fv-text-wrap {
    position: absolute;
    top: 30px;
    /* Shifted back to top position */
    left: 0;
    /* Flushed to the left edge */
    right: auto;
    z-index: 150;
    width: auto;
    padding: 0;
    transform: none;
  }

  .fv-img-frame {
    transform: none;
    margin: 0;
    width: 100%;
    height: 100%;
    box-shadow: none;
    padding: 0;
  }

  .fv-brand-area {
    display: none;
  }

  .fv-ribbon {
    background: transparent;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: row-reverse;
    /* For correct vertical line ordering */
    align-items: flex-start;
    gap: 10px;
    white-space: normal;
    width: auto;
  }

  .v-line {
    display: block;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: rgba(143, 151, 121, 0.85);
    /* Semi-transparent Sage Green */
    padding: 25px 6px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.2em;
    height: auto;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15);
  }
}

@media (max-width: 768px) {
  .fv-badges-in-fv {
    position: absolute;
    bottom: 25px;
    left: 0;
    padding: 0;
    background: transparent;
    z-index: 500;
  }

  .main-fv-new {
    height: auto;
    min-height: unset;
    margin-bottom: var(--section-margin-sp);
  }

  .fv-inner {
    position: relative;
    width: 100%;
    height: 525.41px;
    min-height: unset;
  }

  .fv-image-side {
    width: 100%;
    height: 100%;
    padding: 0;
  }

  .fv-img-frame {
    height: 100%;
  }

  /* Focus on man for fv03 and fv04 (slide 2 and 3) */
  .swiper-fv .fv-img-02 img {
    object-position: 65% center;
    /* Right-leaning center axis */
  }

  .swiper-fv .fv-img-03 img {
    object-position: 85% center;
    /* Shifting to display subject on the left */
  }

  .fv-main-logo {
    font-size: 2.8rem;
  }

  .fv-sub {
    font-size: 24px;
  }

  /* Scaled down for mobile balance */

  /* SP: 各行に背景ボックスを適用 */
  .fv-text-wrap {
    display: block;
    position: absolute;
    top: 85px;
    right: 20px;
    /* Aligned to right for vertical writing layout */
    left: auto;
    width: auto;
    z-index: 150;
    text-align: right;
    padding: 0;
  }

  .fv-brand-area {
    display: none;
  }

  .fv-ribbon {
    display: flex;
    flex-direction: row-reverse;
    /* Right to left for vertical lines */
    align-items: flex-start;
    gap: 12px;
    background: transparent !important;
    padding: 0;
    margin: 0;
    box-shadow: none;
  }

  .v-line {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: #fff !important;
    background: rgba(143, 151, 121, 0.85) !important;
    padding: 20px 8px !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    line-height: 1.5;
    white-space: nowrap;
  }
}

.nav-reserve .btn {
  padding: 10px 20px;
  font-size: 0.8rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--color-mocha);
  transition: 0.3s;
}

@media (max-width: 1024px) {

  .pc-nav,
  .nav-reserve {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }
}

/* Drawer */
.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: #fff;
  z-index: 2000;
  padding: 60px 40px;
  transition: 0.4s;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.drawer.active {
  right: 0;
}

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

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

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

.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--color-mocha);
}

.drawer-nav ul {
  list-style: none;
}

.drawer-nav ul li {
  margin-bottom: 25px;
}

.drawer-nav ul li a {
  font-family: var(--font-title);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

.drawer-nav ul li a span {
  display: block;
  font-size: 0.8rem;
  font-family: var(--font-main);
  color: var(--color-sage);
  margin-top: 5px;
  letter-spacing: normal;
}

/* ==========================================================================
   Main Content
   ========================================================================== */

/* FV */
.main-fv {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.swiper-fv {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-down span {
  color: #fff;
  font-size: 0.8rem;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: scrollDownLines 2.5s cubic-bezier(0.15, 0.41, 0.69, 0.94) infinite;
}

@keyframes scrollDownLines {
  0% {
    transform: translateY(-100%);
  }

  50% {
    transform: translateY(0);
  }

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

/* Diamond Number Design */
.number-07 {
  position: relative;
  font-family: var(--font-main);
  font-size: 64px;
  color: var(--color-sage);
  font-weight: 400;
  line-height: 1;
  display: block;
  box-sizing: border-box;
  text-align: left;
  margin-inline: 0;
  width: fit-content;
}

.number-07::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 35px;
  /* Slightly offset for left alignment */
  width: 90px;
  height: 90px;
  background: rgba(143, 151, 121, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media (max-width: 768px) {
  .number-07 {
    margin-inline: auto;
    font-size: 44px;
    display: block;
  }
}

/* Titles color */
section h2,
section h3 {
  color: #512002 !important;
}

/* CTA */
.cta-section {
  padding: 80px 0;
}

.cta-label {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 400;
  color: var(--color-mocha);
  font-family: var(--font-title);
  font-size: 1.2rem;
}

.cta-flex {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-flex {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .cta-flex .btn {
    flex: 1;
    font-size: 0.8rem;
    padding: 15px 5px;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

/* Worries Section Details */
.worries-title {
  font-size: 24px;
  color: var(--color-mocha);
  text-align: center;
  margin-bottom: 40px;
  font-family: var(--font-title);
  white-space: nowrap;
  /* No line breaks */
}

.worries-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.worries-img {
  flex: 0 0 32%;
}

.worries-img img {
  width: 100%;
  height: auto;
}

.worries-content {
  flex: 1;
}

.worries-content ul {
  line-height: 2.2;
}

.worries-content ul li {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .worries-title {
    white-space: normal;
    font-size: 24px;
    margin-bottom: 20px;
  }

  .worries-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .worries-img {
    width: 60%;
  }

  .worries-content ul {
    line-height: 1.6;
    text-align: left;
  }

  .worries-content ul li {
    margin-bottom: 0.8em;
  }

  .worries-content ul li:last-child {
    margin-bottom: 0;
  }
}

/* Dancing Leaves in Wind */
.leaf-dancing {
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: rgba(81, 32, 2, 0.15);
  /* Shadow color */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 2,11.5 2,13.5C2,15.5 3.75,17.25 3.75,17.25C7,11 17,8 17,8Z'/%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 2,11.5 2,13.5C2,15.5 3.75,17.25 3.75,17.25C7,11 17,8 17,8Z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.leaf-dancing.sage {
  background-color: rgba(143, 151, 121, 0.7);
  /* Sage Green */
}

.leaf-dancing.d1 {
  animation: leafDance 10s linear infinite;
  left: -20%;
}

.leaf-dancing.d2 {
  animation: leafDance 13s linear infinite 2s;
  left: -25%;
}

.leaf-dancing.d3 {
  animation: leafDance 9s linear infinite 4s;
  left: -20%;
}

.leaf-dancing.d4 {
  animation: leafDance 14s linear infinite 1s;
  left: 10%;
}

.leaf-dancing.d5 {
  animation: leafDance 11s linear infinite 3s;
  left: 30%;
}

.leaf-dancing.d6 {
  animation: leafDance 16s linear infinite 5s;
  left: 60%;
}

@media (max-width: 768px) {
  .leaf-dancing.d1 {
    animation-duration: 6s;
  }

  .leaf-dancing.d2 {
    animation-duration: 8s;
  }

  .leaf-dancing.d3 {
    animation-duration: 5.5s;
  }

  .leaf-dancing.d4 {
    animation-duration: 9s;
  }

  .leaf-dancing.d5 {
    animation-duration: 7s;
  }

  .leaf-dancing.d6 {
    animation-duration: 10s;
  }
}

@keyframes leafDance {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(0.6);
    opacity: 0;
  }

  10% {
    opacity: 0.15;
  }

  45% {
    transform: translate(40vw, 15vh) rotate(220deg) scale(1.1);
  }

  85% {
    opacity: 0.15;
  }

  100% {
    transform: translate(120vw, 40vh) rotate(540deg) scale(0.7);
    opacity: 0;
  }
}

#about .container {
  position: relative;
  z-index: 10;
}

/* Asymmetric Row Styling */
.asymmetry-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.asymmetry-row.reverse {
  flex-direction: row-reverse;
}

.asymmetry-text {
  flex: 0 0 55%;
  position: relative;
}

.asymmetry-img {
  flex: 0 0 calc(45% - 60px);
}

.asymmetry-text>.asymmetry-img {
  display: none;
}

@media (max-width: 768px) {

  .asymmetry-row,
  .asymmetry-row.reverse {
    flex-direction: column;
    gap: 30px;
  }

  .asymmetry-text {
    flex: 0 0 100%;
  }

  .asymmetry-row>.asymmetry-img {
    display: none;
  }

  .asymmetry-text>.asymmetry-img {
    display: block;
    width: 100%;
    margin: 20px 0;
  }
}

/* Gradient and Highlight Effects */
.total-site-gradient-wrapper {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #E5DCC5 0%, #FAF9F6 50%, #D0C09F 100%);
  background-size: 100% 200%;
  animation: gradientVerticalFlow 10s ease-in-out infinite;
}

@keyframes gradientVerticalFlow {
  0% {
    background-position: 50% 0%;
  }

  50% {
    background-position: 50% 100%;
  }

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

@keyframes highlightBreath {

  0%,
  100% {
    transform: translateY(0);
    color: var(--color-sage);
  }

  50% {
    transform: translateY(-5px);
    color: var(--color-mocha);
  }
}

.highlight-message {
  font-size: 20px;
  line-height: 1.6;
  margin: 30px 0;
  font-family: var(--font-title);
  font-weight: 400;
  animation: highlightBreath 3s ease-in-out infinite;
  text-align: left;
}

@keyframes colorMoveHighlight {

  0%,
  100% {
    color: var(--color-mocha);
    transform: translateY(0);
  }

  50% {
    color: var(--color-sage);
    transform: translateY(-3px);
  }
}

.text-highlight {
  display: inline-block;
  font-weight: 400;
  animation: colorMoveHighlight 4s ease-in-out infinite;
}

.recommend-title {
  margin-bottom: 15px;
  color: #fff !important;
}

.recommend-label {
  display: inline-block;
  background: var(--color-sage);
  color: #fff;
  font-size: 0.9rem;
  padding: 5px 15px;
  border-radius: 4px;
  margin-bottom: 10px;
  font-family: var(--font-main);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.recommend-gradient-text {
  background: linear-gradient(180deg, #ffffff 0%, #E5DCC5 30%, #D0C09F 60%, #ffffff 100%);
  background-size: 200% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textVerticalFlow 3s ease-in-out infinite;
  display: inline-block;
}

@keyframes textVerticalFlow {
  0% {
    background-position: 50% 0%;
  }

  50% {
    background-position: 50% 100%;
  }

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

.underline-gradient {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.underline-gradient::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: '';
  background: linear-gradient(to right, var(--color-sage) 0%, var(--color-mocha) 100%);
  border-radius: 2px;
}

/* Light Orbs (Lantern-like) */
.light-orb {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 230, 0, 0.4) 0%, rgba(255, 200, 50, 0.2) 40%, rgba(255, 200, 50, 0) 80%);
  border-radius: 50%;
  filter: blur(25px);
  pointer-events: none;
  z-index: 2;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }

  50% {
    transform: translate(60px, -80px) scale(1.3);
    opacity: 0.8;
  }
}

.orb-1 {
  top: 10%;
  left: -5%;
  animation: orbFloat 10s infinite ease-in-out;
}

.orb-2 {
  top: 30%;
  right: -5%;
  animation: orbFloat 14s infinite ease-in-out reverse;
}

.orb-3 {
  top: 70%;
  left: 5%;
  animation: orbFloat 12s infinite ease-in-out 2s;
}

.orb-4 {
  top: 85%;
  right: 10%;
  animation: orbFloat 16s infinite ease-in-out 1s;
}

.orb-5 {
  top: 20%;
  left: 40%;
  animation: orbFloat 13s infinite ease-in-out reverse 3s;
}

.orb-6 {
  top: 50%;
  right: 40%;
  animation: orbFloat 11s infinite ease-in-out 4s;
}

.orb-7 {
  top: 40%;
  left: 10%;
  animation: orbFloat 15s infinite ease-in-out 5s;
}

.orb-8 {
  top: 60%;
  right: 5%;
  animation: orbFloat 12s infinite ease-in-out reverse 2.5s;
}

/* Voice Cards and Menu */
.voice-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .voice-list {
    flex-direction: column;
    align-items: center;
  }
}

.voice-card {
  background: #ffffff;
  padding: 30px;
  flex: 1;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.voice-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stars {
  font-size: 1.2rem;
  color: #DAA520;
}

.voice-text {
  font-size: 0.95rem;
  line-height: 1.8;
  text-align: left;
  width: 100%;
}

@media (max-width: 768px) {
  .voice-text {
    font-size: 16px;
  }
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.menu-box {
  background: #fff;
  padding-bottom: 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
}

.menu-box img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.menu-title-wrap {
  font-family: var(--font-title);
  background: #EAE3D1;
  padding: 10px 15px;
  margin: 20px;
  color: #512002;
  font-weight: 400;
  min-height: 55px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
}

.menu-desc {
  padding: 0 20px;
  margin-bottom: 0;
  flex-grow: 1;
  text-align: center;
}

.menu-price-row {
  padding: 0 20px 15px;
}

.price-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  text-align: center;
}

.time-pill {
  background: var(--color-sage);
  color: #fff;
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.price-val {
  color: #512002;
  font-weight: 400;
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-box {
    text-align: center;
  }

  .menu-title-wrap {
    justify-content: center;
    padding-left: 15px;
  }

  .menu-desc {
    text-align: center;
  }
}

/* Additional/Legacy Assets (Merged) */
.glitter-bg {
  position: relative;
  background-color: #ffffff !important;
  overflow: hidden;
  z-index: 1;
}

.glitter-bg::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -150%;
  width: 200%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(230, 206, 138, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
  animation: sCurveShimmer 12s infinite ease-in-out;
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.glitter-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle, rgba(200, 160, 89, 0.6) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(200, 160, 89, 0.4) 2px, transparent 2px);
  background-size: 80px 80px, 120px 120px;
  animation: twinkle 4s infinite alternate;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

@keyframes sCurveShimmer {
  0% {
    left: -150%;
    top: 10%;
  }

  50% {
    left: 50%;
    top: 20%;
  }

  100% {
    left: 150%;
    top: 10%;
  }
}

@keyframes twinkle {
  0% {
    opacity: 0.4;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.reserve-btn-custom {
  display: inline-block;
  border: 1px solid #C5A059;
  color: #285D3F;
  padding: 12px 40px;
  font-weight: 700;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
  background: transparent;
  text-align: center;
}

.reserve-btn-custom:hover {
  background: #C5A059;
  color: #fff;
}

/* Access Spacing */
#access {
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  #access {
    padding-bottom: 40px;
  }
}

/* Common Footer behaviors */
footer {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
  z-index: 10;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.footer-nav ul li a {
  font-family: var(--font-title);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--color-mocha);
}

.copyright {
  margin-top: 40px;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .footer-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 20px;
  }

  .footer-nav ul li {
    flex: 0 0 calc(33.333% - 20px);
    text-align: center;
  }

  .footer-nav ul li:nth-child(n+4) {
    flex: 0 0 calc(50% - 20px);
  }

  footer {
    padding: 40px 0 0;
    /* Removed bottom padding for mobile */
  }

  .copyright {
    margin-top: 30px;
    font-size: 0.75rem;
    padding-bottom: 20px;
  }
}

/* SNS & Staff */
.sns-links {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 30px;
}

.sns-icon-link img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .sns-links {
    justify-content: center;
  }
}

.staff-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.staff-img-bg {
  position: relative;
  flex: 0 0 400px;
  height: 500px;
  z-index: 2;
  /* Bring to front */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  margin-right: -100px;
  /* Overlap with card */
}

.staff-img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-card {
  position: relative;
  z-index: 1;
  /* Behind image */
  background: #fff;
  flex: 1;
  padding: 80px 80px 80px 150px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  border: 1px solid var(--color-light-beige);
}

.staff-info p:last-child {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

@media (max-width: 768px) {
  .staff-wrapper {
    padding: 40px 15px;
    flex-direction: column;
  }

  .staff-img-bg {
    flex: 0 0 auto;
    width: 180px;
    height: 180px;
    margin: 0 auto -90px;
    border-radius: 50%;
    z-index: 5;
  }

  .staff-card {
    width: 100%;
    padding: 120px 25px 40px;
    text-align: center;
    background: #fff;
    margin-right: 0;
  }

  .staff-info p:last-child {
    font-size: 16px;
    text-align: left;
  }
}

.contact-grid {
  display: flex;
  gap: 60px;
}

.contact-info {
  flex: 0 0 40%;
}

.contact-map {
  flex: 1;
  height: 450px;
}

.access-logo {
  height: 100px;
  width: auto;
  transition: transform 0.3s;
}

.access-logo:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }

  .contact-map {
    height: 350px;
  }

  .contact-info {
    text-align: center;
  }

  .access-logo {
    width: 280px;
    height: auto;
    margin: 0 auto;
  }
}

.parallax-menu {
  position: relative;
  height: 600px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.parallax-content {
  position: relative;
  z-index: 10;
  color: #fff;
  width: 100%;
  max-width: 900px;
}

.parallax-content .menu-card {
  border: 1px solid #fff;
  background: transparent;
  padding: 40px;
  color: #fff;
  display: flex;
  gap: 40px;
}

@media (max-width: 768px) {
  .parallax-menu {
    height: auto;
    padding: 100px 0;
    background-attachment: fixed;
    background-image: url('../img/recommend03.jpg') !important;
  }
  .parallax-overlay {
    background: rgba(0, 0, 0, 0.5);
  }

  .parallax-content .menu-card {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .menu-info p {
    font-size: 16px !important;
  }
}

/* SP CTA (Fixed at bottom) */
.sp-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1000;
  background: #fff;
}

@media (max-width: 768px) {
  .sp-cta {
    display: flex;
  }
}

.sp-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-title);
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-decoration: none;
  font-size: 0.95rem;
}

.cta-tel {
  background: var(--color-mocha);
}

.cta-line {
  background: #06C755;
}

/* Redesigned PageTop Arrow */
.pagetop {
  position: fixed;
  right: 25px;
  bottom: 85px;
  /* Above SP CTA */
  width: 50px;
  height: 50px;
  background: var(--color-mocha);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid #fff;
}

.pagetop.show {
  opacity: 1;
  visibility: visible;
  bottom: 85px;
}

.pagetop span {
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-45deg);
  margin-top: 5px;
}

.pagetop:hover {
  background: var(--color-sage);
  transform: translateY(-5px);
  opacity: 1;
}

@media (max-width: 768px) {
  .pagetop {
    right: 15px;
    bottom: 75px;
    width: 45px;
    height: 45px;
  }

  .pagetop.show {
    bottom: 75px;
  }
}