@charset "UTF-8";

/* =====================================================
   FOOTER – AKANE (Precision Final)
===================================================== */

:root{
  --footer-bg: var(--brand-deep, #111);
  --footer-ink: rgba(255,255,255,.72);
  --footer-muted: rgba(255,255,255,.55);

  --footer-link: rgba(255,255,255,.78);
  --footer-link-hover: rgba(255,255,255,.95);

  --footer-nav: #bcbcbc;
  --footer-nav-hover: #fff;
}

/* =====================================================
   BASE
===================================================== */

.site-footer{
  background: var(--footer-bg);
  color: var(--footer-ink);
  padding: 94px 20px 56px;
  text-align: center;
}

.footer-inner{
  max-width: 1000px;
  margin: 0 auto;
}

/* =====================================================
   NAV
===================================================== */

.footer-nav{
  margin-bottom: 58px;
}

.footer-menu{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 46px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu a{
  font-family: var(--font-en,"Cinzel",serif);
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--footer-nav);
  text-decoration: none;
  transition: color .3s ease;
}

.footer-menu a:hover{
  color: var(--footer-nav-hover);
}

/* =====================================================
   LOGO（完全センター固定）
===================================================== */

.footer-brand{
  margin-bottom: 34px;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.footer-logo{
  display:inline-block;
  margin:0 auto;
}

.footer-logo img{
  width: 100px;
  opacity: .92;
  transition: opacity .3s ease;
}

.footer-logo img:hover{
  opacity: 1;
}

/* =====================================================
   INFO
===================================================== */

.footer-info{
  margin-bottom: 22px;
  color: var(--footer-ink);
}

.footer-info p{
  margin: 0 0 7px;
  font-family: var(--font-en,"Cinzel",serif);
  font-size: 13.5px;
  letter-spacing: .16em;
  line-height: 1.88;
}

/* CLUB 茜 をわずかに強く */
.footer-info p:first-of-type{
  font-size: 14px;
  letter-spacing: .20em;
}

/* TEL を静かに強化 */
.footer-info p:nth-of-type(2){
  opacity: .95;
  letter-spacing: .18em;
}

/* ACCESS をわずかに抑える */
.footer-info p:nth-of-type(3){
  opacity: .78;
}

/* リンクは完全に静か */
.footer-info a{
  color: inherit;
  text-decoration: none;
  transition: opacity .3s ease;
}

.footer-info a:hover{
  opacity: .9;
}

/* =====================================================
   SNS
===================================================== */

.footer-sns{
  margin: 6px 0 24px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-sns a{
  font-size: 20px;
  color: var(--footer-ink);
  opacity: .85;
  transition: opacity .3s ease, transform .3s ease;
}

.footer-sns a:hover{
  opacity: 1;
  transform: translateY(-2px);
}

/* =====================================================
   PRIVACY POLICY / MYTHOS GROUP
===================================================== */

.footer-policy{
  margin: 0 0 20px;
  color: var(--footer-muted);
  font-family: var(--font-en,"Cinzel",serif);
  font-size: 9.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  line-height: 1.8;
}

.footer-policy a{
  color: inherit;
  text-decoration: none;
  opacity: .7;
  transition: opacity .3s ease;
}

.footer-policy a:hover{
  opacity: .9;
}

.footer-divider{
  display: inline-block;
  margin: 0 12px;
  opacity: .45;
}

/* =====================================================
   COPYRIGHT
===================================================== */

.footer-copy{
  font-size: 8.5px;
  letter-spacing: .2em;
  opacity: .6;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:768px){

  .site-footer{
    padding: 78px 18px 48px;
  }

  .footer-menu{
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-logo img{
    width: 84px;
  }

  .footer-info p{
    font-size: 12.5px;
    line-height: 1.85;
  }

  .footer-policy{
    font-size: 8.5px;
  }

  .footer-divider{
    margin: 0 8px;
  }
}