/*
Theme Name: 勇者パーティーにかわいい子がいたので告白してみた
Author: DomiNatorZ
Description: A theme for 勇者パーティーにかわいい子がいたので告白してみた
Version: 1.0
*/

/* 変数 */

:root {
  --breakpoint-xl: 1400px;
  --breakpoint-lg: 1100px;
  --breakpoint-md: 900px;
  --breakpoint-sm: 736px;
  --section-max-width: 1100px;
  --scale-unit: calc(100vw / 375);
  --scale-unit-height: calc(100vh / 812);
  --color-blue: #13c2ea;
  --color-pink: #fa7198;
  --color-purple: #7978c4;
  --text-color: #312d2d;
  --loading-duration: 1s;
}

/* how to use */
/* --scale-unit */
/* .element {
  width: calc(375 * var(--scale-unit)); // 横幅375pxの要素の場合
}
*/

/* 全体 */

.pc {
  display: block;
}
.sp {
  display: none;
}
@media (max-width: 736px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block;
  }
}

html {
  overflow: auto;
}
html.drawerOpen {
  overflow: hidden;
}

body {
  width: 100%;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  color: var(--text-color);
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}
@media (max-width: 736px) {
  body {
    min-width: auto;
  }
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
a:focus,
button:focus {
  outline: none !important;
}
input,
textarea {
  background-color: #fff;
  border: 1px solid #cad1cf;
  border-radius: 5px;
  box-sizing: border-box;
}
input::placeholder,
textarea::placeholder {
  color: #cad1cf;
}

input:focus,
textarea:focus {
  outline: 1px var(--text-color) solid;
}

input[type="radio"] {
  outline: none;
  width: 20px;
  height: 20px;
  accent-color: var(--text-color);
}
::placeholder {
  color: #ccc;
}
main {
  flex: 1;
}
@media (min-width: 737px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
a {
  transition: opacity 0.3s ease;
  display: inline-block;
}
a:hover {
  opacity: 0.7;
}
@media (max-width: 736px) {
  a:hover {
    opacity: 1;
  }
}
:root :where(p.has-background) {
  padding: 1.5em;
}
@media (max-width: 736px) {
  :root :where(p.has-background) {
    padding: 1em;
  }
}
.link-btn {
  position: relative;
  width: 240px;
  padding-bottom: 5%;
  transition: letter-spacing 0.3s ease;
  vertical-align: bottom;
}
@media (max-width: 736px) {
  .link-btn {
    width: calc(200 * var(--scale-unit));
    padding-bottom: 12%;
  }
}
.link-btn__text {
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 736px) {
  .link-btn__text {
    font-size: calc(16 * var(--scale-unit));
  }
}
.link-btn__image,
.link-btn__image-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.link-btn__image-hover {
  opacity: 0;
}
@media (hover: hover) {
  .link-btn:hover {
    opacity: 0.8;
    letter-spacing: 0.1em;
  }
  .link-btn:hover .link-btn__image-hover {
    opacity: 1;
  }
}

/* Header+ハンバーガー */

.header {
  position: fixed;
  top: 56px;
  right: 56px;
  z-index: 1000000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media (max-width: 736px) {
  .header {
    top: calc(15 * var(--scale-unit));
    right: calc(15 * var(--scale-unit));
  }
}
.header.header--visible {
  opacity: 1;
  pointer-events: auto;
}
.header__button,
.nav__button {
  width: 88px;
  padding-bottom: 100%;
  position: relative;
  vertical-align: bottom;
}
@media (max-width: 736px) {
  .header__button,
  .nav__button {
    width: calc(48 * var(--scale-unit));
  }
}
.header__menu-icon-image,
.nav__button-icon-image {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
}
.header__menu-icon-image--hover,
.nav__button-icon-image--hover {
  opacity: 0;
}
@media (hover: hover) {
  .header__button:hover .header__menu-icon-image,
  .nav__button:hover .nav__button-icon-image {
    opacity: 0;
  }
  .header__button:hover .header__menu-icon-image--hover,
  .nav__button:hover .nav__button-icon-image--hover {
    opacity: 1;
  }
}
.header__top-logo {
  width: 400px;
  margin: 56px 0 0 56px;
}
@media (max-width: 736px) {
  .header__top-logo {
    width: calc(160 * var(--scale-unit));
    margin: calc(15 * var(--scale-unit)) 0 0 calc(15 * var(--scale-unit));
  }
}
.drawer {
  position: fixed;
  z-index: 9999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.drawer__nav {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 736px) {
  .drawer__nav {
    width: 100vw;
  }
}
.nav {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background-image: url(./images/bg_pink.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 736px) {
  .nav {
    overflow-y: auto;
    overflow-x: hidden;
  }
}
.nav__button {
  z-index: 999;
  position: sticky;
  top: 56px;
  left: 100%;
  margin-right: 56px;
  padding-bottom: 5%;
}
@media (max-width: 736px) {
  .nav__button {
    top: calc(15 * var(--scale-unit));
    margin-right: calc(15 * var(--scale-unit));
    padding-bottom: 13%;
  }
}
.nav__list-wrap {
  width: 1044px;
  margin: 0 auto 144px;
}
@media (max-width: 736px) {
  .nav__list-wrap {
    width: 100%;
    margin: 0 auto calc(24 * var(--scale-unit));
  }
}
.nav__list {
  box-sizing: border-box;
  width: 100%;
  list-style-type: none;
  margin: 120px 0 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  grid-template-rows: repeat(4, 125px);
  justify-content: space-between;
}
@media (max-width: 736px) {
  .nav__list {
    margin: 0;
    row-gap: 8px;
    grid-template-columns: 1fr;
    grid-template-rows: max-content;
  }
}
.nav__link {
  text-decoration: none;
  display: block;
  position: relative;
}
@media (hover: hover) {
  .nav__link:hover .nav__heading {
    transform: rotate(3deg);
  }
  .nav__link:hover .nav__heading-bg {
    opacity: 0;
  }
}
.nav__item--top {
  grid-column: 1 / 2;
}
.nav__item--news {
  grid-column: 1 / 2;
}
.nav__item--intro {
  grid-column: 1 / 2;
}
.nav__item--chara {
  grid-column: 1 / 2;
}
.nav__item--staffcast {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.nav__item--books {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
.nav__item--movie {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}
@media (max-width: 736px) {
  .nav__item {
    width: fit-content;
    grid-column: auto;
    grid-row: auto;
    margin-left: calc(32 * var(--scale-unit));
  }
}
.nav__link--top {
  width: 262px;
  padding-bottom: 25%;
}
.nav__link--news {
  width: 273px;
  padding-bottom: 25%;
}
.nav__link--intro {
  width: 445px;
  padding-bottom: 28%;
}
.nav__link--chara {
  width: 378px;
  padding-bottom: 28%;
}
.nav__link--staffcast {
  width: 482px;
  padding-bottom: 27%;
}
.nav__link--books {
  width: 289px;
  padding-bottom: 24%;
}
.nav__link--movie {
  width: 289px;
  padding-bottom: 24%;
}
@media (max-width: 736px) {
  .nav__link--top {
    width: calc(129 * var(--scale-unit));
    padding-bottom: 38%;
  }
  .nav__link--news {
    width: calc(134 * var(--scale-unit));
    padding-bottom: 38%;
  }
  .nav__link--intro {
    width: calc(219 * var(--scale-unit));
    padding-bottom: 25%;
  }
  .nav__link--chara {
    width: calc(186 * var(--scale-unit));
    padding-bottom: 28%;
  }
  .nav__link--staffcast {
    width: calc(237 * var(--scale-unit));
    padding-bottom: 24%;
  }
  .nav__link--books {
    width: calc(142 * var(--scale-unit));
    padding-bottom: 34%;
  }
  .nav__link--movie {
    width: calc(142 * var(--scale-unit));
    padding-bottom: 34%;
  }
}
.nav__heading {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 97%;
  transition: transform 0.3s ease;
}
.nav__heading-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.nav__sns {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
@media (max-width: 736px) {
  .nav__sns {
    margin-top: calc(16 * var(--scale-unit));
    gap: calc(8 * var(--scale-unit));
  }
}
.nav__sns-heading {
  width: 168px;
  margin-right: 16px;
}
@media (max-width: 736px) {
  .nav__sns-heading {
    width: calc(88 * var(--scale-unit));
    margin-right: calc(8 * var(--scale-unit));
  }
}
.nav__sns-link {
  width: 40px;
}
@media (max-width: 736px) {
  .nav__sns-link {
    width: calc(32 * var(--scale-unit));
  }
}
.nav__serialization-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-pink);
  margin-top: 44px;
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 736px) {
  .nav__serialization-text {
    font-size: calc(12 * var(--scale-unit));
    margin-top: calc(16 * var(--scale-unit));
    margin-bottom: 4px;
  }
}
.nav__serialization-banner {
  display: block;
  width: 360px;
  margin: 0 auto;
}
@media (max-width: 736px) {
  .nav__serialization-banner {
    width: calc(200 * var(--scale-unit));
  }
}
.drawer[aria-expanded] {
  transition-property: visibility;
  transition-duration: 0.5s;
}
.drawer[aria-expanded] .drawer__backdrop {
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-timing-function: ease;
}
.drawer[aria-expanded] .drawer__nav {
  transition-property: transform;
  transition-duration: 0.8s;
  transition-timing-function: ease;
}
@media (max-width: 736px) {
  .drawer[aria-expanded] .drawer__nav {
    transition-duration: 0.5s;
  }
}
.drawer[aria-expanded="true"] {
  visibility: visible;
  transition-duration: 0s;
}
.drawer[aria-expanded="true"] .drawer__backdrop {
  opacity: 1;
}
.drawer[aria-expanded="true"] .drawer__nav {
  transform: translateX(0);
}
.drawer[aria-expanded="false"] {
  visibility: hidden;
}
.drawer[aria-expanded="false"] .drawer__backdrop {
  opacity: 0;
}
.drawer[aria-expanded="false"] .drawer__nav {
  transform: translateX(100%);
}

body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-image: url(./images/back_fix.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 736px) {
  body::before {
    background-image: url(./images/back_fix_sp.jpg);
  }
}

/* Hero Section */

.hero {
  margin-bottom: 112px;
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
}
.hero.active {
  opacity: 1;
}
@media (max-width: 736px) {
  .hero {
    margin-bottom: 80px;
    overflow-x: hidden;
  }
}
.hero__inner {
  position: relative;
  width: 100%;
  max-width: 1632px;
  margin: 0 auto;
}
.hero__inner-wrap {
  display: grid;
  grid-template-columns: 496px 1fr;
}
@media (max-width: 1650px) {
  .hero__inner-wrap {
    zoom: 0.85;
  }
}
@media (max-width: 1400px) {
  .hero__inner-wrap {
    zoom: 0.7;
  }
}
@media (max-width: 1140px) {
  .hero__inner-wrap {
    zoom: 0.6;
  }
}
@media (max-width: 960px) {
  .hero__inner-wrap {
    zoom: 0.45;
  }
}
@media (max-width: 736px) {
  .hero__inner-wrap {
    zoom: 1;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 736px) {
  .hero__text-wrap {
    width: 100%;
    min-width: auto;
    grid-row: 2 / 3;
  }
}
.hero__text-inner {
  padding: 0 52px 0 72px;
}
@media (max-width: 736px) {
  .hero__text-inner {
    padding: 0;
  }
}
.hero__image-wrap {
  position: relative;
  z-index: -1;
  width: 1122px;
  width: calc(100% - 48px);
  margin-top: 48px;
}
@media (max-width: 736px) {
  .hero__image-wrap {
    width: 100%;
    grid-row: 1 / 2;
    margin-top: clamp(6.25rem, 1.058rem + 25.96vw, 13rem);
  }
}
.hero__image-mv {
  position: relative;
  z-index: 1;
  display: block;
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
  transition-delay: .6s;
}
.hero.active .hero__image-mv {
  transform: rotate(0);
}
@media (max-width: 736px) {
  .hero__image-mv {
    width: calc(348 * var(--scale-unit));
    height: auto;
    margin-left: calc(8 * var(--scale-unit));
    transform: rotate(-1deg);
  }
}
.hero__image-mv-dot {
  position: absolute;
  bottom: -30px;
  left: 40px;
  width: 100%;
  height: 100%;
  z-index: 0;
  transform-origin: bottom left;
  transition: transform 0.4s ease;
  transform: rotate(-3deg);
  transition-delay: 0.9s;
}
.hero.active .hero__image-mv-dot {
  transform: rotate(0);
}
@media (max-width: 736px) {
  .hero__image-mv-dot {
    width: calc(360 * var(--scale-unit));
    height: auto;
    left: 50%;
    top: 0;
    transform: translateX(-50%) rotate(-3deg);
    bottom: auto;
  }
  .hero.active .hero__image-mv-dot {
    transform: translateX(-50%) rotate(0);
  }
}
.hero__title {
  margin: 58px 0 56px;
  width: 552px;
}
@media (max-width: 736px) {
  .hero__title {
    width: calc(160 * var(--scale-unit));
    position: absolute;
    top: 16px;
    left: calc(16 * var(--scale-unit));
    margin: 0;
  }
}
.hero-nav__list {
  list-style-type: none;
  width: 368px;
  display: grid;
  grid-template-rows: repeat(5, 104px);
}
.hero-nav__link {
  text-decoration: none;
  position: relative;
}
@media (hover: hover) {
  .hero-nav__link:hover {
    opacity: 1;
  }
  .hero-nav__link:hover .hero-nav__heading {
    transform: rotate(3deg);
  }
  .hero-nav__link:hover .hero-nav__heading-bg {
    opacity: 0;
  }
}
.hero-nav__link--news {
  width: 205px;
  padding-bottom: 23%;
}
.hero-nav__link--intro {
  width: 335px;
  padding-bottom: 27%;
}
.hero-nav__link--chara {
  width: 284px;
  padding-bottom: 25%;
}
.hero-nav__link--staff-cast {
  width: 363px;
  padding-bottom: 27%;
}
.hero-nav__link--books {
  width: 217px;
  padding-bottom: 24%;
}
.hero-nav__link--movie {
  width: 217px;
  padding-bottom: 24%;
}
.hero-nav__heading {
  position: absolute;
  top: 0;
  left: 0;
  width: 96%;
  z-index: 1;
  transition: transform 0.3s ease;
}
.hero-nav__heading-bg {
  position: absolute;
  width: 100%;
  z-index: 0;
  transition: opacity 0.3s ease;
}
.hero-sns {
  display: flex;
  justify-content: start;
  gap: 8px;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 56px;
}
.hero-sns__heading {
  width: 103px;
  margin-right: 16px;
}
.hero-sns__link {
  width: 40px;
}
.hero-serialization {
  width: 360px;
}
.hero-serialization__text {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-pink);
  margin-bottom: 8px;
}
.hero__video-wrap {
  width: 360px;
  margin-top: 56px;
}
@media (max-width: 736px) {
  .hero__video-wrap {
    margin-top: 16px;
    margin-inline: auto;
    width: calc(280 * var(--scale-unit));
  }
}
.hero__image-wrap .slideshow__slides {
  height: auto;
  aspect-ratio: 1 / 1.415;
}
@media (max-width: 736px) {
  .hero__image-wrap .slideshow__slides {
    aspect-ratio: 1 / 1.35;
  }
}
/* .hero-select-visual__inner {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 736px) {
  .hero-select-visual__inner {
    width: calc(40 * var(--scale-unit));
    gap: 5px;
    top: auto;
    bottom: 10px;
    right: calc(16 * var(--scale-unit));
  }
}
.hero-select-visual__image {
  position: relative;
}
.hero-select-visual {
  filter: brightness(0.5);
}
.hero-select-visual.slideshow__dot--active {
  filter: brightness(1);
  pointer-events: none;
  border: 2px solid #eb6ea5;
  border-radius: 50%;
} */
.hero__video-button {
  position: relative;
}
.hero__video-button .hero__video-thumbnail {
  filter: brightness(0.8);
  border-radius: 5px;
  transition: filter 0.3s ease;
}
@media (max-width: 736px) {
  .hero__video-inner {
    text-align: center;
  }
  .hero__video-button {
    width: calc(345 * var(--scale-unit));
    height: auto;
    margin: 0 auto;
  }
  .hero__video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.hero__video-button:hover .hero__video-thumbnail {
  filter: brightness(1);
}
@media (max-width: 736px) {
  .hero__video-button .hero__video-thumbnail {
    filter: brightness(1);
  }
}
.hero__video-button:hover .hero__video-scope {
  transform: translate(-50%, -50%) rotate(180deg) scale(0.9);
}
@media (max-width: 736px) {
  .hero__video-button:hover .hero__video-scope {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
}
.hero__video-start,
.hero__video-scope {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero__video-start {
  width: 6.4rem;
  height: 6.4rem;
  left: 50.2%;
}
@media (max-width: 736px) {
  .hero__video-start {
    width: calc(56 * var(--scale-unit));
    height: auto;
    left: 50.4%;
  }
}
.hero__video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
@media (max-width: 736px) {
  .hero__video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}
.hero__video-caption {
  margin-top: 12px;
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
  color: var(--main-color);
}
@media (max-width: 736px) {
  .hero__video-caption {
    font-size: calc(18 * var(--scale-unit));
    margin-bottom: 56px;
  }
}
.hero__video-caption-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 1rem;
}
@media (max-width: 736px) {
  .hero__video-caption-text {
    padding-inline: 1em;
  }
}
.hero__loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-image: url(./images/back_fix.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.5s ease, visibility 0s ease 2s;
}
@media (max-width: 736px) {
  .hero__loading {
    background-image: url(./images/back_fix_sp.jpg);
  }
}
.hero__loading.delete {
  opacity: 0;
  visibility: hidden;
}
.hero__loading img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 552px;
  transition:
    top var(--loading-duration) ease,
    left var(--loading-duration) ease,
    transform var(--loading-duration) ease;
  }
  .hero__loading.active img {
  top: 58px;
  left: 72px;
  transform: translate(0, 0);
}
@media (max-width: 1400px) {
  .hero__loading img {
    zoom: 0.8;
  }
}
@media (max-width: 1100px) {
  .hero__loading img {
    zoom: 0.7;
  }
}
@media (max-width: 900px) {
  .hero__loading img {
    zoom: 0.55;
  }
}
@media (max-width: 736px) {
  .hero__loading img {
    zoom: 1;
    width: calc(200 * var(--scale-unit));
  }
  .hero__loading.active img {
    top: 16px;
    left: calc(16 * var(--scale-unit));
  }
}

/* news Section */

.news {
  position: relative;
}
.news::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(./images/news_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  transition: clip-path 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.65s;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
@media (max-width: 736px) {
  .news::before {
    background-image: url(./images/news_bg_sp.png);
  }
}
.page-news__wrap .news::before,
.single-post .news::before {
  content: none;
}
@media (max-width: 736px) {
  .news {
    padding: 0 calc(15 * var(--scale-unit)) calc(176 * var(--scale-unit));
  }
}
.news__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px 200px;
}
@media (max-width: 1100px) {
  .news__inner,
  .introduction__inner,
  .character__inner,
  .staff-cast__container,
  .books__inner,
  .footer__inner,
  .drawer__nav,
  .header__inner,
  .header__top-inner,
  .page-movie__wrap,
  .not-found {
    zoom: 0.78;
  }
}
@media (max-width: 900px) {
  .news__inner,
  .introduction__inner,
  .character__inner,
  .staff-cast__container,
  .books__inner,
  .footer__inner,
  .drawer__nav,
  .header__inner,
  .header__top-inner,
  .page-movie__wrap,
  .not-found {
    zoom: 0.63;
  }
}
@media (max-width: 736px) {
  .news__inner,
  .introduction__inner,
  .character__inner,
  .staff-cast__container,
  .books__inner,
  .footer__inner,
  .drawer__nav,
  .header__inner,
  .header__top-inner,
  .page-movie__wrap,
  .not-found {
    zoom: 1;
  }
}
@media (max-width: 736px) {
  .news__inner {
    padding: 0;
  }
}
.news__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
  padding-top: 40px;
}
@media (max-width: 736px) {
  .news__header {
    padding-top: 0;
    margin-bottom: 16px;
  }
}
.news__title {
  width: 313px;
}
@media (max-width: 736px) {
  .news__title {
    width: calc(188 * var(--scale-unit));
  }
}
.news__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news__item {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--color-blue);
  padding: 24px 0;
}
.news__list > li:last-child .news__item {
  border-bottom: none;
}
@media (max-width: 736px) {
  .news__item {
    gap: calc(16 * var(--scale-unit));
    align-items: center;
    padding: calc(16 * var(--scale-unit)) calc(8 * var(--scale-unit));
  }
}
.news-link {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
  color: var(--text-color);
}
@media (hover: hover) {
  .news-link:hover {
    opacity: 1;
    color: var(--color-blue);
  }
  .news-link:hover .news__link-title {
    text-decoration: underline;
  }
}
.news__year,
.news__day {
  display: block;
  font-weight: 700;
}
.news__year {
  font-size: 14px;
}
.news__day {
  font-size: 32px;
  line-height: 0.8;
}
@media (max-width: 736px) {
  .news__year {
    font-size: calc(14 * var(--scale-unit));
  }
  .news__day {
    font-size: calc(24 * var(--scale-unit));
  }
}
.news__description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}
@media (max-width: 736px) {
  .news__description {
    padding-top: 0.2em;
    line-height: 1.4;
  }
}
.news__link-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 18px;
  width: fit-content;
}
@media (max-width: 736px) {
  .news__link-title {
    font-size: calc(16 * var(--scale-unit));
  }
}
@media (max-width: 736px) {
  .news__list-link {
    position: absolute;
    bottom: calc(94 * var(--scale-unit));
    left: 50%;
    transform: translateX(-50%);
  }
}

/* introduction セクション */

.introduction {
  margin-top: 120px;
  padding-bottom: 184px;
}
@media (max-width: 736px) {
  .introduction {
    margin-top: calc(64 * var(--scale-unit));
    padding-bottom: calc(64 * var(--scale-unit));
  }
}
.introduction__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 736px) {
  .introduction__inner {
    padding: 0 calc(15 * var(--scale-unit));
  }
}
.introduction__title {
  width: 506px;
  margin-bottom: 48px;
}
@media (max-width: 736px) {
  .introduction__title {
    width: calc(304 * var(--scale-unit));
    margin-bottom: 32px;
  }
}
.introduction__content {
  text-align: center;
}
.introduction__text {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 32px;
  overflow: hidden;
}
@keyframes introduction-text-inner {
  0% {
    overflow: hidden;
  }
  100% {
    overflow: visible;
  }
}
.introduction__text-inner {
  display: inline-block;
  transition: transform 0.5s ease;
  transition-delay: calc(0.5s + var(--index) * 0.1s);
  transform: translateY(120%);
}
.introduction.visible .introduction__text-inner {
  transform: translateY(0);
}
.introduction.visible .introduction__text {
  animation: introduction-text-inner 0s ease;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.introduction__text-highlight-purple,
.introduction__text-highlight-pink-rotate {
  color: var(--color-purple);
  font-size: 32px;
  display: inline-block;
  transform: rotate(-4deg);
  margin-right: 0.125em;
}
.introduction__text-highlight-pink-rotate {
  color: var(--color-pink);
  margin-right: -0.125em;
  margin-left: 0.125em;
}
@media (max-width: 736px) {
  .introduction__text-highlight-purple,
  .introduction__text-highlight-pink-rotate {
    font-size: calc(24 * var(--scale-unit));
  }
}
.introduction__text-highlight-blue {
  color: var(--color-blue);
  font-size: 32px;
  display: inline-block;
  transform: rotate(3deg);
  margin-right: 0.125em;
  position: relative;
}
@media (max-width: 736px) {
  .introduction__text-highlight-blue {
    font-size: calc(24 * var(--scale-unit));
  }
}
.introduction__text-highlight-blue::before {
  content: "";
  position: absolute;
  left: 16px;
  bottom: -16px;
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(./images/kirakira_bottom.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  animation: kirakira 1s infinite;
  animation-delay: 1.5s;
  opacity: 0;
}
.introduction__text-highlight-blue::after {
  content: "";
  position: absolute;
  right: 0;
  top: -16px;
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(./images/kirakira_top.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  animation: kirakira 1s infinite;
  animation-delay: 2s;
  opacity: 0;
}
@keyframes kirakira {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media (max-width: 736px) {
  .introduction__text-highlight-blue::before {
    width: calc(18 * var(--scale-unit));
    height: calc(18 * var(--scale-unit));
    bottom: calc(-12 * var(--scale-unit));
    left: calc(8 * var(--scale-unit));
  }
  .introduction__text-highlight-blue::after {
    width: calc(14 * var(--scale-unit));
    height: calc(14 * var(--scale-unit));
    top: calc(-8 * var(--scale-unit));
    right: calc(-8 * var(--scale-unit));
  }
}
.introduction__text:last-child {
  font-size: 32px;
  margin-bottom: 0;
  line-height: 56px;
}
.introduction__text:last-child .introduction__text-highlight-pink {
  color: var(--color-pink);
  font-size: 40px;
}
.introduction__text:last-child .introduction__text-highlight-purple {
  transform: rotate(0);
  font-size: 40px;
  margin-right: 0;
}
@media (max-width: 736px) {
  .introduction__text {
    font-size: calc(16 * var(--scale-unit));
    line-height: calc(26 * var(--scale-unit));
    margin-bottom: 20px;
  }
  .introduction__text:last-child {
    font-size: calc(20 * var(--scale-unit));
    line-height: 1.7;
    white-space: nowrap;
  }
  .introduction__text:last-child .introduction__text-highlight-pink {
    font-size: calc(24 * var(--scale-unit));
  }
  .introduction__text:last-child .introduction__text-highlight-purple {
    font-size: calc(24 * var(--scale-unit));
  }
}
.introduction__circle {
  color: #fff;
  padding: 6px;
  border-radius: 50%;
  display: inline-block;
  line-height: 1;
  animation: fuwafuwa 6s infinite;
  animation-delay: calc(var(--index) * 0.3s);
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(-5px);
  }
  20% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
.introduction__circle--blue {
  background-color: var(--main-color);
}
.introduction__circle--pink {
  background-color: var(--accent-color);
}
.introduction__circle:not(:first-child) {
  margin-left: -4px;
}

/* character Section */

.character {
  position: relative;
}
.character::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(./images/character_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: clip-path 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.65s;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
@media (max-width: 736px) {
  .character {
    overflow-x: hidden;
  }
  .character::before {
    background-image: url(./images/character_bg_sp.png);
  }
}
.character__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
@media (max-width: 736px) {
  .character__inner {
    padding: 0 calc(15 * var(--scale-unit));
  }
}
.character__title {
  width: 432px;
  margin-left: auto;
  margin-bottom: 48px;
}
@media (max-width: 736px) {
  .character__title {
    width: calc(260 * var(--scale-unit));
    margin-bottom: calc(28 * var(--scale-unit));
  }
}
.character__header-character-select {
  display: grid;
  grid-template-columns: repeat(8, max-content);
  justify-content: end;
  column-gap: 8px;
  row-gap: 12px;
}
@media (max-width: 736px) {
  .character__header-character-select {
    grid-template-columns:
      calc(8 * var(--scale-unit)) repeat(5, calc(56 * var(--scale-unit)))
      calc(8 * var(--scale-unit));
    justify-content: center;
    column-gap: calc(8 * var(--scale-unit));
    row-gap: calc(8 * var(--scale-unit));
  }
}
.character__character-button {
  width: 72px;
  transition: opacity 0.3s ease;
}
.character__character-button:not(.active):hover {
  opacity: 0.7;
}
@media (max-width: 736px) {
  .character__character-button {
    width: calc(56 * var(--scale-unit));
  }
  .character__character-button:not(.active):hover {
    opacity: 1;
  }
}
.character__character-button.active {
  position: relative;
}
.character__character-select-text {
  grid-area: 1 / 1 / 2 / -1;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-blue);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
@media (max-width: 736px) {
  .character__character-select-text {
    font-size: calc(12 * var(--scale-unit));
    gap: calc(12 * var(--scale-unit));
    margin-bottom: 8px;
  }
  .character__character-select-text-dot {
    width: 100%;
  }
}
.character__character-button--1 {
  grid-area: 2 / 1 / 3 / 2;
}
.character__character-button--2 {
  grid-area: 2 / 2 / 3 / 3;
}
.character__character-button--3 {
  grid-area: 2 / 3 / 3 / 4;
}
.character__character-button--4 {
  grid-area: 2 / 4 / 3 / 5;
}
.character__character-button--5 {
  grid-area: 2 / 5 / 3 / 6;
}
.character__character-button--6 {
  grid-area: 2 / 6 / 3 / 7;
}
.character__character-button--7 {
  grid-area: 2 / 7 / 3 / 8;
}
.character__character-button--8 {
  grid-area: 2 / 8 / 3 / 9;
}
@media (max-width: 736px) {
  .character__character-button--1 {
    grid-area: 2 / 2 / 3 / 3;
  }
  .character__character-button--2 {
    grid-area: 2 / 3 / 3 / 4;
  }
  .character__character-button--3 {
    grid-area: 2 / 4 / 3 / 5;
  }
  .character__character-button--4 {
    grid-area: 2 / 5 / 3 / 6;
  }
  .character__character-button--5 {
    grid-area: 2 / 6 / 3 / 7;
  }
  .character__character-button--6 {
    grid-area: 3 / 2 / 4 / 3;
  }
  .character__character-button--7 {
    grid-area: 3 / 3 / 4 / 4;
  }
  .character__character-button--8 {
    grid-area: 3 / 4 / 4 / 5;
  }
}
.character__content {
  padding-bottom: 62%;
}
@media (max-width: 736px) {
  .character__content {
    padding-bottom: 30%;
  }
}
.character__character-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 736px) {
  .character__character-image-wrap {
    position: static;
    margin-top: calc(32 * var(--scale-unit));
    text-align: center;
  }
}
.character__image {
  height: auto;
  transform: scale(1);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.character__image.character1 {
  width: 360px;
}
.character__image.character2 {
  width: 360px;
}
.character__image.character3 {
  width: 360px;
}
.character__image.character4 {
  width: 360px;
}
.character__image.character5 {
  width: 360px;
}
.character__image.character6 {
  width: 360px;
}
.character__image.character7 {
  width: 360px;
}
.character__image.character8 {
  width: 360px;
}
@media (max-width: 736px) {
  .character__image.character1 {
    width: calc(236 * var(--scale-unit));
  }
  .character__image.character2 {
    width: calc(236 * var(--scale-unit));
  }
  .character__image.character3 {
    width: calc(236 * var(--scale-unit));
  }
  .character__image.character4 {
    width: calc(236 * var(--scale-unit));
  }
  .character__image.character5 {
    width: calc(236 * var(--scale-unit));
  }
  .character__image.character6 {
    width: calc(236 * var(--scale-unit));
  }
  .character__image.character7 {
    width: calc(236 * var(--scale-unit));
  }
  .character__image.character8 {
    width: calc(236 * var(--scale-unit));
  }
}
.character__texts {
  position: absolute;
  top: 50%;
  right: 0;
  width: 656px;
  transform: translate(0, -50%);
  margin-top: 72px;
}
@media (max-width: 736px) {
  .character__texts {
    position: static;
    width: 100%;
    transform: none;
    margin-top: calc(48 * var(--scale-unit));
  }
}
.character__description {
  height: 360px;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media (max-width: 736px) {
  .character__description {
    height: auto;
  }
}
.character__name {
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
}
@media (max-width: 736px) {
  .character__name {
    font-size: calc(32 * var(--scale-unit));
    margin-bottom: 12px;
  }
}
.character__cv {
  width: 165px;
  margin: 16px 0 24px;
}
@media (max-width: 736px) {
  .character__cv {
    width: calc(128 * var(--scale-unit));
    margin: 0 0 24px;
  }
}
.character__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}
@media (max-width: 736px) {
  .character__text {
    font-size: calc(16 * var(--scale-unit));
    margin-bottom: 0;
  }
}
.character__navigation {
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  grid-template-rows: repeat(2, max-content);
}
@media (max-width: 736px) {
  .character__navigation {
    row-gap: 6px;
  }
}
.character__nav-button {
  color: #fff;
  border: none;
}
.character__nav-button--prev {
  grid-area: 1 / 1 / 2 / 2;
  margin-right: auto;
}
.character__nav-button--next {
  grid-area: 1 / 2 / 2 / 3;
  margin-left: auto;
}
.character__nav-text {
  font-size: 12px;
  font-weight: 700;
  grid-area: 2 / 1 / 3 / 3;
}
@media (max-width: 736px) {
  .character__nav-text {
    font-size: calc(11 * var(--scale-unit));
  }
}
.character__name,
.character__text,
.character__cv img,
.character__content::before,
.character__circle-image-wrap {
  transition: opacity 0.5s ease;
}
.fade-out-image {
  opacity: 0;
}
.scale-up-image {
  transition: opacity 0.5s ease;
  transform: scale(1.2);
}
.fade-out-text {
  opacity: 0;
}
.character__content.fade-out-background::before {
  opacity: 0;
}

/* staff-castセクション */

.staff-cast {
  margin-top: 120px;
  padding: 0 0 166px;
}
@media (max-width: 736px) {
  .staff-cast {
    margin-top: calc(64 * var(--scale-unit));
    padding-bottom: calc(80 * var(--scale-unit));
  }
}
.staff-cast__title {
  width: 548px;
}
@media (max-width: 736px) {
  .staff-cast__title {
    width: calc(336 * var(--scale-unit));
  }
}
.staff-cast__container {
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 736px) {
  .staff-cast__container {
    padding: 0 calc(15 * var(--scale-unit));
  }
}
.staff-cast__content {
  color: var(--text-color);
}
.staff-cast__staff,
.staff-cast__cast {
  margin-top: 62px;
}
@media (max-width: 736px) {
  .staff-cast__staff,
  .staff-cast__cast {
    margin-top: calc(36 * var(--scale-unit));
  }
}
.staff-cast__staff-title,
.staff-cast__cast-title {
  margin-bottom: 20px;
  padding-bottom: 22px;
  padding-left: 8px;
  position: relative;
}
.staff-cast__staff-title::after,
.staff-cast__cast-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: var(--color-pink);
}
.staff-cast__cast-title::after {
  background-color: var(--color-blue);
}
.staff-cast__staff-title img,
.staff-cast__cast-title img {
  height: 35px;
  width: auto;
}
@media (max-width: 736px) {
  .staff-cast__staff-title,
  .staff-cast__cast-title {
    margin-bottom: 20px;
    padding-bottom: 12px;
    padding-left: calc(4 * var(--scale-unit));
  }
  .staff-cast__staff-title img,
  .staff-cast__cast-title img {
    height: calc(24 * var(--scale-unit));
  }
  .staff-cast__staff-title::after,
  .staff-cast__cast-title::after {
    height: 2px;
  }
}
.staff-cast__list {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, 126px);
  column-gap: 80px;
  row-gap: 20px;
  list-style: none;
  margin: 0 auto;
}
.staff-cast__comment-wrap {
  position: relative;
  display: inline-block;
  width: 33px;
  padding-bottom: 1%;
}
@media (max-width: 736px) {
  .staff-cast__list {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(9, max-content);
    row-gap: 20px;
  }
  .staff-cast__comment-wrap {
    width: calc(28 * var(--scale-unit));
    padding-bottom: 0;
  }
}
.staff-cast__comment-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.3s ease;
}
.staff-cast__comment-image--hover {
  opacity: 0;
}
@media (hover: hover) {
  .staff-cast__comment-wrap:hover .staff-cast__comment-image {
    opacity: 0;
  }
  .staff-cast__comment:hover .staff-cast__comment-image--hover {
    opacity: 1;
  }
}
.staff-cast__item {
  padding-left: 16px;
  display: flex;
  align-items: center;
  border-bottom: 4px dotted var(--color-pink);
}
.staff-cast__item--staff-1 {
  grid-area: 1 / 1 / 2 / 2;
}
.staff-cast__item--staff-2 {
  grid-area: 1 / 2 / 2 / 3;
}
.staff-cast__item--staff-3 {
  grid-area: 2 / 1 / 3 / 2;
}
.staff-cast__item--staff-4 {
  grid-area: 2 / 2 / 3 / 3;
}
.staff-cast__item--staff-5 {
  grid-area: 3 / 1 / 4 / 2;
}
.staff-cast__item--staff-6 {
  grid-area: 3 / 2 / 4 / 3;
}
.staff-cast__item--staff-7 {
  grid-area: 4 / 1 / 5 / 2;
}
@media (max-width: 736px) {
  .staff-cast__item {
    display: block;
    grid-area: auto;
    padding-bottom: 20px;
    padding-left: calc(4 * var(--scale-unit));
    border-bottom: 3px dotted var(--color-pink);
  }
}
.staff-cast__list--cast {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 126px);
  justify-content: space-between;
}
@media (max-width: 736px) {
  .staff-cast__list--cast {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, max-content);
    row-gap: 28px;
  }
}
.staff-cast__item--cast {
  border-bottom: 4px dotted var(--color-blue);
}
.staff-cast__item--cast-1 {
  grid-area: 1 / 1 / 2 / 2;
}
.staff-cast__item--cast-2 {
  grid-area: 1 / 2 / 2 / 3;
}
.staff-cast__item--cast-3 {
  grid-area: 1 / 3 / 2 / 4;
}
.staff-cast__item--cast-4 {
  grid-area: 1 / 4 / 2 / 5;
}
.staff-cast__item--cast-5 {
  grid-area: 2 / 1 / 3 / 2;
}
.staff-cast__item--cast-6 {
  grid-area: 2 / 2 / 3 / 3;
}
@media (max-width: 736px) {
  .staff-cast__item--cast {
    grid-area: auto;
  }
}
.staff-cast__item--cast {
  display: flex;
  align-items: center;
}
@media (max-width: 736px) {
  .staff-cast__item--cast {
    align-items: start;
  }
}
.staff-cast__role-name-wrap {
  display: grid;
  grid-template-columns: 208px 1fr;
  align-items: center;
}
@media (max-width: 736px) {
  .staff-cast__role-name-wrap {
    grid-template-columns: 1fr;
  }
}
.staff-cast__role,
.staff-cast__name {
  display: block;
}
.staff-cast__role {
  font-size: 16px;
  white-space: nowrap;
  line-height: 30px;
}
@media (max-width: 736px) {
  .staff-cast__role {
    font-size: calc(14 * var(--scale-unit));
    line-height: 1;
  }
  .staff-cast__role.long {
    letter-spacing: -0.05em;
  }
}
.staff-cast__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
}
.staff-cast__name .small {
  font-size: 16px;
  font-weight: 500;
}
.staff-cast__name.two-line {
  padding-top: 20px;
}
@media (max-width: 736px) {
  .staff-cast__name {
    white-space: nowrap;
    font-size: calc(20 * var(--scale-unit));
    line-height: 1;
    padding-top: 16px;
  }
  .staff-cast__name .small {
    display: block;
    margin-top: 8px;
    font-size: calc(14 * var(--scale-unit));
  }
  .staff-cast__name.two-line {
    padding-top: 16px;
  }
}
.staff-cast__dialog-dli-close.dli-close {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 64px;
  height: 0.2em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
  transform: rotate(45deg);
}
@media (max-width: 736px) {
  .staff-cast__dialog-dli-close.dli-close {
    width: calc(56 * var(--scale-unit));
  }
}
.staff-cast__dialog-dli-close.dli-close::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

/* staff cast comment modal */

.staff-cast__comment-staff-modal.dialog,
.staff-cast__comment-cast-modal.dialog {
  overflow: visible;
  background-color: transparent;
  color: var(--text-color);
  padding: 20px;
  width: 100%;
  height: 60%;
  max-width: 940px;
  /* height: fit-content; */
}
@media (max-height: 700px) {
  .staff-cast__comment-staff-modal.dialog,
  .staff-cast__comment-cast-modal.dialog {
    zoom: 0.8;
  }
}
@media (max-height: 700px) and (max-width: 900px) {
  .staff-cast__comment-staff-modal.dialog,
  .staff-cast__comment-cast-modal.dialog {
    zoom: 0.9;
  }
}
@media (max-width: 736px) {
  .staff-cast__comment-staff-modal.dialog,
  .staff-cast__comment-cast-modal.dialog {
    overflow: auto;
    width: 100%;
    margin: 0;
    padding: 48px 0 0;
    height: 100%;
    box-sizing: content-box;
    zoom: 1;
  }
}
.staff-cast__comment-staff-modal.dialog::backdrop,
.staff-cast__comment-cast-modal.dialog::backdrop {
  opacity: 1;
}
.staff-cast__comment-staff-modal-inner,
.staff-cast__comment-cast-modal-inner {
  inset: 0;
  height: fit-content;
}
.staff-cast__comment-staff-modal-inner,
.staff-cast__comment-cast-modal-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  column-gap: 48px;
  row-gap: 120px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 736px) {
  .staff-cast__comment-staff-modal-inner,
  .staff-cast__comment-cast-modal-inner {
    width: calc(342 * var(--scale-unit));
    margin: 0 auto;
    gap: 0;
    justify-content: start;
  }
}
.staff-cast__comment-bg {
  position: absolute;
  top: -96px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 180px);
  z-index: -1;
}
@media (max-width: 736px) {
  .staff-cast__comment-bg {
    top: 0;
    width: calc(346 * var(--scale-unit));
  }
}
.staff-cast__comment-staff-modal-header,
.staff-cast__comment-staff-cast-header {
  margin-bottom: 25px;
  padding-bottom: 20px;
  position: relative;
}
@media (max-width: 736px) {
  .staff-cast__comment-staff-modal-header,
  .staff-cast__comment-staff-cast-header {
    margin-bottom: 16px;
    padding-bottom: 16px;
    padding-inline: calc(8 * var(--scale-unit));
  }
}
.staff-cast__comment-staff-modal-header::after,
.staff-cast__comment-staff-cast-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-blue);
  border-radius: 10px;
}

