/* ===== Minimal reset (low side effects) ===== */
html{
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

*,
*::before,
*::after{
  box-sizing: inherit;
}

img,
picture,
video,
canvas,
svg{
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea{
  font: inherit;
  color: inherit;
}

body{
  margin: 0;
  font-family: "Inter", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  color: #111;
  background:
  repeating-linear-gradient(
  90deg,
  rgba(255,230,0,0.06) 0 3px,
  transparent 3px 80px
  ),
  repeating-linear-gradient(
  90deg,
  rgba(0,255,0,0.06) 0 3px,
  transparent 3px 140px
  ),
  repeating-linear-gradient(
  90deg,
  rgba(255,120,0,0.06) 0 3px,
  transparent 3px 200px
  ),
  #fff;
}

html{
  scroll-behavior: smooth;
}

.pc-none {
  display: none;;
}

.center {
  text-align: center;
}

h2{
  font-family: "Inter", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

body.is-drawer-open{
  overflow: hidden;
}
body.has-desktop-fixed-nav{
  --desktop-nav-height: 52px;
}

/* ===== Desktop fixed header ===== */
.site-header{
  display: none;
}
.site-header__inner{
  width: 100%;
  margin: 0;
  box-shadow: none;
  box-sizing: border-box;
  transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .35s ease;
}
.site-header__brand{
  text-align: center;
  font-weight: 900;
  letter-spacing: .06em;
  color: #ef7f15;
  font-size: clamp(24px, 3.2vw, 56px);
  line-height: 1.1;
  padding: 10px 10px 0;
}
.site-header__brand img {
  max-width: 1200px;
}
.site-header__menu{
  list-style: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: center;
  min-height: 52px;
  gap: 2px;
}
.site-header__menu a{
  display: block;
  text-align: center;
  text-decoration: none;
  color: #111;
  font-weight: 900;
  letter-spacing: .02em;
  font-size: clamp(12px, 1.15vw, 20px);
  line-height: 1.1;
  padding: 8px 4px;
  white-space: nowrap;
}
.site-header__menu a:hover,
.site-header__menu a:focus-visible{
  color: #ef7f15;
  outline: none;
}

.site-header__inner.is-fixed{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1301;
  box-sizing: border-box;
  background: #fff;
}
body.has-desktop-fixed-nav .site-header{
  padding-bottom: 0;
}

/* ===== Drawer menu ===== */
.drawer-toggle,
.drawer-backdrop,
.site-drawer{
  display: none;
}

.drawer-toggle{
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 1200;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 14px;
  background: rgba(15, 15, 18, .72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  place-content: center;
  gap: 6px;
  padding: 0;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .2s ease;
}
.drawer-toggle:hover{
  background: #e8e51e;
  border-color: rgba(255,255,255,.4);
}
.drawer-toggle:active{
  transform: scale(.97);
}
.drawer-toggle__bar{
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform .28s ease, opacity .2s ease, width .28s ease;
  transform-origin: center;
}
body.is-drawer-open .drawer-toggle__bar:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}
body.is-drawer-open .drawer-toggle__bar:nth-child(2){
  opacity: 0;
  transform: scaleX(.2);
}
body.is-drawer-open .drawer-toggle__bar:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}

.drawer-backdrop{
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(8, 8, 12, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.drawer-backdrop.is-open{
  opacity: 1;
  pointer-events: auto;
}

.site-drawer{
  position: fixed;
  top: 0;
  right: 0;
  width: min(88vw, 360px);
  height: 100dvh;
  z-index: 1150;
  background: rgba(17, 17, 22, .95);
  color: #fff;
  box-shadow: -20px 0 50px rgba(0,0,0,.28);
  transform: translateX(104%);
  transition: transform .32s cubic-bezier(.22, 1, .36, 1);
  padding: 80px 18px 22px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}
.site-drawer.is-open{
  transform: translateX(0);
}
.site-drawer__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.site-drawer__list a{
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .08em;
  font-size: clamp(14px, 1.5vw, 17px);
  padding: 12px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.02);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.site-drawer__list a:hover,
.site-drawer__list a:focus-visible{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
  transform: translateX(-2px);
  outline: none;
}

@media (max-width: 700px){
  .drawer-toggle{
    top: 10px;
    right: 10px;
    width: 60px;
    height: 40px;
    border-radius: 20px;
  }
  .site-drawer{
    width: 68vw;
    padding-top: max(72px, env(safe-area-inset-top));
  }
  .site-drawer__list a{
    font-size: 14px;
    padding: 12px 10px;
  }
}

@media (max-width: 900px){

  .drawer-toggle{
    display: grid;
    top: 0;
    right: 0;
    width: 60px;
    height: 55px;
    border: 0;
    border-radius: 0 0 0 22px;
    background: #fff000;
    box-shadow: none;
    z-index: 1250;
    gap: 5px;
  }
  .drawer-toggle__bar{
    background: #fff;
    width: 33px;
    height: 4px;
    border-radius: 999px;
  }
  .drawer-toggle__bar:nth-child(2){
    width: 33px;
    justify-self: center;
  }
  body.is-drawer-open .drawer-toggle{
    background: #fff000;
  }
  body.is-drawer-open .drawer-toggle__bar:nth-child(1),
  body.is-drawer-open .drawer-toggle__bar:nth-child(2),
  body.is-drawer-open .drawer-toggle__bar:nth-child(3){
    transform: none;
    opacity: 1;
  }
  .drawer-backdrop{
    display: block;
    background: rgba(0,0,0,.32);
  }
  .site-drawer{
    display: block;
  }
  .site-header{
    display: none !important;
  }
  .site-drawer{
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100vw;
    height: 100dvh;
    transform: translateX(100%);
    padding:
    max(90px, calc(env(safe-area-inset-top) + 72px))
    max(18px, env(safe-area-inset-right))
    max(22px, env(safe-area-inset-bottom))
    max(18px, env(safe-area-inset-left));
    border: 10px solid #fff000;
    box-sizing: border-box;
    box-shadow: none;
    background: rgba(0,0,0,.70);
    color: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-drawer::before{
    content: none;
  }
  .site-drawer__nav{
    min-height: calc(100dvh - 130px);
    display: grid;
    align-content: start;
  }
  .site-drawer__heading{
    margin: 0 0 14px;
    color: #fff000;
    font-size: clamp(12px, 3.2vw, 15px);
    font-weight: 800;
    letter-spacing: .22em;
    line-height: 1;
  }
  .site-drawer__list{
    gap: 6px;
  }
  .site-drawer__list li{
    position: relative;
  }
  .site-drawer__list a{
    min-height: 34px;
    display: block;
    font-size: clamp(34px, 4.5vw, 30px);
    line-height: 1.3;
    padding: 4px;
    border-radius: 0;
    color: #fff;
    font-weight: 700;
    letter-spacing: .06em;
    border: 0;
    background: transparent;
    box-shadow: none;
    transition: color .35s ease, opacity .35s ease, text-shadow .35s ease;
  }

  .site-drawer__list a:hover,
  .site-drawer__list a:focus-visible{
    background: transparent;
    color: #e8e51e;
    transform: none;
    opacity: 1;
    text-shadow: 0 0 12px rgba(255, 240, 0, .55);
    text-decoration: underline;
    text-underline-offset: .2em;
  }
  .site-drawer__list a:hover::after,
  .site-drawer__list a:focus-visible::after{
    opacity: 0;
    transform: none;
  }
}


@media (min-width: 901px){
  html{
    scroll-padding-top: 64px;
  }
  .site-header{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1300;
    padding: 0;
    pointer-events: none;
  }
  .site-header__inner{
    display: grid;
    grid-template-columns: minmax(360px, 27.5vw) 1fr;
    align-items: stretch;
    width: 100%;
    background: #fff;
    opacity: 0;
    transform: translateY(-102%);
  }
  .site-header__brand{
    margin: 0;
    padding: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
  }
  .site-header__brand img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    max-width: none;
  }
  .site-header__nav{
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    border: 0;
  }
  .site-header__menu{
    grid-template-columns: repeat(8, auto);
    justify-content: space-around;
    align-content: center;
    width: 100%;
    min-height: 100%;
    gap: clamp(10px, 1.8vw, 24px);
    padding: 8px clamp(16px, 2vw, 28px);
    box-sizing: border-box;
  }
  .site-header__menu a{
    color: #000;
    font-size: clamp(12px, 2vw, 18px);
    padding: 4px 0;
    white-space: nowrap;
    font-weight: 800;
    letter-spacing: .03em;
  }
  .site-header__menu a:hover,
  .site-header__menu a:focus-visible{
    color: #fff000;
    opacity: .82;
  }
  .site-header__inner.is-fixed{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    border-bottom: 1px solid rgba(0, 0, 0, .45);
  }
  .drawer-toggle,
  .drawer-backdrop,
  .site-drawer{
    display: none !important;
  }
  main{
    padding-top: 0;
  }
}

@media (max-width: 900px){
  body.has-desktop-fixed-nav .site-header{
    padding-bottom: 0;
  }
  .site-header__inner.is-fixed{
    position: relative;
    inset: auto;
    z-index: auto;
  }
}

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior: auto;
  }
  .drawer-toggle,
  .drawer-toggle__bar,
  .drawer-backdrop,
  .site-drawer,
  .site-drawer__list a,
  .site-header__inner{
    transition: none !important;
  }
}

/* top main */
.marquee-wrap {
  --bg: #000;
  --fg: #ffffff;
  --gap: 18px;
  --padY: 14px;

  position: relative;
  background: var(--bg);
  color: var(--fg);
  overflow: hidden;
  height: 100vh;
}

/* top overlay base */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.top-title-overlay{
  position: absolute;
  left: 50%;
  top: 75%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: min(90vw, 1180px);
  pointer-events: none;
  animation: topTitleBlink 8.5s linear infinite;
}
.top-title-overlay picture,
.top-title-overlay img{
  display: block;
  width: 100%;
  height: auto;
}
.top-title-overlay img{
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.35));
  user-select: none;
  -webkit-user-drag: none;
}

