@charset "UTF-8";
body {
  font-family: "Noto Serif JP", serif;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.fixed-background {
  min-height: 20vh;
  background-attachment: fixed;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .fixed-background {
    min-height: 70vh;
    background-size: cover;
  }
}

.introduction-bottom__fixed-image {
  background-image: url(../images/common/Karen_080-sp.png);
}
@media screen and (min-width: 768px) {
  .introduction-bottom__fixed-image {
    background-image: url(../images/common/Karen_080.png);
  }
}

.cast-bottom__fixed-image {
  background-image: url(../images/common/Kana_360-sp.png);
}
@media screen and (min-width: 768px) {
  .cast-bottom__fixed-image {
    background-image: url(../images/common/Kana_360.png);
  }
}

.header {
  background-color: transparent;
  color: #fff;
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
@media screen and (min-width: 1024px) {
  .header {
    height: 60px;
  }
}

.header.change-color {
  background-color: #00599D;
  opacity: 0.9;
}

.header__inner {
  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;
  height: inherit;
  /*親要素の高さを継承*/
  position: relative;
}

.header__logo {
  opacity: 0;
  visibility: hidden;
  width: 130px;
  z-index: 200;
}
@media screen and (min-width: 1024px) {
  .header__logo {
    width: 170px;
  }
}

.header__logo.active {
  opacity: 1;
  visibility: visible;
}

.header__hamburger {
  width: 32px;
  height: 32px;
  z-index: 300;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger span {
  width: 100%;
  height: 2.25px;
  background-color: #fff;
  position: relative;
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s;
  display: block;
  border-radius: 5px;
}

.header__hamburger span.active .header__hamburger span:nth-child(1) {
  top: 0;
}

.header__hamburger span:nth-child(2) {
  margin: 4.5px 0;
}

.header__hamburger span:nth-child(3) {
  top: 0;
}

.header__hamburger.active span {
  background-color: #fff;
}

.header__hamburger.active span:nth-child(1) {
  top: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  top: -8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.top-header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: #00599D;
}
@media screen and (min-width: 1024px) {
  .top-header__nav {
    position: static;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
    background-color: inherit;
    height: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    width: auto;
  }
}

.top-header__nav.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s;
}

.top-header__nav__items {
  text-align: center;
  padding-top: 100px;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .top-header__nav__items {
    padding-top: 0;
    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;
    height: inherit;
  }
}

.top-header__nav__item:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  .top-header__nav__item:not(:first-child) {
    margin-left: 1.5625rem;
    margin-top: 0;
  }
}

.top-header__nav__item a {
  font-family: "Libre Baskerville", serif;
  text-transform: capitalize;
  font-size: 20px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .top-header__nav__item a {
    font-size: 16px;
  }
}
.top-header__nav__item a:after {
  position: absolute;
  bottom: -2px;
  left: 25%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  width: 50%;
  height: 1.5px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.top-header__nav__item a:hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.twitter::before {
  font-family: "Font Awesome 6 Brands";
  content: "\f099";
}

.instagram::before {
  font-family: "Font Awesome 6 Brands";
  content: "\f16d";
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1150px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.return-top {
  background-color: #c8dde9;
  color: #333;
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.return-top.active {
  opacity: 1;
  visibility: visible;
}

.return-top:hover {
  background-color: #fff;
}

.section__sub-title {
  margin-top: 20px;
  font-size: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section__sub-title {
    font-size: 1.625rem;
  }
}

.section__text {
  margin-top: 40px;
  margin-top: 2.5rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .section__text {
    margin-top: 3.125rem;
    font-size: 18px;
    line-height: 1.8;
  }
}

@media screen and (min-width: 768px) {
  .section__story-text__inner {
    width: 64%;
    margin-left: auto;
    margin-right: auto;
  }
}

.section__title {
  display: block;
  width: 220px;
  font-family: "Allura", cursive;
  text-transform: capitalize;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
  background-image: url(../images/common/section-title.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .section__title {
    width: 300px;
    font-size: 1.875rem;
  }
}

.section {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .section {
    margin-bottom: 3.125rem;
  }
}

.top-cast__container {
  margin-top: 50px;
  margin-bottom: 50px;
}

.top-cast__info {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .top-cast__info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .top-cast__info:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.top-cast__image {
  height: auto;
}
@media screen and (min-width: 768px) {
  .top-cast__image {
    width: 40%;
  }
}

.top-cast__text {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-cast__text {
    width: 45%;
    margin-top: 0;
    padding: 0 5%;
  }
}

.top-cast__sub-name {
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.1em;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .top-cast__sub-name {
    font-size: 24px;
  }
}

.top-cast__name {
  font-size: 26px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .top-cast__name {
    font-size: 30px;
  }
}

.top-cast__career {
  margin-top: 10px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.firstview-bottom {
  padding-top: 70px;
  padding-bottom: 35px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .firstview-bottom {
    padding-top: 130px;
    padding-bottom: 70px;
  }
}

.firstview-bottom__sub-title {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .firstview-bottom__sub-title {
    font-size: 1.75rem;
  }
}

.firstview-bottom__title {
  letter-spacing: 0.08em;
  padding-top: 10px;
  padding-top: 0.625rem;
  font-size: 26px;
  font-size: 1.625rem;
}
@media screen and (min-width: 768px) {
  .firstview-bottom__title {
    font-size: 2.25rem;
  }
}

.man-cast__container {
  margin-top: 50px;
  margin-bottom: 50px;
}

.man-cast__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .man-cast__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 50px;
  }
}

.man-cast__info {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .man-cast__info {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .man-cast__info:nth-of-type(even) {
    margin-left: 50px;
  }
}

.man-cast__text {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .man-cast__text {
    margin-top: 15px;
  }
}

.man-cast__name {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .man-cast__name {
    font-size: 24px;
  }
}

.man-cast__career {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .man-cast__career {
    margin-top: 10px;
  }
}

@media screen and (min-width: 768px) {
  .namura--info {
    margin-right: 50px;
  }
}

@media screen and (min-width: 768px) {
  .namura--image {
    width: 50%;
  }
}

.release-info {
  background-color: #333;
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .release-info {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

.release-info__container {
  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;
}
@media screen and (min-width: 768px) {
  .release-info__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.5rem;
  }
}

.section-staff {
  margin-bottom: 0;
}

.staff__info {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 20px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .staff__info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.top-staff__text {
  text-align: center;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .top-staff__text {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .top-staff__text:nth-child(even) {
    margin-left: 50px;
  }
}

.top-staff__career {
  text-align: left;
  margin-top: 10px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .top-staff__career {
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
}

.section-skyblue {
  background-color: #c8dde9;
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .section-skyblue {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.top-story__images {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-story__images {
    margin-top: 50px;
  }
}

.top-story__image:not(:first-child) {
  margin-top: 50px;
  margin-top: 3.125rem;
}

@media screen and (min-width: 768px) {
  .story-image__container {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}

.story__title {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .story__title {
    font-size: 20px;
    margin-top: 20px;
  }
}

.story__title--mini {
  width: 100%;
  font-size: 16.5px;
  font-weight: bold;
  text-align: center;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .story__title--mini {
    font-size: 20px;
    margin-top: 20px;
  }
}

.story__text {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .story__text {
    margin-top: 20px;
  }
}

.section-theater {
  margin-top: 50px;
}

.theater-container {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .theater-container {
    margin-top: 50px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.theater-text__container {
  margin-right: 0;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .theater-text__container {
    margin-right: 30px;
    margin-bottom: 0;
  }
}

.theater__name {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .theater__name {
    font-size: 27px;
  }
}

.theater__adress {
  font-size: 16px;
  margin-bottom: 10px;
}

.theater__tel {
  margin-bottom: 10px;
}

.theater__url {
  color: #00599D;
  margin-bottom: 10px;
}

.theater__url:hover {
  text-decoration: underline;
}

.theater__time {
  font-size: 18px;
  font-weight: bold;
}

.video-container {
  text-align: center;
}

.trailer {
  width: 90%;
  height: auto;
  margin-top: 30px;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .trailer {
    width: 70%;
    margin-top: 50px;
  }
}
/*# sourceMappingURL=styles.css.map */