.staff-cast__comment-staff-modal-header p,
.staff-cast__comment-staff-cast-header p {
  font-size: 16px;
  margin: 0;
  line-height: 1.7;
}
@media (max-width: 736px) {
  .staff-cast__comment-staff-modal-header p,
  .staff-cast__comment-staff-cast-header p {
    font-size: calc(16 * var(--scale-unit));
    white-space: nowrap;
  }
}
.staff-cast__comment-staff-modal-header h4,
.staff-cast__comment-staff-cast-header h4 {
  font-size: 28px;
}
@media (max-width: 736px) {
  .staff-cast__comment-staff-modal-header h4,
  .staff-cast__comment-staff-cast-header h4 {
    font-size: calc(24 * var(--scale-unit));
  }
}
.staff-cast__comment-staff-modal-content,
.staff-cast__comment-cast-modal-content {
  font-size: 16px;
  line-height: 1.6;
}

.staff-cast__comment-staff-modal-content p,
.staff-cast__comment-cast-modal-content p {
  margin-bottom: 1em;
  font-size: 16px;
  padding: 0 8px;
}
@media (max-width: 736px) {
  .staff-cast__comment-staff-modal-content p,
  .staff-cast__comment-cast-modal-content p {
    font-size: calc(16 * var(--scale-unit));
    padding: 0 calc(3 * var(--scale-unit));
  }
}
.staff-cast__comment-staff-modal-content p:last-child,
.staff-cast__comment-cast-modal-content p:last-child {
  margin-bottom: 0;
}
.staff-cast__comment-staff-modal .staff-cast__dialog-close,
.staff-cast__comment-cast-modal .staff-cast__dialog-close {
  margin-inline: auto;
  display: block;
  padding: 16px;
  overflow: hidden;
}
@media (max-width: 736px) {
  .staff-cast__comment-staff-modal .staff-cast__dialog-close,
  .staff-cast__comment-cast-modal .staff-cast__dialog-close {
    margin: clamp(1.5rem, -1.104rem + 11.11vw, 4rem) auto;
    padding: calc(16 * var(--scale-unit));
  }
}
.staff-cast__comment-staff-modal-img,
.staff-cast__comment-cast-modal-img {
  flex: 0 0 auto;
  max-width: 250px;
  width: 30%;
}
@media (max-width: 736px) {
  .staff-cast__comment-staff-modal-img,
  .staff-cast__comment-cast-modal-img {
    width: calc(180 * var(--scale-unit));
    max-width: none;
    margin-top: 40px;
    margin-left: calc(70 * var(--scale-unit));
  }
}
.staff-cast__comment-cast-modal-contents {
  flex: 1 1 auto;
  width: 60%;
  min-height: 360px;
}
.staff-cast__comment-cast-modal-contents.only-text {
  width: 100%;
}
@media (max-width: 736px) {
  .staff-cast__comment-cast-modal-contents {
    flex: 0 0 auto;
    width: calc(272 * var(--scale-unit));
    margin-top: 24px;
    margin-left: calc(24 * var(--scale-unit));
    min-height: auto;
    height: clamp(26.25rem, -4.519rem + 153.85vw, 66.25rem);
  }
  .staff-cast__comment-cast-modal-contents.only-text {
    width: calc(272 * var(--scale-unit));
  }
  .staff-cast__comment-cast-modal-contents.square {
    height: clamp(31.25rem, -4.327rem + 177.88vw, 77.5rem);
  }
}

