/*
Theme Name: デッドアカウントストーリーページ更新用
Author: DomiNatorZ
Description: A theme for デッドアカウント
Version: 1.0
*/

/* #wpadminbar {
  display: none;
} */

/* 変数 */
:root {
  --breakpoint-sm: 736px;
  --section-max-width: 1240px;
  --scale-unit: calc(100vw / 375);
  --accent-color: #23dce1;
  --date-color: #386bba;
}

/* 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;
  font-size: 10px;
}
@media (max-width: 1480px) {
  html {
    font-size: 8px;
  }
}
html.drawerOpen {
  overflow: hidden;
}

body {
  width: 100%;
  min-width: 1240px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #fff;
  background-color: #000711;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}
body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(./images/back_fix.png);
}
@media (max-width: 736px) {
  body::before {
    background-image: url(./images/back_fix_sp.png);
  }
}
body.short {
  position: relative;
  min-height: 100vh;
}
@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;
  }
}

/* フォント指定 */

.serif {
  font-family: "Noto Serif JP", serif;
}
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.fjalla-one-regular {
  font-family: "Fjalla One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.micro-5-regular {
  font-family: "Micro 5", sans-serif;
  font-weight: 400;
  font-style: normal;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.header__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}
.header__bar img {
  width: 100%;
  height: 11rem;
}
@media (max-width: 736px) {
  .header__bar img {
    height: 80px;
  }
}
.header__list {
  display: flex;
  list-style: none;
  column-gap: 16px;
  align-items: center;
}
.header.header--visible {
  opacity: 1;
  pointer-events: auto;
}
.header__container {
  max-width: 1240px;
  margin: 0 auto;
  z-index: 1;
  padding: 20px 20px 0;
  z-index: 1;
  position: relative;
}
@media (max-width: 736px) {
  .header__container {
    padding: 16px calc(15 * var(--scale-unit)) 0;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__link {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-family: "Fjalla One", sans-serif;
}
.header__logo {
  background-color: #000;
  padding: 4px;
  width: 19.2rem;
}
@media (max-width: 736px) {
  .header__logo {
    padding: 0;
  }
}
.header-sns {
  width: 4rem;
}
.header__icon-wrap {
  position: fixed;
  top: 88px;
  right: clamp(20px, 5vw, 250px);
  z-index: 100000;
}
@media (min-width: 1660px) {
  .header__icon-wrap,
  .fix-x__wrap .fix-x__inner {
    right: calc((100vw - 1500px) / 2);
  }
}
@media (max-width: 736px) {
  .header__icon-wrap {
    top: 14px;
    right: 0;
    display: flex;
    align-items: center;
    gap: calc(18 * var(--scale-unit));
  }
}
@media (max-width: 736px) {
  .header__button {
    margin-right: calc(15 * var(--scale-unit));
  }
}
.header__menu-icon {
  position: relative;
  display: block;
}
.header__menu-icon-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 736px) {
  .header__menu-icon-image--1 {
    width: calc(20 * var(--scale-unit));
  }
}
.header__button:hover .header__menu-icon-image--2,
.nav__button:hover .header__menu-icon-image--2 {
  transform: translate(-50%, -50%) rotate(180deg);
}
.header__button:hover .header__menu-icon-image--3 {
  opacity: 1;
  transition: opacity 0s 0.3s;
}
@media (max-width: 736px) {
  .header__button:hover .header__menu-icon-image--2,
  .nav__button:hover .header__menu-icon-image--2 {
    transform: translate(-50%, -50%);
  }
  .header__button:hover .header__menu-icon-image--3 {
    opacity: 0;
  }
}
.header__container.header__container--sp {
  display: flex;
  flex: 1;
  align-items: center;
  padding: 0;
  justify-content: space-between;
  height: 100%;
}
.nav__button {
  position: absolute;
}
@media (max-width: 736px) {
  .nav__button {
    top: calc(40 * var(--scale-unit));
    right: calc(40 * var(--scale-unit));
  }
}
.nav__button-image {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
}
.nav__button-image span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
  transition: transform 0.3s ease;
}
.header__contact {
  align-self: center;
}
.nav__button-image span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
}
.nav__button-image span:nth-child(1) {
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}
.nav__button-image span:nth-child(2) {
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}
.drawer.drawer--sp {
  display: block;
}
.drawer {
  position: fixed;
  z-index: 9999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.drawer__backdrop {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: #000711; */
}
.drawer__nav {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
@media (max-width: 736px) {
  .drawer__nav {
    width: 100vw;
    padding-left: calc(25 * var(--scale-unit));
  }
}

.nav {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #000711;
  background-image: url(./images/drawer_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  /* align-items: end; */
}
@media (max-width: 736px) {
  .nav {
    overflow-y: auto;
    overflow-x: hidden;
  }
}
.nav__list {
  box-sizing: border-box;
  width: 100%;
  list-style-type: none;
  position: relative;
  display: grid;
  justify-items: start;
}
@media (max-width: 736px) {
  .nav__list {
    margin: 88px 0 0 0;
  }
}
.nav__item > .nav__link {
  padding-left: calc(25 * var(--scale-unit));
  text-decoration: none;
  display: block;
  transition: opacity 0.3s ease;
  color: #fff;
  font-size: calc(24 * var(--scale-unit));
  font-weight: 500;
  font-family: "Fjalla One", "Noto Sans JP", sans-serif;
}
.nav__item > .nav__link .staff-small {
  font-size: calc(20 * var(--scale-unit));
}
.nav__item > .nav__link .small {
  font-family: "Fjalla One", sans-serif;
  font-size: calc(16 * var(--scale-unit));
  margin-left: calc(12 * var(--scale-unit));
  color: var(--accent-color);
}
@media (max-width: 736px) {
  .nav__item > .nav__link {
    padding: 12px 0;
  }
  .nav__link-image {
    height: 30px;
    width: auto;
  }
  .nav__link-image.short {
    height: 35px;
  }
}
.nav__item > .nav__link:hover {
  opacity: 0.7;
}
@media (max-width: 736px) {
  .nav__item > .nav__link:hover {
    opacity: 1;
  }
}
.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.3s;
  transition-delay: 0.2s;
  transition-timing-function: ease;
  padding-bottom: 100px;
}
.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%);
}
.drawer .header__contact {
  width: 100%;
}
.drawer .header__contact-button {
  width: 100%;
  font-size: clamp(12px, calc(16 * var(--scale-unit)), 22px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.drawer .header__contact-button-imgTop,
.drawer .header__contact-button-imgBottom {
  left: auto;
}
.drawer .header__contact-button-txt {
  white-space: nowrap;
}
@media (max-width: 736px) {
  .nav__item > .nav__link:hover {
    opacity: 1;
  }
}
@media (max-width: 736px) {
  .drawer__link {
    width: calc(320 * var(--scale-unit));
    margin-top: 36px;
  }
  .drawer__link-x {
    width: 100%;
  }
}

.hero {
  margin-bottom: 112px;
}
@media (max-width: 736px) {
  .hero {
    margin-bottom: 64px;
  }
}
.hero__inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.hero__inner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
@media (max-width: 736px) {
  .hero__inner-wrap {
    flex-direction: column-reverse;
  }
}
.hero__text-wrap {
  width: 30%;
  min-width: 52.8rem;
}
@media (max-width: 736px) {
  .hero__text-wrap {
    width: 100%;
    min-width: auto;
  }
}
.hero__text-inner {
  padding: 0 5.6rem;
}
@media (max-width: 736px) {
  .hero__text-inner {
    padding: 0;
  }
}
.hero__image-wrap {
  position: relative;
  width: 73%;
}
@media (max-width: 736px) {
  .hero__image-wrap {
    width: 100%;
    margin-top: 96px;
  }
  .hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.hero__title {
  margin: 8rem auto 12rem;
  width: 41.6rem;
}
@media (max-width: 736px) {
  .hero__title {
    margin: 24px auto 32px;
    width: calc(345 * var(--scale-unit));
  }
}
.hero-nav__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4rem;
  list-style-type: none;
  margin-left: 4rem;
}
.hero-nav__link {
  color: #fff;
  text-decoration: none;
  display: inline-block;
}
.hero-nav__link-ja {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  display: inline-block;
}
.hero-nav__link-en {
  font-family: "Fjalla One", sans-serif;
  color: var(--accent-color);
  font-size: 1.8rem;
  display: inline-block;
  margin-left: 1.2rem;
}
.hero-sns {
  width: 34rem;
  margin: 4rem auto 0;
}
@media (max-width: 736px) {
  .hero-sns {
    width: calc(260 * var(--scale-unit));
    margin-top: 40px;
    margin-left: calc(16 * var(--scale-unit));
  }
}
.hero-sns a {
  display: block;
}
.hero-broadcast {
  width: 41.6rem;
  margin: 4rem auto 0;
}
@media (max-width: 736px) {
  .hero-broadcast {
    width: calc(345 * var(--scale-unit));
    margin-top: calc(56 * 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.42;
  }
}
.hero-select-visual__inner {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 71px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 736px) {
  .hero-select-visual__inner {
    width: calc(48 * var(--scale-unit));
    gap: 6px;
    top: calc(100% + 12px);
    right: calc(16 * var(--scale-unit));
  }
}
.hero-select-visual__image {
  position: relative;
}
.hero-select-visual.slideshow__dot--active {
  filter: brightness(1);
  pointer-events: none;
}
.hero-select-visual__image {
  position: relative;
}
.hero-select-visual__text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
@media (max-width: 736px) {
  .hero-select-visual__text {
    font-size: calc(10 * var(--scale-unit));
  }
}
.hero-select-visual__image {
  position: relative;
}
.hero-select-visual-back {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 96px;
  height: auto;
  z-index: 0;
  transform: translate(-50%, 0);
}
@media (max-width: 736px) {
  .hero-select-visual-back {
    /* transform: translate(-43%, 0); */
    width: calc(66 * var(--scale-unit));
  }
}
.slideshow__dot--active {
  pointer-events: none;
}
.hero-select-visual-back {
  display: none;
}
.hero-select-visual {
  position: relative;
  z-index: 1;
}
.hero-select-visual.inactive {
  display: block;
}
.hero-select-visual.active {
  display: none;
}
.slideshow__dot--active .hero-select-visual.inactive {
  display: none;
}
.slideshow__dot--active .hero-select-visual.active {
  display: block;
}
.slideshow__dot--active .hero-select-visual-back {
  display: block;
}

/* news Section */

.news {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px 140px;
}
@media (max-width: 736px) {
  .news {
    padding: 0 calc(15 * var(--scale-unit)) 64px;
  }
}
.news__inner {
  display: grid;
  grid-template-columns: 1fr;
}
@media (max-width: 736px) {
  .news__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.news__header {
  margin-bottom: 56px;
}
@media (max-width: 736px) {
  .news__header {
    margin-bottom: 0;
  }
}
.news__title {
  width: 230px;
}
@media (max-width: 736px) {
  .news__title {
    width: calc(116 * var(--scale-unit));
  }
}
.news-image {
  display: block;
  max-width: 120px;
}
.news__btn {
  display: inline-block;
  width: 320px;
  margin: 56px auto 0;
}
@media (max-width: 736px) {
  .news__btn {
    display: block;
    margin: 0 auto;
    width: calc(320 * var(--scale-unit));
  }
}
.news__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(3, max-content);
}
@media (max-width: 736px) {
  .news__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.news__item {
  width: 384px;
  height: 157px;
  background-image: url(./images/speech_bubble.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: #000;
  transition: transform 0.2s ease;
}
.news__item:nth-child(even) {
  background-image: url(./images/speech_bubble_reverse.svg);
}
.news__item > .news__link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  padding: 24px 24px 24px 40px;
}
.news__item:has(.news__link:hover) {
  transform: translateY(-6px);
}
@media (max-width: 736px) {
  .news__item:has(.news__link:hover) {
    transform: none;
  }
}
.news__link:hover {
  opacity: 1;
}
@media (max-width: 736px) {
  .news__item {
    /* row-gap: 2px; */
    width: calc(345 * var(--scale-unit));
    height: auto;
    aspect-ratio: 2.6 / 1;
  }
  .news__item > .news__link {
    padding: 20px calc(20 * var(--scale-unit)) 18px calc(48 * var(--scale-unit));
  }
}
.news__date {
  display: flex;
}
.news__year,
.news__day {
  display: block;
  font-family: "Micro 5", sans-serif;
  font-size: 20px;
  color: var(--date-color);
}
@media (max-width: 736px) {
  .news__year,
  .news__day {
    font-size: calc(20 * var(--scale-unit));
  }
}
.news__description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2; /* 2行で切りたい行数 */
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.6;
  /* max-height: 3.2em; */
  color: #000;
  font-size: 18px;
  width: fit-content;
}
.page-news__wrap .news__description {
  line-clamp: 3;
  -webkit-line-clamp: 3;
}
@media (max-width: 736px) {
  .news__description {
    line-height: 1.4;
    font-size: calc(16 * var(--scale-unit));
  }
}

/* introduction セクション */

.introduction {
  background-image: url(./images/introduction-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 184px;
}
@media (max-width: 736px) {
  .introduction {
    background-image: url(./images/introduction-bg-sp.png);
    padding-bottom: 88px;
  }
}
.introduction__title {
  width: 222px;
  padding-top: 80px;
  margin: 0 auto;
}
@media (max-width: 736px) {
  .introduction__title {
    padding-top: 56px;
    width: calc(114 * var(--scale-unit));
  }
}
.introduction__content {
  text-align: center;
  max-width: 1240px;
  margin: 56px auto 0;
  padding: 0 20px;
}
@media (max-width: 736px) {
  .introduction__content {
    padding: 0 calc(15 * var(--scale-unit));
    margin-top: 32px;
  }
}
.introduction__text {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 1em;
  line-height: 1.6;
}
@media (max-width: 736px) {
  .introduction__text {
    font-size: calc(18 * var(--scale-unit));
    margin-bottom: 1.5em;
  }
}
.introduction__text:last-child {
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 500;
}
/* .introduction__text:last-child span {
  color: var(--accent-color);
  font-weight: 700;
  padding: 0 0 0 4px;
} */
@media (max-width: 736px) {
  .introduction__text:last-child {
    font-size: calc(24 * var(--scale-unit));
  }
}

/* character Section */

.character {
  position: relative;
  z-index: 1;
}
.character__inner,
.p-music__inner,
.p-onair__inner,
.p-story__inner {
  max-width: 1240px;
  margin: 180px auto 96px;
  padding: 0 20px;
}
@media (max-width: 736px) {
  .character__inner,
  .p-music__inner,
  .p-onair__inner,
  .p-story__inner {
    margin-top: calc(112 * var(--scale-unit));
    margin-bottom: calc(56 * var(--scale-unit));
    padding: 0 calc(15 * var(--scale-unit));
  }
}
.character__header {
  margin-bottom: 72px;
}
@media (max-width: 736px) {
  .character__header {
    margin-bottom: calc(40 * var(--scale-unit));
  }
}
.character__title {
  width: 232px;
  margin: 0 auto;
}
@media (max-width: 736px) {
  .character__title {
    width: calc(117 * var(--scale-unit));
  }
}
.character__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  gap: 16px;
  list-style: none;
}
@media (max-width: 736px) {
  .character__list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 8px;
    row-gap: 16px;
    padding-left: calc(8 * var(--scale-unit));
  }
}
.character__item {
  width: 100%;
}

/* character詳細ページ */

.character-detail {
  position: relative;
  margin: 180px auto 94px;
}
@media (max-width: 736px) {
  .character-detail {
    padding: 0;
    margin-top: 112px;
    margin-bottom: 56px;
    overflow-x: hidden;
  }
}
.character__txt-image-wrap {
  position: absolute;
  bottom: 0;
  left: -8px;
  width: 140px;
}
.character__txt-image-wrap.character__txt-image-wrap--1 {
  bottom: 80px;
}
.character__txt-image-wrap.character__txt-image-wrap--3 {
  width: 124px;
}
.character__txt-image-wrap.character__txt-image-wrap--4 {
  bottom: 88px;
}
.character__txt-image-wrap.character__txt-image-wrap--8 {
  width: 132px;
}
.character__txt-image-wrap.character__txt-image-wrap--9 {
  bottom: 260px;
}
.character__txt-image-wrap.character__txt-image-wrap--10 {
  bottom: 216px;
}
.character__txt-image-wrap.character__txt-image-wrap--11 {
  bottom: 200px;
}
.character__txt-image-wrap.character__txt-image-wrap--12 {
  width: 135px;
}
.character__txt-image-wrap.character__txt-image-wrap--13 {
  bottom: 200px;
}
.character__content {
  margin: 56px auto 0;
  position: relative;
  max-width: 1200px;
  padding: 0 20px 0;
}
@media (max-width: 736px) {
  .character__content {
    margin-top: 0;
    padding: 0;
  }
}
.character__content-inner {
  margin: 0 auto;
  display: grid;
  align-items: start;
  grid-template-columns: max-content 1fr;
}
@media (max-width: 736px) {
  .character__content-inner {
    display: block;
    height: auto;
  }
}
.character__character {
  text-align: center;
  width: 430px;
}
@media (max-width: 736px) {
  .character__character {
    text-align: initial;
    width: 100%;
    position: relative;
  }
}
.character__image {
  height: 960px;
  width: auto;
  transform: scale(1);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.character__image.character5 {
  height: 880px;
}
.character__image.character13 {
  height: 930px;
  transform: scale(1) translateX(-50px);
}
@media (max-width: 736px) {
  .character__image {
    width: calc(215 * var(--scale-unit));
    height: auto;
    margin-top: 0;
    margin-left: calc(105 * var(--scale-unit));
  }
  .character__image.character2 {
    width: calc(200 * var(--scale-unit));
    margin-left: calc(120 * var(--scale-unit));
  }
  .character__image.character3 {
    width: calc(200 * var(--scale-unit));
    margin-left: calc(140 * var(--scale-unit));
    margin-top: 24px;
  }
  .character__image.character4 {
    width: calc(200 * var(--scale-unit));
    margin-left: calc(114 * var(--scale-unit));
  }
  .character__image.character5 {
    width: calc(220 * var(--scale-unit));
    height: auto;
    margin-left: calc(110 * var(--scale-unit));
  }
  .character__image.character6 {
    width: calc(190 * var(--scale-unit));
    margin-left: calc(120 * var(--scale-unit));
  }
  .character__image.character7 {
    width: calc(242 * var(--scale-unit));
    margin-left: calc(100 * var(--scale-unit));
  }
  .character__image.character9 {
    width: calc(240 * var(--scale-unit));
    margin-left: calc(96 * var(--scale-unit));
  }
  .character__image.character10 {
    width: calc(200 * var(--scale-unit));
    margin-left: calc(120 * var(--scale-unit));
  }
  .character__image.character11 {
    width: calc(227 * var(--scale-unit));
    margin-left: calc(110 * var(--scale-unit));
  }
  .character__image.character12 {
    width: calc(222 * var(--scale-unit));
    margin-left: calc(104 * var(--scale-unit));
  }
  .character__image.character13 {
    width: calc(280 * var(--scale-unit));
    height: auto;
    margin-left: calc(80 * var(--scale-unit));
    transform: scale(1) translateX(0);
  }
  .character__txt-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(70 * var(--scale-unit));
  }
  .character__txt-image.character__txt-image--2 {
    bottom: auto;
    top: 0;
    width: calc(69 * var(--scale-unit));
  }
  .character__txt-image.character__txt-image--1,
  .character__txt-image.character__txt-image--3,
  .character__txt-image.character__txt-image--4,
  .character__txt-image.character__txt-image--6,
  .character__txt-image.character__txt-image--7,
  .character__txt-image.character__txt-image--9,
  .character__txt-image.character__txt-image--10,
  .character__txt-image.character__txt-image--11,
  .character__txt-image.character__txt-image--13 {
    bottom: auto;
    top: 0px;
    width: calc(70 * var(--scale-unit));
  }
}
.character__texts {
  margin-top: 80px;
}
@media (max-width: 736px) {
  .character__texts {
    display: flex;
    flex-direction: column;
    margin: 0;
    position: relative;
    align-items: center;
  }
}
.character__description {
  margin-bottom: 216px;
}
@media (max-width: 736px) {
  .character__description {
    height: auto;
    margin-bottom: 40px;
  }
}
.character__name {
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 8px;
  position: relative;
  padding-left: 82px;
}
@media (max-width: 736px) {
  .character__name {
    font-size: calc(40 * var(--scale-unit));
    margin-bottom: 24px;
    padding-left: 0;
  }
  .character__name-text {
    padding-left: calc(14 * var(--scale-unit));
  }
}
.character__name-image {
  width: 940px;
  position: absolute;
  left: -136px;
  top: -64px;
  z-index: -1;
}
@media (max-width: 736px) {
  .character__name-image {
    width: 100%;
    top: -112px;
    left: 0;
  }
}
.character__name-text {
  position: relative;
}
.character__name-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  width: 314px;
  z-index: -1;
}
.character__name-bar--2,
.character__name-bar--8,
.character__name-bar--9,
.character__name-bar--12 {
  width: 252px;
}
.character__name-bar--3,
.character__name-bar--5 {
  width: 360px;
}
.character__name-bar--11 {
  width: 378px;
}
@media (max-width: 736px) {
  .character__name-bar {
    left: 0;
    transform: none;
  }
  .character__name-bar--1,
  .character__name-bar--4,
  .character__name-bar--6,
  .character__name-bar--7,
  .character__name-bar--10 {
    width: calc(190 * var(--scale-unit));
  }
  .character__name-bar--2,
  .character__name-bar--8,
  .character__name-bar--9,
  .character__name-bar--12,
  .character__name-bar--13 {
    width: calc(152 * var(--scale-unit));
  }
  .character__name-bar--3,
  .character__name-bar--5,
  .character__name-bar--11 {
    width: calc(231 * var(--scale-unit));
  }
}
.character__cv-label {
  font-family: "Fjalla One", sans-serif;
}
@media (max-width: 736px) {
  .character__cv-label {
    font-size: calc(14 * var(--scale-unit));
  }
}
.character__text.character__text-cv {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 24px;
}
@media (max-width: 736px) {
  .character__text-cv {
    font-size: calc(14 * var(--scale-unit));
    margin-bottom: 0;
  }
  .character__text.character__text-cv {
    margin-bottom: 24px;
  }
}
.character__cv {
  font-size: 28px;
}
@media (max-width: 736px) {
  .character__cv {
    font-size: calc(24 * var(--scale-unit));
  }
}
.character__text {
  font-size: 16px;
  line-height: 1.8;
  margin-left: 82px;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
  font-weight: 400;
  z-index: 1;
  transform: translate3d(0, 0, 0);
  padding: 0 8px;
}
@media (max-width: 736px) {
  .character__text {
    font-size: calc(16 * var(--scale-unit));
    margin-left: 0;
    margin: 0 calc(16 * var(--scale-unit));
  }
}
.character__text--school {
  margin-bottom: 16px;
}
@media (max-width: 736px) {
  .character__text.character__text--school {
    margin-bottom: 16px;
  }
}
.character__text::before,
.character__text::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000711;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transform-origin: left;
}
.character__text::before {
  transition: transform 0.5s ease;
  transition-delay: 0.2s;
  transform: scaleX(0);
}
.character__text::after {
  z-index: 8;
  clip-path: inset(0 100% 0 0);
}
.character__text.active::after {
  animation: barClip 1s;
  animation-delay: 0.4s;
  clip-path: inset(0 100% 0 0);
}
.character__text.active::before {
  transform: scaleX(1);
}
@keyframes barClip {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  50% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 0 0 100%);
  }
}
@media (max-width: 736px) {
  .character__text {
    font-size: calc(16 * var(--scale-unit));
    margin-bottom: 4px;
  }
}
.character__text-item {
  display: block;
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0s ease;
  transition-delay: 0.8s;
  z-index: 5;
  line-height: 1.6;
}
.character__text-item.active {
  opacity: 1;
}
@media (max-width: 736px) {
  .character__text-item {
    white-space: normal;
  }
  .character__text-item:has(.character__cv) {
    font-size: calc(12 * var(--scale-unit));
  }
}
.character__navigation-wrap {
  display: flex;
  justify-content: end;
  align-items: center;
}
@media (max-width: 736px) {
  .character__navigation-wrap {
    display: block;
    width: fit-content;
  }
}
.single-post__button-news-top {
  width: 320px;
}
.character__navigation {
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 96px;
}
@media (max-width: 736px) {
  .character__navigation {
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, max-content);
  }
}
.character__nav-button {
  color: #fff;
  border: none;
}
@media (max-width: 736px) {
  .character__nav-button--prev {
    grid-area: 1 / 1 / 2 / 2;
    text-align: right;
    width: fit-content;
    justify-self: end;
  }
  .character__nav-button--next {
    grid-area: 1 / 2 / 2 / 3;
    text-align: left;
    width: fit-content;
    justify-self: start;
  }
  .character__button-news-top {
    width: calc(320 * var(--scale-unit));
    grid-area: 2 / 1 / 3 / 3;
  }
}
.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__nav-link {
  width: 56px;
}
@media (max-width: 736px) {
  .character__nav-link {
    width: calc(40 * var(--scale-unit));
  }
}

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

