@charset "UTF-8";
/* メディアクエリ
==================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  cursor: pointer;
}

input,
button,
textarea,
select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* デフォルトスタイルをリセット */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  color: inherit;
  font-size: 16px;
  font-family: inherit;
}

label {
  cursor: pointer;
}

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

textarea {
  resize: vertical;
}

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

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

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

html {
  min-height: 100vh;
}

body {
  color: #000000;
  font-weight: 700;
  line-height: 1.5;
  font-family: "M PLUS 1", sans-serif;
  -webkit-text-size-adjust: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

main {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: clip;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.inner {
  z-index: 5;
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.btn {
  color: #FFF;
  font-weight: 700;
  font-size: 1.4rem;
}

.btn a {
  display: grid;
  position: relative;
  place-items: center;
  width: 28rem;
  min-height: 7.2rem;
  margin-inline: auto;
  padding: 0.5em 1rem;
  background: #000000;
  color: #FFF;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn a::after {
  z-index: -1;
  position: absolute;
  top: 0.5rem;
  right: -0.5rem;
  width: 100%;
  height: 100%;
  border: 1px solid #000000;
  content: "";
}

.btn.--yellow a {
  background: #F4DD0D;
  color: #000;
}
.btn.--yellow a::after {
  border-color: #F4DD0D;
}

/* ハンバーガーメニュー */
/*==================================================
　5-2-6 3本線が回転して×に
===================================*/
.hamburger {
  display: block;
  z-index: 1000;
  position: relative;
  top: 0;
  right: 0;
  width: 3.2rem;
  height: 3.2rem;
  margin-left: 3.4rem;
  background: #000000;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.hamburger.active {
  background: #FFF;
}

/*ボタン内側*/
.hamburger span {
  display: inline-block;
  position: absolute;
  left: 50%;
  width: 2.3rem;
  height: 1px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #FFF;
  -webkit-transition: all 0.4s;
  transition: all 0.4s; /*アニメーションの設定*/
}

.hamburger span:nth-of-type(1) {
  top: 25%;
}

.hamburger span:nth-of-type(2) {
  top: 50%;
}

.hamburger span:nth-of-type(3) {
  top: 75%;
}

/*activeクラスが付与されると線が回転して×になる*/
.hamburger.active span {
  top: 50%;
  left: 50%;
  background: #000000;
}

.hamburger.active span:nth-of-type(1) {
  -webkit-transform: translate(-50%, -50%) rotate(-145deg);
          transform: translate(-50%, -50%) rotate(-145deg);
}

.hamburger.active span:nth-of-type(2) {
  -webkit-transform: translate(-50%, -50%) rotate(145deg);
          transform: translate(-50%, -50%) rotate(145deg);
}

.hamburger.active span:nth-of-type(3) {
  opacity: 0;
}

.pankuz {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5rem;
  padding-top: 7rem;
  text-align: left;
}

.pankuz__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 1.2rem;
}

.pankuz__arrow {
  display: inline-block;
  position: relative;
  width: 12px;
  height: 14px;
}

.pankuz__arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../img/arrow_pankuz.webp) no-repeat center center/contain;
  content: "";
}

.section__title {
  position: relative;
  font-weight: 700;
  text-align: center;
}

.section__title.--left {
  text-align: left;
}
.section__title.--left .section__en {
  margin-inline: initial;
}

.section__jp {
  font-size: 2rem;
}

.section__title.--white .section__jp {
  color: #FFF;
}

.section__jp.--shadow {
  color: #fff;
}

.section__en {
  margin-top: 1rem;
  margin-inline: auto;
}

.section__en.--news {
  width: 13.4rem;
}

.section__en.--story {
  width: 16.1rem;
}

.section__en.--character {
  width: 27.6rem;
}

.text {
  font-size: 1.6rem;
  line-height: 1.5625;
}

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

.text.--white {
  color: #FFF;
}

.title {
  margin-inline: auto;
}

.title__onair {
  width: 16.9rem;
}

.title__intro {
  width: 35.9rem;
}

.title__staff {
  width: 29.3rem;
}

.title__music {
  width: 16.3rem;
}

.archive__section {
  position: relative;
  padding-bottom: 8rem;
  background: url(../img/bg_news_sp.webp) no-repeat center center/cover;
}

/* 非表示状態の投稿 */
.news__item--hidden {
  display: none;
}

