@charset "UTF-8";

html {
  font-size: 2.65vw;
}

/*------------------------------------------------------------------------------
Parts
------------------------------------------------------------------------------*/
.container {
  width: 90%;
  margin: 0 auto;
}
.container--flex {
  display: flex;
  position: relative;
}
.inner {
  width: 100%;
}
.title--jp {
  font-weight: bold;
  font-size: 6rem;
  writing-mode: vertical-lr;
  height: fit-content;
  margin: 0 4rem 0 1rem;
  position: sticky;
  top: 12vh;
}
.title--jp::first-letter {
  color: #2a5ac6;
}
.title--head {
  font-size: 3rem;
  text-align: center;
}
.subtitle--jp {
  font-size: 2.5rem;
  line-height: 4rem;
}
.head {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 1.5px solid;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
}
.indent {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}
.space {
  width: 100%;
}
.section__space {
  height: 200px;
  background-color: #222;
}

/* 
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-25 {
  margin-top: 2.5rem;
}
.mt-50 {
  margin-top: 5rem;
}
.mt-80 {
  margin-top: 8rem;
}
.mt-100 {
  margin-top: 10rem;
}
.mt-150 {
  margin-top: 15rem;
}
.mt-200 {
  margin-top: 20rem;
}
.mb-25 {
  margin-bottom: 2.5rem;
}
.mb-50 {
  margin-bottom: 5rem;
}
.mb-80 {
  margin-bottom: 8rem;
}
.mb-100 {
  margin-bottom: 10rem;
}
.mb-150 {
  margin-bottom: 15rem;
}
.mb-200 {
  margin-bottom: 20rem;
}
.pt-25 {
  padding-top: 2.5rem;
}
.pt-50 {
  padding-top: 5rem;
}
.pt-80 {
  padding-top: 8rem;
}
.pt-100 {
  padding-top: 10rem;
}
.pt-150 {
  padding-top: 15rem;
}
.pt-200 {
  padding-top: 20rem;
}
.pb-25 {
  padding-bottom: 2.5rem;
}
.pb-50 {
  padding-bottom: 5rem;
}
.pb-80 {
  padding-bottom: 8rem;
}
.pb-100 {
  padding-bottom: 10rem;
}
.pb-150 {
  padding-bottom: 15rem;
}
.pb-200 {
  padding-bottom: 20rem;
}
.br-0 {
  content: "";
  display: block;
  margin: -1rem;
}
.text-center {
  text-align: center;
}
.button {
  position: relative;
  display: inline-block;
  color: #fff;
  mix-blend-mode: exclusion;
  transition: color 0.3s;
}
.button:hover {
  color: #2a5ac6;
}
.button::before {
  position: absolute;
  right: -5.5em;
  bottom: 1em;
  content: "";
  width: 5em;
  height: 0.5px;
  background-color: #c6b52a;
}
.button::after {
  position: absolute;
  right: -5.5em;
  bottom: 1em;
  content: "";
  width: 5em;
  height: 0.5px;
  background-color: #2a5ac6;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.5s;
}
.button:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.box-shadow {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.fade {
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 1s ease-in-out;
  transform: scale(0.99);
  will-change: transform;
}
.fade.visible {
  opacity: 1;
  transform: scale(1);
}

.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;
  cursor: pointer;
  transition: color 0.5s, background-color 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: 3rem;
  line-height: 3rem;
  font-size: 3rem;
  width: 1.75rem;
}
.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: 10% 5%;
  z-index: 1000;
}
.modal__content .container--flex {
  flex-direction: column;
}
.box--white {
  width: 95%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.rellax__wrapper {
  position: relative;
  overflow: hidden;
}
.rellax {
  will-change: transform;
}
.trigger--top,
.trigger--fade {
  will-change: filter;
}

/*------------------------------------------------------------------------------
Common
------------------------------------------------------------------------------*/
.post {
  position: relative;
}
/*------------------------------------------------------------------------------
Header
------------------------------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  z-index: 1000;
  transition: background-color 0.5s;
  mix-blend-mode: exclusion;
}
header.active {
  background-color: transparent;
  box-shadow: unset;
  backdrop-filter: blur(10px);
  mix-blend-mode: unset;
  height: 100vh;
}
.header {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100vw;
  padding-top: 4.5em;
  background-color: rgba(49, 49, 49, 0.9);
  color: #fff;
  transform-origin: top;
  transition: opacity 0.8s, visibility 0.8s, filter 0.8s;
  border-radius: unset !important;
  opacity: 0;
  visibility: hidden;
  filter: blur(10px);
  z-index: 1;
}
.header.active {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  overflow-y: scroll;
}
.header .visiting {
  color: #c6b52a;
  pointer-events: none;
}
.header--pc {
  display: none;
}
.header--mb {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header.active .adsbygoogle {
  pointer-events: auto;
}
.adsbygoogle {
  margin-left: 1rem;
  pointer-events: none;
}
.menu--pc {
  display: none;
}
.header__logo {
  position: fixed;
  top: 2.5rem;
  left: 2rem;
  width: 2.5em;
  filter: invert(1);
  transition: filter 0.5s;
}
.header__logo:hover {
  filter: invert(0.5);
}
.menu__btn {
  position: absolute;
  top: 5vh;
  right: 2rem;
  width: 3rem;
  height: 1rem;
  z-index: 9999;
  cursor: pointer;
}
.menu__btn span {
  position: absolute;
  display: block;
  width: 3rem;
  height: 1px;
  background-color: #fff;
  transition: background-color 0.8s, width 0.8s, transform 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;
}
.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.6rem) 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: 4.5rem;
}
.dropdown__menu--mb p {
  font-size: 1.6rem;
}
.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: 10vh;
  right: 1.75rem;
  display: flex;
  flex-direction: column;
}
.link--share a {
  padding: 1rem;
  margin: 0 !important;
  transition: color 0.5s;
}
.link--share a:hover {
  color: #c6b52a;
}
.link--bottom {
  font-size: 1.2rem;
}
.menu--mb__news {
  width: 80%;
  margin: 5rem 0;
}
.header--news__post {
  margin-bottom: 1rem;
}
.header--news__post .post__contents {
  display: flex;
  flex-direction: column;
}
.header--news__image {
  height: 6em;
}
.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.4rem;
  margin: 0.5em 0 0 0.5em;
}
.header--news__title {
  color: #c6b52a;
  margin-bottom: 1.5rem;
}
.header--news__contents small {
  font-size: 1.2rem;
}
#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: background-color 0.5s, opacity 0.5s, visibility 0.5s;
  cursor: pointer;
  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: color 0.5s, opacity 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;
}
@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;
  cursor: pointer;
  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 {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(34, 34, 34, 0.7);
}
footer img {
  width: 70vw;
}
.menu--footer {
  display: flex;
  width: 80%;
}
.sns--footer {
  display: flex;
}
.sns--footer li:first-of-type {
  padding-right: 2em;
}
.copyright {
  padding-bottom: 2em;
  font-size: 1.2rem;
}

/*------------------------------------------------------------------------------
Top
------------------------------------------------------------------------------*/
#top--header {
  background-color: transparent;
}
.header--top {
  display: block;
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.video--top {
  position: fixed;
  height: 100vh;
  z-index: -1;
}
.video--top::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}
.box--top {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  mix-blend-mode: exclusion;
}
.copy--top,
.title--top {
  writing-mode: vertical-rl;
  position: absolute;
  margin: 0;
}
.copy--top {
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 5vh;
  right: 3rem;
  font-weight: lighter;
  line-height: 7rem;
}
.copy--top .first {
  font-size: 7rem;
  margin-bottom: 1rem;
}
.copy--top .rest {
  font-size: 1.8rem;
  line-height: 2em;
}
.title--top {
  bottom: 7vh;
  left: 3rem;
}