/* books */

.books__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px 120px;
}
@media (max-width: 736px) {
  .books__inner {
    padding: 0 calc(15 * var(--scale-unit)) calc(104 * var(--scale-unit));
  }
}
.books__title {
  width: 332px;
}
@media (max-width: 736px) {
  .books__title {
    width: calc(200 * var(--scale-unit));
  }
}
.books__content {
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
  margin-top: 56px;
}
@media (max-width: 736px) {
  .books__content {
    grid-template-columns: 1fr;
    gap: calc(40 * var(--scale-unit));
    width: calc(280 * var(--scale-unit));
    margin: 32px auto 0;
  }
}
.books__content-item-image {
  position: relative;
  width: 510px;
  padding-bottom: 144%;
}
@media (max-width: 736px) {
  .books__content-item-image {
    width: 100%;
    padding-bottom: 136%;
  }
}
.books__content-item-image-book,
.books__content-item-image-dot {
  width: 94%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transform-origin: left bottom;
  transition: transform 0.3s ease;
  transition-delay: 1s;
  transform: rotate(-3deg);
}
.books__content-item-image-dot {
  width: 100%;
  z-index: 1;
  transform: rotate(-7deg);
  transition-delay: .7s;
}
.books__content-item-button {
  text-align: center;
}
.books__content-item-button .link-btn {
  padding-bottom: 12%;
}
@media (max-width: 736px) {
  .books__content-item-button .link-btn {
    padding-bottom: 16%;
  }
}
.books__content-item-text {
  margin-block: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 736px) {
  .books__content-item-text {
    flex-direction: column;
    gap: 0;
    margin: 8px 0 16px;
  }
}
.books__content-item-text-title,
.books__content-item-text-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-blue);
}
@media (max-width: 736px) {
  .books__content-item-text-title,
  .books__content-item-text-subtitle {
    font-size: calc(18 * var(--scale-unit));
  }
}
.books__content-item-text-subtitle {
  color: var(--text-color);
}