/* 表示前の状態 */
.news__item--preparing {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

/* 表示アニメーション用 */
.news__item--visible {
  -webkit-transform: scale(1) translate(0, 0);
          transform: scale(1) translate(0, 0);
  opacity: 1;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

/* view moreボタンのホバー効果 */
.character {
  padding: 10rem 0 13rem;
}

.character__block {
  position: relative;
}

.character__wrap {
  margin-top: 3rem;
}

.character__items {
  position: relative;
  overflow: hidden;
}
.character__items .swiper-wrapper {
  margin-inline: auto;
}

.character__item {
  display: grid;
  gap: 1.5rem;
}

.character__image {
  width: 47.012987013%;
  min-width: 181px;
  margin-inline: auto;
}
.character__image img {
  width: 100%;
  height: auto;
}

.character__content {
  text-align: center;
}

.character__name {
  font-size: 2.5rem;
  line-height: 1;
}

.character__voice {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 2.3rem;
  margin-top: 1rem;
  margin-inline: auto;
  padding: 0 1.1rem;
  background: #000;
  color: #FFF;
  font-size: 1.4rem;
}

.character__description {
  margin-top: 3rem;
}

.character__lists {
  margin-top: 3.5rem;
}
.character__lists .swiper-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1rem;
}
.character__lists .swiper-slide {
  width: calc((100% - 3rem) / 3) !important;
  cursor: pointer;
}

.character__list {
  position: relative;
  max-width: 185px;
}
.character__list img {
  display: block;
  width: 100%;
  height: auto;
}

.character__label {
  display: grid;
  visibility: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  place-items: center;
  width: 100%;
  min-height: 3rem;
  padding: 0.2em 0.5em;
  background: rgba(0, 0, 0, 0.7);
  color: #FFF;
  font-size: 1.4rem;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.character__list.is-active .character__label {
  visibility: visible;
  opacity: 1;
}

.character__button-prev,
.character__button-next {
  top: 30%;
  width: 2.15rem;
  height: 2.15rem;
}
.character__button-prev::after,
.character__button-next::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../img/button_next.webp) no-repeat center center/contain;
  content: "";
}
.character__button-prev.swiper-button-disabled,
.character__button-next.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.3;
}
.character__button-prev::after {
  background: url(../img/button_prev.webp) no-repeat center center/contain;
}

.character__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3.4rem;
}

.comedy {
  margin-top: -2px;
  padding: 9rem 0 4rem;
  background: url(../img/bg_comedy_sp.webp) no-repeat center center/cover;
  color: #FFF;
}

.comedy__inner {
  padding: 0 12px;
}

.comedy__copy {
  width: 80%;
  margin-top: 4rem;
  margin-inline: auto;
}

.cta {
  padding-bottom: 15rem;
  background: url(../img/bg_cta.webp) no-repeat center center/cover;
}
.cta .sns {
  margin-top: initial;
}

.detail {
  padding-bottom: 7rem;
}

.detail__info {
  margin-top: 5rem;
}

.detail__title {
  margin-top: 2rem;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 120%;
}

.detail__wrap .detail__thumbnail {
  position: relative;
  aspect-ratio: 1200/680;
  margin-top: 1.2rem;
  border: 2px solid #217ABC;
}
.detail__wrap .detail__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.detail__wrap .detail__thumbnail::after {
  z-index: -1;
  position: absolute;
  top: 10px;
  right: -10px;
  width: 100%;
  height: 100%;
  background: #217ABC;
  content: "";
}
.detail__wrap .detail__content {
  margin-top: 2.8rem;
}
.detail__wrap .detail__content > *:first-child {
  margin-top: initial;
}
.detail__wrap p {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 2;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.detail__wrap pre {
  margin-top: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.detail__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 5rem;
  margin-inline: auto;
}

.detail__prev .disabled,
.detail__next .disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.detail__return a {
  display: grid;
  place-items: center;
  width: 16rem;
  min-height: 4.5rem;
  padding: 0 1em;
  border-radius: calc(infinity * 1px);
  background: #217ABC;
  color: #FFF;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.footer {
  padding: 3.4rem 0 2.5rem;
}

.footer__inner {
  padding: 0 1.4rem;
}

.footer__nav {
  height: inherit;
}

.footer__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: inherit;
  gap: 2rem 0;
}

.footer__item {
  height: inherit;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}
.footer__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: inherit;
  padding: 0 1rem;
}
.footer__item a::before {
  position: absolute;
  left: 0;
  width: 1px;
  height: 3.4rem;
  background: #000;
  content: "";
}
.footer__item .--jp {
  font-size: 1.084rem;
  font-family: "Noto Sans JP", sans-serif;
}
.footer__item .--en {
  margin-top: 5px;
  line-height: 1;
}

.footer__item:last-child a::after {
  position: absolute;
  right: 0;
  width: 1px;
  height: 3.4rem;
  background: #000;
  content: "";
}

.footer__item:nth-child(1) span img {
  width: 4.7rem;
}

.footer__item:nth-child(2) span img {
  width: 5.6rem;
}

.footer__item:nth-child(3) span img {
  width: 12rem;
}

.footer__item:nth-child(4) span img {
  width: 5.3rem;
}

.footer__item:nth-child(5) span img {
  width: 9.2rem;
}

.footer__item:nth-child(6) span img {
  width: 10.6rem;
}

.footer__item:nth-child(7) span img {
  width: 5.3rem;
}

.footer__lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3rem;
  gap: 2.4rem;
  text-align: center;
}

.footer__privacy {
  font-size: 0.8rem;
}

.footer__snss {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3rem;
}

.footer__sns {
  width: 2.35rem;
}

