@charset "UTF-8";

/*------------------------------------------------------------------------------
Common
------------------------------------------------------------------------------*/
.title {
  font-weight: bold;
  display: inline-block;
  font-size: 2.6rem;
  background: linear-gradient(135deg, #395d75 0%, #242a44 65%, #6e6f74 90%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.title span {
  -webkit-text-fill-color: #395d75;
  font-weight: normal;
  font-size: 1.6rem;
}
.subtitle {
  font-size: 2.2rem;
  line-height: 4rem;
}
.head {
  font-size: 2rem;
  font-weight: bold;
  color: #242a44;
  border-bottom: 1.5px solid #242a44;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
}
.indent {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}
.space {
  width: 100%;
}
/* 
sticky__wrapperが親要素、sticky__bgとsticky__boxが兄弟要素、sticky__contentがsticky__boxの子要素
 */
.sticky__wrapper {
  position: relative;
  min-height: 125vh;
  z-index: 1;
}
.sticky__bg {
  position: sticky;
  top: 0;
  height: 100vh;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.sticky__bg:after {
  content: "";
  display: block;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(
    to right bottom,
    rgba(0, 0, 0, 0.5) 20%,
    rgb(90, 90, 90, 0.5) 60%,
    rgb(48, 40, 75, 0.8) 100%
  );
}
.sticky__box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sticky__content {
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5vw;
  margin: 0 3vw;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  overflow-y: scroll;
}
.display-pc {
  display: none;
}
.br-pc {
  display: none;
}
.mt-50 {
  margin-top: 50px;
}
.mt-80 {
  margin-top: 80px;
}
.mt-100 {
  margin-top: 100px;
}
.mt-150 {
  margin-top: 150px;
}
.mt-200 {
  margin-top: 200px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-100 {
  margin-bottom: 100px;
}
.mb-150 {
  margin-bottom: 150px;
}
.mb-200 {
  margin-bottom: 200px;
}
.pt-50 {
  padding-top: 50px;
}
.pt-80 {
  padding-top: 80px;
}
.pt-100 {
  padding-top: 100px;
}
.pt-150 {
  padding-top: 150px;
}
.pt-200 {
  padding-top: 200px;
}
.pb-50 {
  padding-bottom: 50px;
}
.pb-80 {
  padding-bottom: 80px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pb-150 {
  padding-bottom: 150px;
}
.pb-200 {
  padding-bottom: 200px;
}
.br-0 {
  content: "";
  display: block;
  margin: -1rem;
}
.button {
  position: relative;
  display: inline-block;
  font-weight: 100;
  color: #fff;
  background-color: #333;
  border: 1px solid #333;
  padding: 1rem 2rem;
  transition: all 0.5s ease;
}
.button:hover {
  color: #333;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.box-shadow {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.fullPageScroll {
  width: 100%;
  height: 100vh;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  scroll-snap-align: start;
  background-size: cover;
  padding-bottom: 5rem;
  overflow: hidden;
}
.fade--in {
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
.fade--in.visible {
  opacity: 1;
}
.fade--element {
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transform: translateX(0);
  will-change: transform;
}
.visible {
  opacity: 1;
  transform: translateX(0);
}
.post {
  position: relative;
}
.modal--main {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85vw;
  height: 85vh;
  padding: 2rem;
  background-color: rgba(51, 51, 51, 0.9);
  backdrop-filter: blur(5px);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  overflow: auto;
  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
  z-index: 10;
}
.modal--main.open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.modal__content {
  display: none;
}
.modal__content.open {
  display: block;
}
.modal--close {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 5.5vh;
  right: 5vw;
  color: #333 !important;
  background-color: rgba(255, 255, 255, 0.8);
  border: unset;
  border-radius: 2rem;
  height: 4rem;
  width: 4rem;
  z-index: 15;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
.modal--close.open {
  visibility: visible;
  opacity: 1;
}
.modal--close:hover {
  background-color: rgba(51, 51, 51, 0.8);
  color: #fff !important;
}
.modal--close--full {
  z-index: 1001;
}
.modal--close p {
  margin-bottom: 0.5rem;
  line-height: 3rem;
  font-size: 3rem;
  width: 3rem;
}
.modal__content .head {
  color: #fff;
  border-bottom: 2px solid;
  font-weight: normal;
  margin-bottom: 1rem;
}
.modal__content p {
  margin: 0;
  line-height: 1.5;
}
.modal__content.close p {
  transform: translate(0px, -1px);
}
body.modal--open {
  overflow: hidden;
}
.modal--full {
  height: 100vh;
  width: 100vw;
  padding: 8vh 10vw;
  z-index: 1000;
}
.box--black {
  width: 95%;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

/*------------------------------------------------------------------------------
Header
------------------------------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  z-index: 1000;
  transition: all 0.5s;
}
header.active {
  background-color: transparent;
  box-shadow: unset;
  backdrop-filter: unset;
}
.header {
  position: absolute;
  top: 0;
  height: 0;
  width: 100vw !important;
  padding-top: 4.5em;
  background: rgba(49, 49, 49, 0.9);
  color: #fff;
  transform-origin: top;
  transition: all 0.8s;
  border-radius: unset !important;
  opacity: 0;
  visibility: hidden;
  filter: blur(10px);
  z-index: 1;
}
.header.active {
  height: 100vh;
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  overflow-y: scroll;
}
.header .visiting {
  color: #d3b742;
  pointer-events: none;
}
.header--pc {
  display: none;
}
.header--mb {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.adsbygoogle {
  margin-left: 1rem;
}
.menu--pc {
  display: none;
}
.menu__btn {
  position: absolute;
  top: 3vh;
  right: 2rem;
  width: 3rem;
  height: 1rem;
  z-index: 9999;
}
.menu__btn span {
  position: absolute;
  display: block;
  width: 3rem;
  height: 2px;
  background-color: #000;
  transition: all 0.8s;
}
.menu__btn::after {
  content: "";
  display: block;
  height: 4.5rem;
  width: 4.5rem;
  position: absolute;
  top: -1.6rem;
  left: -1.3rem;
  z-index: -1;
  transition: all 0.5s;
}
.menu__btn span:nth-child(1) {
  top: 0;
}
.menu__btn span:nth-child(2) {
  bottom: 0;
  right: 0;
  width: 1.5rem;
}
.menu__btn:hover span,
.menu__btn.active span:nth-child(1),
.menu__btn.active span:nth-child(2) {
  background-color: #fff;
  width: 3rem;
}
.menu__btn.active span:nth-child(1) {
  transform: translateY(0.5rem) rotate(45deg);
}
.menu__btn.active span:nth-child(2) {
  width: 3rem;
  transform: translateY(-0.25rem) rotate(-45deg);
}
.header__menu--mb {
  width: 80%;
}
.dropdown__menu--mb {
  display: flex;
  align-items: center;
  height: 6rem;
  color: #fff;
  transition: all 0.8s;
}
.dropdown__menu--mb > a {
  color: #fff;
}
.dropdown__menu--mb p {
  font-size: 1.6rem;
  font-weight: 100;
}
.menu__btn--list {
  position: relative;
  margin: 0 !important;
  box-shadow: unset !important;
  background-color: transparent !important;
  border-radius: 0 !important;
}
.menu__btn--list::after {
  content: "▼";
  position: absolute;
  top: 0;
  right: 5%;
  color: #fff;
}
.menu__list {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.7);
}
.menu__list li {
  height: 3em;
  border-top: 1px solid #aaa;
}
.menu__list li:first-child {
  border: unset;
}
.menu__list p {
  margin: 0;
  line-height: 3em;
}
.link--share {
  position: fixed;
  top: 8vh;
  right: 1.6rem;
  display: flex;
  flex-direction: column;
}
.link--share a {
  padding: 1rem;
  margin: 0 !important;
}
.link--bottom {
  font-size: 1.2rem;
}
.menu--mb__news {
  width: 80%;
  margin: 5rem 0;
}
.header--news__post {
  height: 6em;
  margin-bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.3);
}
.header--news__post .post__contents {
  display: flex;
}
.header--news__image {
  height: 6em;
  width: 25vw;
}
.header--news__image img {
  height: 100%;
  object-fit: cover;
}
.header--news__contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 0.8rem 1.5rem;
  line-height: normal;
}
.header--news__contents p {
  font-size: 1.2rem;
}
.header--news__title {
  color: #d3b742;
  margin-bottom: 1.5rem;
}
.header--news__contents small {
  font-size: 1rem;
}
#music--control,
#options--music,
#episode--characters,
#episode--words,
#music--play1,
#music--play2,
#music--play3,
#music--play4,
#music--play5,
#music--play6 {
  display: flex;
  align-items: center;
  position: fixed;
  bottom: 0;
  right: 2rem;
  color: #ccc;
  opacity: 0;
  transition: all 0.5s;
  z-index: 1;
}
#options--music #music--play1,
#options--music #music--play2,
#options--music #music--play3,
#options--music #music--play4,
#options--music #music--play5,
#options--music #music--play6,
#options--music .music--playing #options--music .music--pause {
  pointer-events: none;
}
#options--music.show #music--play1,
#options--music.show #music--play2,
#options--music.show #music--play3,
#options--music.show #music--play4,
#options--music.show #music--play5,
#options--music.show #music--play6,
#options--music.show .music--playing,
#options--music.show .music--pause {
  pointer-events: initial;
}
#episode--control:hover,
#episode--characters:hover,
#episode--words:hover,
#music--play1:hover,
#music--play2:hover,
#music--play3:hover,
#music--play4:hover,
#music--play5:hover,
#music--play6:hover {
  background-color: #000;
}
#music--play1:hover small,
#music--play2:hover small,
#music--play3:hover small,
#music--play4:hover small,
#music--play5:hover small,
#music--play6:hover small {
  color: #000;
}
#options--music:hover {
  background-color: #323b51;
}
@keyframes musicFadeIn {
  from {
    opacity: 0;
    bottom: 4.5rem;
  }
  to {
    opacity: 1;
    bottom: 9rem;
  }
}
@keyframes musicFadeOut {
  from {
    opacity: 1;
    bottom: 9rem;
  }
  to {
    opacity: 0;
    bottom: 4.5rem;
  }
}
@keyframes episodeFadeIn1 {
  from {
    opacity: 0;
    bottom: 4.5rem;
  }
  to {
    opacity: 1;
    bottom: 14rem;
  }
}
@keyframes episodeFadeOut1 {
  from {
    opacity: 1;
    bottom: 14rem;
  }
  to {
    opacity: 0;
    bottom: 4.5rem;
  }
}
@keyframes episodeFadeIn2 {
  from {
    opacity: 0;
    bottom: 4.5rem;
  }
  to {
    opacity: 1;
    bottom: 19rem;
  }
}
@keyframes episodeFadeOut2 {
  from {
    opacity: 1;
    bottom: 19rem;
  }
  to {
    opacity: 0;
    bottom: 4.5rem;
  }
}
@keyframes controlFadeIn {
  from {
    opacity: 0;
    right: 0;
  }
  to {
    opacity: 1;
    right: 7rem;
  }
}
@keyframes controlFadeOut {
  from {
    opacity: 1;
    right: 7rem;
  }
  to {
    opacity: 0;
    right: 0;
  }
}
#options--under.show #episode--characters {
  animation: episodeFadeIn1 1s forwards;
}
#options--under.hide #episode--characters {
  animation: episodeFadeOut1 1s forwards;
}
#options--under.show #episode--words {
  animation: episodeFadeIn2 1s forwards;
}
#options--under.hide #episode--words {
  animation: episodeFadeOut2 1s forwards;
}
#options--under.show #options--music {
  animation: musicFadeIn 1s forwards;
}
#options--under.hide #options--music {
  animation: musicFadeOut 1s forwards;
}
#options--under.show #music--control {
  animation: controlFadeIn 1s forwards;
}
#options--under.hide #music--control {
  animation: controlFadeOut 1s forwards;
}
#options--music.show #music--play1 {
  animation: playFadeIn1 1s forwards;
}
#options--music.hide #music--play1 {
  animation: playFadeOut1 1s forwards;
}
#options--music.show #music--play2 {
  animation: playFadeIn2 1s forwards;
}
#options--music.hide #music--play2 {
  animation: playFadeOut2 1s forwards;
}
#options--music.show #music--play3 {
  animation: playFadeIn3 1s forwards;
}
#options--music.hide #music--play3 {
  animation: playFadeOut3 1s forwards;
}
#options--music.show #music--play4 {
  animation: playFadeIn4 1s forwards;
}
#options--music.hide #music--play4 {
  animation: playFadeOut4 1s forwards;
}
#options--music.show #music--play5 {
  animation: playFadeIn5 1s forwards;
}
#options--music.hide #music--play5 {
  animation: playFadeOut5 1s forwards;
}
#options--music.show #music--play6 {
  animation: playFadeIn6 1s forwards;
}
#options--music.hide #music--play6 {
  animation: playFadeOut6 1s forwards;
}
#music--play1 small,
#music--play2 small,
#music--play3 small,
#music--play4 small,
#music--play5 small,
#music--play6 small {
  position: absolute;
  width: max-content;
  right: 3.5rem;
  color: #fff;
  margin-right: 1.5rem;
  transition: all 0.5s;
}
#music--play1.music--playing small,
#music--play2.music--playing small,
#music--play3.music--playing small,
#music--play4.music--playing small,
#music--play5.music--playing small,
#music--play6.music--playing small {
  color: #000;
  opacity: 1;
}
#music--control {
  bottom: 4rem;
}
.music__box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2em;
  padding-left: 0.8rem;
}
.music__bar {
  display: inline-block;
  width: 2px;
  height: 5px;
  background-color: #ccc;
  margin-right: 7px;
  transition: all 0.5s;
}
@keyframes barChange1 {
  0% {
    height: 9px;
  }
  25% {
    height: 4px;
  }
  50% {
    height: 11px;
  }
  75% {
    height: 16px;
  }
  100% {
    height: 11px;
  }
}
@keyframes barChange2 {
  0% {
    height: 9px;
  }
  25% {
    height: 14px;
  }
  50% {
    height: 24px;
  }
  75% {
    height: 4px;
  }
  100% {
    height: 14px;
  }
}
@keyframes barChange3 {
  0% {
    height: 9px;
  }
  25% {
    height: 16px;
  }
  50% {
    height: 4px;
  }
  75% {
    height: 11px;
  }
  100% {
    height: 4px;
  }
}
.option__button--main {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ccc;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s;
  z-index: 3;
}
#options--under {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  z-index: 2;
  visibility: hidden;
}
#options--under.show {
  visibility: visible;
}
.option--under {
  background-color: rgba(49, 49, 49, 0.9);
  color: black;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s, opacity 0.5s;
}
.music--playing {
  background-color: #323b51;
}
.music--playing .music__bar:nth-child(1) {
  animation: barChange1 1.5s infinite;
}
.music--playing .music__bar:nth-child(2) {
  animation: barChange2 1.5s infinite;
}
.music--playing .music__bar:nth-child(3) {
  animation: barChange3 1.5s infinite;
}

/*------------------------------------------------------------------------------
Footer
------------------------------------------------------------------------------*/
footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  mix-blend-mode: overlay;
  z-index: 1;
}
footer #copy {
  font-size: 1rem;
  line-height: 1.5rem;
}
#copy {
  background-color: #7a6a56;
  align-items: center;
  height: 5em;
}
#copy p {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5em;
  margin: 0;
}

/*------------------------------------------------------------------------------
Top
------------------------------------------------------------------------------*/
.header--top {
  display: block;
  height: 100vh;
  width: 100%;
}
.swiper-slide {
  padding: 1rem;
}
.pagination--section {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  height: 5rem;
  width: 5rem;
  transition: all 0.5s;
  z-index: 1;
}
#section6 .pagination--section {
  bottom: 7vh;
}
.pagination--section:hover {
  transform: translate(-2.5rem, 10px);
}
#section6 .pagination--section:hover {
  transform: translate(-2.5rem, -10px);
}
.pagination--section:before,
.pagination--section:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 1.7rem;
  left: 1.7rem;
  height: 2px;
  width: 21px;
  background-color: #000;
}
#section3 .pagination--section:before,
#section3 .pagination--section:after {
  background-color: #fff;
}
.pagination--section:before {
  transform: rotate(45deg) translate(-15px, 0px);
}
.pagination--section:after {
  transform: rotate(135deg) translate(-10px, 4px);
}
#section6 .pagination--section:before {
  transform: rotate(-45deg) translate(-15px, 0px);
}
#section6 .pagination--section:after {
  transform: rotate(-135deg) translate(-10px, -4px);
}
.pagination {
  position: fixed;
  top: 55%;
  right: 3rem;
  transform: rotate(90deg);
  transform-origin: bottom right;
  z-index: 1;
}
.pagination .pagination-link {
  padding: 0 1rem;
  transform-origin: top;
  transition: all 0.2s;
}
.pagination .pagination-link.active {
  transform: scaleY(3);
}
.pagination span {
  display: block;
  width: 2px;
  height: 10px;
  background-color: #000;
}
.header--top .box--text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 2;
}
.header--top .box--text h1 {
  width: 80vw;
}
#section2 .swiper-slide {
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.5s;
}
#section2 .swiper-slide:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.post--episode {
  margin-bottom: 3em;
}
.episode__label {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  color: #fff;
  line-height: 1.6rem;
  background-color: rgba(51, 51, 51, 0.8);
  text-align: right;
  padding: 0.25rem 1em;
  transition: all 0.5s;
  z-index: 1;
}
.episode__label small {
  font-size: 1rem;
}
.swiper-slide:hover .episode__label {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.episode__image--top img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.episode__title--top {
  font-size: 1.8rem;
  margin: 1.5rem 1em 0.25rem;
}
.episode__date--top {
  margin: 0;
}
.button.button--episode {
  text-align: center;
  width: 90%;
  margin: 1em auto;
  font-size: 1.2rem;
  padding: 0.25rem 2rem;
}
#section3 {
  background-image: url(../img/img-top1.jpg);
  background-position: center;
}
#section3:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px) grayscale(0.2);
}
#section3 .container {
  color: #fff;
  z-index: 1;
}
#section3 .title {
  -webkit-text-fill-color: unset;
}
.section3__text {
  text-align: left;
}
.section__container {
  width: 100%;
}
.section__box {
  position: relative;
  display: flex;
  flex-direction: column;
}
.section__box--right {
  align-items: end;
}
.section__box--left {
  align-items: start;
}
.section__title {
  position: absolute;
  top: -5vh;
  color: #fff;
  mix-blend-mode: difference;
}
.section__box--right .section__title {
  left: 5vw;
}
.section__box--left .section__title {
  right: 5vw;
  text-align: right;
}
.section__image {
  height: 20vh;
  width: 80%;
  object-fit: cover;
}
.section__text {
  width: 90vw;
  margin: 5vh auto 3rem;
  text-align: left;
}
.news__list--top {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 1rem 3rem 0;
  backdrop-filter: blur(10px);
}
.post--top--news {
  margin-bottom: 1em;
}
.post--top--news:last-child {
  margin: 0;
}
.post--top--news a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border-bottom: 1px solid;
}
.post--top--news:last-child a {
  border: none;
}
.date--top--news {
  margin-bottom: 2rem;
}
.title--top--news {
  margin-bottom: 1em;
}
#section6 .post__cat {
  top: 0;
  right: 0;
  flex-direction: row;
  color: #fff;
}
#section6 .post__cat a {
  border: unset;
}
#section6 .post__cat a:last-child {
  margin-left: 0.5rem;
}

