@charset "utf-8";
@import url("reset.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Noto+Sans+JP:wght@400;500;700;800;900&display=swap");

:root {

  --color-bg: #0e0e10;
  --color-bg-alt: #15151a;
  --color-fg: #f1efe7;
  --color-fg-mute: #b8b6ad;

  --color-blue: #1d6ecf;
  --color-blue-dark: #134a8c;
  --color-red: #e63b2d;
  --color-red-dark: #a4271d;

  --color-flyer-green: #52a5a0;
  --color-flyer-green-dark: #2d7570;

  --color-accent: var(--color-red);
  --color-accent-2: var(--color-blue);

  --color-line: rgba(241, 239, 231, 0.18);
  --color-card: rgba(241, 239, 231, 0.04);
  --color-overlay: rgba(0, 0, 0, 0.85);

  --font-jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-en: "Inter", "Helvetica Neue", Arial, sans-serif;

  --max-width: 1400px;
  --section-pad-y: 100px;
  --section-pad-y-sp: 60px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: var(--color-bg);
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-fg);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

@media only screen and (max-width: 1000px) {
  body {
    font-size: 15px;
  }
}
@media only screen and (max-width: 560px) {
  body {
    font-size: 14px;
  }
}

img {
  border: none;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-fg);
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

table {
  border-collapse: collapse;
}

.small {
  font-size: 0.8em !important;
}

.nowrap {
  white-space: nowrap;
  display: inline-block;
}

.fontAccent {
  color: var(--color-accent);
}

.fontAccent2 {
  color: var(--color-accent-2);
}

.scrollView {
  opacity: 0;
  transform: translate(0, 30px);
  -webkit-transform: translate(0, 30px);
}

.scrollViewAction {
  opacity: 1;
  -webkit-animation: scrollViewA 0.8s forwards ease-in-out;
  animation: scrollViewA 0.8s forwards ease-in-out;
}

@-webkit-keyframes scrollViewA {
  0% { opacity: 0; -webkit-transform: translate(0, 30px); }
  100% { opacity: 1; -webkit-transform: translate(0, 0); }
}
@keyframes scrollViewA {
  0% { opacity: 0; transform: translate(0, 30px); }
  100% { opacity: 1; transform: translate(0, 0); }
}

.fadeIn {
  opacity: 0;
}

.fadeInAction {
  opacity: 1;
  -webkit-animation: fadeInA 0.8s forwards ease-in-out;
  animation: fadeInA 0.8s forwards ease-in-out;
}

@-webkit-keyframes fadeInA {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fadeInA {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.popIn {
  opacity: 0;
  transform: scale(0.85);
}

.popInAction {
  opacity: 1;
  transform: scale(1);
  -webkit-animation: popInA 0.5s forwards ease-out;
  animation: popInA 0.5s forwards ease-out;
}

@-webkit-keyframes popInA {
  0% { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes popInA {
  0% { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

#toggle {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

@media only screen and (max-width: 560px) {
  #toggle {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
}

#toggle .bar {
  position: absolute;
  left: 50%;
  margin-left: -10px;
  width: 20px;
  height: 2px;
  background-color: var(--color-fg);
  border-radius: 1px;
  transition: all 0.3s ease;
}

#bar01 { top: 18px; }
#bar02 { top: 24px; }
#bar03 { top: 30px; }

@media only screen and (max-width: 560px) {
  #bar01 { top: 15px; }
  #bar02 { top: 21px; }
  #bar03 { top: 27px; }
}

#toggle.toggleOpen .bar {
  background-color: var(--color-fg);
}

#toggle.toggleOpen #bar01 {
  top: 24px;
  transform: rotate(45deg);
}
@media only screen and (max-width: 560px) {
  #toggle.toggleOpen #bar01 {
    top: 21px;
  }
}

#toggle.toggleOpen #bar02 {
  opacity: 0;
}

#toggle.toggleOpen #bar03 {
  top: 24px;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 560px) {
  #toggle.toggleOpen #bar03 {
    top: 21px;
  }
}

#mainMenu {
  position: fixed;
  top: 0;
  right: -30vw;
  width: 30vw;
  min-width: 320px;
  height: 100vh;
  height: 100dvh;
  background: var(--color-overlay);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--color-line);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 5vh 1em calc(5vh + env(safe-area-inset-bottom));
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transition:
    right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.4s ease;
}

@media only screen and (max-width: 560px) {
  #mainMenu {
    right: -105vw;
    width: 100vw;
    min-width: auto;
    padding: 5em 1em calc(2em + env(safe-area-inset-bottom));
    gap: 1.5em;
  }
}

#mainMenu.active {
  opacity: 1;
  right: 0;
}

