@charset "utf-8";

/*=======================================
top
=======================================*/

.dlc-main__wrapper {
  position: relative;
  background: none;
  height: 400px;
}


.dlc-main__title {
  position: absolute;
  top: 200px;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 700px;
  filter: drop-shadow(0 0 10px #000);
}

.dlc-main__title img {
  width: 100%;
}

.dlc-main__bg {
/*  background-image: url(../images/introduction/img001.jpg);
*/  width: 100%;
  height: 100%;
/*  background-size: 100%;
  background-position: center;*/
}


.dlc-main__bg span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  opacity: 0;
  animation: front-anime 42s linear infinite 0s;
  z-index: -1;
  overflow: hidden;
  display: block;
}

.dlc-main__bg span:nth-child(1) {
  background-image: url(../images/dlc/story/ss-story002.jpg);
  animation-delay: 0s;
  background-position: top;
}
.dlc-main__bg span:nth-child(2) {
  background-image: url(../images/dlc/characters/ss-levy001.jpg);
  animation-delay: 7s;
}
.dlc-main__bg span:nth-child(3) {
  background-image: url(../images/dlc/characters/ss-lyon002.jpg);
  animation-delay: 14s;
}
.dlc-main__bg span:nth-child(4) {
  background-image: url(../images/dlc/characters/ss-lisanna002.jpg);
  animation-delay: 21s;
  background-position: top;
}
.dlc-main__bg span:nth-child(5) {
  background-image: url(../images/dlc/characters/ss-elfman002.jpg);
  animation-delay: 28s;
}
.dlc-main__bg span:nth-child(6) {
  background-image: url(../images/dlc/costumes/c02_01.jpg);
  animation-delay: 35s;
  background-position: top;
}

@keyframes front-anime {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
  }
  8% {
    transform: scale(1.01);
    opacity: 1;
    animation-timing-function: ease-out;
  }
  16% {
    transform: scale(1.02);
    opacity: 1;
  }
  25% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% { opacity: 0 }
}



.attend--text {
  font-size: 0.7em;
  margin-top: 4px;
  line-height: 1.4;
}


p {
  font-size: 1.3em;
}


/*=======================================
section
=======================================*/


#dlc .article__main {
  margin-top: 200px;
  margin-bottom: 100px;
}

#dlc .article__main:nth-child(1) {
  margin-top: 60px;
}



.dlc__section {
  background-image: url(../images/common/commn-bg01.jpg);
  position: relative;
  color: #000;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dlc__section::before {
  content: '';
  background-image: url(../images/common/common-ornament-head.png);
  height: 50px;
  width: 100%;
  display: block;
}

.dlc__section::after {
  content: '';
  background-image: url(../images/common/common-ornament-foot.png);
  height: 50px;
  width: 100%;
  display: block;
}



.article__contents {
  text-align: left;
}


