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: #bfdeae;
  --accent-color: #f19ca6;
  --text-color: white;
  --bg-color: #005bac;
}

img {
  object-fit: contain;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

body {
  margin: 0 auto;
  letter-spacing: 1.2px;
  color: var(--text-color);
  background-color: var(--bg-color);
  font-family: "Zen Old Mincho", serif;
}
@media (max-width: 768px) {
  body {
    width: 100vw;
  }
}

main {
  overflow-x: hidden;
}
.main-visual-pc {
  display: block;
  height: 80vh;
}
.main-visual-pc img.img-main-pc {
  display: block;
  height: 100%;
  width: 70%;
  object-fit: cover;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .main-visual-pc {
    display: none;
  }
}

.main-visual-sp {
  display: none;
}
@media (max-width: 768px) {
  .main-visual-sp {
    display: block;
    position: relative;
    height: 85vh;
    background: url("../img/main-pc.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
  }
  .main-visual-sp img.img-main-sp {
    height: 100%;
  }
  .main-visual-sp img.img-main-logo {
    position: absolute;
    bottom: 5%;
    width: 96vw;
    margin-left: 2vw;
    mix-blend-mode: overlay;
  }
}

.information {
  padding-bottom: 10vh;
}
.information h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20vh;
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 0.5rem;
  transform: skew(-10deg, 0deg);
}
.information .introduction {
  margin: 0 auto 5vh auto;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: larger;
}
.information .introduction span.accent {
  color: #feecd2;
}
.information .boxes {
  display: flex;
  width: 80vw;
  justify-content: space-evenly;
  margin: 0 auto;
}
.information .box-left {
  width: 35%;
}
.information .box-left img {
  width: 100%;
}
.information .box-right {
  width: 50%;
}
.information .box-right .box-head {
  font-size: small;
}
.information .box-right .box-body {
  margin: 4px 0 8px 0;
  font-size: x-large;
}
.information .box-right hr {
  display: block;
  margin-bottom: 24px;
}
.information a {
  color: white;
}
.information .jacket-link {
  display: block;
  margin: 2vh auto 0 auto;
  color: white;
  text-decoration: underline;
  text-align: center;
}
@media (max-width: 768px) {
  .information {
    padding-bottom: 2vh;
  }
  .information .introduction {
    width: 96vw;
    font-size: medium;
  }
  .information h1 {
    font-size: 3.5rem;
    height: 15vh;
    text-align: center;
    justify-content: flex-end;
  }
  .information .boxes {
    width: 90vw;
    flex-direction: column;
  }
  .information .box-left {
    width: 90vw;
  }
  .information .box-right {
    width: 90vw;
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .information .box-right .box-head {
    font-size: medium;
  }
  .information .box-right .box-body {
    height: fit-content;
  }
}

.tracklist {
  padding-bottom: 5vh;
}
.tracklist h1 {
  padding-top: 5vh;
  margin: 0 auto;
  color: var(--text-color);
  font-size: 3rem;
  text-align: center;
}
.tracklist .tracklist-body {
  margin: 5vh auto;
  padding: 1em 3em;
  width: 60vw;
}
.tracklist .track {
  display: flex;
  justify-content: space-between;
  flex-grow: 2;
  align-items: baseline;
  margin-bottom: 8px;
}
.tracklist .num {
  font-size: small;
  width: 20%;
}
.tracklist .title {
  font-size: x-large;
  text-align: center;
}
.tracklist .artist {
  width: 20%;
  text-align: right;
}
.tracklist .youtube {
  width: 60vw;
  height: 33.75vw;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .tracklist h1 {
    width: 100%;
    text-align: center;
    padding-top: 0;
    font-size: 2.5rem;
  }
  .tracklist .tracklist-body {
    width: 92vw;
    padding: 0;
  }
  .tracklist .track {
    flex-direction: column;
  }
  .tracklist .num {
    width: 100%;
  }
  .tracklist .title {
    font-size: large;
    width: 100%;
  }
  .tracklist .artist {
    width: 100%;
  }
  .tracklist .youtube {
    width: 90vw;
    height: 50.625vw;
  }
}

.shops {
  background-color: white;
  padding: 5vh 0;
}
.shops h2 {
  margin: 0 auto 24px auto;
  color: var(--accent-color);
  font-size: xx-large;
  text-align: center;
}
.shops .shop-links {
  display: flex;
  width: 66vw;
  justify-content: space-evenly;
  margin: 0 auto;
}
.shops a.shop-link {
  display: block;
  padding: 12px 10px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 12px;
  border: var(--accent-color) 1px solid;
  width: 20%;
  text-align: center;
  transition: all 0.5s;
}
.shops a.shop-link :hover {
  border: none;
  background-color: var(--accent-color);
  color: white;
}
@media (max-width: 768px) {
  .shops .shop-links {
    width: 92vw;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .shops a.shop-link {
    width: 40vw;
    padding: 16px 10px;
    margin-bottom: 12px;
  }
}

.staff {
  background-color: #00294d;
  color: white;
  padding: 5vh 0;
}
.staff .staff-list {
  display: flex;
  width: 60vw;
  margin: 0 auto;
  justify-content: center;
}
.staff .staff-block {
  width: 20vw;
}
.staff img.img-camehira {
  display: block;
  width: 80%;
  margin: 0 auto;
}
.staff p.role {
  font-size: smaller;
}
.staff a.name {
  display: block;
  font-size: large;
  margin-bottom: 12px;
  color: white;
}
@media (max-width: 768px) {
  .staff .staff-list {
    width: 90vw;
    flex-direction: column;
  }
  .staff .staff-block {
    width: 100%;
  }
  .staff img.img-camehira {
    width: 50%;
  }
}

footer {
  position: relative;
  width: 100%;
  background-color: #00294d;
  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;
}