.staff-cast {
  margin-top: 112px;
  margin-bottom: 160px;
}
@media (max-width: 736px) {
  .staff-cast {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}
.staff-cast__container {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
}
@media (max-width: 736px) {
  .staff-cast__container {
    gap: 32px;
  }
}
.staff-cast__title {
  width: 480px;
}
@media (max-width: 736px) {
  .staff-cast__title {
    width: calc(240 * var(--scale-unit));
  }
}
.staff-cast__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  justify-items: start;
}
@media (max-width: 736px) {
  .staff-cast__content {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: start;
  }
  .staff-cast__staff,
  .staff-cast__cast {
    width: 100%;
  }
}
.staff-cast__section-title {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 24px;
  position: relative;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 102px 1fr;
  align-items: center;
  column-gap: 24px;
}
.staff-cast__section-title--cast {
  grid-template-columns: 1fr 86px 1fr;
}
@media (max-width: 736px) {
  .staff-cast__section-title {
    font-size: calc(24 * var(--scale-unit));
    column-gap: calc(16 * var(--scale-unit));
    margin-bottom: 16px;
  }
}
.staff-cast__section-title::before,
.staff-cast__section-title::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #fff;
  width: 100%;
}
.staff-cast__section-title::before {
  left: 0;
}
.staff-cast__section-title--staff::after {
  right: 0;
}
.staff-cast__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, max-content);
  row-gap: 32px;
  list-style: none;
}
.staff-cast__list--cast {
  row-gap: 40px;
}
.staff-cast__list--staff .staff-cast__comment,
.staff-cast__list--cast .staff-cast__comment {
  width: 27px;
  position: absolute;
  bottom: 0;
  left: calc(100% + 10px);
}
@media (max-width: 736px) {
  .staff-cast__list {
    grid-template-columns: repeat(1, max-content);
    grid-template-rows: repeat(2, max-content);
    column-gap: calc(8 * var(--scale-unit));
    row-gap: 14px;
  }
  .staff-cast__cast .staff-cast__list {
    column-gap: calc(53 * var(--scale-unit));
  }
  .staff-cast__list--cast {
    grid-template-rows: repeat(2, 1fr);
    justify-items: start;
  }
  .staff-cast__list--staff .staff-cast__comment,
  .staff-cast__list--cast .staff-cast__comment {
    width: calc(22 * var(--scale-unit));
  }
}
.staff-cast__role,
.staff-cast__name {
  display: block;
}
.staff-cast__role {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--accent-color);
}
@media (max-width: 736px) {
  .staff-cast__role {
    font-size: calc(16 * var(--scale-unit));
  }
}
.staff-cast__role-name-wrap {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: start;
  column-gap: 16px;
}
@media (max-width: 736px) {
  .staff-cast__role-name-wrap {
    gap: 4px;
    grid-template-columns: 1fr;
  }
}
.staff-cast__name {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  position: relative;
  display: inline-block;
  width: fit-content;
}
.staff-cast__name-caption {
  grid-area: 2 / 2 / 3 / 3;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.05em;
}
@media (max-width: 736px) {
  .staff-cast__name {
    font-size: calc(20 * var(--scale-unit));
  }
  .staff-cast__name-caption {
    grid-area: auto;
    font-size: calc(14 * var(--scale-unit));
    line-height: 1.2;
  }
}
.staff-cast__comment {
  transition: opacity 0.3s ease;
}
.staff-cast__comment:hover {
  opacity: 0.7;
}
@media (max-width: 736px) {
  .staff-cast__comment:hover {
    opacity: 1;
  }
}
.staff-cast__staff,
.staff-cast__cast {
  width: 100%;
}