@keyframes topTitleBlink{
  /* 初回表示直後にチカチカ */
  0% { opacity: 0; }
  2% { opacity: 1; }
  4% { opacity: .15; }
  6% { opacity: 1; }
  8% { opacity: .35; }
  10% { opacity: 1; }
  12% { opacity: .08; }
  14% { opacity: 1; }
  16% { opacity: .7; }
  18% { opacity: 1; }

  /* 通常表示 */
  19%, 74% { opacity: 1; }

  /* 周期的な再点滅 */
  76% { opacity: .4; }
  78% { opacity: 1; }
  80% { opacity: .18; }
  82% { opacity: 1; }
  84% { opacity: .55; }
  86% { opacity: 1; }

  /* 終盤の軽い揺らぎ */
  92% { opacity: .85; }
  94% { opacity: 1; }
  96% { opacity: .75; }
  100% { opacity: 1; }
}

@media (max-width: 900px){
  .top-title-overlay{
    top: 66%;
    width: min(92vw, 560px);
  }
}

/* ====== IMAGE: fade slider background ====== */
.marquee--images {
  position: absolute;
  inset: 0;
  z-index: 0;

  /* 画像側は端フェード不要 */
  -webkit-mask-image: none;
  mask-image: none;
  padding: 0;
}

.fade-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.fade-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1200ms ease;
  will-change: opacity;
}

