@charset "utf-8";
.logo {
  margin: 0;
  text-align: center;
  filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff);
}

.twitterButton {
  position: fixed;
  top: 0;
  left: 0;
  right: -700px;
  margin: 0 auto;
  width: 50px;
  z-index: 100;
}


@media screen and (max-width: 899px){
  .logo {
    margin-top: 30px;
  }

  .twitterButton {
    right: 10px;
    left: auto;
    width: auto;
}
}



.cube {
  margin: 20px 0;
  text-align: center;
}

.mainCatch {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}

@media screen and (max-width: 899px){
  .mainCatch {
    font-size: 1.5rem;
  }
}

.releaseDate {
  font-size: 4.8rem;
  color: #d02674;
  font-style: italic;
  font-family: "Josefin Sans", sans-serif;
  text-shadow: 0 0 2px #fff,0 0 2px #fff,0 0 2px #fff,0 0 2px #fff;
  text-align: center;
  margin: 0;
  line-height: 1;
}

@media screen and (max-width: 899px){
  .releaseDate {
    font-size: 3rem;
  }
}

.diamondList>li::before {
  content:"◆";
}

.diamondList>li {
  display: flex;
}

.detailsBox {
  margin: 10px;
  background: rgba(255, 255, 255, 0.6);
  padding: 10px 50px 20px;
}

@media screen and (max-width: 899px){
  .detailsBox {
    margin: 5px;
    background: rgba(255, 255, 255, 0.6);
    padding: 5px 25px 10px;
  }
}

.buyList {
  display: flex;
  justify-content: space-between;
}

.buyList>li {
  width: 48%;
  position: relative;
}

.buyList>li::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
  border-top: 8px solid transparent;
  border-right: 8px solid #ca136f;
  border-bottom: 8px solid #ca136f;
  border-left: 8px solid transparent;
  z-index: 1;
}

.buyList>li a{
  display: block;
  height: 100%;
  background: #fff;
  padding: 20px;
  text-align: center;
  position: relative;
}

.songList {
  padding-left: 2em;
}

.songList>li{
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.3em;
}

.songList__artist {
  font-size: 1.4rem;
  font-weight: 400;
}

@media screen and (max-width: 899px){
  .songList__artist {
    display: block;
  }
}

.songList__artist::before {
  content:"/";
  display: inline-block;
  margin: 0 0.2em 0 1em;
}

.tokutenTitle {
  font-size: 3rem;
  font-weight: 900;
  color: #ca136f;
  word-break:break-word;
  line-height: 1.2;
  margin-bottom: 0;
}

@media screen and (max-width: 899px){
  .tokutenTitle {
    font-size: 2rem;
  }
}

.tokutenSongList dt{
  font-weight: 900;
  font-size: 1.8rem;
}

@media screen and (max-width: 899px){
  .tokutenSongList dt{
    font-size: 1.6rem;
  }
}

.tokutenSongList dd{
  margin: 0 0 1.5em;
}

.tokutenList>li{
  margin: 10px 10px 25px;
  background: rgba(255, 255, 255, 0.6);
  padding: 10px 10px 20px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 899px){
  .tokutenList>li{
    text-align: center;
    padding: 5px 10px 10px;
    display: block;
  }
}

.tokutenList>li>div{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}


@media screen and (max-width: 899px){
  .tokutenList>li>div{
    align-items: center;
  }
}


.tokutenList>li figure{
  margin-top: 20px;
}

.tokutenList>li h3{
  color: #d02674;
  font-size: 2rem;
  margin: 0;
}

.tokutenList>li p{
  font-weight: 600;
}

.buyLink {
  position: relative;
  display: inline-block;
  transition: 0.5s;
  margin-top: auto;
}

.buyLink a{
  color: #fff;
  text-decoration: none;
  background: #000;
  padding: 0.3em 1em 0.4em;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.buyLink a::before{
  content: "▶";
  display: inline-block;
  margin-right: 0.5em;
}

.buyLink::after{
  content: "";
  position: absolute;
  background: #d02674;
  width: 100%;
  height: 130%;
  right: -4px;
  bottom: -10px;
}

.buyLink:hover {
  opacity: 0.6;
}