@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : top.css
Description : トップ
===================================================================== */
.bg-fix {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  border: 3.5rem solid #ffffff;
  overflow: hidden;
  -webkit-transition: -webkit-filter 0.5s ease;
  transition: -webkit-filter 0.5s ease;
  transition: filter 0.5s ease;
  transition: filter 0.5s ease, -webkit-filter 0.5s ease;
}
@media screen and (min-width: 768px) {
  .bg-fix {
    right: 0;
    margin: 0 auto;
    width: auto;
    height: auto;
    max-height: 100vh;
    aspect-ratio: 626/849;
    border-width: 4rem;
  }
}
.bg-fix::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/top/img_mv-sp.jpg) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .bg-fix::before {
    background-image: url(../images/top/img_mv-pc.jpg);
  }
}
.bg-fix::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.bg-fix.is-blur {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  will-change: filter;
}
.bg-fix.is-blur::after {
  opacity: 1;
}
.bg-fix-lighting {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: plus-lighter;
  opacity: 0;
  -webkit-transition: opacity 1.5s ease;
  transition: opacity 1.5s ease;
}
.bg-fix-lighting.is-appear {
  opacity: 0.5;
}
.bg-fix-lighting::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  margin-right: calc(-300 / 750 * 100%);
  width: calc(1293 / 750 * 100%);
  padding-top: calc(1141 / 750 * 100%);
  background: url(../images/top/img_lighting01.png) no-repeat top right/100% 100%;
  -webkit-animation: rotate 18s 3s ease-in-out infinite alternate;
          animation: rotate 18s 3s ease-in-out infinite alternate;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  will-change: transform;
}
@media screen and (min-width: 768px) {
  .bg-fix-lighting::before {
    margin-right: calc(-200 / 1280 * 100%);
    width: calc(1496 / 1280 * 100%);
    padding-top: calc(789 / 1280 * 100%);
  }
}
.bg-fix-lighting::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  margin-right: calc(-233 / 750 * 100%);
  width: calc(1191 / 750 * 100%);
  padding-top: calc(1357 / 750 * 100%);
  background: url(../images/top/img_lighting02.png) no-repeat top right/100% 100%;
  -webkit-animation: rotate 18s ease-in-out infinite alternate;
          animation: rotate 18s ease-in-out infinite alternate;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  will-change: transform;
}
@media screen and (min-width: 768px) {
  .bg-fix-lighting::after {
    margin-right: calc(-150 / 1280 * 100%);
    width: calc(1511 / 1280 * 100%);
    padding-top: calc(909 / 1280 * 100%);
  }
}

@-webkit-keyframes rotate {
  0% {
    opacity: 0;
    -webkit-transform: rotate(0deg) translateX(0);
            transform: rotate(0deg) translateX(0);
  }
  20%, 80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(10deg) translate(-10%, -50vh);
            transform: rotate(10deg) translate(-10%, -50vh);
  }
}

@keyframes rotate {
  0% {
    opacity: 0;
    -webkit-transform: rotate(0deg) translateX(0);
            transform: rotate(0deg) translateX(0);
  }
  20%, 80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(10deg) translate(-10%, -50vh);
            transform: rotate(10deg) translate(-10%, -50vh);
  }
}
/* =====================================================================
    Transition Layer 
======================================================================*/
.cd-transition {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  background-color: #ffffff;
}
.cd-transition.visible {
  opacity: 1;
  visibility: visible;
  background: transparent;
}
.cd-transition-layer {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-98%);
          transform: translateY(-50%) translateX(-98%);
  /* its dimentions will be overwritten using jQuery to proportionally fit the viewport */
  height: 100%;
  /* our sprite is composed of 25 frames */
  width: 2500%;
  background: url(../images/common/ink.png) no-repeat 0 0;
  background-size: 100% 100%;
  -webkit-filter: blur(8px);
          filter: blur(8px);
}
.cd-transition.closing .cd-transition-layer {
  -webkit-animation: cd-sequence-reverse 1.5s steps(24);
          animation: cd-sequence-reverse 1.5s steps(24);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes cd-sequence-reverse {
  0% {
    -webkit-transform: translateY(-50%) translateX(-98%);
            transform: translateY(-50%) translateX(-98%);
  }
  100% {
    -webkit-transform: translateY(-50%) translateX(-2%);
            transform: translateY(-50%) translateX(-2%);
  }
}

@keyframes cd-sequence-reverse {
  0% {
    -webkit-transform: translateY(-50%) translateX(-98%);
            transform: translateY(-50%) translateX(-98%);
  }
  100% {
    -webkit-transform: translateY(-50%) translateX(-2%);
            transform: translateY(-50%) translateX(-2%);
  }
}
/* =====================================================================
    共通
======================================================================*/
.header {
  margin-top: -100vh;
}

.main {
  margin-top: 120vh;
}
.main > * {
  padding: 12rem 0;
}
.main > *:last-child {
  padding-bottom: 24rem;
}

/* =====================================================================
    mv
======================================================================*/
.mv {
  width: 100%;
  height: 100vh;
}
.mv-anime {
  position: absolute;
  display: grid;
  justify-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}
.mv-anime-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 1;
}
.mv-anime-ttl {
  display: none;
  width: calc(640 / 750 * 100%);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .mv-anime-ttl {
    max-width: 720px;
    width: calc(720 / 1600 * 100%);
  }
}
.mv > .inner {
  display: grid;
  -ms-flex-line-pack: end;
      align-content: end;
  padding-bottom: 7rem;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .mv h1 {
    margin: 0 auto;
    width: calc(631 / 1080 * 100%);
  }
}
@media (min-aspect-ratio: 16/11) {
  .mv h1 {
    max-width: 64vh;
  }
}
.mv-date {
  text-align: center;
  font-size: 4.8rem;
  font-family: "Noto Serif JP", serif;
  color: #ffffff;
  letter-spacing: -0.03em;
  text-shadow: #686b64 0 0 0.2em, #686b64 0 0 0.5em, #686b64 0 0 0.5em;
}
@media (min-aspect-ratio: 16/11) {
  .mv-date {
    font-size: 4vh;
  }
}
.mv-date .ff-en {
  font-size: 120%;
}