.scroll--down {
  position: relative;
}
.scroll--down:before,
.scroll--down:after {
  content: "";
  position: absolute;
  bottom: -7rem;
  left: 50%;
  width: 1px;
  height: 14rem;
}
.scroll--down:before {
  background: #fff;
}
.scroll--down:after {
  background: #111;
  animation: down 6s ease-out infinite;
}
@keyframes down {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

#top--intro {
  line-height: 2.2;
  background-color: rgba(34, 34, 34, 0.7);
}
#top--intro .container--flex {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#top--intro .container p::first-letter {
  font-size: 6rem;
  line-height: 1;
  float: left;
}
.text--top__intro {
  inline-size: 80vw;
}

#top--episode {
  background-color: #222;
  overflow: hidden;
}
#top--episode .title--jp {
  top: 0;
}
.list--episode {
  width: 70vw;
}
.swiper-container {
  overflow: visible;
}
.swiper-wrapper {
  transition: all 0.5s;
}
.swiper-slide {
  width: 30%;
  padding: 0.5rem;
}

.buttons--swiper {
  position: absolute;
  bottom: 2em;
  right: -6%;
  height: 4em;
  width: 10em;
  background-color: rgba(34, 34, 34, 0.5);
  backdrop-filter: blur(5px);
  border-top: 1px solid;
  border-left: 1px solid;
}
.swiper-button-next,
.swiper-button-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.5em;
  transform: translateY(50%);
  background-image: unset;
}
.swiper-button-prev {
  left: 2em;
}
.swiper-button-next {
  right: 3em;
}