/*------------------------------------------------------------------------------
Lower
------------------------------------------------------------------------------*/
.header--lower {
  position: relative;
  height: 40vh;
  padding-top: 15px;
  overflow: hidden;
}
.header--bg {
  content: "";
  position: absolute;
  top: 30%;
  right: 0;
  display: block;
  height: 25vh;
  width: 80%;
  box-shadow: 0 2px 8px rgba(33, 33, 33, 0.5);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.header--bg:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  display: block;
  height: 100vw;
  width: 100vw;
  border-radius: 100%;
  box-shadow: 0 2px 8px rgba(33, 33, 33, 0.5);
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  z-index: 1;
  will-change: transform;
}
.header--bg.animation--on::before {
  animation: header--bg 20s infinite;
}
.header--bg.animation--stop::before {
  animation: none;
}
@keyframes header--bg {
  0% {
    transform: translate(50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(50%, -50%) rotate(360deg);
  }
}
.header--bx {
  position: absolute;
  top: 30%;
  left: 10%;
  color: #fff;
  margin-right: 10%;
  mix-blend-mode: plus-lighter;
  word-break: break-word;
  z-index: 2;
}
.header--bx h1 {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 1rem;
  line-height: 1em;
  text-align: start;
  margin-bottom: 1rem;
}
.header--bx p {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: right;
  color: #fff;
  padding-right: 0.8rem;
}
.header--lower .header--bg::before {
  background: radial-gradient(
    circle at top,
    #fff 0,
    #fff 4%,
    #b6961a 10%,
    #4b5573 30%,
    #222 90%
  );
}

/*------------------------------------------------------------------------------
Episode Archive
------------------------------------------------------------------------------*/
.logline__text {
  text-align: left;
}
.episode__post {
  position: relative;
  display: flex;
  border-bottom: 1px solid #666;
  margin-bottom: 1rem;
  transition: all 0.5s;
}
.episode__post:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
#episode .post__date {
  color: #fff;
}
#episode--archive .post__cat--list li:first-child {
  position: absolute;
  top: -2em;
}
#episode--archive .post__cat--list li:nth-child(2) {
  margin-left: 1em;
}
.episode__image {
  width: 20%;
}
.episode__image img {
  max-height: 10rem;
  object-fit: cover;
}
.episode__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  width: 80%;
  line-height: 1rem;
}
.episode__no {
  font-size: 1rem;
  line-height: 1rem;
  margin: 1rem 0 0 0;
}
.episode__title {
  font-size: 1.6rem;
  margin: 0.5rem 0 1rem;
  padding-left: 1rem;
  overflow-wrap: break-word;
}
.episode__date {
  font-size: 0.8rem;
  line-height: 0.8rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: flex-end;
}
.episode__pagination--num {
  display: inline-block;
  padding: 0.5rem 2rem;
  margin: 0.25rem 0 0.25rem 0.5rem;
  text-align: center;
  line-height: 2.8rem;
  color: #fff;
  background-color: rgba(49, 49, 49, 0.9);
}
.episode__pagination--num:first-child {
  margin-left: 0;
}
.episode__pagination--num:last-child {
  margin-right: 0;
}
.episode__pagination--num:hover {
  color: #000;
  background-color: #666;
}
.episode__pagination--num.current {
  background-color: #666;
}
.episode__pagination--num.current:hover {
  color: #fff;
}