/* staff cast comment modal */

.staff-cast__dialog-dli-close.dli-close {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 5em;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
  transform: rotate(32deg);
}
@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(116deg);
}

.staff-cast__comment-staff-modal.dialog,
.staff-cast__comment-cast-modal.dialog {
  background-color: transparent;
  color: #fff;
  width: 100%;
  max-width: 900px;
  height: fit-content;
}
@media (max-width: 736px) {
  .staff-cast__comment-staff-modal.dialog,
  .staff-cast__comment-cast-modal.dialog {
    width: 100%;
    padding: 16px 0;
  }
}
.staff-cast__comment-staff-modal.dialog,
.staff-cast__comment-cast-modal.dialog {
  max-width: 1200px;
}
@media (max-width: 736px) {
  .staff-cast__comment-staff-modal.dialog,
  .staff-cast__comment-cast-modal.dialog {
    padding: 40px 0;
  }
}
.staff-cast__comment-staff-modal.dialog::backdrop,
.staff-cast__comment-cast-modal.dialog::backdrop {
  opacity: 0.9;
}
.staff-cast__comment-staff-modal-inner,
.staff-cast__comment-cast-modal-inner {
  inset: 0;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  width: 1158px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 736px) {
  .staff-cast__comment-staff-modal-inner,
  .staff-cast__comment-cast-modal-inner {
    width: calc(346 * var(--scale-unit));
    margin: 0 auto;
  }
  .staff-cast__comment-staff-modal-inner,
  .staff-cast__comment-cast-modal-inner {
    flex-direction: column;
    gap: 16px;
  }
}
.staff-cast__comment-staff-modal-header,
.staff-cast__comment-staff-cast-header {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}
.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(20 * 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;
}
@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));
  }
}
.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;
  margin-top: 32px;
  margin-bottom: 16px;
  padding: 16px;
  overflow: hidden;
}
@media (max-width: 736px) {
  .staff-cast__comment-staff-modal .hero__dialog-close,
  .staff-cast__comment-cast-modal .hero__dialog-close {
    height: fit-content;
    margin-top: 16px;
  }
}
.staff-cast__comment-staff-modal-img,
.staff-cast__comment-cast-modal-img {
  flex: 0 0 auto;
  max-width: 320px;
}
.staff-cast__comment-cast-modal-img--wide {
  max-width: 420px;
}
@media (max-width: 736px) {
  .staff-cast__comment-staff-modal-img,
  .staff-cast__comment-cast-modal-img {
    max-width: calc(200 * var(--scale-unit));
    width: calc(200 * var(--scale-unit));
  }
  .staff-cast__comment-cast-modal-img--wide {
    max-width: calc(256 * var(--scale-unit));
    width: calc(256 * var(--scale-unit));
  }
}
.staff-cast__comment-staff-modal-contents,
.staff-cast__comment-cast-modal-contents {
  flex: 1 1 auto;
  width: 60%;
}
.staff-cast__comment-cast-modal-contents--wide {
  width: 50%;
}
@media (max-width: 736px) {
  .staff-cast__comment-staff-modal-contents,
  .staff-cast__comment-cast-modal-contents {
    width: 100%;
  }
}
.staff-cast__dialog-dli-close.dli-close {
  width: 64px;
}

