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: #3f536b;
  --bg-color: #3f3c42;
}

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(--text-color);
  background-color: var(--main-color);
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media (max-width: 768px) {
  body {
    width: 100vw;
  }
}

main {
  overflow-x: hidden;
}
.main-visual-pc {
  display: block;
}
.main-visual-pc img.img-main-pc {
  display: block;
  height: 100vh;
  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: 80vh;
    background: url("../img/main-sp.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: 0;
    width: 100vw;
  }
}

.information {
  background-color: var(--accent-color);
  padding-bottom: 10vh;
}
.information img.img-catch {
  display: block;
  margin: 5vh auto 0 auto;
  padding-top: 5vh;
  width: 60vw;
}
.information .introduction {
  margin: 5vh auto;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: larger;
}
.information .introduction span.accent {
  color: #feecd2;
}
.information .boxes {
  display: flex;
  width: 57vw;
  justify-content: space-evenly;
  margin: 0 auto;
}
.information .box {
  width: 17vw;
  border-radius: 20px;
  text-align: center;
  background-color: #feecd2;
}
.information .box .box-head {
  background-color: var(--text-color);
  color: white;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 12px 0;
  font-size: larger;
}
.information .box .box-body {
  display: flex;
  height: 100px;
  flex-direction: column;
  justify-content: center;
}
.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: 5vh;
  }
  .information img.img-catch {
    width: 92vw;
    margin: 0 auto;
  }
  .information .introduction {
    width: 90vw;
    font-size: medium;
  }
  .information .boxes {
    width: 90vw;
    flex-direction: column;
  }
  .information .box {
    width: 100%;
    margin-bottom: 12px;
  }
  .information .box .box-head {
    font-size: medium;
  }
  .information .box .box-body {
    height: fit-content;
    padding: 12px 0;
  }
}

.tracklist {
  background: url(../img/grid.png);
  background-size: 50%;
  background-position: center;
  background-repeat: repeat;
  padding-bottom: 5vh;
}
.tracklist h1 {
  padding-top: 5vh;
  margin: 0 auto;
  width: 45vw;
  color: var(--text-color);
}
.tracklist .tracklist-body {
  margin: 5vh auto;
  padding: 1em 3em;
  background-color: #ffffcc;
  transform: rotate(-2deg);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
  width: 40vw;
}
.tracklist .tape {
  display: block;
  background-color: #ccb;
  opacity: 0.5;
  transform: rotate(2deg);
  width: 40%;
  height: 45px;
  margin: -2em auto 0 auto;
  border-left: 3px dotted rgba(0, 0, 0, 0.1);
  border-right: 3px dotted rgba(0, 0, 0, 0.1);
}
.tracklist .num {
  font-size: small;
}
.tracklist .licence {
  font-size: small;
  margin: 0px 0px 10px 30px;
}
.tracklist .title {
  font-size: x-large;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .tracklist h1 {
    width: 100%;
    text-align: center;
  }
  .tracklist .tracklist-body {
    transform: rotate(-1deg);
    padding: 1em;
    width: 60vw;
  }
  .tracklist .tape {
    transform: rotate(1deg);
  }
  .tracklist .title {
    font-size: large;
  }
}

.listen {
  padding: 5vh 0;
  background-color: var(--accent-color);
}
.listen .youtube {
  width: 60vw;
  height: 33.75vw;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .listen .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: 50vw;
  justify-content: space-evenly;
  margin: 0 auto;
}
.shops a.shop-link {
  display: block;
  padding: 12px 0px;
  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: var(--text-color);
  color: white;
  padding: 5vh 0;
}
.staff .staff-list {
  display: flex;
  width: 60vw;
  margin: 0 auto;
}
.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: var(--text-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;
}