.post--episode {
  margin-bottom: 3em;
}
.episode__thumb--top {
  height: 150%;
}
.episode__image--top {
  height: 45vh;
  width: calc(100% - 1.5rem);
  overflow: hidden;
}
.episode__image--top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s;
}
.post--episode:hover .episode__image--top img {
  transform: scale(1.025);
}
.post__box--episode {
  padding: 1em 1em 0;
}
.episode__title--top {
  line-height: 2;
  margin: 0;
}
.episode__title--top span:first-child {
  font-size: 1.1rem;
}
.episode__title--top span:last-child {
  transition-delay: 0.6s;
}
.episode__title--top span {
  background: linear-gradient(90deg, #fff, #fff);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0 1px;
  transition: background-size 1s;
}
.post--episode:hover .episode__title--top span {
  background-size: 100% 1px;
  background-position: left bottom;
}
.episode__date--top {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  line-height: 1rem;
  writing-mode: sideways-rl;
}

#top--about {
  position: relative;
}
.container--video {
  position: absolute;
  height: 100%;
  overflow: hidden;
}
#video--about {
  width: 100%;
  height: 100%;
}

#top--slider {
  position: relative;
  --shade: 34, 34, 34;
  padding: 1px 0;
}
#top--slider::before,
#top--slider::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: var(--edge-width, 10vw);
  pointer-events: none;
  z-index: 1;
}
#top--slider::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(var(--shade, 34, 34, 34), 1) 10%,
    rgba(var(--shade, 34, 34, 34), 0.9) 30%,
    rgba(var(--shade, 34, 34, 34), 0) 100%
  );
}
#top--slider::after {
  right: 0;
  background: linear-gradient(
    -90deg,
    rgba(var(--shade, 34, 34, 34), 1) 10%,
    rgba(var(--shade, 34, 34, 34), 0.9) 30%,
    rgba(var(--shade, 34, 34, 34), 0) 100%
  );
}

