@charset "utf-8";

/* =========================================================
   AGATHA TOP CSS
   TOP page hero / city cards / NEWS / partner
   ========================================================= */

/* ---------------------------------------------------------
   01. Hero / KV
--------------------------------------------------------- */
.topHero{z-index: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  animation: heroIn 1.6s ease forwards;
}

.topHero::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../img/KVbg.jpg") no-repeat center top;
  background-size: cover;
}

.topHero img{
  margin: -62px auto 0;
  position: relative;
  z-index: 1;
  width: min(100%, 1050px);
  height: auto;
}

.topHero__shade{
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(29,64,31,0) 75%,
    rgba(29,64,31,.75) 85%,
    #050505 100%
  );
}

.topHero__overlay{
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.topHero__catch{color: var(--accent);
  margin: 0 0 10px;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.9;
  
}
.topHero__cast{font-weight: 600;
  margin: 0 0 30px;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  letter-spacing: -0.02em;
  line-height: 1.6;
  color: rgba(255,255,255,.92);
}
/* Hero schedule/city cards */
.topHero__nav{
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  opacity: 0;
  transform: translateY(16px);
  animation: navIn .9s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: .7s;
}

.topHero__nav a{
  min-height: 150px;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(12,40,22,.55) 0%,
    rgba(4,18,10,.82) 100%
  );
  border: 1px solid rgba(214,177,90,.25);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    transform .22s ease,
    border-color .22s ease,
    background .22s ease,
    box-shadow .22s ease; 
}

.topHero__nav a:hover{
  transform: translateY(-4px);
  background: linear-gradient(
    180deg,
    rgba(16,48,27,.72) 0%,
    rgba(6,24,13,.86) 100%
  );
  border-color: rgba(214,177,90,.55);
  box-shadow: 0 14px 34px rgba(0,0,0,.30);
}

.topHero__navEn{
  display: block;
  font-family: "EB Garamond", serif;
  font-size: clamp(1.08rem, 1.65vw, 1.42rem);
  letter-spacing: .16em;
  line-height: 1.2;
}

.topHero__navLine{
  display: block;
  width: 42px;
  height: 1px;
  margin: 10px auto 9px;
  background: linear-gradient(
    90deg,
    rgba(214,177,90,0),
    rgba(214,177,90,.85),
    rgba(214,177,90,0)
  );
}

.topHero__navJa{
  display: block;
  font-size: .82rem;
  letter-spacing: .14em;
  color: rgba(255,255,255,.88);
  line-height: 1.5;
}

.topHero__navSub{
  display: block;
  margin-top: 7px;
  font-size: .75rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,.48);
  line-height: 1.6;
}

.topHero__nav a:hover .topHero__navJa{
  color: rgba(255,255,255,.98);
}

.topHero__nav a:hover .topHero__navSub{
  color: rgba(214,177,90,.82);
}


.topTicketBtn,
.topSubBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  height: 48px;
  padding: 0 28px;
  transition: transform .22s ease, filter .22s ease, background .22s ease;
}

