html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

:root {
  --main-color: #00449b;
  --accent-color: #47beef;
}

img {
  object-fit: contain;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

h1 {
  color: var(--main-color);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}

img.effect {
  position: absolute;
  z-index: -1;
}
@media (max-width: 768px) {
  img.effect {
    width: 100vw;
  }
}

body {
  margin: 0 auto;
  letter-spacing: 1.2px;
  color: var(--main-color);
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
}

.main-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/bg.svg");
  background-position: bottom center;
  background-attachment: fixed;
  background-size: 120%;
  background-repeat: no-repeat;
  z-index: -10;
}

#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background: var(--main-color);
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  z-index: 999;
  color: white;
}
#loading img.loading-image {
  width: 15%;
  animation: flash 3s ease-in-out infinite;
}
#loading p {
  margin-top: 20px;
  animation: flash 3s ease-in-out infinite;
}
@media (max-width: 768px) {
  #loading img.loading-image {
    width: 50%;
    animation: flash 3s ease-in-out infinite;
  }
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

@keyframes fluffy {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.main-visual {
  position: relative;
  margin: 0 auto;
  color: white;
}
.main-visual img.main {
  width: 100%;
}
.main-visual .catch {
  position: absolute;
  top: 2vh;
  left: 2vw;
  font-size: 9rem;
}
@media (max-width: 768px) {
  .main-visual img.main {
    height: 100vh;
    object-fit: cover;
  }
  .main-visual .catch {
    font-size: 2.5rem;
  }
}

.information {
  background-image: url("../img/pattern.png");
  background-size: 20%;
  background-position-x: 3vw;
  margin-top: -20px;
  padding-bottom: 10px;
}

span.bg-red {
  background: var(--main-color);
}

.intro {
  position: relative;
  text-align: center;
  max-width: 100%;
  padding-top: 90px;
  color: white;
}
.intro .catch {
  font-size: 2.2em;
  letter-spacing: 8px;
  margin-bottom: 3vw;
}
.intro .desc {
  font-size: 1.8em;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .intro {
    background: var(--main-color);
    padding-bottom: 90px;
  }
  .intro .desc {
    font-size: 1rem;
    padding: 0 2.5%;
    line-height: 2.4;
  }
}

.cd-info {
  position: relative;
  max-width: 80%;
  margin: 10vh auto;
}
.cd-info .effect2 {
  right: 0;
  bottom: 0;
}
.cd-info h1 {
  font-size: 5vw;
  letter-spacing: 2vw;
  text-align: center;
  margin: 80px 0;
}
.cd-info a {
  width: 50%;
}
.cd-info img.jacket {
  display: block;
  width: 60%;
  margin: 0 auto;
  text-align: center;
}
.cd-info .cd-info-text {
  max-width: 90%;
  margin: 60px auto 0 auto;
}
.cd-info .date-price {
  text-align: center;
  margin-top: 20px;
}
.cd-info .date-price .head {
  font-size: small;
}
.cd-info .date-price .body {
  font-size: xx-large;
  font-weight: bold;
}
.cd-info .date-price .dummy {
  display: none;
}
@media (max-width: 768px) {
  .cd-info {
    max-width: 100%;
    margin-top: 5vh;
    flex-direction: column;
  }
  .cd-info h1 {
    font-size: 10vw;
    margin: 40px 0;
  }
  .cd-info a {
    width: 100%;
  }
  .cd-info img.jacket {
    width: 90%;
  }
  .cd-info .cd-info-text {
    margin-top: 30px;
  }
  .cd-info .date-price .body {
    font-size: x-large;
  }
}

.shops {
  max-width: 90%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: center;
}
.shops a {
  width: 30%;
  background: white;
  color: var(--main-color);
  margin: 10px 1% 0px 1%;
  padding: 15px 0;
  text-align: center;
  border: 1px solid var(--accent-color);
}
.shops .shop-none {
  visibility: hidden;
  height: 0;
}
@media (max-width: 768px) {
  .shops {
    max-width: 100%;
    justify-content: center;
  }
  .shops a {
    width: 100%;
    margin: 5px 0;
    padding: 10px 0;
    font-size: small;
  }
  .shops .shop-none {
    display: none;
  }
}

.track {
  position: relative;
  margin: 0 auto;
  text-align: center;
  color: white;
  background: none;
}
.track .effect3 {
  top: 0;
  right: 0;
}
.track .effect4 {
  left: 0;
  bottom: 0;
}
.track .tracklist {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  width: 60vw;
  padding: 1px 0;
  margin: 10vh auto;
}
.track .h-tracklist {
  margin: 0;
  padding-top: 80px;
  margin-bottom: 80px;
  width: 100%;
  text-align: center;
}
.track .h-tracklist h1 {
  font-size: 5vw;
  letter-spacing: 2vw;
}
.track .track-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 20px;
}
.track .track-item1 {
  margin-left: 10%;
}
.track .track-item2 {
  margin-left: 20%;
}
.track .track-item3 {
  margin-left: 30%;
}
.track .track-item4 {
  margin-left: 40%;
}
.track .track-item5 {
  margin-left: 50%;
}
.track .track-item6 {
  margin-left: 60%;
}
.track .track-item7 {
  margin-left: 70%;
}
.track .num {
  text-align: center;
  font-weight: bold;
  font-size: xxx-large;
  color: white;
  letter-spacing: 4px;
  text-shadow: 1px 1px 0 var(--main-color), -1px 1px 0 var(--main-color), 1px -1px 0 var(--main-color), -1px -1px 0 var(--main-color), 1px 0px 0 var(--main-color), 0px 1px 0 var(--main-color), -1px 0px 0 var(--main-color), 0px -1px 0 var(--main-color);
}
.track .track-info {
  text-align: left;
  color: var(--main-color);
  margin-left: 12px;
}
.track .track-info .track-title {
  font-weight: bold;
  font-size: x-large;
  letter-spacing: 2px;
}
.track .track-info .track-maker {
  font-size: smaller;
  margin: 5px 5px 0 0;
}
@media (max-width: 768px) {
  .track .h-tracklist {
    padding-top: 0;
    margin-bottom: 40px;
  }
  .track .h-tracklist h1 {
    font-size: 10vw;
  }
  .track .tracklist {
    margin: 5vh auto;
    width: 90vw;
  }
  .track .track-item {
    margin-bottom: 2vh;
  }
  .track .track-item1 {
    margin-left: 2vw;
  }
  .track .track-item2 {
    margin-left: 4vw;
  }
  .track .track-item3 {
    margin-left: 6vw;
  }
  .track .track-item4 {
    margin-left: 8vw;
  }
  .track .track-item5 {
    margin-left: 10vw;
  }
  .track .track-item6 {
    margin-left: 12vw;
  }
  .track .track-item7 {
    margin-left: 14vw;
  }
  .track .num {
    text-align: center;
    font-size: xx-large;
  }
  .track .track-info {
    width: auto;
  }
  .track .track-info .track-title {
    font-size: medium;
  }
  .track .track-info .track-maker {
    font-size: x-small;
    margin: 0;
  }
}