.top--slider__wrapper {
  display: flex;
  align-items: center;
  margin: 2px 0;
  overflow: hidden;
}
.top--slider__wrapper1,
.top--slider__slide1 {
  height: 30vw;
}
.top--slider__wrapper2,
.top--slider__slide2 {
  height: 27.5vw;
}
.top--slider__wrapper3,
.top--slider__slide3 {
  height: 25vw;
}
.top--slider__list {
  display: flex;
  flex-shrink: 0;
  gap: 2px;
  margin-right: 2px;
  animation: scroll 20s linear infinite;
  will-change: transform;
}
.top--slider__list2 {
  animation-direction: reverse;
}
.top--slider__slide {
  flex: 0 0 auto;
  width: auto;
  height: 100%;
}
.top--slider__slide img {
  display: block;
  height: 100%;
  width: auto;
  object-fit: cover;
}
.top--slider__wrapper1 .top--slider__list:nth-child(2),
.top--slider__wrapper2 .top--slider__list:nth-child(2),
.top--slider__wrapper3 .top--slider__list:nth-child(2) {
  animation-delay: -20s;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.top--slider__paused:hover .top--slider__list {
  animation-play-state: paused;
}

#top--world .container--flex {
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#top--world .rellax__wrapper {
  height: 50vh;
}
#top--world img {
  height: 70vh;
  width: 70vw;
  object-fit: cover;
}
.box--top__world {
  position: absolute;
  top: -1em;
  right: 0;
  mix-blend-mode: exclusion;
  z-index: 1;
}
.title--world {
  font-size: 7rem;
  margin: 0;
  text-align: right;
}
.text--top__world {
  inline-size: 70vw;
}

#top--character {
  overflow-x: hidden;
}
#top--character .container {
  position: relative;
}
.box--top__character {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.box--top__character * {
  z-index: 1;
}
.box--top__character .title--jp {
  position: static;
  height: 4.5em;
}
.box--top__character p {
  inline-size: 70vw;
  padding-top: 1.5em;
}
#top--character .img--top__character {
  position: absolute;
  height: 15rem;
  width: 12rem;
  object-fit: cover;
}
.img--top__character1 {
  top: -20%;
  left: 50%;
}
.img--top__character2 {
  top: 60%;
  right: -10%;
}
.img--top__character3 {
  top: 85%;
  left: 5%;
}
.img--top__character4 {
  top: -5%;
  left: -15%;
}

#top--character .title--jp::first-letter,
#top--news .title--jp::first-letter {
  color: #c6b52a;
}

.news__list--top {
  position: relative;
  width: 100%;
}
.post--top--news {
  position: sticky;
  background-color: #ddd;
  margin-bottom: 1em;
  padding: 2em 0 0;
}
.post--top--news:nth-of-type(1) {
  top: 12vh;
  border-top: unset;
}
.post--top--news:nth-of-type(2) {
  top: calc(12vh + 3em);
}
.post--top--news:nth-of-type(3) {
  top: calc(12vh + 5em);
}
.title--top--news {
  background-color: #ddd;
  margin: 0 0 2.5em;
}
.post--top--news .post__image {
  width: calc(100% - 1.25em);
  height: 40vh;
  overflow: hidden;
}
.post--top--news img {
  height: 40vh;
  object-fit: cover;
  transition: transform 5s ease;
}
.post--top--news:hover img {
  transform: scale(1.1);
}
.date--top--news {
  position: absolute;
  top: 4.25em;
  right: -2em;
  transform: rotate(90deg);
}
#top--news .post__cat {
  align-items: flex-start;
  top: 2.75em;
  left: -1px;
  z-index: 1;
}

/*------------------------------------------------------------------------------
Lower
------------------------------------------------------------------------------*/
.header--lower {
  position: relative;
  height: 30rem;
  padding-top: 15px;
  margin-bottom: 10rem;
  overflow: hidden;
}
.header--bg {
  content: "";
  position: absolute;
  top: 30%;
  right: 0;
  display: block;
  height: 100%;
  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: 30%;
  right: 50%;
  transform: translate(50%, -50%);
  display: block;
  height: 120vw;
  width: 120vw;
  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: 5rem;
  font-weight: bold;
  letter-spacing: 1rem;
  line-height: 1em;
  text-align: start;
  margin-bottom: 1rem;
}
.header--bx p {
  font-weight: bold;
  text-align: right;
  color: #fff;
  padding-right: 0.8rem;
}
.header--lower .header--bg::before {
  background: radial-gradient(
    circle at top,
    #fff 2%,
    #c6b52a 5%,
    #2c3548 25%,
    #222 100%
  );
}
.additional__warning {
  width: 100%;
  line-height: 1em;
  padding: 3rem;
  margin-top: 1em;
}