/*------------------------------------------------------------------------------
Episode Single
------------------------------------------------------------------------------*/
.main--single {
  color: #ddd;
}
.main--single .title {
  color: #ddd;
  -webkit-text-fill-color: unset;
}
#episode {
  display: flex;
}
#episode rt {
  font-size: 0.8rem;
}
.header--lower.header--episode .header--bg::before {
  background: none;
  animation: none;
}
.header--episode .header--bg {
  filter: unset;
}
.header--episode img {
  height: 100%;
  object-fit: cover;
}
.header--mask {
  position: absolute;
  height: 100%;
  width: 100%;
  background: radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.5),
      transparent 60%,
      rgba(20, 20, 20, 0.4) 90%
    ),
    linear-gradient(to bottom right, rgba(112, 118, 255, 0.5), transparent 60%);
}
.header--episode .header--bx {
  left: 5%;
  text-align: start;
}
.episode__no--post {
  text-align: left !important;
  font-size: 1.4rem !important;
  margin-bottom: 1rem;
}
.episode__list {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  padding: 70px 0 50px;
  color: #f2f6fa;
  background-color: rgba(30, 30, 30, 0.9);
  backdrop-filter: blur(1px);
  overflow-y: scroll;
  transition: transform 0.5s ease-in-out;
  z-index: 10;
  transform: translateX(-100%);
  width: 50vw;
}
.episode__list.open {
  transform: translateX(0);
}
.episode--item {
  display: block;
  padding: 0.5rem 1.5rem;
  border-bottom: 1px solid #ddd;
  transition: all 0.5s;
}
.episode--item:first-child {
  border-top: 1px solid #ddd;
  height: 5em;
  display: flex;
  align-items: center;
  background-color: #555;
}
.episode--item:hover,
.episode--item.current {
  background-color: rgba(255, 255, 255, 0.1);
}
.episode--item a {
  text-decoration: none;
}
.episode--date {
  display: block;
  font-size: 0.8rem;
}
.episode__toggle {
  position: fixed;
  bottom: 5rem;
  left: 0;
  background-color: rgba(30, 30, 30, 0.9);
  color: #f2f6fa;
  width: 5rem;
  height: 4rem;
  text-align: center;
  line-height: 4rem;
  z-index: 1;
  transition: transform 0.5s ease-in-out;
}
.episode__toggle.open {
  transform: translateX(50vw);
}
.episode__toggle span {
  transition: transform 0.5s ease-in-out;
}
.episode__toggle.open span {
  display: block;
  transform: rotate(-180deg);
}
.progress--bar {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  height: 0.5rem;
  width: calc(100vw - 1rem);
  border-radius: 2rem;
  clip-path: inset(0 100% 0 0);
  z-index: 2;
}
.viewers {
  display: flex;
}
.viewers li {
  margin-right: 0 !important;
}
.post-views.content-post.post-1.entry-meta {
  display: contents;
}
.episode--content {
  margin-top: 100px;
  white-space: normal;
}
.episode--content p {
  line-height: 2.5em;
  margin-bottom: 2em;
}
.button--share,
.sd-button {
  display: inline-block;
  color: #f2f6fa;
  height: 3rem;
  padding: 0 2em;
  text-align: center;
  line-height: 3rem;
  transition: all 0.5s;
}
.button--share:hover,
.sd-button:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.2);
}
.button--fb,
.share-facebook {
  background-color: #2d4b9c;
}
.button--x,
.share-x {
  background-color: #444;
}
.episode__navigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15rem;
}
.episode--prev,
.episode--next {
  position: relative;
  width: 30%;
}
.episode--prev {
  text-align: right;
}
.episode--prev:before,
.episode--prev:after,
.episode--next:before,
.episode--next:after {
  content: "";
  display: block;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  transition: all 0.8s;
}
.episode--prev:after,
.episode--next:after {
  width: 80%;
}
.episode--prev:before,
.episode--next:before {
  width: 1.5rem;
  bottom: 0.4rem;
}
.episode--prev:before,
.episode--prev:after {
  left: 20%;
}
.episode--prev:before {
  transform: rotate(150deg);
}
.episode--prev:hover.episode--prev:before,
.episode--prev:hover.episode--prev:after {
  left: 0;
}
.episode--next:before,
.episode--next:after {
  right: 20%;
}
.episode--next:before {
  transform: rotate(35deg);
}
.episode--next:hover.episode--next:before,
.episode--next:hover.episode--next:after {
  right: 0;
}