/* Books */

.books {
  background-image: url(./images/books_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 180px;
  padding-bottom: 138px;
}
@media (max-width: 736px) {
  .books {
    background-image: url(./images/books_bg_sp.png);
    padding-top: 72px;
    padding-bottom: 80px;
  }
}
.books__container {
  max-width: 1200px;
  margin: 0 auto;
}
.books__title {
  width: 224px;
  margin: 0 auto;
  margin-bottom: 56px;
}
@media (max-width: 736px) {
  .books__title {
    width: calc(114 * var(--scale-unit));
    margin-bottom: 32px;
  }
}
.books__title .letter {
  opacity: 0;
  transition: opacity 0.5s ease;
  transition-delay: calc(var(--index) * 0.1s);
}
.books.visible .books__title .letter {
  opacity: 1;
}
@media (max-width: 736px) {
  .books__container {
    padding: 0 calc(15 * var(--scale-unit)) 0;
  }
  .books__title {
    margin-top: 0;
  }
}
.books__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
@media (max-width: 736px) {
  .books__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(15 * var(--scale-unit));
  }
}
.books__item {
  text-align: center;
}
.books__image {
  max-width: 100%;
  height: auto;
}
.books__item--en .books__image {
  aspect-ratio: 33 / 50;
  object-fit: cover;
}
.books__links {
  margin-top: 10px;
}
@media (max-width: 736px) {
  .books__links {
    margin-top: 8px;
  }
  .books__link {
    width: 100%;
  }
}

/* Footer */

