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: #928ec4;
  --accent-color: #384e96;
  --third-color: #ec7bad;
  --fourth-color: #fce5de;
  --bg-color: #eeedf5;
}

img {
  object-fit: contain;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

h1 {
  color: var(--accent-color);
  font-family: "Handlee", cursive;
  font-size: xx-large;
  letter-spacing: 10px;
}

body {
  margin: 0 auto;
  letter-spacing: 1.2px;
  color: var(--accent-color);
  background-color: var(--bg-color);
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media (max-width: 768px) {
  body {
    width: 100vw;
  }
}

main {
  overflow-x: hidden;
}

#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 .loader {
  width: 15vw;
  margin-top: 20px;
  height: 8px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
#loading .loader::before {
  content: "";
  box-sizing: border-box;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.15);
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.25) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.25) 75%, transparent 75%, transparent);
  background-size: 15px 15px;
  z-index: 10;
}
#loading .loader::after {
  content: "";
  box-sizing: border-box;
  width: 0%;
  height: 100%;
  background-color: #FFF;
  position: absolute;
  border-radius: 0 4px 4px 0;
  top: 0;
  left: 0;
  animation: animFw 10s ease-in infinite;
}
@keyframes animFw {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #loading img.loading-image {
    width: 50%;
    animation: flash 3s ease-in-out infinite;
  }
  #loading .loader {
    width: 50vw;
  }
}

