@charset "utf-8";

/* =========================================================
   AGATHA COMMON CSS
   Base / Header / Global Nav / Burger / Footer
   ========================================================= */

/* ---------------------------------------------------------
   01. Variables / Base
--------------------------------------------------------- */
:root{
  --bg: #070909;
--text-main: rgba(243,239,230,.92);
--text-sub: rgba(243,239,230,.7);
  --accent: #d6b15a;
--gold-main: #d6b15a;
  --header-h: 68px;
}

*,
*::before,
*::after{
  box-sizing: border-box;
}

html,
body{
  padding: 0;
  margin: 0;
  background: var(--bg);
  color: var(--text-main);
  font-family: "IBM Plex Sans JP", sans-serif;
}
html{
  scroll-behavior: smooth;
}
a{
  color: inherit;
  text-decoration: none;
}

img{
  display: block;
  max-width: 100%;
}

html.menu-open,
body.menu-open{
  overflow: hidden;
  height: 100%;
  touch-action: none;
}

.pc-ticket{
  display: inline-flex;
}

.sp-only{
  display: none !important;
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
} /**/
/* ---------------------------------------------------------
   02. Header / Global Navigation
--------------------------------------------------------- */
.site-header{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  background: transparent;
  transition: background .35s ease, backdrop-filter .35s ease;
}

/* Scroll state: purple-black translucent header */
.site-header.is-scrolled{
  background: linear-gradient(
   to bottom,rgba(40, 10, 30, 0.1), 
      rgba(120, 40, 80, 0.85) /* ←紫ピンク */
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Header decorative full-width lines / PC only */
.site-header::before,
.site-header::after{
  opacity: .3;
  transition: opacity .3s ease;
  pointer-events: none;
}

.site-header.is-scrolled::before{
  opacity: .9;
}

@media (min-width: 993px){
  .site-header::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
      90deg,
      rgba(214,177,90,0) 0%,
      rgba(214,177,90,.18) 15%,
      rgba(214,177,90,.35) 50%,
      rgba(214,177,90,.18) 85%,
      rgba(214,177,90,0) 100%
    );
  }

  .site-header::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: linear-gradient(
      90deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.08) 50%,
      rgba(255,255,255,0) 100%
    );
  }
}

.nav{
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-ticket{
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 100%;
  padding: 0 20px;

  border: 1px solid rgba(214,177,90,.62);
  background: rgba(7,18,10,.58);


  color: #e0c57b;

  font-family: "EB Garamond", serif;
  font-size: .96rem;
  letter-spacing: .22em;

  transition:
    background .22s ease,
    border-color .22s ease,
    color .22s ease,
    transform .22s ease;
}
.header-ticket::after{
  content:"";
  position:absolute;
  left:10px;
  right:10px;
  bottom:6px;
  height:1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(214,177,90,.9),
      transparent
    );
  opacity:.7;
}
.header-ticket:hover{
  background: rgba(214,177,90,.14);
  border-color: rgba(214,177,90,.9);
  color: #f3efe6;
  transform: translateY(-50%) translateY(-1px);
}
.globalNav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin: 0 auto;
}

.globalNav a{letter-spacing: .08em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  position: relative;
  opacity: .94;
  transition: opacity .25s ease;
	text-shadow:
  0 0 1px rgba(0,0,0,.9),
  0 1px 2px rgba(0,0,0,.7),
  0 0 12px rgba(214,177,90,.18);
	
}

.globalNav a::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(214,177,90,.82);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform .28s ease;
}

.globalNav a:hover{
  opacity: 1;
}

.globalNav a:hover::after{
  transform: translateX(-50%) scaleX(1);
}

.nav__en{
  font-family: "EB Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: .08em;
  line-height: 1.1;
}

.nav__ja{
  margin-top: 3px;
  font-size: .68rem;
  letter-spacing: .08em;
  color: rgba(243,239,230,.8);
  line-height: 1.1;
}

