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: #A36D4E;
  --accent-color: #D1AB87;
  --third-color: #D9AD87;
  --bg-color: #eeedf5;
}

img {
  object-fit: contain;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

h1 {
  color: var(--accent-color);
  font-size: xx-large;
  letter-spacing: 7px;
  margin-top: 2vh;
}

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

main {
  display: flex;
}
@media (max-width: 768px) {
  main {
    display: block;
  }
}

#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.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.content-body {
  width: 100vw;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .content-body {
    flex-direction: column;
    margin-top: 0;
  }
}

.header img {
  position: sticky;
  height: 100vh;
  top: 0px;
}
@media (max-width: 768px) {
  .header {
    height: fit-content;
    max-height: fit-content;
    margin-top: 0;
  }
  .header img {
    position: relative;
    height: auto;
    width: 100vw;
    margin-top: 0;
  }
}

.content {
  width: 100%;
}

.catch {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  height: 90vh;
  margin: 0 auto;
  padding: 5vh 5vw;
  background-color: var(--main-color);
}
.catch h2.title {
  text-align: left;
  letter-spacing: 5px;
  color: white;
  writing-mode: vertical-rl;
  font-size: xx-large;
}
.catch p {
  position: relative;
  text-align: left;
  letter-spacing: 5px;
  max-width: 100%;
  color: white;
  writing-mode: vertical-rl;
  line-height: 1.8;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .catch {
    height: auto;
    padding: 5vh 2vw;
    justify-content: space-evenly;
  }
  .catch p {
    line-height: 1.6;
    align-content: center;
    max-width: fit-content;
    min-width: auto;
    margin-right: 0;
  }
  .catch h2.title {
    font-size: x-large;
  }
}

.information {
  position: relative;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .information {
    width: 90%;
    margin: 0 auto;
  }
}

.cd-info {
  position: relative;
  max-width: 100%;
  color: var(--main-color);
  margin-top: 2vh;
}
.cd-info .cd-info-item {
  text-align: left;
  margin-top: 20px;
}
.cd-info .cd-info-item .head {
  font-size: small;
}
.cd-info .cd-info-item .body {
  font-size: large;
  font-weight: bold;
}
.cd-info .notice {
  margin-top: 2vh;
  border: 1px solid var(--main-color);
  padding: 3vh 2vw;
}
@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%;
  }
  .cd-info .cd-info-text {
    margin-top: 30px;
  }
  .cd-info .date-price .body {
    font-size: large;
  }
}

.track {
  position: relative;
  margin: 0 auto;
}
.track h1 {
  margin: 2vh 0;
}
.track .tracklist {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  margin: 0 auto;
  color: var(--main-color);
}
.track .track-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 20px;
}
.track .num {
  text-align: center;
  font-weight: bold;
  font-size: x-large;
  width: 10%;
  letter-spacing: 4px;
}
.track .track-info {
  text-align: left;
  margin-left: 12px;
}
.track .track-info .track-title {
  font-weight: bold;
  font-size: large;
  letter-spacing: 2px;
}
.track .track-info .track-maker {
  font-size: medium;
  margin: 5px 5px 0 0;
  color: var(--accent-color);
}

.movie {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 80%;
  margin: 0 auto;
}
.movie h1 {
  width: 100%;
}
@media (max-width: 768px) {
  .movie {
    width: 90%;
  }
}

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

.youtube:nth-child(even) {
  margin: 10px 0 10px auto;
}
@media (max-width: 768px) {
  .youtube:nth-child(even) {
    margin: 0 auto;
  }
}

.shop {
  width: 80%;
  margin: 30px auto 0 auto;
}
@media (max-width: 768px) {
  .shop {
    width: 90%;
    margin-top: 20px;
  }
}

.shops {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 1vh;
}
.shops a {
  display: block;
  width: 100%;
  color: ghostwhite;
  background: var(--accent-color);
  margin: 5px 1%;
  padding: 10px 0;
  text-align: center;
  transition: 0.5s all;
}
.shops a:hover {
  background-color: ghostwhite;
  border: var(--accent-color);
  border-radius: 5px;
  color: var(--accent-color);
  letter-spacing: 0.15em;
}
.shops a.shop-none {
  visibility: hidden !important;
  height: 0;
}
@media (max-width: 768px) {
  .shops {
    width: 100%;
    justify-content: space-between;
  }
  .shops h1 {
    margin-bottom: 20px;
  }
  .shops a {
    width: 48%;
    margin: 5px 0;
    font-size: small;
  }
  .shops a:nth-child(n) {
    margin-top: 10px;
  }
  .shops .shop-none {
    display: none;
  }
}

.special {
  position: relative;
  margin: 0 auto;
  width: 80%;
}
.special .special-body {
  display: flex;
  margin: 20px auto;
  background-color: ghostwhite;
  color: var(--accent-color);
  justify-content: space-evenly;
}
.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;
  }
  .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;
  }
}

.staff {
  position: relative;
  display: flex;
  color: white;
  background-color: var(--main-color);
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}
.staff h1 {
  display: block;
  margin: 1vh auto 0 auto;
  color: white;
  text-align: left;
  width: 80%;
}
.staff a {
  display: block;
  width: max-content;
  color: white;
  line-height: 1.8;
}
.staff .staff-list {
  display: flex;
  flex-direction: row;
  justify-content: start;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 80%;
}
.staff .staff-line {
  width: 25%;
}
.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: white;
}
@media (max-width: 768px) {
  .staff {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .staff h1 {
    width: 90%;
  }
  .staff .staff-list {
    width: 90%;
    justify-content: space-between;
  }
  .staff .staff-line {
    width: 45%;
  }
}

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;
}