.footer {
  padding-bottom: 38px;
  background-color: rgba(0, 12, 29, 0.8);
}
@media (min-width: 737px) {
  body.short .footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
@media (max-width: 736px) {
  .footer {
    padding-bottom: 32px;
  }
}
.footer ul {
  list-style: none;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer__inner {
  position: relative;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-template-rows: 72px max-content max-content max-content;
  row-gap: 24px;
}
@media (max-width: 736px) {
  .footer__container {
    padding: 0 calc(15 * var(--scale-unit));
    grid-template-rows: repeat(2, max-content);
    column-gap: 0;
    row-gap: 0;
  }
}
.footer__logo-area {
  align-self: center;
  grid-area: 1 / 1 / 5 / 2;
}
.footer__top-link {
  grid-area: 1 / 2 / 2 / 3;
  display: flex;
  justify-content: flex-end;
}
.footer__nav {
  grid-area: 2 / 2 / 3 / 3;
}
.footer__privacy-policy {
  grid-area: 3 / 2 / 4 / 3;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 24px;
}
.footer__privacy-policy a {
  font-family: "Fjalla One", sans-serif;
  color: #8b8b8b;
}
.footer .footer__privacy-policy span {
  text-decoration: underline;
  font-size: 16px;
}
@media (max-width: 736px) {
  .footer .footer__privacy-policy span {
    font-size: calc(12 * var(--scale-unit));
  }
}
.footer__privacy-policy-link {
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer .footer__privacy-policy img {
  display: inline-block;
  width: 12px;
  filter: brightness(0.6);
}
@media (max-width: 736px) {
  .footer .footer__privacy-policy img {
    width: calc(12 * var(--scale-unit));
    margin-bottom: 0;
  }
}
.footer__sns-wrap {
  grid-area: 4 / 1 / 5 / 2;
}
.copyright {
  grid-area: 4 / 2 / 5 / 3;
}
@media (max-width: 736px) {
  .footer__logo-area {
    margin-top: 32px;
    grid-area: 1 / 1 / 2 / 2;
  }
  .footer__top-link {
    grid-area: 1 / 2 / 2 / 3;
    align-items: center;
  }
  .footer__nav {
    grid-area: 3 / 1 / 4 / 3;
  }
  .footer__privacy-policy {
    grid-area: 4 / 1 / 5 / 3;
    margin-top: 24px;
    margin-bottom: 20px;
    justify-content: start;
  }
  .footer__sns-wrap {
    margin-top: 30px;
    margin-bottom: 30px;
    grid-area: 2 / 1 / 3 / 3;
  }
  .copyright {
    grid-area: 5 / 1 / 6 / 3;
  }
}
.footer__top-link-button {
  width: 64px;
  position: relative;
  top: -8px;
}
@media (max-width: 736px) {
  .footer__top-link-button {
    width: calc(56 * var(--scale-unit));
  }
}
.footer__sns-list {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 16px;
  list-style-type: none;
}
@media (max-width: 736px) {
  .footer__sns-list {
    margin-bottom: 0;
    align-items: center;
    gap: calc(6 * var(--scale-unit));
  }
}
.footer__sns-item {
  width: 32px;
}
@media (max-width: 736px) {
  .footer__sns-item {
    width: calc(32 * var(--scale-unit));
  }
}
.footer__sns-item-text {
  font-size: 16px;
  font-family: "Fjalla One", sans-serif;
  margin-right: 14px;
  width: auto;
}
@media (max-width: 736px) {
  .footer__sns-item-text {
    font-size: calc(14 * var(--scale-unit));
    margin-right: calc(8 * var(--scale-unit));
    width: auto;
  }
}
.footer__logo {
  display: block;
  width: 422px;
}
@media (max-width: 736px) {
  .footer__logo {
    width: calc(240 * var(--scale-unit));
  }
}
.footer__menu {
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  align-items: center;
  justify-content: end;
}
.footer__menu-item {
  font-size: 16px;
  font-family: "Fjalla One", sans-serif;
  position: relative;
}
@media (max-width: 736px) {
  .footer__menu {
    width: calc(300 * var(--scale-unit));
    column-gap: calc(15 * var(--scale-unit));
    row-gap: 12px;
    justify-content: start;
  }
  .footer__menu-item {
    font-size: calc(14 * var(--scale-unit));
  }
}
.copyright__text {
  color: #8b8b8b;
  text-align: right;
  font-size: 16px;
  font-weight: 300;
}
@media (max-width: 736px) {
  .copyright__text {
    text-align: left;
    font-size: calc(12 * var(--scale-unit));
  }
}
.footer__banner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}
.footer__banner-link {
  width: 400px;
}
@media (max-width: 736px) {
  .footer__banner {
    margin-block: calc(24 * var(--scale-unit));
    flex-direction: column;
  }
  .footer__banner-link {
    width: 80%;
  }
}

/* single-post */

.single-post {
  line-height: 1.6;
  margin-top: 180px;
  color: #000;
}
@media (max-width: 736px) {
  .single-post {
    margin-top: 112px;
  }
}
.single-post__container {
  max-width: 1080px;
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  position: relative;
  z-index: 0;
}

.flex {
  display: flex;
  justify-content: center;
}

.single-post__container-deco {
  width: 60px;
  height: auto;
  background-color: #fff;
  position: relative;
}

@media (max-width: 736px) {
  .single-post__container-deco {
    width: 30px;
  }
}

.single-post__container-deco1 {
  right: -1px;
  background: linear-gradient(
      to bottom,
      #fff 0%,
      #fff calc(100% - 123px),
      transparent calc(100% - 123px),
      transparent 100%
    ),
    url(./images/single/left.svg) no-repeat bottom left;
  background-size: contain;
}

.single-post__container-deco2 {
  left: -1px;
  background: linear-gradient(
      to top,
      #fff 0%,
      #fff calc(100% - 123px),
      transparent calc(100% - 123px),
      transparent 100%
    ),
    url(./images/single/right.svg) no-repeat top left;
  background-size: contain;
}

@media (max-width: 736px) {
  .single-post__container-deco1 {
    background: linear-gradient(
        to bottom,
        #fff 0%,
        #fff calc(100% - 50px),
        transparent calc(100% - 50px),
        transparent 100%
      ),
      url(./images/single/left.svg) no-repeat bottom left;
    background-size: contain;
  }

  .single-post__container-deco2 {
    background: linear-gradient(
        to top,
        #fff 0%,
        #fff calc(100% - 48px),
        transparent calc(100% - 50px),
        transparent 100%
      ),
      url(./images/single/right.svg) no-repeat top left;
    background-size: contain;
  }
}

.single-post__speech-bubble {
  position: absolute;
  top: 100%;
  right: 60px;
  width: 128px;
}
.single-post__speech-bubble::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 5px;
  background-color: #d7d7d7;
  width: 73px;
  height: 2px;
}
@media (max-width: 736px) {
  .single-post__speech-bubble {
    width: 32px;
    right: 30px;
  }
  .single-post__speech-bubble::after {
    width: 18px;
    top: -1px;
    right: 2px;
    height: 4px;
    border-radius: 10px;
  }
}
.single-post__container-inner {
  width: 1040px;
  margin: 80px auto;
}
@media (max-width: 736px) {
  .single-post__container-inner {
    width: 100%;
    margin: 24px auto 32px;
  }
}
.single-post__title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 48px;
}
@media (max-width: 736px) {
  .single-post__title {
    font-size: calc(20 * var(--scale-unit));
    margin-top: 4px;
    margin-bottom: 24px;
  }
}
.single-post__meta {
  font-size: 28px;
  font-family: "Micro 5", sans-serif;
  color: var(--date-color);
}
@media (max-width: 736px) {
  .single-post__meta {
    font-size: calc(20 * var(--scale-unit));
  }
}
.single-post__content h1,
.single-post__content h2,
.single-post__content h3,
.single-post__content h4,
.single-post__content h5,
.single-post__content h6 {
  font-size: 20px;
}
.single-post__content p {
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 736px) {
  .single-post__content p {
    font-size: calc(16 * var(--scale-unit));
    line-height: 1.6;
  }
}
.single-post__content a {
  color: var(--date-color);
  font-size: 16px;
  text-decoration: underline;
}
.single-post__content .wp-block-image figure {
  max-width: 100%;
}
.single-post__content img {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
  display: block;
}
.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: 48px;
}
@media (max-width: 736px) {
  .single-post__navigation {
    margin-top: 40px;
    padding: 0;
    gap: 10px;
    flex-direction: column;
    align-items: start;
  }
}
.single-post__nav {
  font-size: 14px;
  font-weight: 400;
}
.single-post__nav-link {
  color: #000;
  text-decoration: none;
  border-bottom: 1px dashed transparent;
}
.single-post__nav-link:hover {
  opacity: 1;
  border-color: #000;
}
@media (max-width: 736px) {
  .single-post__nav {
    font-size: calc(14 * var(--scale-unit));
  }
  .single-post__nav-link:hover {
    border-color: transparent;
  }
}
.single-post__no-content {
  text-align: center;
  padding: 20px;
  font-size: 1.2rem;
}
.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__link-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 56px;
}
@media (max-width: 736px) {
  .single-post__link-wrap {
    margin-top: 40px;
  }
}
.single-post article ul {
  padding-left: 1em;
  font-size: 16px;
  font-weight: 400;
}
.single-post article ul li::marker {
  font-size: 0.8em;
}
.single-post article ol {
  padding-left: 1em;
  font-size: 16px;
  font-weight: 400;
}
@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__button-wrap .single-post__button {
    width: calc(320 * var(--scale-unit));
  }
}

