@import "base.css";
@media screen and (min-width: 751px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block;
  }
}
body {
  font-feature-settings: "palt";
  font-family: "DotGothic16", sans-serif;
  background-color: #ff0033;
  color: #000;
  font-size: min(16px, 3.2vw);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  body {
    font-size: 3.6vw;
  }
}

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

a {
  display: inline-block;
}

#container {
  margin: 0 auto;
  text-align: center;
  position: relative;
  width: 100%;
}
#contents {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.hidden {
  display: none;
}

.cautionBox {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.cautionBox p + p {
  margin-top: min(25px, 5vw);
}

.audioBox {
  margin-top: min(30px, 10vw);
}

.lyricBlock h2 {
  font-size: min(40px, 6vw);
}

.lyricWrap {
  margin: min(50px, 10vw) auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.lyricWrap .lyricBox {
  text-align: left;
  line-height: 2;
}
.lyricWrap .lyricBox h3 {
  text-align: center;
}
.lyricWrap .lyricBox > div + div {
  margin-top: 15px;
}
.lyricWrap .lyricBox.box2 {
  color: #ff0033;
}
.lyricWrap .lyricBox.box2 ::-moz-selection {
  background-color: #333;
}
.lyricWrap .lyricBox.box2 ::selection {
  background-color: #333;
}
@media screen and (max-width: 750px) {
  .lyricWrap .lyricBox.box2 {
    color: #333;
  }
  .lyricWrap .lyricBox.box2 .invert {
    color: #333;
    margin: 0 auto 3vw auto;
    text-align: center;
    opacity: 0.15;
  }
  .lyricWrap .lyricBox.box2 h3,
  .lyricWrap .lyricBox.box2 .lyricTxt {
    opacity: 0;
  }
  .lyricWrap .lyricBox.box2.invertTxt > h3,
  .lyricWrap .lyricBox.box2.invertTxt .lyricTxt {
    opacity: 1;
  }
  .lyricWrap .lyricBox.box2.invertTxt p {
    background-color: #333;
    color: #ff0033;
    display: inline;
  }
}

.backBtn {
  margin-top: min(50px, 10vw);
}
.backBtn a {
  display: inline-block;
  border: 1px solid #FFF;
  line-height: 1;
  padding: 10px;
  letter-spacing: 0.1em;
}

#footer {
  margin-top: min(50px, 10vw);
}