/* Footer */

.footer {
  background-image: url(./images/footer_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 56px;
  padding-top: 124px;
}
@media (max-width: 736px) {
  .footer {
    background-image: url(./images/footer_bg_sp.png);
    padding-top: calc(60 * var(--scale-unit));
    padding-bottom: calc(16 * var(--scale-unit));
  }
}
.footer__inner {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px 0;
  display: grid;
  grid-template-columns: 440px 1fr;
  column-gap: 82px;
}
@media (max-width: 736px) {
  .footer__inner {
    grid-template-columns: 1fr;
    column-gap: 0;
    padding: 0 calc(15 * var(--scale-unit));
  }
  .footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.footer__content-logo {
  width: 440px;
}
@media (max-width: 736px) {
  .footer__content-logo {
    width: calc(212 * var(--scale-unit));
  }
}
.footer__content-list {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  list-style: none;
}
@media (max-width: 736px) {
  .footer__content-list {
    display: grid;
    grid-template-columns: repeat(3, calc(32 * var(--scale-unit)));
    column-gap: calc(8 * var(--scale-unit));
    row-gap: calc(6 * var(--scale-unit));
    margin-top: 0;
  }
}
.footer__content-list-item-share {
  margin-right: 8px;
  width: 95px;
}
.footer__content-list-item-twitter,
.footer__content-list-item-line,
.footer__content-list-item-facebook {
  width: 48px;
}
@media (max-width: 736px) {
  .footer__content-list-item-share {
    grid-area: 1 / 1 / 2 / -1;
    width: calc(64 * var(--scale-unit));
  }
  .footer__content-list-item-twitter,
  .footer__content-list-item-line,
  .footer__content-list-item-facebook {
    width: calc(32 * var(--scale-unit));
  }
  .footer__content-list-item-twitter {
    grid-area: 2 / 1 / 3 / 2;
  }
  .footer__content-list-item-line {
    grid-area: 2 / 2 / 3 / 3;
  }
  .footer__content-list-item-facebook {
    grid-area: 2 / 3 / 3 / 4;
  }
}
.footer__content-list-item a {
  display: block;
}
.footer__page-top {
  position: absolute;
  top: 0;
  right: 20px;
  transform: translateY(-80%);
  overflow: hidden;
}
.footer__page-top-link {
  width: 144px;
  padding-bottom: 100%;
}
.footer__page-top-triangle {
  width: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.footer__page-top-circle {
  width: 144px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 10s linear infinite;
}
@media (max-width: 736px) {
  .footer__page-top {
    transform: translateY(-120%);
    right: calc(15 * var(--scale-unit));
  }
  .footer__page-top-link {
    width: calc(80 * var(--scale-unit));
  }
  .footer__page-top-triangle {
    width: calc(20 * var(--scale-unit));
  }
  .footer__page-top-circle {
    width: calc(80 * var(--scale-unit));
  }
}
.footer__menu {
  margin-top: 120px;
}
@media (max-width: 736px) {
  .footer__menu {
    margin-top: calc(28 * var(--scale-unit));
  }
}
.footer__menu-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  column-gap: 48px;
  row-gap: 24px;
}
@media (max-width: 736px) {
  .footer__menu-list {
    column-gap: calc(24 * var(--scale-unit));
    row-gap: calc(12 * var(--scale-unit));
    justify-content: center;
  }
}
.footer__menu-list-item-link {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-color);
  text-decoration: none;
}
@media (max-width: 736px) {
  .footer__menu-list-item-link {
    font-size: calc(14 * var(--scale-unit));
  }
}
.footer__menu-copyright {
  margin-top: 104px;
  display: flex;
  justify-content: flex-end;
  align-items: end;
  gap: 80px;
}
@media (max-width: 736px) {
  .footer__menu-copyright {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    margin-top: calc(20 * var(--scale-unit));
    gap: calc(16 * var(--scale-unit));
  }
}
.footer__menu-copyright-text {
  font-size: 14px;
  font-weight: 400;
  color: #6d5f5f;
}
.footer__menu-privacy-policy-link {
  font-size: 14px;
  font-weight: 400;
  color: #6d5f5f;
}
@media (max-width: 736px) {
  .footer__menu-copyright-text {
    font-size: calc(10 * var(--scale-unit));
  }
  .footer__menu-privacy-policy-link {
    font-size: calc(12 * var(--scale-unit));
  }
}

/* single-post */

.single-post {
  line-height: 1.6;
  color: var(--text-color);
}
@media (max-width: 736px) {
  .single-post {
    margin-top: calc(40 * var(--scale-unit));
  }
  .single-post .news__header {
    margin-bottom: 32px;
  }
}
.single-post .news__inner {
  padding-bottom: 135px;
}
@media (max-width: 736px) {
  .single-post .news__inner {
    padding-bottom: calc(104 * var(--scale-unit));
  }
}
.single-post__container {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.single-post__title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 32px;
  color: var(--text-color);
}
.single-post__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--color-blue);
  border-radius: 10px;
  margin-top: 32px;
}
@media (max-width: 736px) {
  .single-post__title {
    font-size: calc(20 * var(--scale-unit));
    margin-bottom: 16px;
  }
  .single-post__title::after {
    height: 2px;
    margin-top: 16px;
  }
}
.single-post__meta {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-blue);
}
@media (max-width: 736px) {
  .single-post__meta {
    font-size: calc(20 * var(--scale-unit));
  }
}
.single-post__content p {
  line-height: 1.6;
  font-size: 16px;
}
.single-post__content h1,
.single-post__content h2,
.single-post__content h3,
.single-post__content h4,
.single-post__content h5,
.single-post__content h6 {
  line-height: 1.7;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 736px) {
  .single-post__content p {
    font-size: calc(16 * var(--scale-unit));
    line-height: 1.6;
  }
  .single-post__content h1,
  .single-post__content h2,
  .single-post__content h3,
  .single-post__content h4,
  .single-post__content h5,
  .single-post__content h6 {
    line-height: 1.6;
    font-size: calc(18 * var(--scale-unit));
  }
}
.single-post__content a {
  font-size: 16px;
  color: var(--color-blue);
  text-decoration: underline;
}
@media (max-width: 736px) {
  .single-post__content a {
    font-size: calc(16 * var(--scale-unit));
  }
}
.single-post__content .wp-block-image figure {
  max-width: 100%;
}
.single-post__content img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 32px auto;
  display: block;
}
@media (max-width: 736px) {
  .single-post__content img {
    margin: 24px auto;
  }
}
.single-post__content iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  max-width: 640px;
  margin: 0 auto;
}
.single-post__footer {
  padding: 20px;
}
.single-post__categories,
.single-post__tags {
  margin: 10px 0;
}
.single-post__navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 56px;
}
@media (max-width: 736px) {
  .single-post__navigation {
    margin-top: 40px;
    padding: 0;
  }
}
.single-post__nav-link::before,
.single-post__nav--next .single-post__nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 16px solid var(--color-pink);
}
@media (max-width: 736px) {
  .single-post__nav-link::before,
  .single-post__nav--next .single-post__nav-link::after {
    border-top: calc(7 * var(--scale-unit)) solid transparent;
    border-bottom: calc(7 * var(--scale-unit)) solid transparent;
    border-right: calc(11 * var(--scale-unit)) solid var(--color-pink);
  }
}
.single-post__nav--next .single-post__nav-link::before {
  content: none;
}
.single-post__nav--next .single-post__nav-link::after {
  transform: rotate(180deg);
}
.single-post__nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-pink);
  text-decoration: none;
}
@media (max-width: 736px) {
  .single-post__nav-link {
    font-size: calc(14 * var(--scale-unit));
    gap: calc(4 * var(--scale-unit));
  }
}
@media (max-width: 736px) {
  .single-post__nav {
    font-size: calc(14 * var(--scale-unit));
  }
}
.single-post__no-content {
  text-align: center;
  padding: 20px;
  font-size: 1.2em;
}