.youtube {
  position: relative;
  width: 80%;
  height: 45vw;
  margin: 10px auto;
}
@media (max-width: 768px) {
  .youtube {
    width: 90%;
    height: 50.625vw;
  }
}

.special {
  position: relative;
  width: 60%;
  margin: 0 auto;
}
.special .effect5 {
  top: 10vh;
  left: 0;
  width: 10vw;
}
.special .effect6 {
  bottom: 10vh;
  right: 0;
  width: 10vw;
}
.special .effect7 {
  right: 0;
  left: 0;
  margin: 0 auto;
}
.special h1 {
  font-size: 5vw;
  letter-spacing: 2vw;
  text-align: center;
  margin: 80px 0;
}
.special .special-body img {
  width: 40%;
  display: block;
  margin: 0 auto;
}
.special .special-body p {
  margin-top: 16px;
  line-height: 2;
  text-align: center;
}
.special .special-body span.c-title {
  font-size: larger;
  font-weight: bold;
}
@media (max-width: 768px) {
  .special {
    width: 96%;
  }
  .special h1 {
    font-size: 10vw;
    margin: 40px auto;
  }
  .special .special-body {
    flex-direction: column;
  }
  .special .special-body img {
    width: 84%;
    margin: 0 auto;
  }
  .special .special-body p {
    padding-left: 0;
    margin-top: 1vh;
    text-align: center;
  }
}

.staff {
  position: relative;
  width: 90%;
  margin: 3vw auto;
  font-weight: 900;
}
.staff a {
  color: white;
  background: var(--main-color);
  padding: 0 2px;
}
.staff .staff-line {
  display: flex;
  margin-bottom: 20px;
  justify-content: end;
}
.staff .staff-line p {
  letter-spacing: 3px;
  margin-right: 22px;
  align-self: baseline;
  text-align: right;
}
.staff .staff-line .staff-roll {
  font-size: x-small;
  letter-spacing: 2px;
  line-height: 33px;
}
.staff .staff-line .staff-track {
  font-size: x-small;
}
.staff .staff-line-sp {
  display: none;
}
@media (max-width: 768px) {
  .staff {
    margin-top: 8vh;
  }
  .staff .staff-line {
    display: none;
  }
  .staff .staff-line-sp {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3vw;
  }
  .staff .staff-line-sp p {
    letter-spacing: 3px;
    margin-right: 0;
    align-self: baseline;
    width: 50%;
  }
  .staff .staff-line-sp .staff-roll {
    font-size: x-small;
    letter-spacing: 2px;
    line-height: 33px;
  }
  .staff .staff-line-sp .staff-track {
    font-size: x-small;
  }
  .staff .staff-line-sp a {
    line-height: 3vh;
  }
}

footer {
  position: relative;
  width: 90%;
  margin: 60px auto;
}
footer .sns {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  margin-bottom: 10px;
}
footer .sns img {
  margin-left: 1vw;
  width: 2vw;
}
footer .sns img.sns-fb {
  margin-left: 0.7vw;
}
footer .copyright {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
}
footer .copyright hr {
  flex-grow: 2;
  height: 1px;
  background: white;
  border: none;
}
footer .copyright p {
  font-weight: 900;
  padding: 10px 0 10px 25px;
}
@media (max-width: 768px) {
  footer .sns img {
    width: 8vw;
    margin-left: 2vw;
  }
}