/* Newsページ */

.page-news__wrap,
.movie-page {
  max-width: 1200px;
  margin: 180px auto 0;
}
@media (max-width: 736px) {
  .page-news__wrap,
  .movie-page {
    margin-top: 112px;
  }
}
.page-news__wrap .news__title,
.single-post .news__title {
  width: 230px;
  margin: 0 auto;
}
@media (max-width: 736px) {
  .page-news__wrap .news__title,
  .single-post .news__title {
    width: calc(116 * var(--scale-unit));
  }
}
.page-news__wrap .news__list {
  column-gap: 24px;
  row-gap: 32px;
}
@media (max-width: 736px) {
  .page-news__wrap .news__list {
    row-gap: 12px;
  }
}
.page-news__wrap .news__header,
.single-post .news__header {
  margin-bottom: 80px;
}
@media (max-width: 736px) {
  .page-news__wrap .news__header,
  .single-post .news__header {
    margin-bottom: 0;
  }
}
.page-news__wrap .news,
.single-post .news {
  padding-bottom: 96px;
}
@media (max-width: 736px) {
  .single-post .news {
    padding-bottom: 56px;
  }
  .page-news__wrap .news {
    padding-bottom: 56px;
  }
}
@media (max-width: 736px) {
  .page-news__wrap .news__inner {
    gap: 40px;
  }
  .single-post .news__inner {
    gap: 40px;
  }
}
.page-news__wrap .page-numbers {
  list-style-type: none;
  text-decoration: none;
  font-family: "Micro 5", sans-serif;
  font-size: 32px;
  color: #fff;
  display: block;
  padding: 8px 16px;
}
@media (max-width: 736px) {
  .page-news__wrap .page-numbers {
    font-size: calc(32 * var(--scale-unit));
    /* padding: 0; */
  }
}
.page-news__wrap .page-numbers.current {
  font-size: 40px;
  border: 2px solid;
  /* border-image: linear-gradient(90deg, #b1f4ff, #6fd6f2, #75bfe6, #6bade6) 1; */
  border-color: var(--accent-color);
  padding: 2px 18px;
  line-height: 1.1;
}
@media (max-width: 736px) {
  .page-news__wrap .page-numbers.current {
    font-size: calc(40 * var(--scale-unit));
    padding: 0 calc(14 * var(--scale-unit));
  }
}
.page-news__wrap .pagination > .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 736px) {
  .page-news__wrap .pagination > .page-numbers {
    margin-top: 40px;
    gap: calc(12 * var(--scale-unit));
  }
}
.page-news__wrap .prev-arrow,
.page-news__wrap .next-arrow {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 23px 29px;
}
@media (max-width: 736px) {
  .page-news__wrap .prev-arrow,
  .page-news__wrap .next-arrow {
    border-width: calc(15 * var(--scale-unit)) calc(20 * var(--scale-unit));
  }
}
.page-news__wrap .prev-arrow {
  border-right-color: currentColor;
  border-left: 0;
  margin-right: 12px;
}
.page-news__wrap .next-arrow {
  border-left-color: currentColor;
  border-right: 0;
  margin-left: 12px;
}
@media (max-width: 736px) {
  .page-news__wrap .prev-arrow {
    margin-right: calc(8 * var(--scale-unit));
  }
  .page-news__wrap .next-arrow {
    margin-left: calc(8 * var(--scale-unit));
  }
}

/* 404ページ */

