/* =========
   LUXE SANO Base (固定)
   ========= */

/* 1) Fade-in */
@keyframes fadeInPage {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* 2) Global */
html, body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  text-align: center;
  font-family: "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  line-height: 1.8;
}

/* 3) Wrapper */
.fade-wrapper {
  animation: fadeInPage 1.5s ease-out forwards;
  padding-bottom: 60px; /* fixed footer分（PCでは消す） */
}

/* 4) Header */
.header {
  text-align: center;
  padding: 45px 0;
}
.logo-img {
  max-width: 200px;
  width: 100%;
  height: auto;
}

/* 5) Main base */
main {
  display: block;
}

/* 6) Main nav (Top etc.) */
.main-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.main-nav a {
  display: block;
  width: 100%;
  padding: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.main-nav a:hover,
.main-nav a:active {
  color: #C9A24D;
}

/* 7) Footer (共通) */
.footer {
  text-align: center;
  padding: 40px 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer .hours-label {
  font-size: 11px;
  color: #C9A24D;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 5px;
}
.footer .hours-time {
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: 300;
  margin: 0;
}
.footer .legal {
  font-size: 10px;
  color: #444;
  line-height: 1.6;
  margin: 20px 0;
}
.footer .legal strong { color: #666; font-weight: 600; }
.footer .copy {
  font-size: 10px;
  color: #555;
  margin: 0;
}

/* 8) Fixed footer nav (スマホのみ) */
.fixed-footer-nav {
  position: fixed;
  inset: auto 0 0 0;
  width: 100%;
  height: 50px;
  display: flex;
  z-index: 2147483647;
  background: #000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
}
.fixed-footer-nav a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #fff;
  transition: 0.3s;
}
.nav-line { background: #0b2e1a; border-top: 1px solid #05a346; }
.nav-tel  { background: #1a1a1a; color: #C9A24D; border-top: 1px solid #C9A24D; border-left: 1px solid rgba(255,255,255,0.1); }

@media screen and (min-width: 769px) {
  .fixed-footer-nav { display: none; }
  .fade-wrapper { padding-bottom: 0; }
}