/*------------------------------------------------------------------------------
About
------------------------------------------------------------------------------*/
.guide__list {
  display: flex;
  flex-direction: column;
  height: 50vh;
}
.guide__list li {
  position: relative;
  height: 33.33%;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  transition: all 0.8s ease;
  overflow: hidden;
}
.guide__list li:last-child {
  border-bottom: 1px solid #fff;
}
.guide__list li:hover {
  height: 100%;
}
.guide__box {
  height: 35vh;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.guide__image {
  height: 100%;
  object-fit: cover;
  filter: blur(5px) grayscale(0.3);
  transition: all 0.5s;
}
.guide__list li:hover .guide__image {
  filter: blur(1px);
}
.guide__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 3rem;
  transition: all 0.8s;
}
.guide__list li:hover .guide__text {
  left: 4rem;
  top: 4rem;
  transform: unset;
}
.guide__content {
  height: 50%;
  position: absolute;
  bottom: 1.5em;
  width: 100%;
}
.guide__wrapper {
  position: absolute;
  right: 0;
  top: 0;
  height: 3em;
  width: 0;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.5s;
  transition-delay: 0.25s;
}
.guide__list li:hover .guide__wrapper {
  width: 24em;
  padding: 0.5rem 0.5rem 0.5rem 1em;
}
.guide__description {
  opacity: 0;
  transition: all 0.5s;
  transition-delay: 0s;
}
.guide__list li:hover .guide__description {
  opacity: 1;
  transition-delay: 0.6s;
}
.guide__content .button {
  position: absolute;
  bottom: 0;
  right: 1rem;
  color: initial;
  background-color: #fff;
  border: 1px solid #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.5s;
  transition-delay: 0s;
}
.guide__list li:hover .guide__content .button {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0.25s;
}
.guide__list li:hover .guide__content .button:hover {
  color: #fff;
  background-color: #333;
  border: 1px solid #333;
}