/* =====================================================================
    intro
======================================================================*/
.intro-text {
  font-family: "Noto Serif JP", serif;
}
.intro-catch {
  text-align: center;
  margin-bottom: 12rem;
  font-family: "Noto Serif JP", serif;
  font-size: 180%;
  line-height: 1.8;
  letter-spacing: 0.3em;
}
@media screen and (min-width: 768px) {
  .intro-catch {
    margin-bottom: 8rem;
    font-size: 4.6rem;
  }
}
.intro-text {
  text-align: center;
  font-size: 2.8rem;
  line-height: 3 !important;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .intro-text {
    font-size: 2rem;
    font-size: max(2rem, 15px);
    letter-spacing: 0.2em;
  }
}
.intro-text em {
  font-style: normal;
  font-size: 174%;
  line-height: 1.5;
}

/* =====================================================================
    cast
======================================================================*/
.cast-list li figure {
  position: relative;
  margin: 0 auto 6rem;
  width: calc(360 / 680 * 100%);
  -webkit-filter: drop-shadow(0 0 1.6rem rgba(125, 128, 121, 0.25));
          filter: drop-shadow(0 0 1.6rem rgba(125, 128, 121, 0.25));
}
@media screen and (min-width: 768px) {
  .cast-list li figure {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0 calc(80 / 1080 * 100%) 0 0;
    width: calc(270 / 1080 * 100%);
  }
}
.cast-list li p {
  margin: 0 auto;
  width: calc(560 / 680 * 100%);
}
@media screen and (min-width: 768px) {
  .cast-list li p {
    width: calc(860 / 1080 * 100%);
  }
}
@media screen and (min-width: 768px) {
  .cast-list-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 4rem;
  }
}
.cast-list-name {
  text-align: center;
  margin-bottom: 8rem;
}
@media screen and (min-width: 768px) {
  .cast-list-name {
    margin: 0;
  }
}
.cast-list-name dt {
  font-family: "Noto Serif JP", serif;
  font-size: 200%;
  letter-spacing: 0.2em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .cast-list-name dt {
    font-size: 4rem;
    font-size: max(4rem, 28px);
  }
}
.cast-list-name dd {
  margin-top: 0.3em;
  font-size: 139%;
  letter-spacing: 0.2em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .cast-list-name dd {
    font-size: 175%;
  }
}
.cast-list-comment {
  margin-top: 5rem;
}
.cast-list-comment dd strong {
  display: block;
  padding-bottom: 1em;
}
.cast-list-comment dd strong::before {
  content: "Q.";
  font-family: "Caudex", serif;
}

.banner-tver {
  margin: 10rem auto 0;
  width: calc(600 / 680 * 100%);
}
@media screen and (min-width: 768px) {
  .banner-tver {
    width: calc(500 / 1080 * 100%);
  }
}
.banner-tver a {
  border: 1.2rem solid rgba(255, 255, 255, 0.4);
  -webkit-filter: drop-shadow(0 0 1.6rem rgba(125, 128, 121, 0.25));
          filter: drop-shadow(0 0 1.6rem rgba(125, 128, 121, 0.25));
}
@media screen and (min-width: 768px) {
  .banner-tver a {
    -webkit-transition: -webkit-filter 0.4s ease;
    transition: -webkit-filter 0.4s ease;
    transition: filter 0.4s ease;
    transition: filter 0.4s ease, -webkit-filter 0.4s ease;
  }
  .banner-tver a:hover {
    opacity: 1 !important;
    -webkit-filter: drop-shadow(0 0 1.76rem rgba(125, 128, 121, 0.5));
            filter: drop-shadow(0 0 1.76rem rgba(125, 128, 121, 0.5));
  }
}