.footer__logos {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
  gap: 1rem;
}

.footer__logo {
  width: 14.9rem;
  text-align: center;
}

.footer__bottom {
  margin-top: 1.5rem;
  font-weight: 400;
  font-size: 1.1rem;
  text-align: center;
}

.fv {
  position: relative;
}

.fvSub {
  position: relative;
  height: 25rem;
}

.fvSub.--single {
  height: initial;
}
.fvSub__image {
  width: 100%;
  height: 100%;
}
.fvSub__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fvSub__title {
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.fvSub__en {
  z-index: -1;
  position: absolute;
  top: 10%;
  left: 50%;
  width: 24.7rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.fvSub__en img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fvSub__en.--news {
  width: 24.7rem;
}

.fvSub__en.--contact {
  width: 35rem;
}

.fvSub__en.--service {
  width: 35rem;
}

.fvSub__en.--experts {
  width: 35rem;
}

.fvSub__jp {
  position: relative;
  color: #FFF;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.fvSub__jp.--big {
  font-size: 3.4rem;
}

/* Header */
.header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
  position: absolute;
  position: fixed;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 5.2rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header.change-color {
  background: #FFF;
}

.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: inherit;
  padding: 0 2rem;
}

.header__logo {
  width: 8.3rem;
}

.header__nav {
  display: none;
  height: inherit;
  margin-left: 4.5rem;
}

.header__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.header__item {
  height: inherit;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}
.header__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: inherit;
  padding: 2rem 3.5rem 0;
}
.header__item a::before {
  position: absolute;
  left: 0;
  width: 1px;
  height: 5rem;
  background: #000;
  content: "";
}
.header__item .--jp {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
}

.header__item:last-child a::after {
  position: absolute;
  right: 0;
  width: 1px;
  height: 5rem;
  background: #000;
  content: "";
}

.header__x {
  display: none;
}

.headerSp {
  visibility: hidden;
  z-index: 120;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  overflow: scroll;
  background: #000000;
  color: #FFF;
  line-height: 1.2;
  letter-spacing: 0.1em;
  /* これで右に隠す↓↓ */
  opacity: 0;
  -webkit-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
}

.headerSp.is-openSP {
  visibility: visible;
  z-index: 999;
  opacity: 1;
}

.headerSp__nav {
  position: relative;
  margin-top: 7.2rem;
  margin-left: 3.2rem;
}

.headerSp__items {
  display: grid;
  gap: 4rem;
}

.headerSp__logo {
  position: absolute;
  top: 0;
  right: 0;
}

.headerSp__snss {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  z-index: 1000;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  gap: 2.5rem;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.headerSp__snss.is-active {
  visibility: visible;
  opacity: 1;
}

.headerSp__contact {
  margin-top: 26px;
  font-weight: 600;
  font-size: 1.6rem;
}
.headerSp__contact a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #FFF;
}