.article__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.updates__text {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.updates__text p {
  font-size: 1.2em;
  line-height: 1.4;
}

.updates__text h5 {
  font-size: 1.2em;
  height: 35px;
  line-height: 30px;
  margin: 10px auto 20px auto;
  position: relative;
  display: inline-block;
  letter-spacing: 0.1em;
  color: rgba(75,0,0,0.8);
  display: block;
  border-bottom: 1px solid rgba(75,0,0,0.8);
  font-weight: 700;
}

.updates__contests {
  display: flex;
  justify-content: space-between;
}


.updates__contests p {
  width: 57%;
}


.updates__image-area {
  width: 40%;
}

.updates__image-area img {
  width: 100%;
}




/*=======================================
Contents
=======================================*/


.dlc--wrapper {}




.tab--area {
  color: #fff;
  display: flex;
  justify-content: space-between;
}

.dlc--wrapper input[type="radio"]{ display:none; }

.tab--area label {
  width: 24%;
  line-height: 40px;
  height: 40px;
  background: rgba(75,0,0,0.6);
  color: #fff;
  border-radius: 20px;
  font-weight: bold;
  position: relative;
  transition: .3s all;
  text-align: center;
}

.tab_panel { display: none; transition: .3s all; }


#tab1:checked ~ .tab--area .tab1_label { background:#900; }
#tab1:checked ~ .tab--area .tab1_label::before { content: ""; position: absolute; top: 100%; left: 50%; margin-left: -15px; border: 15px solid transparent; border-top: 15px solid #900; }
#tab1:checked ~ .panel--area #panel1 { display:block; }
#tab2:checked ~ .tab--area .tab2_label { background:#900; }
#tab2:checked ~ .tab--area .tab2_label::before { content: ""; position: absolute; top: 100%; left: 50%; margin-left: -15px; border: 15px solid transparent; border-top: 15px solid #900; }
#tab2:checked ~ .panel--area #panel2 { display:block; }
#tab3:checked ~ .tab--area .tab3_label { background:#900; }
#tab3:checked ~ .tab--area .tab3_label::before { content: ""; position: absolute; top: 100%; left: 50%; margin-left: -15px; border: 15px solid transparent; border-top: 15px solid #900; }
#tab3:checked ~ .panel--area #panel3 { display:block; }
#tab4:checked ~ .tab--area .tab4_label { background:#900; }
#tab4:checked ~ .tab--area .tab4_label::before { content: ""; position: absolute; top: 100%; left: 50%; margin-left: -15px; border: 15px solid transparent; border-top: 15px solid #900; }
#tab4:checked ~ .panel--area #panel4 { display:block; }




.dlc--contents {
  margin-top: 30px;
  padding-bottom: 30px;
  background-image: url(../images/common/commn-bg01.jpg);
}



.title {
  font-weight: bold;
  font-size: 2.1em;
  line-height: 1.4;
  border-bottom: 1px solid rgba(75,0,0,0.8);
}


.platforms {
  font-size: 16px;
  margin-bottom: 10px;
  margin-top: 8px;
}

.platforms div {
  margin-right: 10px;
  border-radius: 20px;
  line-height: 20px;
  height: 20px;
  padding: 0 20px;
  color: #fff;
  display: inline;
}


.platforms div.ps4 {
  background-color: #003791;
}

.platforms div.ns {
  background-color: #e60012;
}

.platforms div.st {
  background-color: #00adee;
}

.platforms span {
  margin-right: 20px;
  line-height: 20px;
  height: 20px;
}

.text {
  font-size: 1.2em;
  line-height: 1.4;
}



.image {
  margin: 3% 0 3% 3%;
  width: 31%;
}


.image img {
  width: 100%;
}

.info {
  width: 60%;
  margin: 3% 3% 3% 3%;
  text-align: left;
}


.date {
  font-size: 1em;
  background: rgba(75,0,0,0.6);
  border-radius: 20px;
  color: #fff;
  padding: 6px 12px;
  display: inline-block;
}

.contents {
  display: block;
}

.contents--details {
  display: flex;
  flex-wrap: wrap;
}

.contents--details_text {
  font-size: 1em;
  display: block;
  margin: 2% 3%;
  text-align: left;
  line-height: 1.5;
}

.contents--details_text b {
  font-weight: bold;
  display: block;
  margin-top: 10px;
  display: block;
}

.contents--details div {
  width: 16%;
  margin-left: 3%;
  margin-top: 2%;
  line-height: 1.4;
  font-size: 0.8em;
}

.contents--details div a {
  color: #000;
}

.contents--details div img {
  width: 100%;
}

.contents .contents--title {
  text-align: left;
  margin-left: 3%;
  border-left: #900 solid 5px;
  padding-left: 10px;
  font-weight: bold;
  font-size: 1.2em;
}


.contents--details_info {
  margin: 2% 3% 0 3%;
  text-align: left;
}





/*=======================================
hover
=======================================*/

@media screen and (min-width:961px) {

  .tab--area label:hover {
    background: #900;
    cursor: pointer;
  }


}


/*=======================================
SP
=======================================*/


@media screen and (max-width:768px) {

  .dlc-main__wrapper {
    min-width: initial;
    height: 200px;
  }

  .dlc-main__title {
    top: 50px;
    width: 70%;
  }

  .tab--area label {
    font-size: 3.2vw;
  }

  .tab_panel {
    width: 94%;
    margin: 0 auto;
  }

  .dlc--contents {
    padding-top: 20px;
  }

  .image {
    margin: 0 3% 3%;
    width: 94%;
  }

  .info {
    width: 94%;
  }

  .title {
    font-size: 1.4em;
  }

  .text {
    font-size: 0.8em;
  }

  .platforms div {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 1em;
  }

  .contents--details div {
    width: 29%;
    font-size: 0.6em;
  }

  .updates__text {
    width: 94%;
    margin: 0 auto;
  }

  .updates__text p {
    font-size: 1em;
  }

  .updates__contests {
    display: block;
  }

  .updates__contests p {
    width: 100%;
    font-size: 1em;
  }

  .updates__image-area {
    width: 100%;
  }

}