.topTicketBtn{
  border: 1px solid rgba(214,177,90,.85);
  background: linear-gradient(80deg, #f6edcf 0%, #d8c07a 100%);
  color: #2a2418;
  font-family: "EB Garamond", serif;
  font-size: 1.15rem;
  letter-spacing: .18em;
}

.topSubBtn{
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  color: #fff;
  font-family: "EB Garamond", serif;
  font-size: 1rem;
  letter-spacing: .18em;
}

.topTicketBtn:hover,
.topSubBtn:hover{
  transform: translateY(-2px);
  filter: brightness(1.04);
}

@keyframes heroIn{
  from{ opacity: 0; }
  to{ opacity: 1; }
}

@keyframes navIn{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------------------------------------------------------
   02. TOP Info Area / NEWS / Partner
--------------------------------------------------------- */
/* ---------------------------------------------------------
   05. TOP Info Area
--------------------------------------------------------- */
.topInfoArea{
  position: relative;
  z-index: 2;
  margin-top: -80px;
  background:
    radial-gradient(circle at 50% 0%, rgba(214,177,90,.09), transparent 34%),
    linear-gradient(to bottom, rgba(0,22,9,0) 0%, #031108 90px, #050505 100%);
}

/* Announcement banners */
.topBanners{
  padding: 56px 20px 36px;
}

.topBanners__inner{
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.topBanner{
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 110px;
  padding: 24px;
  border: 1px solid rgba(214,177,90,.28);
  background: linear-gradient(135deg, rgba(214,177,90,.13), rgba(255,255,255,.035));
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.topBanner:hover{
  transform: translateY(-3px);
  border-color: rgba(214,177,90,.6);
  background: linear-gradient(135deg, rgba(214,177,90,.2), rgba(255,255,255,.06));
}

.topBanner__label{
  font-family: "EB Garamond", serif;
  font-size: 1.5rem;
  letter-spacing: .16em;
  color: var(--accent);
}

.topBanner__text{
  margin-top: 10px;
  font-size: .9rem;
  letter-spacing: .08em;
  color: rgba(243,239,230,.82);
}

/* ---------------------------------------------------------
   06. NEWS Feed
--------------------------------------------------------- */
.topNews{
  padding: 140px 20px 120px;
}

.topNews__inner{
  width: min(820px, 100%);
  margin: 0 auto;
}

.topSectionTitle{
  position: relative;
  margin: 0 0 48px;
  font-family: "EB Garamond", serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: .22em;
  color: var(--accent);
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.topSectionTitle::before,
.topSectionTitle::after{
  content: "";
  width: clamp(40px, 8vw, 100px);
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(214,177,90,.55)
  );
}

.topSectionTitle::after{
  transform: scaleX(-1);
}

.topNewsList{
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(214,177,90,.18);
}

.topNewsItem{
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(214,177,90,.14);
  font-size: 1.1rem;
}

.topNewsItem time{
  font-family: "EB Garamond", serif;
  font-size: .92rem;
  letter-spacing: .13em;
  color: rgba(214,177,90,.9);
}

.topNewsItem a{
  color: rgba(243,239,230,.9);
  font-size: .95rem;
  letter-spacing: .06em;
}

.topNewsMore{
  margin: 36px 0 0;
  text-align: center;
}

.topNewsMore a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 42px;
  padding: 0 24px;
  border: 1px solid rgba(214,177,90,.45);
  background: rgba(214,177,90,.06);
  color: rgba(243,239,230,.92);
  font-family: "EB Garamond", serif;
  font-size: .82rem;
  letter-spacing: .22em;
}

.topNewsMore a:hover{
  background: rgba(214,177,90,.14);
}

/* ---------------------------------------------------------
   07. Sponsor Area
--------------------------------------------------------- */
.topSponsors{
 padding: 80px 0 120px;
  background: linear-gradient(to bottom, #050505, #020202);
  border-top: 1px solid rgba(214,177,90,.14);
}


.topSectionTitle--small{
  margin-bottom: 28px;
  font-size: .86rem;
  letter-spacing: .26em;
  color: rgba(214,177,90,.85);
}

.topSponsorGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 860px;
  margin: 0 auto;
}
.topSponsorBanner{
  display:flex;
  align-items:center;
  justify-content:center;

background:#f3f1eb;

  padding:8px 0;

  transition:
    border-color .3s ease,
    opacity .3s ease,
    transform .3s ease;
}

.topSponsorBanner img{
  max-width:280px;
  height:80px;
  object-fit:contain;

  transition:
    opacity .3s ease,
    transform .3s ease;
}

.topSponsorBanner:hover{background:#fff;
  transform: translateY(-1px);
}

.topSponsorBanner:hover img{
  opacity:.88;
}

.topSponsorBanner--comingsoon{
  cursor: default;
}

/* ---------------------------------------------------------
   03. PC Layout
--------------------------------------------------------- */
/* ---------------------------------------------------------
   09. PC Layout
--------------------------------------------------------- */
@media (min-width: 993px){
  .topHero{
    min-height: calc(100svh + var(--header-h));
    padding-top: var(--header-h);
    align-items: flex-start;
  }

  .topHero__overlay{
    padding: calc(var(--header-h) + 40px) 24px 100px;
    transform: translateY(-40px);
  }
}

/* ---------------------------------------------------------
   04. Tablet / SP Layout
--------------------------------------------------------- */
@media (max-width: 992px){
  .topHero{
    padding-top: calc(var(--header-h) + 8px);
  }

  .topHero::before{
    top: var(--header-h);
    height: calc(100% - var(--header-h));
  }

  .topHero__shade{
    top: var(--header-h);
    height: calc(100% - var(--header-h));
    background:
      linear-gradient(
        to bottom,
        rgba(0,0,0,0) 62%,
        rgba(2,32,13,.72) 84%,
        #06220e 100%
      );
  }

  .topHero__catch{
    margin: 0 0 24px;
    font-size: .95rem;
    letter-spacing: .12em;
    line-height: 1.9;
  }

  .topHero__nav{
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ←2列 */
    gap: 10px;

    width: 92%;
    margin-top: 16px;

    opacity: 1;
    transform: none;
    animation: none;
  }
	
  .topHero__nav a{
    height: 80px;
  }

  .topHero__navEn{
    font-size: .9rem;
    letter-spacing: .12em;
  }

  .topHero__navJa{
    font-size: .68rem;
    letter-spacing: .1em;
  }

  .topHero__navSub{
    font-size: .8rem;
    margin-top: 4px;
  }

  .topHero__navLine{
    margin: 6px auto;
    width: 28px;
  }
	
	
	

.topHero__actions{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;

  margin-top: 40px;

  opacity: 0;
  transform: translateY(30px);
  animation: navIn .9s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: .85s;padding-block: 40px;
}

  .topTicketBtn,
  .topSubBtn{
    width: 100%;
   max-width: 80%;
  }

	



	
  .topHero img{  margin: -30px auto 0;
    max-width: 100%;
    min-height: auto;
  }

  .topInfoArea{
    margin-top: 0;
    background:
      linear-gradient(
        to bottom,
        #06220e 0%,
        #031108 120px,
        #050505 100%
      );
  }

  .topBanners{
    padding: 42px 16px 28px;
  }

  .topBanners__inner,
  .topSponsorGrid{gap: 18px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .topBanners__inner img,
  .topSponsorGrid img{
      width: 82%;
  }
  .topBanner{
    min-height: 40px;
    padding: 0px;
  }

  .topNews{
    padding: 56px 16px 64px;
  }

  .topSectionTitle{
    margin: 0 0 40px;font-size: 2rem;
  }
    
    .topSectionTitle--small{
  margin-bottom: 28px;
  font-size: .86rem;
  letter-spacing: .26em;
  color: rgba(214,177,90,.85);
}
    

  .topNewsItem{
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }

  .topSponsors{
    padding: 34px 16px 52px;
  }
}

@media (max-width: 768px){

  .topHero{
    margin-top:22px;
  }
	
  .topInfoArea{
    padding-top: 36px;
  }	
	
  .topSectionTitle::before,
  .topSectionTitle::after{
    width: 64px;
  }

  .topSectionTitle::before{
    right: calc(50% + 115px);
  }

  .topSectionTitle::after{
    left: calc(50% + 115px);
  }
    
    

    
}



@media (max-width: 480px){

  .topHero{
    display: flex;
    flex-direction: column;
    min-height: auto;
    overflow: visible;
  }

  .topHero__overlay{
    position: relative;
    inset: auto;
    transform: none;
    padding: 18px 14px 28px;
    background: linear-gradient(
      to bottom,
      #06220e 0%,
      #031108 100%
    );
  }


  .topHero__nav{
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 0;
  }

  .topHero__actions{
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    display: flex !important;
    opacity: 1;
    animation: none;
    width: 100%;
    margin-top: 14px;
    justify-content: center;
  }

  .topTicketBtn{
    width: 80%;
    min-width: 0;
    max-width: 260px;
    height: 44px;
  }
}
/* =========================================================
   NEWS class fix
   HTML uses .news-list / .news-item / .news-date / .news-title
   ========================================================= */
.topNews .topics-box{
  width: 100%;
}

.topNews .news-list{
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(214,177,90,.18);
}

.topNews .news-item{
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 26px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid rgba(214,177,90,.14);
}

.topNews .news-date{
  font-family: "EB Garamond", serif;
  font-size: .92rem;
  letter-spacing: .13em;
  color: rgba(214,177,90,.9);
  white-space: nowrap;
}

.topNews .news-title{
  color: rgba(243,239,230,.9);
  font-size: .95rem;
  letter-spacing: .06em;
  line-height: 1.8;
  transition: color .22s ease, opacity .22s ease;
}

.topNews .news-title:hover{
  color: rgba(214,177,90,.92);
}

.topNews .latest_more{
  margin: 36px 0 0;
  text-align: center;
}

.topNews .link-quiet{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 190px;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid rgba(214,177,90,.45);
  background: rgba(214,177,90,.06);
  color: rgba(243,239,230,.92);
  font-family: "EB Garamond", serif;
  font-size: .82rem;
  letter-spacing: .22em;
  transition: background .22s ease, border-color .22s ease, transform .22s ease;
}

.topNews .link-quiet:hover{
  background: rgba(214,177,90,.14);
  border-color: rgba(214,177,90,.68);
  transform: translateY(-2px);
}

.topNews .link-quiet__mark{
  position: relative;
  width: 30px;
  height: 1px;
  background: rgba(214,177,90,.78);
}

.topNews .link-quiet__mark::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(214,177,90,.78);
  border-right: 1px solid rgba(214,177,90,.78);
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 992px){
  .topNews .news-item{
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }

  .topNews .news-date{
    font-size: .86rem;
  }

  .topNews .news-title{
    font-size: .92rem;
    line-height: 1.7;
  }
}


/* =========================================================
   AGATHA MOVIE SECTION
   ========================================================= */

.agathaMovie{
  position: relative;
  padding: 80px 20px 40px;
  z-index: 2;
}

.agathaMovieInner{
  width: min(1100px, 100%);
  margin: 0 auto;
}


  .topHero__catch{text-align: center;
    margin: 0 auto 14px;
    font-size: 1.6rem;
    line-height: 1.7;
  }


/* 16:9 frame */
.movieFrame{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;

  overflow: hidden;

  border: 1px solid rgba(214,177,90,.24);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.03),
      rgba(255,255,255,.01)
    );

  box-shadow:
    0 24px 70px rgba(0,0,0,.42),
    inset 0 0 0 1px rgba(255,255,255,.03);
}

/* subtle gold line */
.movieFrame::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(214,177,90,.22),
      transparent
    );

  opacity: .45;
}

/* iframe */
.movieFrame iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------------------------------------------------------
   Tablet
--------------------------------------------------------- */
@media (max-width: 992px){

  .agathaMovie{
    padding: 56px 16px 24px;
  }

  .movieFrame{
    border-width: 1px;
    box-shadow:
      0 16px 40px rgba(0,0,0,.38),
      inset 0 0 0 1px rgba(255,255,255,.02);
  }
}

/* ---------------------------------------------------------
   SP
--------------------------------------------------------- */
@media (max-width: 480px){

  .agathaMovie{
    padding: 40px 0 10px;
  }

  .agathaMovieInner{
    width: 90%;
  }

  .movieFrame{
    border-left: 0;
    border-right: 0;
  }
}