.hide {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.moves {
  -webkit-transform: scale(1) translate(0, 0);
          transform: scale(1) translate(0, 0);
  opacity: 1;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.introduction {
  position: relative;
  padding: 11rem 0;
  overflow: hidden;
}

.introduction__parallax {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.introduction__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  background: url(../img/bg_introduction.webp) no-repeat center center/cover;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out;
}
.introduction__bg.parallax-active {
  opacity: 1;
}

.introduction .inner {
  z-index: 2;
  position: relative;
}

.introduction__text {
  width: 14.2rem;
  margin-top: 4.9rem;
  margin-inline: auto;
}

.loading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  visibility: visible;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: #000;
  opacity: 1;
  -webkit-transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}
.loading.loading--hidden {
  visibility: hidden;
  opacity: 0;
}
.loading.loading--disabled {
  display: none;
}

.loading__logo {
  -webkit-animation: logoFadeIn 2s ease-in-out infinite alternate;
          animation: logoFadeIn 2s ease-in-out infinite alternate;
}
.loading__logo img {
  width: 80vw;
  max-width: 30rem;
  height: auto;
}

@-webkit-keyframes logoFadeIn {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes logoFadeIn {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
body.modal-open {
  overflow: hidden;
}

.modal {
  visibility: hidden;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  color: #FFF;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}
.modal.modal--show {
  visibility: visible;
  opacity: 1;
}
.modal.modal--disabled {
  display: none;
}

.modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  margin-inline: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid #FFF;
  content: "";
}

.modal__item {
  display: none;
  max-height: 80vh;
  padding: 3rem 1.4rem;
  overflow-y: auto;
}
.modal__item.modal__item--active {
  display: block;
}
.modal__item hgroup {
  text-align: center;
}

.modal__job {
  font-size: 1.4rem;
  white-space: nowrap;
}

.modal__name {
  font-size: 2rem;
}

.modal__text {
  margin-top: 3rem;
  font-size: 1.4rem;
}

.modal__close {
  position: absolute;
  top: -48px;
  left: 95%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}

.music {
  padding: 7rem 0 3rem;
  background: url(../img/bg_music_sp.webp) no-repeat center center/cover;
}

.music__items {
  display: grid;
  width: 72.7272727273%;
  min-width: 280px;
  margin-top: 6rem;
  margin-inline: auto;
  gap: 2.2rem;
}

.music__item {
  padding: 3rem 1rem;
  border: 6px solid #000;
  border-radius: 30px;
  background: rgba(240, 230, 231, 0.8);
  text-align: center;
}

.music__label {
  display: grid;
  place-items: center;
  width: 12.2rem;
  min-height: 2.4rem;
  margin-inline: auto;
  background: #e8a419;
  font-size: 1.2rem;
}

.music__name {
  margin-top: 2rem;
  font-style: italic;
  font-size: 2.5rem;
  font-size: clamp(2rem, -1.75rem + 10vi, 2.5rem);
  white-space: nowrap;
}

.music__artist {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2rem;
  margin-inline: auto;
  border-bottom: 1px solid #000;
  font-size: 1.2rem;
  text-underline-offset: 5px;
}

.mucic__logo {
  width: 21.2rem;
  margin-top: 3.5rem;
  margin-inline: auto;
  text-align: center;
}

.news {
  position: relative;
  padding: 9rem 0 13rem;
  background: url(../img/bg_news_sp.webp) no-repeat center center/cover;
}

.news__items {
  display: grid;
  margin-top: 5rem;
}

.news__item a {
  display: grid;
  grid-template-columns: 28.5714285714% 1fr;
  padding: 4.3rem 0;
  gap: 2rem;
  border-bottom: 0.5px solid #000000;
}

.news__label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.news__category {
  display: grid;
  place-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 2.25rem;
  padding: 0 3px;
  background: #000000;
  color: #FFF;
  font-weight: 400;
  font-size: 1.6rem;
}

.news__time {
  font-weight: 700;
  font-size: 1.6rem;
}

.news__title {
  display: -webkit-box;
  margin-top: 5px;
  overflow: hidden;
  font-weight: 700;
  font-size: 2rem;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.news__text {
  display: -webkit-box;
  overflow: hidden;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.25;
  font-family: "小塚ゴシック Pr6N", sans-serif;
  letter-spacing: 0.05em;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 5px;
}

.news__all {
  width: 9rem;
  margin-top: 2.7rem;
  margin-left: auto;
}

.not-found {
  padding: 90px 20px;
}

.not-found__text {
  margin-top: 30px;
  font-size: 1.4rem;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
}

.not-found__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}

.onair {
  padding: 9rem 0 13rem;
  background: url(../img/bg_onair_sp.webp) no-repeat center center/cover;
}

.onair__gold {
  margin-top: 6rem;
}

.onair__text {
  margin-top: 3px;
}

.privacy {
  padding-bottom: 6rem;
}

.privacy__content {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 160%;
}
.privacy__content span {
  font-weight: 700;
}
.privacy__content a {
  color: #0084FF;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.qa {
  padding-top: 50px;
}

.qa__content {
  position: relative;
  padding: 50px 0;
}

.qa__content:nth-child(even) {
  background: #a09485;
  color: #FFF;
}
.qa__content:nth-child(even) .qa__item {
  -webkit-box-shadow: initial;
          box-shadow: initial;
}

.qa__content:nth-child(odd)::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 20rem;
  height: 60rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/ashirai_right.webp) no-repeat center center/contain;
  content: "";
}

.qa__title {
  text-align: left;
}

.qa__items {
  display: grid;
  margin-top: 4rem;
  gap: 2rem;
}

.qa__item {
  -webkit-box-shadow: 10px 10px 40px #d9d9d9;
          box-shadow: 10px 10px 40px #d9d9d9;
  line-height: 180%;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.qa__item:has(.qa__question.is-active) {
  margin-bottom: 2.4rem;
}

.qa__question {
  position: relative;
  padding: 1.8rem 6rem 1.8rem 1.5rem;
  background: #fa963e;
  color: #FFF;
  cursor: pointer;
}

.qa__question::before,
.qa__question::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 20px;
  height: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #FFF;
  content: "";
}

.qa__question::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.qa__question.is-active::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.qa__answer {
  display: none;
  padding: 2.8rem 6rem 2.8rem 1.5rem;
  background: #FFF;
  color: #000000;
}

.qa__label,
.qa__value {
  display: grid;
  grid-template-columns: 13% 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.qa__question span,
.qa__answer span {
  font-style: italic;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1;
  font-family: "Avenir Next LT Pro", "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}

.qa__answer span {
  color: #f37335;
}

.qa__answer.--first {
  display: block;
}

.service {
  padding-bottom: 8rem;
}

.service__title {
  color: #217ABC;
}

.service__label {
  font-style: italic;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.service__name {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
}

.service__name::after {
  z-index: -1;
  position: absolute;
  top: 40%;
  left: 50%;
  width: 101%;
  height: 2rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 10px;
  background: #F4DD0D;
  content: "";
}

.service__description {
  margin-top: 2.6rem;
}

.service__image.--main {
  position: relative;
  margin-top: 2rem;
}

.service__image.--main::after {
  position: absolute;
  content: "";
}

.service__image.--main.--01::after {
  top: 60%;
  left: calc(100% - 5.6rem);
  width: 5.6rem;
  height: 3.3rem;
  background: url(../img/ashirai_service01.svg) no-repeat center center/contain;
}

.service__image.--main.--02::after {
  top: -1.8rem;
  right: 1.6rem;
  width: 6.9rem;
  height: 5rem;
  background: url(../img/ashirai_service02.svg) no-repeat center center/contain;
}

.service__image.--main.--03::after {
  top: -2.2rem;
  left: 1.8rem;
  width: 5.2rem;
  height: 5.682rem;
  background: url(../img/ashirai_service03.svg) no-repeat center center/contain;
}

.service__info {
  margin-top: 8rem;
}

.service__items {
  display: grid;
  margin-top: 3rem;
  gap: 4rem;
}

.service__item {
  display: grid;
  gap: 1rem;
}

.service__text {
  margin-top: 2rem;
}

.service__btns {
  display: grid;
  margin-top: 3rem;
  gap: 2rem;
}

.sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 20rem;
  margin-top: 5.3rem;
  padding: 2.4rem 1rem;
  background: #000;
  color: #FFF;
  text-align: center;
}
.sns .section__en {
  width: 8.5rem;
}

.sns__name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.5rem;
  gap: 3rem;
}
.sns__name img {
  width: 27.3rem;
}
.sns__name span img {
  width: 7.1rem;
}

.staff {
  padding: 13rem 0;
  background: url(../img/bg_staff_sp.webp) no-repeat center center/cover;
  color: #FFF;
}

.staff__inner {
  padding: 0 15px;
}

.staff__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 6.5rem;
  gap: 4.2rem;
}

.staff__title {
  display: grid;
  gap: 1rem;
  text-align: center;
}
.staff__title h3 {
  margin-inline: auto;
}
.staff__title .--staff {
  width: 9.9rem;
}
.staff__title .--cast {
  width: 8.3rem;
}

.staff__comics {
  margin-top: 3rem;
  text-align: center;
}

.staff__comic {
  font-size: 2rem;
}
.staff__comic span {
  display: block;
  font-size: 1.6rem;
}

.staff__members {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3.5rem;
  gap: 3rem 0;
  text-align: center;
}

.staff__members.--cast {
  grid-template-columns: repeat(3, 1fr);
}

.staff__members.--second .staff__member:nth-child(1) {
  grid-column: 1/-1;
  justify-self: center;
}

.staff__members.--cast .staff__member:nth-last-child(2):not(:nth-child(3n)) {
  grid-column: 2;
}

.staff__members.--cast .staff__member:last-child {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-column: 1/-1;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.staff__members.--cast .staff__member {
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.staff__members.--cast .staff__name span {
  position: relative;
}
.staff__members.--cast .staff__name span::after {
  position: absolute;
  top: 50%;
  right: -2rem;
  width: 1.4rem;
  height: 1.2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #e8a419;
  content: "";
  -webkit-clip-path: polygon(100% 50%, 0 100%, 0 0);
          clip-path: polygon(100% 50%, 0 100%, 0 0);
}

.staff__job {
  font-size: 1.4rem;
  white-space: nowrap;
}

.staff__name {
  font-size: 2rem;
}

.story {
  padding: 15rem 0 16rem;
  background: url(../img/bg_story_sp.webp) no-repeat center center/cover;
}

.story.--after {
  display: none;
}

.story__tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 5.6rem;
  gap: 2rem 0;
}
.story__tags .story__tag {
  margin-top: initial;
  cursor: pointer;
}

.story__tag {
  display: grid;
  place-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 4rem;
  margin-top: 2rem;
  margin-inline: auto;
  padding: 0 2rem;
  background: rgba(0, 0, 0, 0.7);
  color: #FFF;
  line-height: 1.2;
}

.story__tag.is-active {
  background: #f1b800;
}

.story__container {
  margin-top: 5rem;
}

.story.--after .story__container {
  display: none;
}
.story.--after .story__container.is-active {
  display: block;
}

.story__title {
  font-weight: 800;
  font-size: clamp(2.2rem, -0.05rem + 6vi, 2.5rem);
  text-align: center;
}

.story__thumbnails {
  display: grid;
  margin-top: 4rem;
  gap: 10px;
}
.story__thumbnails .story__thumbnail {
  margin-top: initial;
}

.story__thumbnail {
  margin-top: 2rem;
}

.story__text {
  margin-top: 2rem;
}

.youtube {
  visibility: hidden;
  z-index: 8888;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}
.youtube.youtube--show {
  visibility: visible;
  opacity: 1;
}
.youtube.youtube--disabled {
  display: none;
}

.youtube__area {
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 16/9;
  width: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.youtube__area iframe {
  width: 100%;
  height: 100%;
}

.youtube__close {
  position: absolute;
  top: -48px;
  left: 95%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}

.lineClose {
  display: inline-block;
  position: relative;
  width: 3.2rem;
  height: 0.2rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 0.1rem;
  background: currentColor;
  color: #FFF;
  line-height: 1;
  vertical-align: middle;
}
.lineClose::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  border-radius: inherit;
  background: inherit;
  content: "";
}

.u-desktop {
  display: none;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .header__nav {
    zoom: 0.65;
  }
}

@media (min-width: 768px) and (max-width: 1300px) {
  .header__inner {
    zoom: 0.9;
  }
}

@media (min-width: 768px) and (max-width: 1400px) {
  .footer__nav {
    zoom: 0.8;
  }
}

@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1100 * 100vw);
  }
  body {
    font-size: max(1.6rem, 14px);
  }
  .inner {
    max-width: 1240px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .inner__mini {
    max-width: 1040px;
  }
  .btn {
    font-size: 1.8rem;
  }
  .btn a {
    width: 36.3rem;
    max-width: 100%;
    min-height: 9.2rem;
    margin-inline: initial;
    font-size: 2rem;
  }
  .hamburger {
    display: none;
  }
  .pankuz {
    margin-bottom: 9.6rem;
    padding-top: 3rem;
  }
  .pankuz__items {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 1.4rem;
    font-size: 1.4rem;
  }
  .pankuz__arrow {
    width: 14px;
    height: 16px;
  }
  .section__jp {
    font-size: 2.4rem;
  }
  .section-top {
    margin-top: 10rem;
  }
  .section__en.--news {
    width: 24.4rem;
  }
  .section__en.--story {
    width: 29.6rem;
  }
  .section__en.--character {
    width: 49.3rem;
  }
  .text {
    font-size: 2.4rem;
    line-height: 2.0833333333;
  }
  .title__onair {
    width: 31rem;
  }
  .title__intro {
    width: 65.2rem;
  }
  .title__staff {
    width: 53.5rem;
  }
  .title__music {
    width: 29rem;
  }
  .archive__section {
    padding-bottom: 17rem;
    background: url(../img/bg_news.webp) no-repeat center center/cover;
  }
  .character {
    padding: 15rem 0 14rem;
  }
  .character__wrap {
    margin-top: 11rem;
  }
  .character__items {
    max-width: 88.3333333333%;
  }
  .character__item {
    grid-template-columns: 34.4339622642% 54.7169811321%;
    gap: clamp(3rem, -7.057rem + 13.095vi, 11.8rem);
  }
  .character__image {
    width: 100%;
  }
  .character__content {
    text-align: left;
  }
  .character__name {
    font-size: 4rem;
  }
  .character__voice {
    min-height: 2.9rem;
    margin-top: 2.3rem;
    margin-inline: initial;
    padding: 0 0.7rem;
    font-size: 2rem;
  }
  .character__lists {
    margin-top: 8.5rem;
  }
  .character__lists .swiper-wrapper {
    gap: 2.9rem 1.9rem;
  }
  .character__lists .swiper-slide {
    width: calc((100% - 9.5rem) / 6) !important;
  }
  .character__label {
    min-height: 4rem;
    font-size: 1.8rem;
  }
  .character__button-prev,
  .character__button-next {
    top: 50%;
    width: 4.3rem;
    height: 4.3rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .character__button-prev::after,
  .character__button-next::after {
    font-size: 3rem;
  }
  .comedy {
    margin-top: initial;
    padding: 12rem 0 15rem;
    background: url(../img/bg_comedy.webp) no-repeat center center/cover;
  }
  .comedy__copy {
    width: 95%;
  }
  .cta {
    padding-bottom: 33.7rem;
  }
  .detail {
    padding-bottom: 14rem;
  }
  .detail__info {
    margin-top: 9rem;
  }
  .detail__title {
    margin-top: 3rem;
    font-size: 5rem;
  }
  .detail__wrap .detail__thumbnail {
    margin-top: 3.2rem;
    border: 4px solid #217ABC;
  }
  .detail__wrap .detail__thumbnail::after {
    top: 20px;
    right: -20px;
  }
  .detail__wrap p {
    margin-top: 2rem;
    font-size: 2rem;
  }
  .detail__wrap pre {
    font-size: 2rem;
  }
  .detail__bottom {
    max-width: initial;
    margin-top: 7.2rem;
  }
  .detail__return a {
    width: 22.5rem;
    min-height: 5.7rem;
    font-size: 2rem;
  }
  .footer {
    padding: 4rem 0 5rem;
  }
  .footer__inner {
    max-width: 1300px;
  }
  .footer__items {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    gap: initial;
  }
  .footer__item a {
    padding: 0 3.5rem;
  }
  .footer__item a::before {
    height: 5rem;
  }
  .footer__item .--jp {
    font-size: 1.6rem;
  }
  .footer__item:last-child a::after {
    height: 5rem;
  }
  .footer__item:nth-child(1) span img {
    width: 6.9rem;
  }
  .footer__item:nth-child(2) span img {
    width: 8.1rem;
  }
  .footer__item:nth-child(3) span img {
    width: 17.7rem;
  }
  .footer__item:nth-child(4) span img {
    width: 7.8rem;
  }
  .footer__item:nth-child(5) span img {
    width: 13.6rem;
  }
  .footer__item:nth-child(6) span img {
    width: 15.7rem;
  }
  .footer__item:nth-child(7) span img {
    width: 7.9rem;
  }
  .footer__lists {
    gap: 4.9rem;
  }
  .footer__privacy {
    font-size: 1.6rem;
  }
  .footer__snss {
    gap: 2.5rem;
  }
  .footer__sns {
    width: 4.7rem;
  }
  .footer__logo {
    width: 29.8rem;
  }
  .footer__bottom {
    margin-top: 2rem;
    font-size: 1.6rem;
  }
  .fv {
    margin-top: 10rem;
  }
  .fvSub {
    height: 50.3rem;
  }
  .fvSub__en {
    top: 20%;
    width: 74.1rem;
  }
  .fvSub__en.--news {
    top: -30%;
    width: 74.1rem;
  }
  .fvSub__en.--contact {
    top: -20%;
    width: 109.3rem;
  }
  .fvSub__en.--service {
    top: -30%;
    width: 128.8rem;
  }
  .fvSub__en.--experts {
    width: 103.9rem;
  }
  .fvSub__jp {
    font-size: 5rem;
  }
  .fvSub__jp.--big {
    font-size: 5.6rem;
  }
  .header {
    height: 10rem;
    background: #FFF;
  }
  .header__logo {
    width: 17.8rem;
    padding-top: 2rem;
  }
  .header__nav {
    display: block;
  }
  .header__item:nth-child(3) span img {
    width: 17.7rem;
    max-width: initial;
  }
  .header__x {
    display: block;
    margin-left: 4.5rem;
    padding-top: 2rem;
  }
  .headerSp__snss {
    display: none;
  }
  .introduction {
    padding: 20rem 0 30rem;
  }
  .introduction__bg {
    background: url(../img/bg_introduction.webp) no-repeat center center/cover;
  }
  .introduction__text {
    width: 28rem;
    margin-top: 18rem;
  }
  .loading__logo img {
    width: 42.3rem;
    max-width: 42.3rem;
  }
  .modal__container {
    width: 60%;
    min-width: 80rem;
  }
  .modal__item {
    padding: 5rem 3rem;
  }
  .modal__job {
    font-size: 2.4rem;
  }
  .modal__name {
    font-size: 3.2rem;
  }
  .modal__text {
    font-size: 2rem;
  }
  .modal__close {
    left: 100%;
  }
  .music {
    padding: 21rem 0 7.7rem;
    background: url(../img/bg_music.webp) no-repeat center center/cover;
  }
  .music__items {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin-top: 13rem;
    gap: 7.4rem;
  }
  .music__item {
    padding: 5.7rem 2rem 6.3rem;
  }
  .music__label {
    width: 24.4rem;
    min-height: 4.8rem;
  }
  .music__name {
    margin-top: 4rem;
    font-size: 5rem;
    font-size: clamp(3.6rem, 2rem + 2.083vi, 5rem);
  }
  .music__artist {
    margin-top: 4rem;
  }
  .mucic__logo {
    width: 42.3rem;
    margin-top: 7rem;
  }
  .news {
    padding: 19rem 0 20rem;
    background: url(../img/bg_news.webp) no-repeat center center/cover;
  }
  .news__items {
    margin-top: 12rem;
  }
  .news__item a {
    grid-template-columns: 25.8333333333% 1fr;
    gap: 5.4rem;
  }
  .news__label {
    gap: 9px;
  }
  .news__category {
    min-height: 3rem;
    padding: 0 1.2rem;
  }
  .news__time {
    font-size: 1.8rem;
  }
  .news__title {
    margin-top: 1rem;
    font-size: 3rem;
  }
  .news__text {
    margin-top: 1rem;
    font-weight: 500;
    font-size: 2rem;
    line-height: 1.5;
    font-family: "M PLUS 1", sans-serif;
  }
  .news__all {
    width: 18.1rem;
    margin-top: 3.5rem;
  }
  .not-found {
    padding: 150px 0 119px;
  }
  .not-found__text {
    margin-top: 6rem;
    font-size: 1.8rem;
    line-height: 3;
  }
  .not-found__btn {
    margin-top: 7rem;
  }
  .onair {
    padding: 17rem 0 22rem;
    background: url(../img/bg_onair.webp) no-repeat center center/cover;
  }
  .onair__gold {
    margin-top: 9rem;
  }
  .onair__text {
    margin-top: 2rem;
  }
  .privacy {
    padding-bottom: 12rem;
  }
  .privacy__inner {
    max-width: 940px;
  }
  .privacy__content {
    font-size: 1.6rem;
    line-height: 180%;
  }
  .qa {
    padding-top: 11rem;
  }
  .qa__content {
    padding: 12rem 0 16rem;
  }
  .qa__content:nth-child(odd)::after {
    width: 37.8rem;
    height: 75.5rem;
  }
  .qa__question {
    padding: 1.8rem 6rem 1.8rem 2.6rem;
  }
  .qa__question::before,
  .qa__question::after {
    right: 2.1rem;
    width: 37px;
  }
  .qa__answer {
    padding: 2.8rem 6rem 2.8rem 2.6rem;
  }
  .qa__label,
  .qa__value {
    grid-template-columns: 8% 1fr;
  }
  .qa__question span,
  .qa__answer span {
    font-size: 4rem;
  }
  .service {
    padding-bottom: 20rem;
  }
  .service__label {
    font-size: 1.8rem;
  }
  .service__name {
    font-size: 5.6rem;
  }
  .service__name::after {
    height: 3.4rem;
  }
  .service__description {
    margin-top: 4.6rem;
    letter-spacing: 0.02em;
  }
  .service__image.--main {
    margin-top: 6.4rem;
  }
  .service__image.--main.--01::after {
    left: -20.2rem;
    width: 33.2rem;
    height: 13.167rem;
  }
  .service__image.--main.--02::after {
    top: -6.485rem;
    right: -29.1rem;
    width: 31.2rem;
    height: 23rem;
  }
  .service__image.--main.--03::after {
    top: 4.9rem;
    left: -9.8rem;
    width: 19.6rem;
    height: 21.736rem;
  }
  .service__info {
    margin-top: 20rem;
  }
  .service__items {
    margin-top: 7rem;
    gap: 8rem;
  }
  .service__item {
    grid-template-columns: 51.2rem 1fr;
    gap: 5.3rem;
  }
  .service__item:nth-child(odd) {
    grid-template-columns: 1fr 51.2rem;
  }
  .service__item:nth-child(odd) .service__image {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .service__item:nth-child(odd) .service__content {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .service__content .item__main {
    margin-top: 1.7rem;
  }
  .service__text {
    margin-top: 3.6rem;
    letter-spacing: 0.02em;
  }
  .service__btns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 11rem;
    gap: 8rem;
  }
  .sns {
    min-height: 40rem;
    margin-top: 6.5rem;
  }
  .sns .section__en {
    width: 16.8rem;
  }
  .sns__name {
    margin-top: 3rem;
    gap: 6rem;
  }
  .sns__name img {
    width: 54.6rem;
  }
  .sns__name span img {
    width: 14.2rem;
  }
  .staff {
    padding: 16rem 0 20rem;
    background: url(../img/bg_staff.webp) no-repeat center center/cover;
  }
  .staff__wrapper {
    gap: 10rem;
  }
  .staff__title .--staff {
    width: 14.8rem;
  }
  .staff__title .--cast {
    width: 12.3rem;
  }
  .staff__comic {
    font-size: 3.2rem;
  }
  .staff__comic span {
    display: inline;
    font-size: 3.2rem;
  }
  .staff__members {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 3rem;
    gap: initial;
  }
  .staff__members.--second {
    grid-template-columns: repeat(3, 1fr);
    width: 83%;
    margin-top: 8rem;
    margin-inline: auto;
  }
  .staff__members.--cast {
    width: 83%;
    margin-inline: auto;
    gap: 5rem 0;
  }
  .staff__members.--second .staff__member:nth-child(1) {
    grid-column: initial;
    justify-self: initial;
  }
  .staff__members.--cast .staff__name span::after {
    right: -3rem;
    width: 2rem;
    height: 1.8rem;
  }
  .staff__job {
    font-size: 2.4rem;
  }
  .staff__name {
    font-size: 3.2rem;
  }
  .story {
    padding: 16rem 0 30rem;
    background: url(../img/bg_story.webp) no-repeat center center/cover;
  }
  .story__tags {
    grid-template-columns: repeat(6, 1fr);
    max-width: 1022px;
    margin-inline: auto;
  }
  .story__tag {
    line-height: 1.2;
  }
  .story__title {
    font-size: 4rem;
  }
  .story__main {
    font-size: 5rem;
  }
  .story__thumbnails {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 10px;
  }
  .story__thumbnail {
    margin-top: 3rem;
  }
  .youtube__area {
    width: 100%;
    max-width: 600px;
  }
  .youtube__close {
    left: 100%;
  }
  .u-mobile {
    display: none;
  }
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 1100px) {
  html {
    font-size: 10px;
  }
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .header__nav {
    zoom: 0.8;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
}

@media (1400px <= width) {
  .character__button-prev {
    left: -2%;
  }
  .character__button-next {
    right: -2%;
  }
}

@media (any-hover: hover) {
  a:hover {
    cursor: pointer;
    opacity: 0.7;
  }
  .character__list:hover .character__label {
    visibility: visible;
    opacity: 1;
  }
  .staff__members.--cast .staff__member:hover {
    opacity: 0.7;
  }
}
/*# sourceMappingURL=map/styles.css.map */