.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;
  }
}
.background {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-image: url(../img/bg_argyle.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.header {
  position: relative;
  width: 60vw;
  margin: 0 auto;
  transform: rotate(10deg);
  background-image: url(../img/bg_head.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  border: var(--accent-color) 10px solid;
  border-radius: 5%;
}
.header img.main-visual {
  display: block;
  margin: 0 auto;
}
.header img.logo {
  display: block;
  position: absolute;
  bottom: 0;
  width: 33vw;
  transform: rotate(-10deg);
}
.header img.stardust {
  display: block;
  position: absolute;
  top: -20vh;
  left: 0;
  width: 65vw;
}
@media (max-width: 768px) {
  .header {
    width: 95vw;
    margin-top: 10vh;
  }
  .header img.main-visual {
    width: 100vw;
  }
  .header img.logo {
    width: 65vw;
  }
  .header img.stardust {
    top: 0;
    left: 10vw;
    width: 100vw;
  }
}

.catch {
  position: relative;
  transform: rotate(-5deg);
  width: 115vw;
  margin-left: -5vw;
}
.catch h1 {
  position: relative;
  font-size: xxx-large;
  margin: 90px auto;
  text-align: center;
  letter-spacing: 5px;
  color: white;
  padding: 5vh 0;
  font-family: "Yomogi", cursive;
  background-color: var(--accent-color);
}
@media (max-width: 768px) {
  .catch h1 {
    font-size: large;
    margin: 30px auto;
  }
}

.block1 {
  width: 100vw;
  display: flex;
  margin: 0 auto;
  justify-content: center;
}
@media (max-width: 768px) {
  .block1 {
    flex-direction: column;
    margin-top: 10vh;
  }
}

.information {
  position: relative;
  width: 38vw;
  transform: rotate(5deg);
  margin-top: 5vh;
}
@media (max-width: 768px) {
  .information {
    width: 90%;
    margin: 0 auto;
  }
}

.cd-info {
  position: relative;
  max-width: 100%;
  color: var(--main-color);
  border-radius: 50% 50% 70% 25%/50% 50% 70% 60%;
  margin-top: 2vh;
  padding: 7vh 5vw 7vh 8vw;
  background-color: ghostwhite;
}
.cd-info img.jacket {
  width: 90%;
}
.cd-info .cd-info-text {
  max-width: 90%;
  margin: 20px auto;
}
.cd-info .date-price {
  text-align: left;
  margin-top: 20px;
}
.cd-info .date-price .head {
  font-size: small;
}
.cd-info .date-price .body {
  font-size: x-large;
  font-weight: bold;
}
@media (max-width: 768px) {
  .cd-info {
    max-width: 100%;
    margin-top: 1vh;
    flex-direction: column;
  }
  .cd-info h1 {
    font-size: 10vw;
    margin: 40px 0;
  }
  .cd-info a {
    width: 100%;
  }
  .cd-info img.jacket {
    width: 90%;
    transform: rotate(-5deg);
  }
  .cd-info .cd-info-text {
    margin-top: 30px;
  }
  .cd-info .date-price .body {
    font-size: large;
  }
}

.track {
  position: relative;
  width: 35vw;
  margin-top: 20vh;
  transform: rotate(-8deg);
}
.track h1 {
  margin: 2vh 0;
  text-align: center;
}
.track .tracklist {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  width: 35vw;
  margin: 0 auto;
  border-radius: 80% 30% 50% 50%/50%;
  padding: 10vh 3vw;
  background-color: ghostwhite;
  color: var(--third-color);
}
.track .track-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.track .num {
  text-align: center;
  font-weight: bold;
  font-size: x-large;
  letter-spacing: 4px;
}
.track .track-info {
  text-align: left;
  margin-left: 12px;
}
.track .track-info .track-title {
  font-weight: bold;
  font-size: xx-large;
  letter-spacing: 2px;
  color: var(--third-color);
}
.track .track-info .track-maker {
  font-size: medium;
  margin: 5px 5px 0 0;
}
@media (max-width: 768px) {
  .track {
    margin-top: 0;
    margin-left: auto;
    width: 90%;
  }
  .track .tracklist {
    width: 100%;
    padding: 0;
  }
  .track .track-item {
    margin: 0 20px 20px 20px;
  }
  .track .track-info .track-title {
    font-size: large;
  }
}

.block2 {
  width: 55vw;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0 auto;
}
.block2 h1 {
  width: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .block2 {
    width: 90%;
    margin: 5vh auto 0 auto;
  }
}

.youtube {
  position: relative;
  width: 35vw;
  height: 22.5vw;
  margin: 10px auto 10px 0;
  padding: 2vw;
  background-color: ghostwhite;
  border-radius: 40% 40% 50% 40%/30% 50% 50% 50%;
}
.youtube iframe {
  border-radius: 40% 40% 50% 40%/30% 50% 50% 50%;
}
@media (max-width: 768px) {
  .youtube {
    width: 100%;
    height: 50.625vw;
    margin: 0 auto;
  }
}

.youtube:nth-child(even) {
  margin: 10px 0 10px auto;
  border-radius: 30% 50% 30% 50%/40% 40% 40% 40%;
}
.youtube:nth-child(even) iframe {
  border-radius: 30% 50% 30% 50%/40% 40% 40% 40%;
}
@media (max-width: 768px) {
  .youtube:nth-child(even) {
    margin: 0 auto;
  }
}

.shop {
  width: 70%;
  margin: 30px auto 0 auto;
}
.shop h1 {
  transform: rotate(-5deg);
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .shop {
    width: 90%;
    margin-top: 20px;
  }
  .shop h1 {
    margin-bottom: 20px;
  }
  .shop p {
    font-size: small;
  }
}

.shops {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 1vh;
}
.shops a {
  width: 20%;
  background: ghostwhite;
  color: var(--accent-color);
  margin: 5px 1%;
  padding: 60px 0;
  text-align: center;
  border: 2px solid ghostwhite;
  border-radius: 50% 50% 50% 70%/50% 50% 70% 60%;
  transition: 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}
.shops a:nth-child(2n) {
  border-radius: 50% 50% 50% 70%/50% 50% 70% 60%;
  margin-top: 20px;
  transform: rotate(3deg);
}
.shops a:nth-child(3n) {
  border-radius: 40% 40% 50% 40%/30% 50% 50% 50%;
  margin-top: 40px;
  transform: rotate(-3deg);
}
.shops a:hover {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  color: ghostwhite;
  letter-spacing: 0.15em;
}
.shops a.shop-none {
  visibility: hidden !important;
  height: 0;
}
@media (max-width: 768px) {
  .shops {
    width: 100%;
    justify-content: space-evenly;
  }
  .shops h1 {
    margin-bottom: 20px;
  }
  .shops a {
    width: 45%;
    margin: 5px 0;
    font-size: small;
  }
  .shops a:nth-child(n) {
    margin-top: 10px;
  }
  .shops .shop-none {
    display: none;
  }
}

.special {
  position: relative;
  width: 60vw;
  margin: 0 auto;
  transform: rotate(5deg);
}
.special h1 {
  text-align: right;
}
.special .special-body {
  display: flex;
  margin: 20px auto;
  background-color: ghostwhite;
  color: var(--accent-color);
  justify-content: space-evenly;
  border-radius: 35% 50% 30% 70%/50% 50% 50% 60%;
}
.special .special-body img {
  width: 30%;
  display: block;
}
.special .special-body p {
  width: 58%;
  margin-top: 50px;
  line-height: 2;
  text-align: left;
}
.special .special-body span.c-title {
  font-size: larger;
  font-weight: bold;
}
@media (max-width: 768px) {
  .special {
    width: 90%;
    margin-top: 5vh;
    transform: rotate(3deg);
  }
  .special .special-body {
    flex-direction: column;
  }
  .special .special-body img {
    width: 70%;
    margin: 0 auto;
  }
  .special .special-body p {
    width: 90%;
    padding-left: 0;
    margin: 1vh auto;
    text-align: left;
  }
}

.wave {
  width: 100vw;
  height: 30vh;
  background-image: url(../img/wave.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.staff {
  position: relative;
  display: flex;
  width: 100%;
  color: white;
  background-color: var(--main-color);
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-end;
}
.staff a {
  color: white;
  padding: 0 2px;
  line-height: 1.8;
}
.staff .staff-line {
  display: flex;
  flex-direction: column;
  justify-content: start;
  background-color: ghostwhite;
  color: var(--main-color);
  border-radius: 50%;
  width: 12%;
  margin: 10px 5%;
  padding: 6%;
}
.staff .staff-line p {
  letter-spacing: 3px;
  align-self: baseline;
  text-align: left;
}
.staff .staff-line .staff-roll {
  font-size: x-small;
  letter-spacing: 2px;
  line-height: 2;
  margin-top: 12px;
}
.staff .staff-line .staff-track {
  font-size: x-small;
}
.staff .staff-line a {
  color: var(--main-color);
}
.staff .staff-line:nth-child(1) {
  margin: 0 30% 0 20%;
}
.staff .staff-line:nth-child(2) {
  margin: -200px 20% 0 55%;
  padding: 8% 6%;
}
.staff .staff-line:nth-child(3) {
  margin: -200px 45% 0 10%;
}
.staff .staff-line:nth-child(4) {
  margin: -150px 12% 0 50%;
  padding: 8% 6%;
}
.staff .staff-line:nth-child(5) {
  margin-top: -100px;
  padding: 10% 6%;
}
.staff .staff-line:nth-child(5) .staff-roll {
  text-align: center;
  margin: 0 auto;
}
.staff .staff-line:nth-child(5) a {
  text-align: center;
}
@media (max-width: 768px) {
  .staff {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: -100px;
  }
  .staff .staff-line {
    width: 45%;
  }
  .staff .staff-line:nth-child(1) {
    margin: 0 30% 0 20%;
    padding-left: 14%;
  }
  .staff .staff-line:nth-child(2) {
    margin: 0px 20% 0 40%;
    padding: 8% 14%;
  }
  .staff .staff-line:nth-child(3) {
    margin: 0 30% 0 15%;
    padding-left: 14%;
  }
  .staff .staff-line:nth-child(4) {
    margin: 0 5% 0 45%;
    padding-left: 12%;
  }
  .staff .staff-line:nth-child(5) {
    margin: 0 auto;
    padding: 20% 6%;
  }
  .staff .staff-line:nth-child(5) .staff-roll {
    text-align: center;
    margin: 0 auto;
  }
  .staff .staff-line:nth-child(5) a {
    text-align: center;
  }
}

footer {
  position: relative;
  width: 100%;
  background-color: var(--main-color);
  color: ghostwhite;
}
footer .copyright {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}
footer .copyright hr {
  flex-grow: 2;
  height: 1px;
  background: white;
  border: none;
}
footer .copyright p {
  font-weight: 900;
  padding: 10px 0 30px 0;
}