.single-post .wp-block-image {
  max-width: 1000px;
  margin: 40px auto;
}
@media (max-width: 736px) {
  .single-post .wp-block-image {
    margin: 20px auto;
  }
}
.single-post article ul {
  padding-left: 1.5em;
  font-size: 16px;
}
.single-post article ul li::marker {
  font-size: 0.8em;
}
.single-post article ol {
  padding-left: 1.5em;
  font-size: 16px;
}
@media (max-width: 736px) {
  .single-post article ul,
  .single-post article ol {
    font-size: calc(16 * var(--scale-unit));
  }
}
@media (max-width: 736px) {
  .single-post .news {
    padding-bottom: 0;
  }
}
.single-post__button {
  font-size: 16px;
  text-decoration: none;
  color: var(--text-color);
  background-color: #fff;
  padding: 16px 160px;
  border: 2px solid #f3a8c9;
  border-radius: 10px;
  transition: background-color 0.3s, color 0.3s;
}
@media (max-width: 736px) {
  .single-post__button {
    font-size: calc(14 * var(--scale-unit));
    padding: 14px calc(125 * var(--scale-unit));
  }
}
.single-post__button:hover {
  background-color: #f3a8c9;
  color: #fff;
  opacity: 1;
}
@media (max-width: 736px) {
  .single-post__button:hover {
    color: var(--text-color);
    background-color: #fff;
  }
}
.single-post .link-btn {
  padding-bottom: 24%;
}