/* ---------------------------------------------------------
   03. Header Buttons / Mobile Menu Controls
--------------------------------------------------------- */
.burger{z-index: 10001;
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.burger{ position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  z-index: 81;
}

.burger span{
  position: absolute;
  left: 9px;
  width: 24px;
  height: 1px;
  background: #fff;
}

.burger span:nth-child(1){ top: 13px; }
.burger span:nth-child(2){ top: 20px; }
.burger span:nth-child(3){ top: 27px; }

/* ---------------------------------------------------------
   08. Footer
--------------------------------------------------------- */
.siteFooter{
  background: #050505;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 32px 20px 40px;
}

.siteFooter__inner{
  text-align: center;
}

.siteFooter__logo{
  margin: 30px auto;max-width: 300px;
}

.siteFooter__copy{
  margin: 0;
  font-family: "EB Garamond", serif;
  font-size: .75rem;
  letter-spacing: .14em;
  color: rgba(243,239,230,.55);
}

/* ---------------------------------------------------------
   06. Common Responsive
--------------------------------------------------------- */
@media (max-width: 992px){
  :root{
    --header-h: 60px;
  }

  .site-header{
    background: linear-gradient(
      to bottom,
      rgba(40, 10, 30, 0.1),
      rgba(120, 40, 80, 0.35)
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .nav{
    padding: 0 16px;
  }

  .pc-ticket{
    display: none;
  }

  .sp-only{
    display: inline-flex !important;
  }

  .burger{
    display: inline-block;
    position: fixed;
    right: 18px;
    top: 30px;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    padding: 0;
    background: transparent;
    border: 0;
    z-index: 10001;
  }

  .burger span{
    position: absolute;
    left: 10px;
    width: 34px;
    height: 2px;
    background: rgba(255,255,255,.95);
    border-radius: 999px;
    transition:
      transform .34s cubic-bezier(.22,.61,.36,1),
      opacity .22s ease,
      top .34s cubic-bezier(.22,.61,.36,1);
  }

  .burger span:nth-child(1){ top: 17px; }
  .burger span:nth-child(2){ top: 26px; }
  .burger span:nth-child(3){ top: 35px; }

  .menu-open .burger span:nth-child(1){
    top: 26px;
    transform: rotate(45deg);
  }

  .menu-open .burger span:nth-child(2){
    opacity: 0;
  }

  .menu-open .burger span:nth-child(3){
    top: 26px;
    transform: rotate(-45deg);
  }

  body:not(.menu-open) .burger:hover span:nth-child(1){
    top: 15px;
  }

  body:not(.menu-open) .burger:hover span:nth-child(3){
    top: 37px;
  }
  .globalNav{
    position: fixed;
    inset: 0;
    z-index: 10000;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 8px;
   padding: 70px 24px 34px;

    background: rgba(0,0,0,.975);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: none;
    margin: 0;
    width: 100%;
    height: 100dvh;

    transition: opacity .3s ease, visibility .3s ease;
  }

  .globalNav.is-open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .globalNav a{
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
padding: 4px 0;
    opacity: 1;
  }

  .globalNav a::after{
    display: none;
  }

  .nav__en{
 font-size: 1.28rem;
  letter-spacing: .14em;
    line-height: 1.2;
  }

  .nav__ja{
  margin-top: 2px;
  font-size: .66rem;
    line-height: 1.2;
  }

.menu-ticket{
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;
 max-width: 80%;
  min-width: 180px;
  height: 44px;
  padding: 0 26px;
 font-size:1.2rem;
  border: 1px solid rgba(214,177,90,.62);
  background: rgba(7,18,10,.58);
  backdrop-filter: blur(4px);

  color: #e0c57b;

  font-family: "EB Garamond", serif;
letter-spacing: .22em;

  transition:
    background .22s ease,
    border-color .22s ease,
    color .22s ease,
    transform .22s ease;
	
	
	
	
}

.menu-ticket::after{
  content:"";
  position:absolute;
  left:10px;
  right:10px;
  bottom:6px;
  height:1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(214,177,90,.9),
      transparent
    );

  opacity:.7;
}

.menu-ticket:hover{
  background: rgba(214,177,90,.14);
  border-color: rgba(214,177,90,.9);
  color: #f3efe6;
  transform: translateY(-1px);
}

  .burger{
    position: fixed;
    right: 18px;
    top: 30px;
    z-index: 10001;
  }

  .navClose{
    display: none !important;
  }
    
    .siteFooter__logo{
  margin: 30px auto;max-width: 200px;
}
    
  }/**/

button{
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}