.menuSlashMark {
  font-family: var(--font-en);
  font-style: italic;
  font-weight: 800;
  font-size: 4em;
  line-height: 1;
  padding: 0.05em 0.3em;
  background: linear-gradient(180deg, #1d6ecf 0%, #1d6ecf 15%, #e63b2d 85%, #e63b2d 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  user-select: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.5s ease 0.15s;
}

#mainMenu.active .menuSlashMark {
  opacity: 1;
  transform: translateY(0);
}

@media only screen and (max-width: 560px) {
  .menuSlashMark {
    font-size: 3.4em;
  }
}

#mainMenu ul {
  list-style: none;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease 0.2s;
}

#mainMenu.active ul {
  opacity: 1;
  transform: translateY(0);
}

#mainMenu ul li {
  margin: 14px 0;
}

#mainMenu ul a {
  display: block;
  color: var(--color-fg);
  text-decoration: none;
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1.4em;
  padding: 0.5em 1.5em;
  transition: all 0.3s ease;
}

#mainMenu ul a:hover {
  color: var(--color-accent-2);
  opacity: 1;
}

#mainMenu ul a .small {
  display: block;
  font-family: var(--font-jp);
  font-size: 0.5em !important;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 0;
  letter-spacing: 0;
}

.menuArtist {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.3s;
  border: 1px solid rgba(241, 239, 231, 0.25);
  border-radius: 14px;
  padding: 1.1em 1.6em 1.2em;
  background: rgba(241, 239, 231, 0.04);
}

#mainMenu.active .menuArtist {
  opacity: 1;
  transform: translateY(0);
}

.menuArtistLabel {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 0.9em;
  letter-spacing: 0.15em;
  color: var(--color-fg-mute);
  margin: 0 0 0.9em 0;
}

#mainMenu .menuArtistLinks {
  list-style: none;
  display: flex;
  gap: 1.1em;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

#mainMenu .menuArtistLinks li {
  margin: 0;
}

#mainMenu .menuArtistLinks a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4em;
  height: 2.4em;
  border-radius: 50%;
  border: 1px solid rgba(241, 239, 231, 0.35);
  color: var(--color-fg);
  transition: all 0.25s ease;
  padding: 0;
  box-sizing: border-box;
  flex-shrink: 0;
}

#mainMenu .menuArtistLinks a:hover {
  background: var(--color-fg);
  color: var(--color-bg);
  border-color: var(--color-fg);
  opacity: 1;
}

#mainMenu .menuArtistLinks a svg {
  width: 1.1em;
  height: 1.1em;
}

section {
  position: relative;
  padding: var(--section-pad-y) 0;
}

@media only screen and (max-width: 560px) {
  section {
    padding: var(--section-pad-y-sp) 0;
  }
}

.sectionInner {
  margin: 0 auto;
  padding: 0 5vw;
  max-width: var(--max-width);
}

h2.secTitle {
  text-align: center;
  font-family: var(--font-en);
  font-size: clamp(2em, 5vw, 3.4em);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--color-fg);
  margin: 0 auto 1.25em auto;
  position: relative;
  display: block;
}

@media only screen and (max-width: 560px) {
  h2.secTitle {
    margin-bottom: 1em;
  }
}

h2.secTitle .ja {
  display: block;
  font-family: var(--font-jp);
  font-size: 0.4em;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-fg-mute);
  margin-top: 0.6em;
}

.secLead {
  text-align: center;
  font-size: 1.05em;
  line-height: 1.9;
  color: var(--color-fg-mute);
  max-width: 720px;
  margin: 2em auto 4em auto;
}

footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-line);
  padding: 24px 5vw;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

footer address {
  font-family: var(--font-en);
  font-size: 0.85em;
  letter-spacing: 0.15em;
  color: var(--color-fg-mute);
  font-style: normal;
}

#footerLink {
  text-align: right;
}

#footerLink a {
  display: inline-block;
  margin-left: 24px;
  line-height: 0;
}

#footerLink a img {
  display: inline-block;
  height: 50px;
  vertical-align: middle;
}

@media only screen and (max-width: 560px) {
  #footerLink a {
    margin-left: 12px;
  }
  #footerLink a img {
    height: 28px;
  }
}

footer #footerLink a:hover {
  opacity: 0.7;
}

.pcBlock { display: block; }
@media only screen and (max-width: 1000px) {
  .pcBlock { display: inline; }
}

.mobileBlock {}
@media only screen and (max-width: 560px) {
  .mobileBlock { display: block; }
}

.mobileNone {}
@media only screen and (max-width: 560px) {
  .mobileNone { display: none; }
}

.forPcOnly {}
@media only screen and (max-width: 1000px) {
  .forPcOnly { display: none !important; }
}

.forMobileOnly {
  display: none !important;
}
@media only screen and (max-width: 560px) {
  .forMobileOnly { display: block !important; }
}

@media (hover: none) {
  a {
    opacity: 1 !important;
  }
}