/* Newsページ */

.page-news__wrap,
.page-movie__wrap {
  max-width: 1140px;
  width: 1140px;
  padding: 0 20px;
  margin: 40px auto 0;
}
@media (max-width: 1140px) {
  .page-news__wrap,
  .page-movie__wrap {
    width: 100%;
  }
}
@media (max-width: 736px) {
  .page-news__wrap {
    width: 100%;
    margin: calc(40 * var(--scale-unit)) auto 0;
    padding: 0;
  }
}
.page-news__wrap .news {
  padding-bottom: 120px;
}
@media (max-width: 736px) {
  .page-news__wrap .news {
    padding-bottom: calc(104 * var(--scale-unit));
  }
}
.page-news__wrap .news__header {
  padding-top: 0;
  margin-bottom: 32px;
}
@media (max-width: 736px) {
  .page-news__wrap .news__header {
    margin-bottom: 16px;
  }
}
.page-news__wrap .news__inner {
  padding: 0;
}
.page-news__wrap a.page-numbers {
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-color);
  padding: 0 9px;
}
@media (max-width: 736px) {
  .page-news__wrap a.page-numbers {
    font-size: calc(20 * var(--scale-unit));
    padding: 0 calc(8 * var(--scale-unit));
  }
}
.page-news__wrap .page-numbers.current {
  font-size: 24px;
  font-weight: 700;
  background-color: var(--color-pink);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  margin: 0 9px;
}
@media (max-width: 736px) {
  .page-news__wrap .page-numbers.current {
    font-size: calc(20 * var(--scale-unit));
    width: calc(32 * var(--scale-unit));
    height: calc(32 * var(--scale-unit));
    margin: 0 calc(8 * var(--scale-unit));
  }
}
.page-news__wrap .pagination > .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin-top: 48px;
}
@media (max-width: 736px) {
  .page-news__wrap .pagination > .page-numbers {
    margin-top: calc(24 * var(--scale-unit));
  }
}
.page-news__wrap .news__list > li:last-child .news__item {
  border-bottom: 1px solid var(--color-blue);
}