.fade-slide.is-active {
  opacity: 1;
}

.fade-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.fade-slide__bg {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.12);
  filter: blur(18px) brightness(.68) saturate(.95);
}
.fade-slide__main {
  object-fit: contain;
  object-position: center center;
  z-index: 1;
}
@media (max-width: 900px){
  #fadeSlider .fade-slide__main{
    object-fit: cover;
    object-position: center center;
  }
}

/* 写真の上に軽い暗幕（文字が読みやすくなる）任意 */
.fade-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
  to bottom,
  rgba(0,0,0,0.25) 0%,
  rgba(0,0,0,0.35) 50%,
  rgba(0,0,0,0.25) 100%
  );
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-slide { transition: none; }
  .top-title-overlay{ animation: none; }
}

/* ===== Share / Official / Footer ===== */
.area-share{
  background: #00ff00;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.08);
}
.area-share > .inner{
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 118px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 70px);
  box-sizing: border-box;
}
.area-share__title h2{
  margin: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: .04em;
  font-size: clamp(28px, 3vw, 50px);
  line-height: 1;
}
.area-share__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 26px);
}
.area-share__list a{
  width: clamp(44px, 4.2vw, 74px);
  height: clamp(44px, 4.2vw, 74px);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.area-share__list a:hover,
.area-share__list a:focus-visible{
  transform: translateY(-2px);
  opacity: .92;
  outline: none;
}
.area-share__list img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sns{
  border-bottom: 1px solid #1a1a1a;
}
.sns > .inner{
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(30px, 4vw, 60px) clamp(16px, 2.4vw, 34px) clamp(44px, 5vw, 78px);
  box-sizing: border-box;
}
.sns h2{
  margin: 0 0 clamp(24px, 3vw, 40px);
  font-size: clamp(34px, 3vw, 78px);
  line-height: .95;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #000;
}
.sns__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 22px;
}
.sns__list li{
  min-width: 0;
}
.sns__list a{
  min-height: 76px;
  width: 100%;
  box-sizing: border-box;
  border: 2px solid rgba(0,0,0,.6);
  border-radius: 999px;
  background: #fff;
  color: #3d3d3d;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
  padding: 14px 20px;
  font-weight: 700;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.15;
  text-align: center;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.sns__list a:hover,
.sns__list a:focus-visible{
  background: rgba(255,255,255,.55);
  border-color: rgba(0,0,0,.9);
  transform: translateY(-1px);
  outline: none;
}

.sns__list a i {
  font-size: 30px;
}
.sns__list a img{
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
  opacity: .85;
}
.sns__list a img.large{
  width: 26px;
  height: 26px;
}

.footer{
  background: #fff;
}
.footer > .inner{
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 14px 16px 16px;
  box-sizing: border-box;
}
.footer__copyright{
  text-align: center;
  margin: 0;
  color: #474747;
  font-size: clamp(12px, 1vw, 19px);
  font-weight:  normal;
  line-height: 1.35;
}

@media (max-width: 980px){
  .sns__list{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .sns__list a{
    min-height: 64px;
    font-size: 16px;
    padding: 12px 14px;
  }
  .sns__list a i {
    font-size: 24px;
  }
}

@media (max-width: 640px){
  .area-share > .inner{
    min-height: auto;
    padding: 18px 14px;
    flex-direction: column;
    gap: 14px;
  }
  .area-share__title h2{
    font-size: 28px;
  }
  .area-share__list a{
    width: 44px;
    height: 44px;
  }
  .sns > .inner{
    padding: 22px 14px 28px;
  }
  .sns h2{
    margin-bottom: 18px;
    font-size: clamp(28px, 10vw, 24px);
    text-align: center;
  }
  .sns__list{
    grid-template-columns: 1fr;
  }
  .sns__list a{
    min-height: 58px;
    justify-content: space-between;
    text-align: left;
    padding: 12px 16px;
    font-size: 15px;
  }
  .footer > .inner{
    padding: 12px 14px 14px;
  }
  .footer__copyright{
    font-size: 12px;
  }
}


/* Lightweight local scroll animation (AOS-like) */
[data-aos]{
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition-property: opacity, transform;
  transition-duration: var(--aos-duration, 800ms);
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
[data-aos="fade-in"]{
  opacity: 0;
}
[data-aos="fade-up"]{
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}
[data-aos="fade-down"]{
  opacity: 0;
  transform: translate3d(0, -28px, 0);
}
[data-aos="fade-left"]{
  opacity: 0;
  transform: translate3d(28px, 0, 0);
}
[data-aos="fade-right"]{
  opacity: 0;
  transform: translate3d(-28px, 0, 0);
}
[data-aos].is-inview{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce){
  [data-aos]{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== RELEASE ===== */
#release{
  --release-line: #d7d7d7;
  --release-card: #f4f4f4;
  --release-text: #222;
  --release-muted: #666;
  padding: clamp(18px, 2.4vw, 28px);

}

.release-head{
  margin-bottom: 18px;
}
.release-head h2{
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: .08em;
  font-weight: 900;
  padding: 30px;
}
.release-sub{
  margin-top: 6px;
  color: var(--release-muted);
  font-size: 14px;
  font-weight: 600;
}

.release-grid{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.release-card{
  display: grid;
  gap: 20px;
  align-content: start;
}

.release-card__head{
  text-align: center;
}
.release-card__head h3{
  margin: 0;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 600;
  line-height: 120%;
}
.release-card__head h3 span {
  font-size: 16px;
}
.release-card__head p{
  margin: 6px 0 0;
  font-size: 12px;
  color: #333;
  font-weight: 700;
}

.release__cover{
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}
.release__cover img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.release__cover[data-aos="reveal-scale"]{
  opacity: 1; /* local [data-aos] default fade is overridden for image-only reveal */
  transform: none;
}
.release__cover[data-aos="reveal-scale"] img{
  transform: scale(1.16);
  transform-origin: center center;
  clip-path: inset(0 0 100% 0);
  opacity: .01;
  transition:
  transform var(--aos-duration, 1000ms) cubic-bezier(.22, 1, .36, 1),
  clip-path var(--aos-duration, 1000ms) cubic-bezier(.22, 1, .36, 1),
  opacity calc(var(--aos-duration, 1000ms) * .55) ease;
  will-change: transform, clip-path, opacity;
}
.release__cover[data-aos="reveal-scale"].is-inview img{
  transform: scale(1);
  clip-path: inset(0 0 0 0);
  opacity: 1;
}
.release__cover::after{
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 28%;
  background: linear-gradient(to top, rgba(0,0,0,.24), rgba(0,0,0,0));
  pointer-events: none;
}
.release-reserve-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  box-sizing: border-box;
  border: 2px solid rgba(0,0,0,.6);
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(16px, 1.35vw, 22px);
  letter-spacing: .06em;
  line-height: 1;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.release-reserve-btn:hover,
.release-reserve-btn:focus-visible{
  background: rgba(255,255,255,.92);
  border-color: rgba(0,0,0,.85);
  transform: translateY(-1px);
  outline: none;
  background: #f2f2f2;
}

.release-specs{
  margin: 0;
  display: grid;
  gap: 8px;
}
.release-specs > div{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
}
.release-specs dt{
  margin: 0;
  padding: 4px 10px;
  border: 1px solid #777;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
  color: #333;
}
.release-specs dd{
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
  color: var(--release-text);
}

.release-features{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.release-features li{
  position: relative;
  padding-left: 16px;
  color: #333;
  font-size: 13px;
  line-height: 1.45;
}
.release-features li::before{
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: #111;
}

.release-card p {
  color: #555;
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}
b {
  font-size: 15px;
  line-height: 180%;
}
@media (max-width: 1200px){
  #release{
    background: var(--release-bg);
  }
  .release-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px){
  .release-grid{
    grid-template-columns: 1fr;
  }
  .release-card__head {
    height: auto;
  }
  .release-card__head h3 {
    line-height: 150%;
  }
  .release-card p {
    line-height: 150%;
  }
  .release-specs dd {
    font-size: 13px;
  }
  .release-reserve-btn{
    min-height: 50px;
    font-size: 18px;
  }
  .release-card {
    margin-bottom: 10px;
    padding-bottom: 30px;
    border-bottom: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
  }
  .release-card:last-child {
    border-bottom:none;
  }
}
@media (prefers-reduced-motion: reduce){
  .release__cover[data-aos="reveal-scale"] img{
    transform: none !important;
    clip-path: inset(0 0 0 0) !important;
    opacity: 1 !important;
    transition: none !important;
  }
}

/* ===== SPECIAL ===== */
.special{
  padding: 30px 0;
}

.special-head{
  text-align: center;
  margin-bottom: clamp(18px, 2.8vw, 28px);
}

.special-head h2{
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: .08em;
  font-weight: 800;
  padding: 30px;
}

.special-grid{
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 24px);
}

.special-card{
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 16px;
  padding: clamp(16px, 2.2vw, 28px);
  box-shadow: 0 8px 22px rgba(0,0,0,.05);
}

.special-card h3{
  margin: 0 0 12px;
  color: #333;
  font-size: clamp(22px, 1.2vw, 24px)
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: .02em;
}

.highlight-o {
  background: linear-gradient(transparent 50%, #ff8300 0%);
}

.highlight-g {
  background: linear-gradient(transparent 50%, #00ff00 0%);
}

.special-card p{
  margin: 0 0 14px;
  color: #333;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.9;
}

small {
  margin: 0 0 14px;
  color: #666;
  font-size: 12px;
  line-height: 1.9;
}

.special-list{
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.special-list li{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.5;
}

.special-list span{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  border: 1px solid #232323;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
}

.special-note{
  margin: 0;
  color: #666;
  font-size: 12px;
  line-height: 1.75;
}

.special-meta{
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.special-meta > div{
  border-top: 1px solid #e4e4e4;
  padding-top: 10px;
}

.special-meta > div:first-child{
  border-top: 0;
  padding-top: 0;
}

.special-meta dt{
  margin: 3px 0 10px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  border-radius: 999px;
  background: #555;
  letter-spacing: .03em;
  padding: 6px 25px;
  display: inline-block;
}

.special-meta dd{
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #222;
}

@media (max-width: 900px){
  .special-grid{
    grid-template-columns: 1fr;
    width: inherit;
    padding: 0 20px;
  }

  .special-list li{
    grid-template-columns: 92px 1fr;
    gap: 10px;
    padding: 0px 0px 5px;
    border: none;
  }

  .special-head h2 {
    padding: 0 0 20px;
  }
  .special-card h3 {
    text-align: center;
    font-size: 17px;
  }
  .special-meta dd {
    font-size: 14px;
    color: #333;
  }

}

/* ===== Live Info ===== */
.live-info{
  --card: #ffffff;
  --border: #e6ece8;
  --text: #1f2d27;
  --muted: #6b7f73;
  --accent: #184437;
  --radius: 16px;

  background: var(--bg);
  border-radius: 18px;
  padding: clamp(16px, 2.4vw, 26px);
}

.live-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.live-head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: .08em;
  font-weight: 800;
  text-align: center;
  display: block;
  margin: auto;
  line-height: 300%;
  padding: 50px 0;
}

.live-head h2 img {
  width: 600px;
}

.live-link{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(0,0,0,.68);
  background: transparent;
  color: #111;
  font-weight: 500;
  font-size: clamp(18px, 2.0vw, 24px);
  text-decoration: none;
  line-height: 1.1;
  transition: opacity .2s ease;
}
.live-link__label{
  min-width: 0;
}
.live-link__arrow{
  display: inline-block;
  font-size: clamp(24px, 1.6vw, 32px);
  line-height: 1;
  font-weight: 300;
  transform: translateX(0);
  transition: transform .28s cubic-bezier(.22,1,.36,1);
}
.live-link:hover,
.live-link:focus-visible{
  opacity: .88;
  outline: none;
}
.live-link:hover .live-link__arrow,
.live-link:focus-visible .live-link__arrow{
  transform: translateX(10px);
}

@media (max-width: 760px){
  .live-link{
    margin-top: 14px;
    padding: 12px 2px 20px 0;
    font-size: 20px;
    border-bottom-width: 1px;
  }
  .live-link__arrow{
    font-size: 24px;
  }
  .sp-none {
    display: none;
  }
  .pc-none {
    display:inherit;
  }
}

/* カード一覧 */
.live-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, .68);
}

.live-card{
  border-bottom: 1px solid rgba(0, 0, 0, .28);
}

.live-row{
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(88px, .9fr) minmax(260px, 2.2fr) minmax(130px, 1fr);
  gap: 18px;
  align-items: center;
  padding: clamp(14px, 1.8vw, 26px) clamp(12px, 2vw, 34px);
}

.live-date{
  font-weight: 700;
  color: #000;
  font-size: clamp(19px, 2vw, 30px);
  line-height: 1.1;
  letter-spacing: .01em;
}

.live-area{
  font-weight: 600;
  color: #000;
  font-size: clamp(22px, 2.1vw, 40px);
  line-height: 1;
  text-align: center;
}

.live-venue{
  font-weight: 400;
  color: #444;
  font-size: clamp(16px, 1.55vw, 24px);
  line-height: 1.25;
  min-width: 0;
}
.live-time{
  color: #444;
  font-weight: 400;
  font-size: clamp(18px, 1.7vw, 26px);
  text-align: right;
  white-space: nowrap;
}

/* ===== Responsive ===== */
@media (max-width: 1180px){
  .live-row{
    grid-template-columns: minmax(170px, 1.8fr) minmax(80px, .8fr) minmax(0, 2.4fr) minmax(120px, 1fr);
    gap: 12px;
  }
}
@media (max-width: 760px){
  .live-head{ flex-direction: column; align-items: flex-start; }
  .live-grid{
    border-top-width: 1px;
  }
  .live-card{
    border-bottom: 1px solid rgba(0,0,0,.28);
  }
  .live-row{
    grid-template-columns: 1fr auto;
    grid-template-areas:
    "date area"
    "venue venue"
    "time time";
    gap: 8px 12px;
    align-items: start;
    padding: 14px 14px 16px;
  }
  .live-date{
    grid-area: date;
    font-size: clamp(20px, 6.2vw, 20px);
    line-height: 1.05;
    font-weight: 600;
    padding-top: 5px;
  }
  .live-area{
    grid-area: area;
    text-align: right;
    font-size: clamp(20px, 8vw, 20px);
    line-height: 1.05;
    font-weight: 600;
  }
  .live-venue{
    grid-area: venue;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
  }
  .live-time{
    grid-area: time;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    opacity: .9;
  }
  .live-head h2 img {
    width: 300px;
  }
}




/* ===== PROFILE section ===== */
.live-info{
  background: transparent;
  border-radius: 0;
  padding: clamp(16px, 2.4vw, 26px);
}
.live-head{
  margin-bottom: 10px;
}


.live-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,.68);
}
.live-card{
  background: transparent;
  border-bottom: 1px solid rgba(0,0,0,.28);
  padding: 22px 35% 24px;
}
.live-area{
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.05;
  color: #222;
  text-align: left;
  margin: 0 0 13px;
}
.live-venue{
  font-size: clamp(12px, 1.8vw, 25px);
  line-height: 1.2;
  color: #444;
  margin: 0 0 10px;
}
.live-dates{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}
.live-dates li{
  display: flex;
  flex-wrap: wrap;
  gap: .2em;
  align-items: baseline;
  padding: 0;
  border: 0;
  background: transparent;
}
.live-dates .date,
.live-dates .time{
  color: #555;
  font-size: clamp(14px, 1.6vw, 20px);
  line-height: 150%;
  white-space: normal;
}

@media (max-width: 760px){
  .live-info{
    padding: 20px;
  }
  .live-head h2{
    padding: 20px 0 30px;
  }
  .live-head h2 img{
    width: min(300px, 72vw)
  }

  .live-area{
    font-size: 18px;
    margin-bottom: 13px;
  }
  .live-venue{
    font-size: 16px;
    margin-bottom: 5px;
  }
  .live-dates{
    gap: 2px;
  }
  .live-dates .date,
  .live-dates .time{
    font-size: 15px;
    line-height:180%;
  }

  .live-card{
    padding: 22px 0px 24px;
  }
}

/* ===== PROFILE section ===== */
.profile-sec{
  background: #fff;
  color: #111;
  min-height: 100vh; /* 右スライダーを大きくしても窮屈にならないようにする */
}

.profile-wrap{
  max-width: 100%;
  margin: 0 auto;
  padding: 50px 30px;
  display: grid;
  grid-template-columns: 1fr 50%; /* 左テキスト / 右縦長 */
  gap: 28px;
  align-items: start;
}

.profile-body{
  align-self: center; /* PC時は左カラムを上下中央に */
}

/* 左：プロフィール */
.profile-body h2{
  margin: 0 0 16px;
  font-size: clamp(32px, 3.3vw, 70px);
  font-weight: 700;
  line-height: 1;
}
.profile-name{
  margin: 0 0 14px;
  font-weight: 700;
}
.profile-name span{
  margin-left: .4em;
  font-weight: 600;
  color: #666;
  font-size: .95em;
}
.profile-body p{
  margin: 0 0 14px;
  line-height: 1.9;
  color: #333;
  text-align: justify;
  text-justify: inter-ideograph;
}
.profile-label{
  margin-top: 18px;
  font-weight: 700;
}

/* 右：縦長フェード */
.profile-side{
  padding-right: 18px;
  align-self: start;
}

.profile-fade{
  position: relative; /* sticky不要 */
  aspect-ratio: 2296 / 3443; /* 縦長画像（01/03/04系）の比率に合わせる */
  overflow: hidden;
  background: #f3f3f3;
  border-radius: 14px;
}

.profile-fade img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease;
}

.profile-fade img.is-active{
  opacity: 1;
}


.profile-accordion{
  margin-top: 16px;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

/* summary行 */
.profile-accordion summary{
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 標準マーカー非表示 */
.profile-accordion summary::-webkit-details-marker{ display: none; }

/* 右端の▼ */
.profile-accordion summary::after{
  content: "▼";
  font-size: 12px;
  color: #333;
  transform-origin: center;
  transition: transform .2s ease;
}

/* 開いたら回転 */
.profile-accordion[open] summary::after{
  transform: rotate(180deg);
}

/* 中身 */
.profile-accordion__content{
  padding: 12px 14px 14px;
  border-top: 1px solid #e7e7e7;
}

.profile-accordion__content p{
  margin: 0 0 12px;
  line-height: 1.9;
  color: #333;
}
.profile-accordion__content p:last-child{
  margin-bottom: 0;
}

/* banner */
.banner {
  margin: 20px auto 30px;
  text-align: center;
  overflow: hidden;
}
.banner a{
  display: inline-block;
  overflow: hidden;
}
.banner img {
  margin: 0 auto;
  transform: scale(1);
  transition: transform .35s ease;
}

@media (hover: hover){
  .banner a:hover img,
  .banner a:focus-visible img{
    transform: scale(1.06);
  }
}


/* SP：縦並び */
@media (max-width: 980px){
  .profile-wrap{
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
  .profile-body{
    align-self: start;
  }
  .profile-side{
    border-left: none;
    padding-left: 0;
  }
  .profile-fade{
    position: relative;
    aspect-ratio: 2296 / 3443;
    max-height: 720px;
    width: 100%;
  }

  .banner {
    margin: 0 auto;
    padding: 0px 20px 20px;
  }
  .banner  img {
    width: 100%;
    height: auto;
  }
}

/* tablet: PROFILE 画像の上寄せ */
@media (min-width: 761px) and (max-width: 980px){
  .profile-fade img{
    object-position: center top;
  }
}

/* Intro */
#intro{
  padding: clamp(56px, 8vw, 110px) clamp(18px, 3vw, 52px);
  text-align: center;
  color: #2f2f34;
}
.intro-inner{
  width: min(100%, 1320px);
  margin: 0 auto;
}
#intro h3{
  margin: 0;
  font-family: "Times New Roman", Georgia, serif;
  font-weight: 600;
  font-size: clamp(18px, 3vw, 72px);
  line-height: 1.65;
  letter-spacing: .04em;
  color: #8b6a18;
}
.intro-copy{
  width: min(100%, 1500px);
  margin: clamp(42px, 1.5vw, 92px) auto 0;
}
.intro-copy p{
  margin: 0;
  font-family: "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(18px, 2vw, 18px);
  line-height: 2.05;
  letter-spacing: .08em;
  font-weight: 600;
  color: #34353a;
}
.intro-copy p + p{
  margin-top: .35em;
}

@media (max-width: 760px){
  #intro h3{
    line-height: 1.5;
    letter-spacing: .03em;
  }
  .intro-copy{
    margin-top: 34px;
  }
  .intro-copy p{
    font-size: clamp(14px, 2vw, 19px);
    line-height: 1.9;
    letter-spacing: .04em;
    text-align: left;
    margin-bottom: 20px;
  }
}

/* Tracklist */
#tracklist{
  padding: clamp(36px, 8vw, 2px) clamp(18px, 3vw, 52px);
  color: #2d2d31;
}
#tracklist h2{
  margin: 0 0 clamp(10px, 3vw, 10px);
  font-family: "Inter", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 5vw, 35px);
  line-height: 120%;
  text-align: center;
  letter-spacing: .02em;
  color: #000;
  text-transform: none;
}
#tracklist h2 span{
  display: block;
  margin-left: .25em;
  font-size: .48em;
  letter-spacing: .04em;
  color: #333;
  font-weight: normal;
}
.tracklist-table{
  width: min(100%);
}
.tracklist-table__head,
.tracklist-table__row{
  display: grid;
  grid-template-columns: 130px minmax(0, 1.25fr) minmax(0, .9fr);
  gap: 24px;
  align-items: center;
}
.tracklist-table__head{
  padding: 14px 0 18px;
  color: #000;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 20px);
  border-bottom: 1px solid rgba(0,0,0,.68);
}
.tracklist-table__body{
  margin: 18px 0 0;
  font-family: "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,.68);
}
.tracklist-table__group{
  padding: 8px 0;
  text-align: center;
  color: #FFF;
  background: #222;
  font-size: clamp(14px, 1.2vw, 18px);
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(0,0,0,.2);
}
.tracklist-table__row{
  padding: clamp(14px, 2.2vw, 22px) 0;
  border-bottom: 1px solid rgba(0,0,0,.28);
  grid-template-columns: 130px minmax(0, 1.25fr) minmax(0, .9fr);
}
.tracklist-table__row:last-child{
  border-bottom: 0;
}
.tracklist-no{
  font-size: clamp(17px, 1.3vw, 38px);
  line-height: 1.15;
}
.tracklist-title{
  font-size: clamp(17px, 1.3vw, 36px);
  line-height: 1.35;
}
.tracklist-original{
  font-size: clamp(14px, 1.3vw, 28px);
  line-height: 1.35;
  color: #2d2d31;
  word-break: break-word;
}

.tracklist-title-mini {
  font-size: 14px;
}


@media (max-width: 760px){

  /* profile sp */
  .profile-side {
    padding: 0;
  }
}


@media (max-width: 640px){
  .tracklist-table__head,
  .tracklist-table__row{
    grid-template-columns: 30px minmax(0, 1.35fr) minmax(0, 1.1fr);
    gap: 10px 16px;
  }
  .tracklist-table__head{
    font-size: 11px;
  }
  .tracklist-table__row{
    align-items: center;
    row-gap: 0;
  }
  .tracklist-no{
    font-size: 13px;
    line-height: 1.2;
  }
  .tracklist-title{
    font-size: 12px;
    line-height: 1.35;
  }
  .tracklist-original{
    font-size: 11px;
    line-height: 1.35;
    color: rgba(45,45,49,.85);
  }

  .tracklist-title-mini {
    font-size: 9px;
  }
  .tracklist-table__group{
    font-size: 12px;
    padding: 8px 0;
    grid-column: 1 / -1;
  }

  #tracklist h2{
    line-height: 120%;
  }
  #tracklist h2 span{
    display: block;
    margin-left: .2em;
  }
}