/*------------------------------------------------------------------------------
World
------------------------------------------------------------------------------*/
.world__panels {
  display: flex;
  flex-wrap: wrap;
}
.world__panel {
  height: calc(100vh / 3);
  width: calc(100vh / 3);
  margin: 0 auto 2em;
  filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.1));
  transition: all 0.5s;
}
.world__panel:hover {
  filter: drop-shadow(0 20px 8px rgba(0, 0, 0, 0.2));
  transform: translateY(-5px);
}
.world__wrapper {
  height: 98%;
  width: 98%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    to bottom right,
    rgb(47, 52, 112) 5%,
    rgb(166, 166, 166),
    rgb(37, 39, 71) 95%
  );
  background-size: 80vw 50vh;
  clip-path: polygon(
    30% 0%,
    70% 0%,
    100% 30%,
    100% 70%,
    70% 100%,
    30% 100%,
    0% 70%,
    0% 30%
  );
  transition: all 0.5s;
}
.world__panel:hover .world__wrapper {
  background-position: 0 100%;
}
.world__box {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 96%;
  width: 96%;
  clip-path: polygon(
    30% 0%,
    70% 0%,
    100% 30%,
    100% 70%,
    70% 100%,
    30% 100%,
    0% 70%,
    0% 30%
  );
  overflow: hidden;
  background-color: #fff;
  transition: all 0.5s ease;
}
.world__box:hover {
  transform: translate(-50%, -50%);
}
.world__box img {
  position: absolute;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.8);
  transition: all 1s ease;
}
.world__box:hover img {
  filter: grayscale(0);
}
.world__title {
  font-size: 2rem;
  color: #fff;
  z-index: 1;
}
.world__title span {
  font-size: 1.2rem;
}

