@-webkit-keyframes in_contents {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes in_contents {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
  opacity: 0;
  background: url(../img/bg.jpg) top center;
  -webkit-animation: in_contents 0.5s cubic-bezier(0.5, 1, 0.89, 1) 0.5s forwards;
          animation: in_contents 0.5s cubic-bezier(0.5, 1, 0.89, 1) 0.5s forwards;
}

body.is-active {
  opacity: 1;
}

.l-wrapper {
  overflow: hidden;
}

.p-hero {
  position: relative;
  padding-top: 8rem;
}

@media screen and (max-width: 750px) {
  .p-hero {
    padding-top: 6rem;
  }
}

.p-hero::before {
  content: "";
  background: url(../img/bg_deco_03.png) no-repeat top left;
  background-size: contain;
  width: 40%;
  height: 100%;
  position: absolute;
  top: -6%;
  left: -3%;
}

@media screen and (max-width: 750px) {
  .p-hero::before {
    width: 60%;
    height: 50%;
    top: -1%;
    left: -5%;
  }
}

.p-hero .p-title_wrap {
  position: relative;
}

.p-hero .p-title_wrap .p-title {
  width: 600px;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  .p-hero .p-title_wrap .p-title {
    width: 90%;
  }
}

.p-hero .p-title_wrap .p-lead {
  text-align: center;
  padding-top: 2rem;
  font-size: 20px;
}

@media screen and (max-width: 750px) {
  .p-hero .p-title_wrap .p-lead {
    font-size: 1.3rem;
  }
}

.p-hero .p-title_wrap::before {
  content: "";
  background: url(../img/title_bg.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  z-index: -1;
}

@media screen and (max-width: 750px) {
  .p-hero .p-title_wrap::before {
    width: 400px;
    height: 400px;
  }
}

@media screen and (min-width: 751px) {
  .p-hero .p-chara {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 750px) {
  .p-hero .p-chara {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 3rem;
  }
}

@media screen and (min-width: 751px) {
  .p-hero .p-chara_01 {
    width: 230px;
    position: absolute;
    top: 9rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-left: -390px;
  }
}

@media screen and (max-width: 750px) {
  .p-hero .p-chara_01 {
    position: relative;
    width: 150px;
  }
}

@media screen and (min-width: 751px) {
  .p-hero .p-chara_02 {
    width: 230px;
    position: absolute;
    top: 9rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-left: 420px;
  }
}

@media screen and (max-width: 750px) {
  .p-hero .p-chara_02 {
    position: relative;
    width: 150px;
  }
}

.p-top {
  position: relative;
  z-index: 1;
}

.p-top::before {
  content: "";
  background: url(../img/bg_deco_01.png) no-repeat top center;
  background-size: contain;
  width: 110%;
  height: 105%;
  position: absolute;
  top: -5%;
  left: -5%;
  z-index: -1;
}

@media screen and (max-width: 750px) {
  .p-top::before {
    background: url(../img/bg_deco_01.png) repeat-y;
    background-size: contain;
    width: 100%;
    height: 100%;
    top: -1%;
    left: 0;
  }
}

.p-top::after {
  content: "";
  background: url(../img/bg_deco_04.png) no-repeat bottom right;
  background-size: contain;
  width: 38%;
  height: 18%;
  position: absolute;
  bottom: -10rem;
  right: -3%;
  z-index: -1;
}

@media screen and (max-width: 750px) {
  .p-top::after {
    width: 60%;
    bottom: -6rem;
    right: -3%;
  }
}

.p-howto {
  position: relative;
  width: 80%;
  max-width: 1000px;
  margin: 10rem auto 0;
  z-index: 1;
}

@media screen and (max-width: 750px) {
  .p-howto {
    width: 92%;
    margin: 4rem auto 0;
  }
}

.p-howto .p-howto_list {
  position: relative;
  background: #fff;
  border: solid #8f2f0f 3px;
  padding: 4rem 8rem 6rem;
  border-radius: 10px;
}

@media screen and (max-width: 750px) {
  .p-howto .p-howto_list {
    padding: 3rem 2rem 3rem;
    border: solid #8f2f0f 2px;
  }
}

.p-howto .p-howto_list::before {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;
  border: 2px solid #8f2f0f;
  pointer-events: none;
  z-index: 1;
  border-radius: 8px;
}

@media screen and (max-width: 750px) {
  .p-howto .p-howto_list::before {
    top: 3px;
    right: 3px;
    bottom: 3px;
    left: 3px;
    border: 1px solid #8f2f0f;
  }
}

.p-howto .p-howto_list dl dt {
  width: 250px;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  .p-howto .p-howto_list dl dt {
    width: 150px;
  }
}

.p-howto .p-howto_list dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: #8f2f0f solid 1px;
  margin-top: 4rem;
  padding-bottom: 4rem;
}

@media screen and (max-width: 750px) {
  .p-howto .p-howto_list dl dd {
    font-size: 13px;
    margin-top: 2em;
    padding-bottom: 2rem;
  }
}

.p-howto .p-howto_list dl dd .p-howto_no {
  position: relative;
  color: #fff;
  z-index: 1;
  padding-left: 10px;
}

@media screen and (max-width: 750px) {
  .p-howto .p-howto_list dl dd .p-howto_no {
    padding-left: 8px;
  }
}

.p-howto .p-howto_list dl dd .p-howto_no::before {
  content: "";
  background: #8f2f0f;
  width: 29px;
  height: 29px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: -1;
}

@media screen and (max-width: 750px) {
  .p-howto .p-howto_list dl dd .p-howto_no::before {
    width: 22px;
    height: 22px;
  }
}

.p-howto .p-howto_list dl dd .p-howto_txt {
  padding-left: 30px;
}

@media screen and (max-width: 750px) {
  .p-howto .p-howto_list dl dd .p-howto_txt {
    padding-left: 20px;
  }
}

.p-howto .p-howto_special {
  text-align: center;
  margin-top: 8rem;
}

@media screen and (max-width: 750px) {
  .p-howto .p-howto_special {
    margin-top: 5rem;
  }
}

.p-howto .p-howto_special-txt {
  font-size: 18px;
}

@media screen and (max-width: 750px) {
  .p-howto .p-howto_special-txt {
    font-size: 13px;
  }
}

.p-howto .p-howto_special-img {
  width: 50%;
  margin: 4rem auto 0;
}

@media screen and (max-width: 750px) {
  .p-howto .p-howto_special-img {
    width: 100%;
    margin: 2rem auto 0;
  }
}

.p-howto .p-howto_special-att {
  font-size: 13px;
  margin-top: 3rem;
}

@media screen and (max-width: 750px) {
  .p-howto .p-howto_special-att {
    font-size: 11px;
    margin-top: 2rem;
  }
}

.p-content__block.--paper {
  display: none;
  position: relative;
}

.p-content__block.--paper::before {
  content: "";
  background: url(../img/bg_deco_02.png) no-repeat;
  background-size: contain;
  width: 110%;
  height: 100%;
  position: absolute;
  top: 5%;
  left: -5%;
  z-index: -1;
}

@media screen and (max-width: 750px) {
  .p-content__block.--paper::before {
    background: url(../img/bg_deco_02.png) no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    top: -1%;
    left: 0;
  }
}

.p-content__block.--paper::after {
  content: "";
  background: url(../img/bg_deco_03.png) no-repeat;
  background-size: contain;
  width: 40%;
  height: 100%;
  position: absolute;
  top: -6%;
  left: -3%;
  z-index: -1;
}

@media screen and (max-width: 750px) {
  .p-content__block.--paper::after {
    width: 60%;
    top: -1%;
    left: -5%;
  }
}

.p-content__block-inner {
  position: relative;
  width: 90%;
  max-width: 110rem;
  margin: 0 auto;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

@media screen and (max-width: 750px) {
  .p-content__block-inner {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.p-episode {
  margin-top: 10.2rem;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  -webkit-filter: blur(5px);
          filter: blur(5px);
  opacity: 0;
  -webkit-transition: opacity 0.5s var(--ease-out-cubic), -webkit-transform 1.2s var(--ease-out-cubic), -webkit-filter 1.2s var(--ease-out-cubic);
  transition: opacity 0.5s var(--ease-out-cubic), -webkit-transform 1.2s var(--ease-out-cubic), -webkit-filter 1.2s var(--ease-out-cubic);
  transition: transform 1.2s var(--ease-out-cubic), filter 1.2s var(--ease-out-cubic), opacity 0.5s var(--ease-out-cubic);
  transition: transform 1.2s var(--ease-out-cubic), filter 1.2s var(--ease-out-cubic), opacity 0.5s var(--ease-out-cubic), -webkit-transform 1.2s var(--ease-out-cubic), -webkit-filter 1.2s var(--ease-out-cubic);
}

@media screen and (max-width: 750px) {
  .p-episode {
    margin-top: 5.9rem;
  }
}

.p-episode.is-active {
  position: relative;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
}

.p-episode__block.--select {
  position: relative;
  padding: 8rem 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#ffd18e), to(#ffa49f));
  background-image: linear-gradient(0deg, #ffd18e, #ffa49f);
  z-index: 0;
  border-top: #b08a3e solid 5px;
  border-bottom: #b08a3e solid 5px;
}

@media screen and (max-width: 750px) {
  .p-episode__block.--select {
    padding: 4rem 0;
  }
}

.p-episode__block.--select::before {
  content: "";
  background: url(../img/bg_ep.png) top center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@media screen and (max-width: 750px) {
  .p-episode__block.--select::before {
    background-size: 400px;
  }
}

.p-episode__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  .p-episode__list {
    width: 90%;
  }
}

.p-episode__list-item {
  position: relative;
  width: 31.8%;
  margin-left: 2.3%;
  border: solid #b08a3e 3px;
  -webkit-transition: -webkit-transform 0.8s var(--ease-out-cubic);
  transition: -webkit-transform 0.8s var(--ease-out-cubic);
  transition: transform 0.8s var(--ease-out-cubic);
  transition: transform 0.8s var(--ease-out-cubic), -webkit-transform 0.8s var(--ease-out-cubic);
}

.p-episode__list-item::before {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;
  border: 1px solid #b08a3e;
  pointer-events: none;
  z-index: 1;
}

@media (hover: hover) {
  .p-episode__list-item:hover {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}

@media screen and (max-width: 750px) {
  .p-episode__list-item {
    width: 48%;
    margin-left: 0;
  }
}

.p-episode__list-item:nth-child(3n-2) {
  margin-left: 0;
}

@media screen and (max-width: 750px) {
  .p-episode__list-item:nth-child(even) {
    margin-left: 4%;
  }
}

.p-episode__list-item:nth-child(n+4) {
  margin-top: 2.5rem;
}

@media screen and (max-width: 750px) {
  .p-episode__list-item:nth-child(n+3) {
    margin-top: 1.2rem;
  }
}

.p-episode__more {
  margin-top: 4.5rem;
}

@media screen and (max-width: 750px) {
  .p-episode__more {
    margin-top: 2rem;
  }
}

.p-episode__more-btn {
  width: 100%;
  margin: 1rem auto 0;
  -webkit-transition: -webkit-transform 0.8s var(--ease-out-cubic);
  transition: -webkit-transform 0.8s var(--ease-out-cubic);
  transition: transform 0.8s var(--ease-out-cubic);
  transition: transform 0.8s var(--ease-out-cubic), -webkit-transform 0.8s var(--ease-out-cubic);
}

@media (hover: hover) {
  .p-episode__more-btn:hover {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}

.p-episode_item__link {
  overflow: hidden;
}

.p-episode_item__thumbnail {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.p-episode_item__frame {
  display: block;
  position: relative;
}

.p-thanks__lead {
  text-align: center;
  font-size: 22px;
}

@media screen and (max-width: 750px) {
  .p-thanks__lead {
    font-size: 18px;
    letter-spacing: -0.08em;
  }
}

.p-thanks__present {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  width: 70%;
  margin: 3.4rem auto 0;
}

@media screen and (max-width: 750px) {
  .p-thanks__present {
    display: block;
    width: 88.5%;
    margin: 0 auto;
    margin-top: 2.2rem;
  }
}

.p-thanks__present-block {
  width: 49%;
}

@media screen and (max-width: 750px) {
  .p-thanks__present-block {
    width: 100%;
  }
}

.p-thanks__present-block:nth-child(even) {
  margin-left: 2%;
}

@media screen and (max-width: 750px) {
  .p-thanks__present-block:nth-child(even) {
    margin-left: 0;
  }
}

@media screen and (max-width: 750px) {
  .p-thanks__present-block:nth-child(n+2) {
    margin-top: 3.5rem;
  }
}

.p-thanks__present-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
/*# sourceMappingURL=top.css.map */