/*------------------------------------------------------------------------------
Article
------------------------------------------------------------------------------*/
.header--article {
  height: 50vh;
  width: 100vw;
  padding: unset;
  overflow: unset;
}
.header--bg--article {
  position: unset;
  height: 100%;
  width: 100%;
  filter: unset;
}
.header--bg--article::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: var(--edge-width, 10vh);
  width: 100%;
  pointer-events: none;
  z-index: 1;
  left: 0;
  background: linear-gradient(
    1800deg,
    rgba(var(--shade, 34, 34, 34), 1) 10%,
    rgba(var(--shade, 34, 34, 34), 0.9) 30%,
    rgba(var(--shade, 34, 34, 34), 0) 100%
  );
}
.header--article .header--bx {
  top: 78%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  margin: 0;
  mix-blend-mode: unset;
  word-break: unset;
  text-align: center;
}
.header--article img {
  height: 100%;
  object-fit: cover;
}
.header--article h1 {
  text-align: center;
  font-size: 3.25rem;
  letter-spacing: unset;
  margin: 1rem 0 3.5rem;
  line-height: 1.2em;
}
.header--article .post__date {
  display: flex;
  width: max-content;
  padding: 0.25em 2em;
  margin: 0 auto;
  border: 1px solid;
}
.header--article .post__date li:last-child {
  margin-left: 2em;
}
.header--article .post__date li:first-child {
  margin-left: 0;
}
.article__content {
  margin: 12em 0 0;
  white-space: normal;
}
.article__content p {
  line-height: 2em;
  margin-bottom: 2em;
}

/*------------------------------------------------------------------------------
Episode Archive
------------------------------------------------------------------------------*/
.logline__text {
  text-align: left;
}
.episode__list {
  margin-top: 2em;
}
.episode__post {
  position: relative;
}
.episode__post {
  position: sticky;
  background-color: #222;
  margin-bottom: 2rem;
  transition: color 0.5s, background-color 0.5s;
}
.episode__post:hover {
  color: #c6b52a;
  background-color: #444;
}
.episode__post:nth-of-type(1) {
  top: 12vh;
}
.episode__post:nth-of-type(2) {
  top: 16vh;
}
.episode__post:nth-of-type(3) {
  top: 20vh;
}
.episode__post:nth-of-type(4) {
  top: 22vh;
}
.episode__post:nth-of-type(5) {
  top: 26vh;
}
.episode__post:nth-of-type(6) {
  top: 30vh;
}
.episode__post:nth-of-type(7) {
  top: 34vh;
}
.episode__post:nth-of-type(8) {
  top: 38vh;
}
.episode__post:nth-of-type(9) {
  top: 42vh;
}
.episode__post:nth-of-type(10) {
  top: 46vh;
}
#episode--archive .post__cat--list li:first-child {
  font-size: 1.8rem;
  position: absolute;
  top: -2em;
}
#episode--archive .post__cat--list li:nth-child(2) {
  margin-left: 1em;
}
.episode__image {
  display: block;
  height: 25vh;
  width: 100%;
  overflow: hidden;
}
.episode__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 5s ease;
}
.episode__post:hover img {
  transform: scale(1.05);
}
.episode__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  width: 100%;
  line-height: 1rem;
}
.post__info--episode {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
}
.episode__no {
  font-size: 1.1rem;
  margin-right: 1em;
}
.episode__title {
  font-size: 1.5rem;
  overflow-wrap: break-word;
}
.episode__date {
  font-size: 1.1rem;
  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);
  transition: color 0.5s, background-color 0.5s;
}
.episode__pagination--num:first-child {
  margin-left: 0;
}
.episode__pagination--num:last-child {
  margin-right: 0;
}
.episode__pagination--num:hover {
  color: #222;
  background-color: #666;
}
.episode__pagination--num.current {
  color: #fff;
  background-color: #666;
}
#episode--archive .container--flex {
  justify-content: flex-end;
  margin: 4rem 0 2rem;
}
.old__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12em;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.1rem;
  line-height: 3rem;
  padding: 0.25em 1em;
}