/*------------------------------------------------------------------------------
Characters Archive
------------------------------------------------------------------------------*/
.character__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 4vw;
}
.character__item {
  position: relative;
  width: 100%;
  margin: 0.5rem;
}
.character__image {
  object-fit: cover;
  object-position: top;
  height: 200px;
  filter: grayscale(1) brightness(0.8);
  transition: all 1s ease;
}
.character__item:hover .character__image {
  transform: translateY(-5px);
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.2);
  filter: grayscale(0);
}
.character__name--en {
  position: absolute;
  bottom: 2em;
  left: 2rem;
  font-size: 3rem;
  color: #fff;
  font-weight: bold;
  line-height: 3.5rem;
  width: 6em;
  overflow-wrap: anywhere;
  transition: all 1s;
}
.character__item:hover .character__name--en {
  color: initial;
}
.character__name--ja {
  font-weight: bold;
  margin-top: 0.5rem;
  text-align: center;
}
.characters__warning {
  line-height: 1em;
  padding: 3rem;
}
#character--modal {
  display: flex;
  align-items: center;
}
.character__name--en--modal {
  font-size: 3rem;
  font-weight: bold;
  line-height: 3.5rem;
}

/*------------------------------------------------------------------------------
Secrets
------------------------------------------------------------------------------*/
.secret__accordion--parent {
  position: relative;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 1rem;
}
.secret__accordion__secret {
  font-weight: normal;
  margin: 0;
}
.secret__accordion__marker {
  position: absolute;
  top: 0;
  right: 0;
  width: 5rem;
  height: 100%;
}
.secret__accordion__marker span {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.3rem;
  height: 1px;
}
.secret__accordion__marker span::before,
.secret__accordion__marker span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
}
.secret__accordion__marker span::after {
  transform: rotate(90deg);
  transition: all 0.8s;
}
.secret__accordion__marker.active span::after {
  transform: rotate(0deg);
}
.secret__accordion--children {
  display: flex;
  font-size: 1.2rem;
  height: 0;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: height 0.8s ease-in-out;
}
.secret__accordion--children.open {
  height: auto;
}
.secret__accordion__answer {
  padding: 1rem 0 1rem 1rem !important;
  margin-right: 1em;
}
.secret__accordion--children img {
  width: 70%;
  height: auto;
  float: left;
  margin: 1rem 1rem 1rem 0;
}
.secret__accordion--children p {
  padding: 1rem 1rem 1rem 0;
  overflow-wrap: anywhere;
}