/* =====================================================================
    original
======================================================================*/
@media screen and (min-width: 768px) {
  .original-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: -9.2592592593%;
    width: calc(1280 / 1080 * 100%);
  }
  .original-content-right {
    width: calc(700 / 1280 * 100%);
  }
}
.original-book-img {
  margin: 0 auto 6rem;
  width: calc(560 / 680 * 100%);
}
@media screen and (min-width: 768px) {
  .original-book-img {
    margin: 0;
    width: calc(500 / 1280 * 100%);
  }
}
.original-book-img img {
  border: 2.2rem solid rgba(255, 255, 255, 0.4);
  -webkit-filter: drop-shadow(0 0 1.6rem rgba(125, 128, 121, 0.25));
          filter: drop-shadow(0 0 1.6rem rgba(125, 128, 121, 0.25));
}
.original-book-img figcaption {
  margin-top: 0.5em;
  padding-left: 2.2rem;
  font-size: 80%;
}
.original-book-desc {
  margin-bottom: 6rem;
}
.original-book-desc > * {
  line-height: 1.3 !important;
}
.original-book-desc dt {
  text-align: center;
  margin-bottom: 2rem;
  font-family: "Noto Serif JP", serif;
  font-size: 200%;
}
@media screen and (min-width: 768px) {
  .original-book-desc dt {
    font-size: 4rem;
    font-size: max(4rem, 28px);
  }
}
.original-book-desc-author {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .original-book-desc-author {
    font-size: 125%;
  }
}
.original-book-desc-publisher {
  text-align: center;
  font-size: 80%;
}
@media screen and (max-width: 767px) {
  .original-commnet {
    margin: 0 auto;
    width: calc(660 / 680 * 100%);
  }
}

.original-commnet strong {
  display: block;
  text-align: center;
  font-family: "Caudex", serif;
  margin-bottom: 0.5em;
  font-size: 145%;
  font-weight: normal;
}

/* =====================================================================
    staff
======================================================================*/
.staff-list {
  font-size: 1.2em;;
}
@media screen and (max-width: 767px) {
  .staff-list {
    margin: 0 auto;
    width: calc(560 / 680 * 100%);
  }
}
.staff-list li:not(:last-child) {
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .staff-list li:not(:last-child) {
    margin-bottom: 3rem;
  }
}
.staff-list li dl {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .staff-list li dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: left;
  }
}
.staff-list li dl > * {
  line-height: 2;
}
.staff-list li dl dt {
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .staff-list li dl dt {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 0.5em;
  }
}
.staff-list-comment {
  display: inline-block !important;
  padding: 0.2em 0.8em;
  font-family: "Caudex", serif;
  font-size: 75%;
  line-height: 1;
  background-color: #ffffff;
  border-radius: 3em;
  -webkit-filter: drop-shadow(0 0 0.5rem rgba(125, 128, 121, 0.25));
          filter: drop-shadow(0 0 0.5rem rgba(125, 128, 121, 0.25));
}
@media screen and (min-width: 768px) {
  .staff-list-comment {
    -webkit-transition: -webkit-filter 0.4s ease;
    transition: -webkit-filter 0.4s ease;
    transition: filter 0.4s ease;
    transition: filter 0.4s ease, -webkit-filter 0.4s ease;
  }
  .staff-list-comment:hover {
    opacity: 1 !important;
    -webkit-filter: drop-shadow(0 0 0.55rem rgba(125, 128, 121, 0.5));
            filter: drop-shadow(0 0 0.55rem rgba(125, 128, 121, 0.5));
  }
}

.popup-comment dt {
  text-align: center;
  font-family: "Caudex", serif;
  margin-bottom: 0.5em;
  font-size: 145%;
  font-weight: normal;
}

/* =====================================================================
    sns
======================================================================*/
.sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sns-list li {
  width: 8.333em;
  height: 8.333em;
  margin: 0 calc(8 / 680 * 100%);
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  .sns-list li {
    margin: 0 calc(8 / 680 * 100%);
    font-size: 2rem;
  }
}
.sns-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0.8em;
  width: 100%;
  height: 100%;
  text-align: center;
  border: 0.8rem solid #ffffff;
}
@media screen and (min-width: 768px) {
  .sns-list li a {
    -webkit-transition-property: background-color;
    transition-property: background-color;
  }
  .sns-list li a:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.5);
  }
}
.sns-list li a svg {
  margin-bottom: 2em;
  width: 1.5em;
  height: 1.5em;
}
.sns-list li a span {
  font-family: "Caudex", serif;
  letter-spacing: 0;
  white-space: nowrap;
}/*# sourceMappingURL=top.css.map */