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;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

html {
  scroll-behavior: smooth;
}

:root {
  --main-color: #CE3640;
  --accent-color: #FFF100;
}

img {
  object-fit: contain;
}

hr {
  border: none;
  text-align: center;
  height: 1px;
  width: 100%;
  background: gray;
  margin-top: 40px;
}

a {
  text-decoration: none;
}

.outfit {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

body {
  background: black;
  margin: 0 auto;
  letter-spacing: 1.2px;
  color: white;
  overflow-x: hidden;
}

.main-contents {
  display: block;
  position: relative;
  width: 70vw;
  margin: 80px auto 0 auto;
}
@media (max-width: 768px) {
  .main-contents {
    width: 100vw;
    margin: 0;
  }
}

.introduction {
  display: flex;
  width: 100%;
}
.introduction .jacket {
  display: flex;
  width: 65%;
  justify-content: center;
}
.introduction .jacket img.img-jacket {
  height: 90vh;
}
.introduction .intro-body {
  width: 35%;
}
.introduction .intro-body p.catalog {
  font-size: x-small;
}
.introduction .intro-body h1 {
  font-size: xx-large;
}
.introduction .intro-body h2 {
  font-size: x-large;
}
.introduction .intro-body h3 {
  font-size: large;
  font-weight: bold;
}
.introduction .intro-body p.desc {
  margin: 30px 0;
}
.introduction .intro-body ul {
  padding: 10px 0 20px 30px;
}
.introduction .intro-body a {
  display: block;
  background: var(--main-color);
  color: white;
  border: 2px solid var(--main-color);
  border-radius: 10px;
  width: 90%;
  margin: 10px 0;
  padding: 10px 20px;
  text-align: center;
  transition: all 0.3s;
}
.introduction .intro-body a:hover {
  background: white;
  color: var(--main-color);
  border: 2px solid white;
}
@media (max-width: 768px) {
  .introduction {
    flex-direction: column;
  }
  .introduction .jacket {
    display: flex;
    width: 100%;
  }
  .introduction .jacket img.img-jacket {
    width: 100vw;
    height: auto;
  }
  .introduction .intro-body {
    width: 94%;
    margin: 0 auto;
  }
}

h1.section-head {
  font-size: 2.5rem;
  text-align: center;
  margin-top: 12vh;
}
@media (max-width: 768px) {
  h1.section-head {
    font-size: 2rem;
  }
}

.includes-body {
  display: flex;
  justify-content: space-evenly;
  font-size: large;
  line-height: 2.2rem;
  margin: 40px 0;
}
@media (max-width: 768px) {
  .includes-body {
    flex-direction: column;
    align-items: center;
  }
  .includes-body ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    text-align: center;
    justify-content: center;
  }
  .includes-body li {
    width: 50%;
  }
}

.demo {
  margin-top: 50px;
}

.youtube {
  position: relative;
  width: 90%;
  height: 35.4375vw;
  margin: 30px auto;
  z-index: 2;
}
@media (max-width: 768px) {
  .youtube {
    height: 50.625vw;
  }
}

.soundcloud {
  position: relative;
  width: 90%;
  height: 200px;
  margin: 20px auto;
  z-index: 2;
}

.samples {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-top: 30px;
}
.samples .sample-item {
  width: 45%;
  margin: 15px 0;
}
.samples .sample-item p {
  text-align: center;
}
.samples .sample-item-body {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.samples .sample-item-body button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
.samples .sample-item-body .wave {
  width: 80%;
}

.shop {
  position: relative;
  margin: 0 auto;
}
.shop h2 {
  font-size: 2rem;
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .shop h2 {
    font-size: 1.6rem;
  }
}

.shops {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.shops a {
  display: block;
  background: var(--main-color);
  color: white;
  border: 2px solid var(--main-color);
  border-radius: 10px;
  width: 20%;
  margin: 10px 0;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
}
.shops a:hover {
  background: white;
  color: var(--main-color);
  border: 2px solid white;
}
.shops a.dummy {
  visibility: hidden;
}
.shops .inactive {
  pointer-events: none;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .shops {
    flex-direction: column;
    padding: 4vw 0;
  }
  .shops a {
    width: 80%;
    margin: 10px auto;
  }
}

.comments {
  margin-top: 18vh;
  position: relative;
}
.comments .creator {
  display: flex;
  margin: 20px auto;
  justify-content: center;
  align-items: center;
}
.comments .creator .creator-image {
  width: 25%;
}
.comments .creator .creator-image img {
  width: 100%;
  border-radius: 50%;
}
.comments .creator .creator-comment {
  width: 50%;
  margin-left: 2%;
}
.comments .creator .creator-comment .creator-name {
  font-size: 2rem;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .comments {
    margin: 12vh auto 0 auto;
    width: 94%;
    padding: 1px 0 10px 0;
  }
  .comments h1 {
    margin-top: 6vh;
  }
  .comments .creator {
    flex-direction: column;
  }
  .comments .creator .creator-image {
    width: 45%;
  }
  .comments .creator .creator-comment {
    width: 90%;
    margin-left: 0;
  }
  .comments .creator .creator-comment .creator-name {
    font-size: 1.6rem;
    text-align: center;
  }
}

.comments::before,
.comments::after {
  position: absolute;
  width: 10vw;
  height: 4vh;
  content: "";
}
@media (max-width: 768px) {
  .comments::before,
.comments::after {
    width: 20vw;
    height: 6vh;
  }
}

.comments::before {
  border-left: var(--main-color) solid 3px;
  border-top: var(--main-color) solid 3px;
  top: 0;
  left: 0;
}

.comments::after {
  border-right: var(--main-color) solid 3px;
  border-bottom: var(--main-color) solid 3px;
  bottom: 0;
  right: 0;
}

.staff {
  text-align: center;
  margin: 12vh auto;
  overflow-x: hidden;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.staff h1 {
  width: 100%;
  margin-bottom: 4vh;
}
.staff h2 {
  width: fit-content;
  color: white;
  margin: 0 auto;
  font-size: x-large;
  font-weight: 700;
}
.staff h3 {
  width: fit-content;
  color: var(--main-color);
  margin: 0 auto;
  padding: 2px 10px;
}
.staff a {
  color: white;
  padding: 2px 10px;
  font-family: "Outfit";
}
.staff .person {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .staff {
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
  }
}

footer {
  position: relative;
  display: flex;
  height: 20vh;
  width: 100%;
  background-color: black;
  justify-content: center;
  align-items: center;
}
footer .copyright {
  text-align: center;
}
footer .copyright p {
  font-weight: 900;
  padding: 10px 0;
}