/*------------------------------------------------------------------------------
------------------------------------------------------------------------------*/
#message .container {
  padding: 5rem 2rem;
}
#message span {
  font-size: 1rem;
}
#message .title {
  -webkit-text-fill-color: unset;
}
#message .title span {
  -webkit-text-fill-color: unset;
  font-weight: normal;
  font-size: 1.6rem;
}
#recommend .head {
  text-align: left;
}
.recommend__level {
  background-color: #666;
  font-size: 1.2rem;
  color: #fff;
  padding: 0.2em 1em;
}
.recommend__star,
.recommend__text--star {
  font-weight: bold;
  color: #444;
  letter-spacing: 0.3em;
}
.recommend__star {
  margin: 0 0.5em;
}
.recommend__list li {
  margin-bottom: 1.5em;
}
.recommend__warning {
  line-height: 1em;
  padding: 3rem;
}

/*------------------------------------------------------------------------------
News
------------------------------------------------------------------------------*/
.news__box {
  padding: 5vh 5vw;
  background-color: rgba(255, 255, 255, 0.3);
}
.post__cat--list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 3em 0;
  width: 100%;
  list-style: none;
}
.post__cat--list li {
  margin: 0.5rem 0;
}
.post__cat--list a {
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid;
  transition: all 0.5s;
}
.post__cat--list li:first-child a {
  margin-left: 0;
}
.post__cat--list li:last-child a {
  margin-right: 0;
}
.post__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 2%;
}
#news--archive .post {
  color: #fff;
  background-color: rgba(51, 51, 51, 0.3);
  width: 48%;
  margin: 2% 0;
  transition: all 0.5s;
}
#news--archive .post:hover {
  color: #333;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}