/* 404ページ */

.not-found {
  max-width: 1140px;
  width: 1140px;
  margin: 40px auto 120px;
  padding: 0 20px;
}
@media (max-width: 1140px) {
  .not-found {
    width: 100%;
  }
}
@media (max-width: 736px) {
  .not-found {
    padding: 0 calc(15 * var(--scale-unit));
    margin: calc(32 * var(--scale-unit)) auto calc(84 * var(--scale-unit));
  }
  .not-found .link-btn {
    padding-bottom: 14%;
  }
}
.not-found__title {
  width: 596px;
}
@media (max-width: 736px) {
  .not-found__title {
    width: calc(343 * var(--scale-unit));
  }
}
.not-found__text {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  margin: 32px 0 56px;
}
@media (max-width: 736px) {
  .not-found__text {
    font-size: calc(16 * var(--scale-unit));
    line-height: 1.6;
    margin: calc(22 * var(--scale-unit)) 0 calc(32 * var(--scale-unit));
  }
}
.not-found__button {
  text-align: center;
}
.not-found__link {
  font-size: 16px;
  color: var(--text-color);
  text-decoration: none;
  padding: 16px 128px;
  margin-bottom: 120px;
  background-color: #fff;
  border: 2px solid #f3a8c9;
  border-radius: 10px;
  transition: background-color 0.3s, color 0.3s;
}
@media (max-width: 736px) {
  .not-found__link {
    font-size: calc(14 * var(--scale-unit));
    padding: 14px calc(97 * var(--scale-unit));
    margin-bottom: calc(80 * var(--scale-unit));
  }
}
.not-found__link:hover {
  background-color: #f3a8c9;
  color: #fff;
  opacity: 1;
}
@media (max-width: 736px) {
  .not-found__link {
    margin-bottom: 76px;
  }
  .not-found__link:hover {
    color: var(--text-color);
    background-color: #fff;
  }
}

