@charset "UTF-8";

main {
  width: 690px;
  height: 100%;
  box-sizing: inherit;
  font-family: 'Montserrat', sans-serif;
  margin: 0 auto;
  flex: 1; /* footerを下部に固定 */
}

.inner {
  width: 100%;
  margin: 0 auto;
}

P {
  line-height: 1.4;
}

.text-L {
  padding: 8px 0;
  font-size: 20px;
  font-weight: 700;
  background: #A35CFF;
  background: linear-gradient(90deg,rgba(163, 92, 255, 1) 0%, rgba(80, 76, 255, 1) 50%, rgba(78, 223, 255, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-M {
  padding: 4px 0;
  font-size: 16px;
  font-weight: 400;
}

.KV {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.merit {
  padding: 10px 0 30px;
  margin: 0 auto;
}

.anime {
  /* overflow: hidden; */
  position: relative;
}

.anime-img01 {
  width: 100%;
  height: auto;
}

.anime-img02 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 50%;
  height: auto;
  margin: 0 auto;
  z-index: 10;
}

.Ready-to-Experience {
  padding: 24px 0 10px;
  box-sizing: border-box;
}

.ready-txt-blue {
  color: #514BFC;
  font-size: 20px;
  font-weight: 700;

  .impact-txt{
    font-size: 30px;
  }
}

/* fadeUp */

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeUp2 {
  animation-name: fadeUpAnime2;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime2 {
  from {
    opacity: 0;
    transform: translateY(300px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger, .fadeUpTrigger2 {
  opacity: 0;
}

.Site-btn {
  position: sticky;
  bottom: 50px;
  z-index: 20;
}

.Site-btn a {
  color: #fff;
  background: rgb(80,76,255);
  background: linear-gradient(90deg, rgba(80,76,255,1) 0%, rgba(152,168,255,1) 100%);
  width: 90%;
  max-width: 400px;
  height: auto;
  padding: 20px 16px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 0;
  font-weight: 700;
  box-shadow: 0px 0px 15px -5px #8787a8;
  border-radius: 20px;
  border: solid 2px #fff;
}

.btn-on-text {
  margin-bottom: 20px;
  font-size: 16px;
}

/* header */
header {
  /* box-sizing: border-box; */
  height: 45px;
  max-width: 690px;
  width: 100%;
  /* width: 100%; */
  background-color: #fff;
  /* z-index: 999; */
  margin: 0 auto;
}

.header-inner {
  width: 100%;
  height: 45px;
  margin: 0 auto;
  padding: 8px;
  display: flex;
  justify-content: flex-start;
}

.event-body h1 {
  width: 100px;
  height: auto;
}

footer {
  padding: 12px 0;
}


/* @media screen and (max-width: 690px) {

  main {
    width: 100%;
  }

  .inner {
    width: 90%;
  }

  .title-item {
    width: 70%;
  }

} */

/* 基本設定 */
* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  display: block;
}

html {
  font-size: 62.5%;
}

body {
  color: #0f0f12;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  width: 100%;
  height: 100%;
  letter-spacing: normal;
  background: #fff;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.title-item-area {
  display:flex;
  flex-wrap:wrap;
  margin: 30px auto 0;
}
/*作品タイトル*/
.featured-titile-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;

  p {
    font-size: 20px;
    font-weight: 700;
    padding: 0 10px;
    box-sizing: border-box;
  }

  img {
    width: 10%;
  }

  @media screen and (max-width: 751px) {
  img {
    width: 15%;
  }
  }

}

/* 作品の枠 */
.title-item {
  /* width: calc(50% - 8px); */
  width: 80%;
  height: auto;
  margin: 10px auto 20px;
  padding: 15px;
  box-sizing: border-box;
  color: #494964;
  border: 1px solid #98A8FF; /* 枠線の色 */
  position: relative;
  border-radius: 4px;
  background: #EDF1FF;
  display: flex; /* 押せる範囲を枠いっぱいに広げる */
  text-align: left;

  a {
    padding: 12px;
    color: #494964;
  }

  @media screen and (max-width: 750px) {
    padding: 10px;
  }

}

.hyoshi-and-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
}

.hyoshi {
  width: 50%;

}

.hyoshi img {
  width: 100%;
  border-radius: 4px;
}

.text-box {
  display: grid;
  align-items: stretch;
  padding: 0 0 0 12px;
  box-sizing: border-box;
  width: 50%;
}

.detail-txt {
  display: inline-block;
  margin: 4px 0;
}

.genre {
  display: inline-block;
  font-size: 14px;
  font-size: 1.0rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1;
  padding: 6px 8px;
  box-sizing: border-box;
  background: #7A87FF;
  border-radius: 4px;
}

.main-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;

  @media screen and (max-width: 500px) {
    font-size: 18px;
  }
}

.read-btn {
  display: grid;
  align-items: end;
}

.title-sokyu {
  margin-bottom: 0;
  margin-top: 10px;
  color: #fff;
  background: #FF7CFB;
  background: linear-gradient(90deg,rgba(255, 124, 251, 1) 0%, rgba(226, 42, 202, 1) 100%);
  width: 100%;
  height: auto;
  padding: 20px 16px;
  font-size: 16px;
  line-height: 0;
  font-weight: 700;
  box-shadow: 0px 0px 10px -5px #76665a;
  border-radius: 20px;
  border: solid 2px #fff;
  text-align: center;
}

.Publisher-copyright {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;

  @media screen and (max-width: 750px) {
    font-size: 12px;
  }

}

@media screen and (max-width: 690px) {

  main {
    width: 100%;
  }

  .inner {
    width: 90%;
  }

  .title-item {
    width: 90%;
  }

}

/*無限スライダー*/
.comics {
  padding: 20px 0;
  box-sizing: border-box;
  background: #1C1C2C;
}

.comics-title {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
}
.comics-txt p{
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 10px 0 0;
}
.comics-txt p.note-txt {
  font-size: 14px;
  font-weight: 500;
}
.slide {
  margin: 0 5px 10px;
}

/*ギフトコード*/
.giftcode {
  background-color: #F3ECFF;
  padding: 30px 20px 20px;
  box-sizing: border-box;
  margin: 20px auto;
  color: #282842;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
}

.giftcode-title {
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 20px;
  box-sizing: border-box;

  span {
    display: block;
    font-size: 26px;
  }
}

.giftcode-area{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-radius: 5px;
  border: 2px solid #504CFF;
  background-color: #fff;
  font-size: 26px;
  font-weight: 600;
  margin: 0 auto 10px;
  max-width: 480px;

  .code-title {
    display: inline-block;
    background-color: #504CFF;
    color: #fff;
    padding: 10px 0;
    box-sizing: border-box;
    text-align: center;
    width: 30%;
  }

  .code-name {
    display: inline-block;
    margin: 0 auto;
    color: #504CFF;
    padding: 10px 0;
    box-sizing: border-box;
    width: 70%;
  }
}

.limit-txt {
  span{
    display: block;
    font-size: 20px;
  }

}

.slider-gift {
  li img {
    margin: 0 auto;
    width: 100%;

    @media screen and (min-width: 690px) {
      max-width: 500px;
    }

  }
}

/*スライダーカスタム*/
.slick-dots {
  bottom: 17px !important;

  @media screen and (min-width: 480px) {
    bottom: 6% !important;
  }
}
.slick-dots li {
  margin: 0 3px !important;
}
.slick-dots li button:before {
  font-size: 10px !important;
  color: #282842 !important;
}
.slick-dots li.slick-active button:before {
  color: #282842 !important;
  opacity: 1 !important;
}
.slick-prev {
  left: 16% !important;

  @media screen and (max-width: 689px) {
    left: 8% !important;
  }
}
.slick-next {
  right: 19% !important;

  @media screen and (max-width: 689px) {
    right: 10% !important;
  }
}
.slick-prev,
.slick-next {
  top: 54% !important;
  z-index: 1;
}
.slick-prev:before,
.slick-next:before {
  color: #282842 !important;
  font-size: 40px !important;
  opacity: 1 !important;

  @media screen and (max-width: 689px) {
  font-size: 34px !important;
  }
}