/*------------------------------------------------------------------------------
Episode Single
------------------------------------------------------------------------------*/
#episode {
  display: flex;
}
#episode rt {
  font-size: 0.8rem;
}
#episode .header--article {
  margin-left: -5vw;
}
.episode__no--post {
  text-align: center !important;
  font-size: 1.4rem !important;
  margin: 0;
  padding: 0;
}

.episode__side {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  padding: 70px 0 50px;
  color: #f2f6fa;
  background-color: rgba(30, 30, 30, 0.9);
  backdrop-filter: blur(5px);
  overflow-y: scroll;
  transition: transform 0.5s ease-in-out;
  z-index: 10;
  transform: translateX(-100%);
  width: 50vw;
}
.episode__side.open {
  transform: translateX(0);
}
.episode--item {
  display: block;
  padding: 0.5rem 1.5rem;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.5s;
}
.episode--item:first-child {
  border-top: 1px solid #ddd;
  height: 5em;
  display: flex;
  font-size: 1.2rem;
  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 .episode__no,
#episode .episode__title {
  margin-top: 0;
  margin-bottom: 0;
}
.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;
}
.episode__side--info {
  display: flex;
  justify-content: space-between;
}
.button--share,
.sd-button {
  display: inline-block;
  color: #f2f6fa;
  height: auto;
  padding: 0 2em;
  text-align: center;
  line-height: 3rem;
  transition: color 0.5s, transform 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;
}
.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: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  transition: left 0.8s, right 0.5s;
}
.episode--prev:after,
.episode--next:after {
  width: 80%;
}
.episode--prev:before,
.episode--next:before {
  width: 1.4rem;
  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
------------------------------------------------------------------------------*/
.prologue__text {
  text-align: left;
}
.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: height 0.8s ease, width 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: filter 0.5s;
}
.guide__list li:hover .guide__image {
  filter: blur(1px);
}
.guide__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  color: #fff;
  font-size: 3rem;
  transition: transform 0.8s, left 0.8s, top 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;
  align-content: center;
  color: #222;
  background-color: rgba(255, 255, 255, 0.8);
  transition: width 0.5s, padding 0.5s;
  transition-delay: 0.25s;
}
.guide__list li:hover .guide__wrapper {
  width: 24em;
  padding: 0.5rem 0.5rem 0.5rem 1em;
}
.guide__description {
  margin: 0;
  opacity: 0;
  transition: opacity 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: #fff;
  mix-blend-mode: unset;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: color 0.5s, opacity 0.5s, visibility 0.5s;
  transition-delay: 0s;
}
.guide__list li:hover .guide__content .button {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0.25s;
}