/* movieページ */

.movie__title {
  width: 327px;
}
@media (max-width: 736px) {
  .movie__title {
    width: calc(198 * var(--scale-unit));
  }
}
.page-movie__wrap {
  margin-bottom: 120px;
}
@media (max-width: 736px) {
  .page-movie__wrap {
    padding: 0 calc(15 * var(--scale-unit));
    margin-bottom: calc(104 * var(--scale-unit));
  }
}
.sec-movie {
  margin-top: 48px;
  position: relative;
}
.sec-movie__inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 736px) {
  .sec-movie {
    margin-top: calc(32 * var(--scale-unit));
  }
  .sec-movie__inner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: calc(28 * var(--scale-unit));
  }
}
.sec-movie__title {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-color);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 736px) {
  .sec-movie__title {
    margin-top: 12px;
    padding-inline: 0;
    font-size: calc(16 * var(--scale-unit));
  }
}
.youtube_wrap {
  width: 100%;
}
.youtube_modal {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: 56.25%;
}
.youtube_modal iframe,
.youtube_modal a,
.youtube_modal img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
@media (max-width: 736px) {
  .youtube_modal iframe,
  .youtube_modal a,
  .youtube_modal img {
    border-radius: 5px;
  }
}
.youtube_modal img.hero__video-start {
  width: 48px;
  height: 36px;
  left: 51%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
  opacity: .7;
}
@media (max-width: 736px) {
  .youtube_modal img.hero__video-start {
    width: calc(32 * var(--scale-unit));
    height: calc(24 * var(--scale-unit));
  }
}
.youtube_modal .hero__video-play {
  width: 157px;
  height: 157px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
  animation: rotate 10s linear infinite;
  opacity: .8;
}
@media (max-width: 736px) {
  .youtube_modal .hero__video-play {
    width: calc(96 * var(--scale-unit));
    height: calc(96 * var(--scale-unit));
  }
}
@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
body:has(.lity-wrap) .youtube_modal .hero__video-play {
  animation: none;
}
.youtube_modal::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(250, 113, 152, 0.64);
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 10px;
}
@media (max-width: 736px) {
  .youtube_modal::after {
    border-radius: 5px;
  }
}
@media (hover: hover) {
  .youtube_modal:has(a:hover)::after {
    opacity: 0.5;
  }
}
.lity {
  z-index: 9999999;
  background-color: rgba(255, 255, 255, 0.9);
  background-image: url("./images/bg_pink.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.lity-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  transform: translateY(-100%);
}
.lity-close::before,
.lity-close::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 64px;
  height: 2px;
  line-height: 1;
  background: #fff;
  border-radius: 0.1em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.lity-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 736px) {
  .lity-close {
    width: calc(48 * var(--scale-unit));
    height: calc(48 * var(--scale-unit));
  }
  .lity-close::before,
  .lity-close::after {
    width: calc(48 * var(--scale-unit));
  }
}
ul.sec-movie__inner {
  list-style: none;
}

/* dialog */

.dialog {
  box-sizing: border-box;
  width: calc(100% - 32px);
  max-width: 800px;
  margin: auto;
  /* padding: 16px; */
  border: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.dialog.closing {
  opacity: 0;
  transform: scale(0.9);
}
.dialog::backdrop {
  opacity: 0.9;
  background-color: #fff;
  background-image: url("./images/bg_pink.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.3s;
}
.dialog.closing::backdrop {
  opacity: 0;
}

/* slideshow */

.slideshow {
  position: relative;
  /* max-width: 600px; */
  margin: auto;
  overflow: hidden;
}

.slideshow__slides {
  position: relative;
  width: 100%;
}

.slideshow__slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slideshow__slide--active {
  opacity: 1;
}

.slideshow__dot {
  cursor: pointer;
}

/* アニメーション */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.11,.59,.42,2.5);
}
@media (max-width: 736px) {
  .animate-on-scroll {
    transform: translateY(20px);
  }
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.news.animate-on-scroll.visible::before,
.character.animate-on-scroll.visible::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.books.animate-on-scroll.visible .books__content-item-image-book,
.books.animate-on-scroll.visible .books__content-item-image-dot {
  transform: rotate(0);
}