#news--archive .post:hover .post__cat {
  color: #fff;
}
.post__cat {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1;
}
.post__cat a {
  font-size: 1.2rem;
  line-height: 2rem;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  background-color: rgba(51, 51, 51, 0.7);
  transition: all 0.5s;
}
.post__cat a:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: #333;
}
.post__box img {
  height: 200px;
  object-fit: cover;
  transition: all 5s ease;
}
#news--archive .post:hover img {
  transform: scale(1.1);
}
.post__image {
  overflow: hidden;
}
.post__content {
  padding: 1rem;
  text-align: right;
}
.post__title {
  font-size: 1.4rem;
  text-align: left;
}
.post__navigation {
  width: 100%;
}
.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.page-numbers li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3em;
  height: 3em;
  margin: 0 1em;
  color: #fff;
  background-color: #333;
  border-radius: 3rem;
}
.page-numbers li:first-child,
.page-numbers li:last-child {
  background-color: #666;
}
.page-numbers a {
  width: 3em;
  height: 3em;
  border-radius: 3rem;
  transition: all 0.5s;
}
.page-numbers a:hover {
  color: #333;
  background-color: #fff;
}
.page-numbers.current {
  width: 3em;
  height: 3em;
  background-color: #666;
  border-radius: 3rem;
}
.sd-title,
.share-customize-link {
  display: none;
}
.sd-content ul {
  display: flex;
}
.sd-content li {
  margin-right: 1em;
}