/*------------------------------------------------------------------------------
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: filter 0.5s, transform 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%
  );
}
.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: transform 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: filter 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;
  justify-content: flex-start;
}
.character__item {
  position: relative;
  width: calc(50% - 1rem);
  margin: 0.5rem;
  cursor: pointer;
}
.character__image {
  object-fit: cover;
  object-position: top;
  height: 20vh;
  filter: grayscale(1) brightness(0.8);
  transition: transform 1s ease, filter 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: 3.5em;
  left: 1em;
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  line-height: 2rem;
  width: 6em;
  overflow-wrap: anywhere;
  transition: color 1s;
}
.character__item:hover .character__name--en {
  color: initial;
}
.character__name__wrapper {
  width: fit-content;
  margin: 0 auto;
}
.character__name--jp {
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.6rem;
  margin: 1rem;
  height: 3em;
}
#character--modal {
  display: flex;
}
.character__name--en--modal {
  font-size: 3rem;
  font-weight: bold;
  line-height: 3.5rem;
  margin: 1em 0 0.25em;
}
.character__name--jp--modal {
  padding-bottom: 0.5em;
}
.character__description--modal {
  padding-top: 1em;
}
.character__info {
  padding-bottom: 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: transform 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;
}

/*------------------------------------------------------------------------------
Author
------------------------------------------------------------------------------*/
#message .container {
  padding: 5rem 2rem;
}
#message h3 {
  text-align: right;
}
#message span {
  font-size: 1.2rem;
}
.contact__list {
  display: flex;
  flex-direction: column;
  row-gap: 1.8rem;
}
.contact__item {
  display: grid;
  grid-template-columns: 8em 1fr;
  column-gap: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid;
}
.contact__label,
.contact__value {
  margin: 0;
  padding-left: 1em;
  text-align: left;
}
.contact__value a {
  text-decoration: underline;
}
.contact__value a:hover {
  text-decoration: none;
}
#recommend .head {
  text-align: left;
  margin-bottom: 0.8em;
}
.recommend__level {
  background-color: #666;
  font-size: 1.2rem;
  color: #fff;
  padding: 0.5em 1em;
}
.recommend__star,
.recommend__text--star {
  font-weight: bold;
  color: #c6b52a;
  letter-spacing: 0.2em;
}
.recommend__star {
  margin: 0 0.5em;
}
.recommend__list li {
  margin-bottom: 3em;
}
.recommend__title--book {
  margin-bottom: 0.5em;
}
.recommend__info--book {
  font-size: 1.2rem;
  line-height: 1.8em;
  padding-left: 2em;
}
.recommend__review {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  margin-left: 1.5em;
}
.recommend__review a,
.recommend__relations a {
  background-color: #3f425e;
  font-size: 1.1rem;
  color: #fff;
  padding: 0 1em;
  transition: color 0.5s;
}
.recommend__review a:hover,
.recommend__relations a:hover {
  color: #fff;
}
.recommend__relations a {
  display: block;
}
.recommend__relations__list {
  display: flex;
  flex-wrap: wrap;
  margin-left: 1em;
}
.recommend__relations__book {
  margin-right: 1em;
  margin-bottom: 1em !important;
}

/*------------------------------------------------------------------------------
News
------------------------------------------------------------------------------*/
#news .header--bx {
  top: 85%;
}
.post__cat--list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  list-style: none;
}
.post__cat--list li {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}
.post__cat--list a {
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid;
  transition: color 0.5s;
}
.post__cat--list li:first-child a {
  margin-left: 0;
}
.post__cat--list li:last-child a {
  margin-right: 0;
}
#news--archive .post {
  margin: 2rem 0;
  transition: color 0.5s;
}
#news--archive .post:hover {
  color: #c6b52a;
}
#news--archive .post:hover .post__cat {
  color: #fff;
}
.post__cat {
  position: absolute;
  display: flex;
  flex-direction: column;
}
#news--archive .post__cat {
  top: 0.5rem;
  left: -1rem;
  align-items: flex-start;
  z-index: 1;
}
.post__cat a {
  font-size: 1.2rem;
  line-height: 2rem;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  background-color: #ddd;
  transition: color 0.5s;
}
#news--archive .post__cat a {
  background-color: #222;
  padding-left: 2rem;
}
#news--archive .post__cat a:hover {
  color: #c6b52a;
}
.post__box img {
  height: 25vh;
  object-fit: cover;
  transition: transform 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;
  margin: 0;
}
.post__date {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  font-size: 1.2rem;
}
.post__date li:last-child {
  margin-left: 2em;
}
.post__date p {
  margin: 0;
}
.post__navigation {
  width: 100%;
}
.sd-title,
.share-customize-link {
  display: none !important;
}
.sd-content ul {
  display: flex;
}
.sd-content li {
  margin-right: 1em;
  padding-left: 0 !important;
}