.not-found {
  max-width: 1210px;
  margin: 280px auto 500px;
  padding: 0 20px;
}
@media (max-width: 736px) {
  .not-found {
    padding: 0 calc(20 * var(--scale-unit));
    margin: 136px auto 0;
  }
}
.not-found__content {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 40px;
  align-items: center;
}
@media (max-width: 736px) {
  .not-found__content {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (max-width: 736px) {
  .not-found__title {
    width: calc(240 * var(--scale-unit));
    margin: 0 auto;
  }
}
.not-found__text {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media (max-width: 736px) {
  .not-found__text {
    font-size: calc(16 * var(--scale-unit));
    margin: 0 0 32px;
  }
}
.not-found__button {
  width: 320px;
  margin: 0 auto;
}
@media (max-width: 736px) {
  .not-found__button {
    width: calc(320 * var(--scale-unit));
  }
}
.not-found__link {
  width: 100%;
}
@media (max-width: 736px) {
  .not-found__link {
    margin-bottom: 56px;
  }
}

/* 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.5;
  background: #000;
  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;
}

/* アニメーション */

.observe-me.active .news__header,
.observe-me.active .introduction__title,
.observe-me.active .staff-cast__title,
.observe-me.active .books__title {
  animation: blink 0.2s ease-in-out;
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.introduction__content {
  clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
}
.observe-me.active .introduction__content {
  animation: clipPath 0.5s ease forwards;
  animation-delay: 0.3s;
}
@keyframes clipPath {
  0% {
    clip-path: polygon(45% 45%, 55% 45%, 55% 55%, 45% 55%);
  }
  50% {
    clip-path: polygon(49% 0, 51% 0, 51% 100%, 49% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.page-cookiepolicy {
  max-width: 800px;
  margin: 136px auto 0;
  margin-bottom: 120px;
  font-size: 15px;
  line-height: 1.8;
}
.page-cookiepolicy a {
  color: #fff;
}
.page-cookiepolicy .CookieDeclarationType {
  border: 1px solid #fff;
}
.page-cookiepolicy .CookieDeclarationTableHeader,
.page-cookiepolicy .CookieDeclarationTableCell {
  border-bottom: 1px solid #fff;
}
.cookiepolicy__title {
  font-size: 80px;
  font-weight: 700;
  margin-bottom: 56px;
  text-align: center;
}

@media (max-width: 736px) {
  .cookiepolicy__title {
    font-size: calc(36 * var(--scale-unit));
    margin-bottom: 32px;
  }
}
@media (max-width: 736px) {
  .page-cookiepolicy {
    max-width: 100%;
    padding: 0 calc(15 * var(--scale-unit));
    margin: calc(120 * var(--scale-unit)) auto
      calc((330 * var(--scale-unit)) + 77px);
  }
  .page-cookiepolicy {
    margin-bottom: calc(120 * var(--scale-unit));
    font-size: calc(14 * var(--scale-unit));
  }
}

/* movieページ */

.movie-page__title {
  width: 228px;
  margin: 0 auto;
}
@media (max-width: 736px) {
  .movie-page {
    padding: 0 calc(15 * var(--scale-unit));
  }
  .movie-page__title {
    width: calc(120 * var(--scale-unit));
  }
}
.sec-movie {
  margin-top: 80px;
  margin-bottom: 96px;
  position: relative;
}
.sec-movie__inner {
  width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 736px) {
  .sec-movie {
    margin-top: 40px;
    margin-bottom: 56px;
  }
  .page-movie__wrap {
    width: 100%;
  }
  .sec-movie__inner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.sec-movie__title {
  margin-top: .5em;
  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 {
    font-size: calc(16 * var(--scale-unit));
  }
}
.hero .movie {
  aspect-ratio: 16 / 9;
  position: relative;
  width: 880px;
  margin: 112px auto 0;
  z-index: 11;
}
.hero .movie iframe {
  height: 100%;
  width: 100%;
}
@media screen and (max-width:736px) {
  .hero .movie {
    width: 100%;
    padding: 0 calc(15 * var(--scale-unit));
    margin-top: 64px;
  }
  .hero .movie iframe {
    height: 100%;
    width: 100%;
  }
}
.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%;
}
.youtube_modal__image {
  filter: brightness(0.6);
  transition: filter 0.3s;
}
@media (hover: hover) {
  .youtube_wrap:hover .youtube_modal__image {
    filter: brightness(1);
  }
}
.youtube_modal .youtube_modal__video-start {
  width: 84px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 736px) {
  .youtube_modal .youtube_modal__video-start {
    width: calc(48 * var(--scale-unit));
  }
}
.lity {
  z-index: 9999999;
  background-color: rgba(0, 0, 0, 0.9);
}
.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;
}
/* iframe コンテナとオーバーレイのスタイル */
.iframe_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.iframe_container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.iframe_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

/* musicページ */

.p-music__content.opening {
  margin-bottom: 240px;
}
@media (max-width: 736px) {
  .p-music__content.opening {
    margin-bottom: calc(150 * var(--scale-unit));
  }
}
.p-music__header {
  margin-bottom: 85px;
}
@media (max-width: 736px) {
  .p-music__header {
    margin-bottom: calc(40 * var(--scale-unit));
  }
}
.p-music__title {
  width: 320px;
  margin: 0 auto;
}
@media (max-width: 736px) {
  .p-music__title {
    width: calc(164 * var(--scale-unit));
  }
}
.p-music__content-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 736px) {
  .p-music__content-inner {
    grid-template-columns: 1fr;
    gap: calc(24 * var(--scale-unit));
    margin-bottom: calc(32 * var(--scale-unit));
  }
}
.p-music__theme-title {
  font-size: 44px;
  color: var(--accent-color);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 24px;
}
@media (max-width: 736px) {
  .p-music__theme-title {
    font-size: calc(28 * var(--scale-unit));
    margin-bottom: 0;
  }
}
.p-music__artist {
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 24px;
}
@media (max-width: 736px) {
  .p-music__artist {
    font-size: calc(26 * var(--scale-unit));
    margin-bottom: calc(8 * var(--scale-unit));
    white-space: nowrap;
    line-height: 1.6;
  }
}
.p-music__producers-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  margin-bottom: 40px;
}
@media (max-width: 736px) {
  .p-music__producers-wrap {
    display: block;
    margin-bottom: calc(32 * var(--scale-unit));
  }
}
.p-music__producer {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 736px) {
  .p-music__producer {
    font-size: calc(16 * var(--scale-unit));
  }
}
.p-music__artist-wrap {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  padding-top: 64px;
  border-top: 1px solid #fff;
}
@media (max-width: 736px) {
  .p-music__artist-wrap {
    grid-template-columns: 1fr;
    gap: calc(24 * var(--scale-unit));
    padding-top: calc(32 * var(--scale-unit));
  }
}
.p-music__profile-title {
  font-family: "Fjalla One", sans-serif;
  font-size: 16px;
  color: var(--accent-color);
  margin-bottom: 8px;
}
@media (max-width: 736px) {
  .p-music__profile-title {
    font-size: calc(16 * var(--scale-unit));
    margin-bottom: calc(8 * var(--scale-unit));
  }
}
.p-music__profile-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 736px) {
  .p-music__profile-text {
    font-size: calc(16 * var(--scale-unit));
  }
}
.p-music__artist-comment {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media (max-width: 736px) {
  .p-music__artist-comment {
    font-size: calc(16 * var(--scale-unit));
    margin-bottom: calc(32 * var(--scale-unit));
  }
}
.p-music__profile-links {
  list-style: none;
  display: flex;
  gap: 16px;
}
@media (max-width: 736px) {
  .p-music__profile-links {
    gap: calc(16 * var(--scale-unit));
    flex-wrap: wrap;
  }
}
.p-music__profile-link-text {
  font-size: 16px;
  font-family: "Fjalla One", "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  padding: 13px 16px 11px;
  border: 1px solid #fff;
}
@media (max-width: 736px) {
  .p-music__profile-link-text {
    font-size: calc(16 * var(--scale-unit));
    padding: calc(13 * var(--scale-unit)) calc(16 * var(--scale-unit)) calc(11 * var(--scale-unit));
  }
}
.p-music__streaming-date-label {
  color: var(--accent-color);
}
.p-music__streaming-date {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-top: 40px;
  display: inline-block;
}
@media (max-width: 736px) {
  .p-music__streaming-date {
    font-size: calc(18 * var(--scale-unit));
    line-height: 1.6;
    margin-top: calc(32 * var(--scale-unit));
  }
}

/* onairページ */

.p-onair__header {
  margin-bottom: 85px;
}
@media (max-width: 736px) {
  .p-onair__header {
    margin-bottom: calc(40 * var(--scale-unit));
  }
}
.p-onair__title {
  width: 220px;
  margin: 0 auto;
}
@media (max-width: 736px) {
  .p-onair__title {
    width: calc(120 * var(--scale-unit));
  }
}
.p-onair__content-inner {
  margin-bottom: 96px;
}
@media (max-width: 736px) {
  .p-onair__content-inner {
    margin-bottom: calc(64 * var(--scale-unit));
  }
}
.p-onair__content-inner--streaming {
  margin-bottom: 0;
}
.p-onair__content-title {
  font-size: 44px;
  font-family: "Fjalla One", sans-serif;
  font-weight: 400;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 62px;
}
@media (max-width: 736px) {
  .p-onair__content-title {
    font-size: calc(40 * var(--scale-unit));
    margin-bottom: calc(46 * var(--scale-unit));
  }
}
.p-onair__content-title--streaming {
  margin-bottom: 40px;
}
@media (max-width: 736px) {
  .p-onair__content-title--streaming {
    margin-bottom: calc(22 * var(--scale-unit));
  }
}
.p-onair__content-subtitle {
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 54px;
}
@media (max-width: 736px) {
  .p-onair__content-subtitle {
    font-size: calc(20 * var(--scale-unit));
    margin-bottom: calc(38 * var(--scale-unit));
    line-height: 1.6;
  }
}
.p-onair__content-inner--streaming .p-onair__content-item:last-child .p-onair__content-item-inner {
  margin-bottom: 0;
}
.p-onair__content-item-inner {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  display: grid;
  grid-template-columns: 480px 1fr;
}
@media (max-width: 736px) {
  .p-onair__content-item-inner {
    grid-template-columns: calc(150 * var(--scale-unit)) 1fr;
  }
}
.p-onair__content-inner--streaming .p-onair__content-item-inner {
  display: block;
  border: none;
  position: relative;
  margin-bottom: 64px;
}
@media (max-width: 736px) {
  .p-onair__content-inner--streaming .p-onair__content-item-inner {
    margin-bottom: calc(40 * var(--scale-unit));
  }
}
.p-onair__content-item-title-wrap,
.p-onair__content-item-date-wrap {
  padding-block: 32px;
  position: relative;
}
@media (max-width: 736px) {
  .p-onair__content-item-title-wrap,
  .p-onair__content-item-date-wrap {
    padding-block: calc(20 * var(--scale-unit));
  }
}
.p-onair__content-item-title {
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 736px) {
  .p-onair__content-item-title {
    font-size: calc(16 * var(--scale-unit));
  }
}
.p-onair__content-item-date {
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 736px) {
  .p-onair__content-item-date {
    font-size: calc(16 * var(--scale-unit));
  }
}
.p-onair__content-item-caption {
  font-size: 14px;
  font-weight: 400;
  font-family: "Fjalla One", sans-serif;
  line-height: 1;
  padding: 4px;
  color: #000;
  background-color: #fff;
  display: inline-block;
  position: absolute;
  bottom: 100%;
  left: 0;
}
@media (max-width: 736px) {
  .p-onair__content-item-caption {
    font-size: calc(12 * var(--scale-unit));
  }
}
.p-onair__content-caution {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #8B8B8B;
  margin-top: 32px;
}
@media (max-width: 736px) {
  .p-onair__content-caution {
    font-size: calc(14 * var(--scale-unit));
    margin-top: calc(20 * var(--scale-unit));
    text-indent: -1em;
    padding-left: 1em;
    line-height: 1.4;
  }
}
.p-onair__content-item-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
/* PC用: 4つずつのulタグを表示、SP用は非表示 */
.p-onair__content-item-list--pc {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.p-onair__content-item-list--sp {
  display: none;
}
@media (max-width: 736px) {
  /* SP用: 2つずつのulタグを表示、PC用は非表示 */
  .p-onair__content-item-list--pc {
    display: none;
  }
  .p-onair__content-item-list--sp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .p-onair__content-item-list--sp-first {
    border-top: 1px solid #fff;
  }
}
.p-onair__content-item-list--streaming {
  padding-block: 32px;
  border-bottom: 1px solid #fff;
}
@media (max-width: 736px) {
  .p-onair__content-item-list--streaming {
    padding-block: calc(20 * var(--scale-unit));
    gap: calc(16 * var(--scale-unit));
  }
}
.p-onair__content-item-list--streaming:first-of-type {
  border-top: 1px solid #fff;
}
.p-onair__content-item-list-item-link {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  display: inline-block;
  position: relative;
  padding-right: 24px;
}
.p-onair__content-item-list-item-small-name {
  font-size: .8em;
  white-space: initial;
}
@media (max-width: 736px) {
  .p-onair__content-item-list-item-link {
    font-size: calc(16 * var(--scale-unit));
    padding-right: calc(16 * var(--scale-unit));
    white-space: nowrap;
  }
}
.p-onair__content-item-list-item-link::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url(./images/link.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(50%);
}

@media (max-width: 736px) {
  .p-onair__content-item-list-item-link::after {
    width: calc(10 * var(--scale-unit));
    height: calc(10 * var(--scale-unit));
  }
}

/* storyページ */
.p-story__header {
  margin-bottom: 88px;
}
@media (max-width: 768px) {
  .p-story__header {
    margin-bottom: calc(40 * var(--scale-unit));
  }
}
.p-story__title {
  width: 278px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-story__title {
    width: calc(142 * var(--scale-unit));
  }
}
.page_contents-story {
  width: 1040px;
  margin-inline: auto;
  color: #000;
}
@media (max-width: 768px) {
  .page_contents-story {
    width: calc(305 * var(--scale-unit));
  }
  .p-story__inner {
    padding: 0;
  }
}
.story__number-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 16px;
  row-gap: 16px;
}
@media (max-width: 768px) {
  .story__number-list {
    column-gap: calc(18 * var(--scale-unit));
    row-gap: calc(14 * var(--scale-unit));
  }
}
.story__number-link {
  font-size: 32px;
  font-family: "Micro 5", sans-serif;
  color: #fff;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .story__number-link {
    font-size: calc(32 * var(--scale-unit));
  }
}
.story__number-link.is-current {
  pointer-events: none;
  display: flex;
  gap: .4rem;
  font-size: 40px;
  border: 2px solid var(--accent-color);
  padding-inline: 8px;
}
@media (max-width: 768px) {
  .story__number-link.is-current {
    font-size: calc(40 * var(--scale-unit));
    padding-inline: calc(7 * var(--scale-unit));
  }
}
.story__contents-wrap {
  display: grid;
  margin-top: 4rem;
  background-color: #fff;
  padding-block: 6rem 7.2rem;
  position: relative;
}
@media (max-width: 768px) {
  .story__contents-wrap {
    margin-top: calc(32 * var(--scale-unit));
    padding-block: calc(32 * var(--scale-unit)) calc(56 * var(--scale-unit));
  }
}
.story__contents-wrap-background--left,
.story__contents-wrap-background--right {
  position: absolute;
  top: 0;
  width: 72px;
  height: 100%;
  z-index: -1;
}
@media (max-width: 768px) {
  .story__contents-wrap-background--left,
  .story__contents-wrap-background--right {
    width: calc(18 * var(--scale-unit));
  }
}
.story__contents-wrap-background--left {
  right: calc(100%);
  background: linear-gradient(to bottom, #fff 0%, #fff calc(100% - 128px), transparent calc(100% - 128px), transparent 100%), url(./images/story-left.svg) no-repeat bottom left;
}
.story__contents-wrap-background--right {
  left: calc(100%);
  background: linear-gradient(to top, #fff 0%, #fff calc(100% - 128px), transparent calc(100% - 128px), transparent 100%), url(./images/story-right.svg) no-repeat top left;
}
@media (max-width: 768px) {
  .story__contents-wrap-background--left {
    background: linear-gradient(to bottom, #fff 0%, #fff calc(100% - 64px), transparent calc(100% - 64px), transparent 100%), url(./images/story-left-sp.svg) no-repeat bottom left;
  }
  .story__contents-wrap-background--right {
    background: linear-gradient(to top, #fff 0%, #fff calc(100% - 64px), transparent calc(100% - 64px), transparent 100%), url(./images/story-right-sp.svg) no-repeat top left;
  }
}
.story__contents-wrap:has(.story__contents-introduction.active) {
  color: #fff;
  background: none;
  margin-top: 0;
  padding-block: 0;
}
.page_contents-story:has(.story__contents-introduction.active),
.p-story__inner:has(.story__contents-introduction.active) {
  max-width: 100%;
  width: 100%;
}
@media (max-width: 768px) {
  .page_contents-story:has(.story__contents-introduction.active) {
    width: 100%;
  }
}
.story__contents-wrap:has(.story__contents-introduction.active) .story__contents-wrap-background--left,
.story__contents-wrap:has(.story__contents-introduction.active) .story__contents-wrap-background--right {
  display: none;
}
.story__contents {
  width: 1040px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .story__contents {
    width: calc(305 * var(--scale-unit));
  }
}
.story__contents-title {
  display: flex;
  justify-content: left;
  align-items: center;
  column-gap: 2.4rem;
}
@media (max-width: 768px) {
  .story__contents-title {
    align-items: flex-start;
    column-gap: calc(8 * var(--scale-unit));
  }
}
.story__contents-titleNumber {
  font-family: "Micro 5", sans-serif;
  font-size: 40px;
  color: var(--date-color);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 4px;
}
@media (max-width: 768px) {
  .story__contents-titleNumber {
    padding-top: 0;
    font-size: calc(32 * var(--scale-unit));
  }
}
.story__contents-titleText {
  font-size: 28px;
  line-height: 1;
}
@media (max-width: 768px) {
  .story__contents-titleText {
    font-size: calc(20 * var(--scale-unit));
    line-height: 1.4;
  }
}
.story__contents-slider {
  margin-top: 40px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .story__contents-slider {
    margin-top: 1.6rem;
  }
}
.story__contents-text {
  margin-top: 3.2rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .story__contents-text {
    margin-top: calc(24 * var(--scale-unit));
    font-size: calc(16 * var(--scale-unit));
  }
}
.story__btns-wrap {
  width: calc(100% - 48px);
  margin: 6.4rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
@media (max-width: 768px) {
  .story__btns-wrap {
    width: calc(100% - calc(56 * var(--scale-unit)));
    margin-top: calc(40 * var(--scale-unit));
  }
}
.story__btns-link {
  text-decoration: none;
  font-size: 32px;
  font-family: "Micro 5", sans-serif;
  line-height: 1;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 8px;
}
@media (max-width: 768px) {
  .story__btns-link {
    font-size: calc(32 * var(--scale-unit));
    column-gap: calc(4 * var(--scale-unit));
  }
}
.story__btns-link--prev::before,
.story__btns-link--next::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
@media (max-width: 768px) {
  .story__btns-link--prev::before,
  .story__btns-link--next::after {
    width: calc(20 * var(--scale-unit));
    height: calc(20 * var(--scale-unit));
  }
}
.story__btns-link--prev::before {
  transform: rotate(45deg);
}
.story__btns-link--next::after {
  transform: rotate(-135deg);
}
.story__btns-link:disabled {
  opacity: 0;
  pointer-events: none;
}

/* slickのCSS */
.story__thumbs {
  width: 100%;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .story__thumbs {
    margin-top: .8rem;
  }
}
.story__thumbs .slick-slide {
  width: 167.5px!important;
  margin-right: 7px;
}
@media (max-width: 768px) {
  .story__thumbs .slick-slide {
    width: calc(48 * var(--scale-unit)) !important;
    margin-right: calc(3.4 * var(--scale-unit));
  }
}
.story__thumbs .slick-slide:last-child {
  margin-right: 0;
}
.story__thumbs img {
  cursor: pointer;
  width: 100%;
  object-fit: cover;
  display: block;
}
.story__contents-wrap .top03 {
  padding: 0;
  margin-top: -6rem;
  margin-bottom: -7rem;
  background: none;
  background-color: #fff;
  mix-blend-mode: initial;
}
@media (max-width: 768px) {
  .story__contents-wrap .top03 {
    margin-top: -3rem;
    margin-bottom: -4rem;
  }
}
.story__contents-wrap .top03::before {
  content: none;
}
/* 全スライドを同じセルに重ねる。非アクティブはレイアウトから外す */
.story__contents-wrap > .story__contents-introduction,
.story__contents-wrap > .story__contents {
  grid-area: 1 / 1;
  display: none;
}
/* 表示中だけブロック表示に */
.story__contents-wrap > .active {
  display: block;
}
/* サムネの“操作禁止”と“現在表示”の見た目（任意） */
.story__thumbs.is-disabled,
.story__contents-slider-thumb.is-disabled {
  pointer-events: none;
}
.story__thumbs .slick-slide.is-current img,
.story__contents-slider-thumb .slick-slide.is-current img {
  opacity: 0.5;
}
